@charset "UTF-8";

@use "sass:math";
@font-face {
  font-family: warPriest;
  src: url(../fonts/warpriest/warpriest.ttf);
}

@font-face {
  font-family: warPriest3d;
  src: url(../fonts/warpriest/warpriest3d.ttf);
}

/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #45F882;
  --theme-color2: #FFBE18;
  --theme-color3: #6240CF;
  --title-color: #0B0E13;
  --body-color: #969EB2;
  --smoke-color: #F5F7FA;
  --smoke-color2: #F5F8FD;
  --black-color: #000000;
  --black-color2: #1A1D26;
  --black-color3: #0F1C23;
  --gray-color: #D8DDE1;
  --white-color: #ffffff;
  --light-color: #bdbdbd;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #F2003A;
  --th-border-color: #6C6C6C;
  --th-border-color2: #E6E6E6;
  --title-font: 'Rajdhani', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --war-font: "warPriest";
  --war-font2: "warPriest3d";
  --goldman-font: "Goldman", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1225px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
  --th-body-background: #0B0E13;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}



body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  background: var(--th-body-background);
  -webkit-font-smoothing: antialiased;
  cursor: auto;
  /***scroll-bar***/
}

/* Custom cursor disabled - causing green dot issue
body:has(.cursor-image) {
  cursor: url("../img/cursor.svg"), auto;
}
*/

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 0px;
}

body::-webkit-scrollbar-track {
  background: var(--black-color2);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.3) 25%, transparent 20%, transparent 50%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 75%, transparent 75%, transparent);
  border-radius: 0px;
}

/* Cursor animation disabled - causing green dot issue
.cursor-animation {
  position: fixed;
  background: var(--theme-color);
  width: 15px;
  height: 15px;
  border-radius: 100%;
  z-index: 999999;
  -webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) background, 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transform: translate(2px, 2px);
      -ms-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
  mix-blend-mode: exclusion;
}
*/

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--th-border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--th-border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--white-color);
}

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

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: var(--body-font);
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  font-family: var(--body-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 84px;
  line-height: 1.18;
}

.h2,
h2 {
  font-size: 44px;
  line-height: 1.227;
}

.h3,
h3 {
  font-size: 36px;
  line-height: 1.278;
}

.h4,
h4 {
  font-size: 30px;
  line-height: 1.333;
}

.h5,
h5 {
  font-size: 24px;
  line-height: 1.417;
}

.h6,
h6 {
  font-size: 20px;
  line-height: 1.5;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .h1,
  h1 {
    font-size: 74px;
    line-height: 1.3;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 44px;
    line-height: 1.3;
  }
  .h2,
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 34px;
    line-height: 1.3;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 36px;
    line-height: 1.35;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .h1,
  h1 {
    font-size: 34px;
  }
}

/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
p.has-drop-cap {
  margin-bottom: 20px;
}

.unittest-header .sticky-wrapper.sticky {
  position: relative;
  background-color: transparent;
  padding: 0;
}

.page--item p:last-child .alignright {
  clear: right;
}

.blog-title,
.pagi-title,
.breadcumb-title {
  word-break: break-word;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
  color: var(--body-color);
}

.bypostauthor,
.gallery-caption {
  display: block;
}

.page-links,
.clearfix {
  clear: both;
}

.page--item {
  margin-bottom: 30px;
}

.page--item p {
  line-height: 1.8;
}

.content-none-search {
  margin-top: 30px;
}

.wp-block-button.aligncenter {
  text-align: center;
}

.alignleft {
  display: inline;
  float: left;
  margin-bottom: 10px;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-bottom: 10px;
  margin-left: 1.5em;
  margin-right: 1em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.gallery {
  margin-bottom: 1.5em;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding: 0 5px;
}

.wp-block-columns {
  margin-bottom: 1em;
}

figure.gallery-item {
  margin-bottom: 10px;
  display: inline-block;
}

figure.wp-block-gallery {
  margin-bottom: 14px;
}



.gallery-caption {
  display: block;
  font-size: 12px;
  color: var(--body-color);
  line-height: 1.5;
  padding: 0.5em 0;
}


.editor-styles-wrapper .has-large-font-size,
.has-large-font-size {
  line-height: 1.4;
}






.nof-title {
  margin-top: -0.24em;
}

.th-search {
  background-color: var(--smoke-color2);
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.th-search .search-grid-content {
  padding: 30px;
  /* Small devices */
}

@media (max-width: 767px) {
  .th-search .search-grid-content {
    padding: 20px;
  }
}

.th-search .search-grid-title {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
}

.th-search .search-grid-title a {
  color: inherit;
}

.th-search .search-grid-title a:hover {
  color: var(--theme-color);
}

.th-search .search-grid-meta > * {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}

.th-search .search-grid-meta > *:last-child {
  margin-right: 0;
}

.th-search .search-grid-meta a,
.th-search .search-grid-meta span {
  color: var(--body-color);
}

/*Header sub-menu icon *************/
.hide-icon.main-menu ul.sub-menu li a:before {
  display: none;
}

.hide-icon.main-menu ul.sub-menu li a:hover {
  padding-left: 0;
}

/* Small devices */
@media (max-width: 767px) {
  .blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .wp-block-latest-comments {
    padding-left: 10px;
  }
  .page--content.clearfix + .th-comment-form {
    margin-top: 24px;
  }
}

/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}

@media (min-width: 1600px) {
  .th-container2 {
    --main-container: 1600px;
  }
  .th-container3 {
    --main-container: 1536px;
  }
  .th-container4 {
    --main-container: 1464px;
  }
  .th-container5 {
    --main-container: 1720px;
  }
}

/* Hight Resoulation devices */
@media (min-width: 1922px) {
  .th-container5,
  .th-container4,
  .th-container3,
  .th-container2 {
    margin-right: auto;
  }
}

@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
  .container-xxl.px-0,
  .container-xl.px-0,
  .container-lg.px-0,
  .container-md.px-0,
  .container-sm.px-0,
  .container.px-0 {
    max-width: var(--main-container);
  }
}

@media only screen and (min-width: 1300px) {
  .th-container {
    --main-container: 1617px;
  }
}

@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.container-gallery {
  max-width: 1840px;
}

/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1300px) {
  .row {
    --bs-gutter-x: 24px;
  }
}

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

.g-0 {
  --bs-gutter-y: 0;
  --bs-gutter-x: 0;
}

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

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

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

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

.gy-80 {
  --bs-gutter-y: 80px;
}

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

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

@media (min-width: 1299px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 1399px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-25 {
    --bs-gutter-x: 25px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .gy-80 {
    --bs-gutter-y: 50px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .gy-50 {
    --bs-gutter-y: 40px;
  }
}

/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 60px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 1px solid transparent;
  color: var(--body-color);
  background-color: var(--title-color);
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  font-family: var(--body-font);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--th-border-color);
  background-color: var(--smoke-color2);
}

select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-webkit-input-placeholder, .form-control::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-webkit-input-placeholder {
  color: var(--body-color);
}

select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}

select:-ms-input-placeholder, .form-control:-ms-input-placeholder, .form-select:-ms-input-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder {
  color: var(--body-color);
}

select::-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-select::-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder {
  color: var(--body-color);
}

select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

input[type=date] {
  padding: 0 25px 0 25px;
  position: relative;
}

input[type=date]:after {
  content: "\f073";
  position: relative;
  font-family: var(--icon-font);
  top: 0px;
  font-weight: 300;
  color: var(--theme-color);
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  right: 20px;
  z-index: 1;
  cursor: pointer;
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form-select.style2,
select.style2 {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E");
}

textarea.form-control,
textarea {
  min-height: 154px;
  padding-top: 16px;
  padding-bottom: 17px;
}

textarea.form-control.style2,
textarea.style2 {
  min-height: 100px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 16px;
  color: var(--body-color);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

.form-group > i.fa-comment {
  margin-top: -2px;
}

.form-group > i.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color2);
}

.form-group.has-label > i {
  top: 50px;
}

.form-group.style-border {
  position: relative;
  z-index: 1;
}

.form-group.style-border:after {
  content: '';
  position: absolute;
  left: var(--bs-gutter-x)/2;
  top: 0;
  background: transparent;
  height: 100%;
  width: calc(100% - (var(--bs-gutter-x)/ 1));
  border: 1px solid var(--theme-color);
  z-index: -1;
  border-radius: 10px;
  opacity: 0.3;
}

.form-group.style-border input {
  background: var(--title-color);
  color: var(--white-color);
  margin: 1px;
  width: -webkit-fill-available;
}

.form-group.style-border input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border input::-moz-placeholder {
  color: var(--body-color);
}

.form-group.style-border input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border input::-ms-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border input::placeholder {
  color: var(--body-color);
}

.form-group.style-border textarea {
  background: var(--title-color);
  margin: 1px;
  color: var(--white-color);
  width: -webkit-fill-available;
}

.form-group.style-border i {
  color: var(--body-color);
}

.form-group.style-border2 {
  position: relative;
  z-index: 1;
}

.form-group.style-border2:after {
  content: '';
  position: absolute;
  left: var(--bs-gutter-x)/2;
  top: 0;
  background: transparent;
  height: 100%;
  width: calc(100% - (var(--bs-gutter-x)/ 1));
  border: 1px solid var(--theme-color);
  z-index: -1;
  border-radius: 10px;
  opacity: 1;
}

.form-group.style-border2 input {
  background: var(--black-color3);
  color: var(--white-color);
  margin: 1px;
  width: -webkit-fill-available;
}

.form-group.style-border2 input::-webkit-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border2 input::-moz-placeholder {
  color: var(--body-color);
}

.form-group.style-border2 input:-ms-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border2 input::-ms-input-placeholder {
  color: var(--body-color);
}

.form-group.style-border2 input::placeholder {
  color: var(--body-color);
}

.form-group.style-border2 textarea {
  background: var(--black-color3);
  margin: 1px;
  color: var(--white-color);
  width: -webkit-fill-available;
}

.form-group.style-border2 .form-select {
  background: var(--black-color3);
  border: 0;
}

.form-group.style-border2:has(.form-select) {
  padding: 1px;
}

.form-group.style-border2:has(.form-select):after {
  inset: 0;
  width: 100%;
}

.form-group.style-border2:has(.form-select) > i {
  font-size: 20px;
}

.form-group.style-border2 i {
  color: var(--body-color);
}

.form-group.style-white .form-select,
.form-group.style-white .form-control {
  background: var(--white-color);
}

.form-group.style-white > i {
  top: 20px;
  background: transparent;
  color: var(--body-color);
}

.form-group.style-black .form-select,
.form-group.style-black .form-control {
  background: var(--black-color);
  border: 1px solid var(--black-color2);
  color: var(--white-color);
}

.form-group.style-black > i {
  top: 22px;
  background: transparent;
  color: var(--body-color);
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}

.form-rounded-10 .form-control,
.form-rounded-10 .form-select {
  border-radius: 10px !important;
}

.form-rounded-10 .th-btn {
  border-radius: 10px;
}

option:checked, option:focus, option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="checkbox"]:checked ~ label:before {
  content: "\f00c";
  color: var(--title-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}

input[type="checkbox"] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: var(--white-color);
  border: 1px solid var(--th-border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}

input[type="checkbox"].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}

input[type="checkbox"].style2 ~ label:before {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #8B929C;
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}

input[type="checkbox"].style2:checked ~ label:before {
  color: var(--theme-color);
}

input[type="radio"] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}

input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}

input[type="radio"] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--title-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}

textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}

.form-messages.mb-0 * {
  margin-bottom: 0;
}

.form-messages.success {
  color: var(--success-color);
  display: block;
}

.form-messages.error {
  color: var(--error-color);
  display: block;
}

.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.swiper-wrapper.row {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

.th-slider.has-shadow {
  padding-left: 12px;
  padding-right: 12px;
  margin: -25px -12px;
}

.th-slider.has-shadow .swiper-wrapper {
  padding: 25px 0;
}

.swiper-fade .swiper-slide {
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.swiper-fade .swiper-slide-prev {
  opacity: 0;
}

.swiper-pagination-bullets {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 50px 0 0px 0;
  line-height: 10px;
  height: 10px;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  display: inline-block;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 8px;
  margin: 5px 7px;
  opacity: 1;
  background-color: var(--theme-color);
  position: relative;
  cursor: pointer;
}

.swiper-pagination-bullets .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--theme-color);
  -webkit-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
  border-radius: inherit;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}

.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.slider-area {
  position: relative;
}

.slider-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--theme-color);
  color: var(--title-color);
  position: absolute;
  top: 50%;
  border: none;
  left: var(--pos-x, -120px);
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: var(--icon-size, 56px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 56px) / -2);
  z-index: 3;
  border-radius: 99px;
}

.slider-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}

.slider-arrow.slider-next {
  right: var(--pos-x, -120px);
  left: auto;
}

.slider-arrow:hover {
  background-color: var(--theme-color2);
  color: var(--title-color);
}

.slider-arrow.style2 {
  border: 1px solid var(--theme-color);
  background: var(--black-color3);
  color: var(--theme-color);
}

.slider-arrow.style2:hover {
  border-color: var(--theme-color3);
  color: var(--white-color);
}

.slider-arrow.style3 {
  background: var(--black-color2);
  color: var(--theme-color);
  --icon-font-size: 24px;
  line-height: var(--icon-size, 58px);
}

.slider-arrow.style3:hover {
  background: var(--theme-color);
  color: var(--title-color);
}

.arrow-margin .slider-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap {
  position: relative;
}

.arrow-wrap .slider-arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.4);
      -ms-transform: scale(0.4);
          transform: scale(0.4);
}

.arrow-wrap:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slider-arrow {
    --arrow-horizontal: -20px;
    --pos-x: -80px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .slider-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slider-arrow {
    display: none;
  }
}

.icon-box {
  /* Medium devices */
}

.icon-box .slider-arrow {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.icon-box .slider-arrow:not(:last-child) {
  margin-right: 8px;
}

@media (max-width: 991px) {
  .icon-box .slider-arrow {
    display: inline-block !important;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slider-arrow {
    --icon-size: 40px;
    line-height: 38px;
    margin-right: 40px;
    font-size: 14px;
  }
  .slider-arrow.slider-next {
    margin-right: 0;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 40px 0 0 0;
  }
  .icon-box .slider-arrow {
    margin-right: 0;
  }
}

.slick-3d-active {
  margin-left: -12%;
  margin-right: -12%;
}

.slick-3d-active .slick-list {
  padding-left: 30% !important;
  padding-right: 30% !important;
}

.slick-3d-active .slick-track {
  max-width: 100% !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
  -webkit-perspective: 100px;
          perspective: 100px;
}

.slick-3d-active .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.slick-3d-active .slick-3d-next,
.slick-3d-active .slick-3d-prev,
.slick-3d-active .slick-3d-next2,
.slick-3d-active .slick-3d-prev2 {
  display: block;
}

.slick-3d-active .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  z-index: 2;
}

.slick-3d-active .slick-3d-next {
  opacity: 1;
  -webkit-transform: translate3d(50%, 0, -21px);
          transform: translate3d(50%, 0, -21px);
  z-index: 1;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.slick-3d-active .slick-3d-next2 {
  opacity: 1;
  -webkit-transform: translate3d(40%, 0, -23px);
          transform: translate3d(40%, 0, -23px);
  z-index: 0;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.slick-3d-active .slick-3d-prev {
  opacity: 1;
  -webkit-transform: translate3d(-50%, 0, -21px);
          transform: translate3d(-50%, 0, -21px);
}

.slick-3d-active .slick-3d-prev .testi-card {
  box-shadow: none;
}

.slick-3d-active .slick-3d-prev2 {
  opacity: 1;
  -webkit-transform: translate3d(-40%, 0, -23px);
          transform: translate3d(-40%, 0, -23px);
}

/*------------------- 2.5. Mobile Menu -------------------*/
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--black-color2);
}

.th-menu-wrapper .mobile-logo a {
  position: relative;
  display: inline-block;
}

.th-menu-wrapper .mobile-logo a .logo-mask {
  height: 100%;
  width: 100%;
  mix-blend-mode: color;
  background: var(--theme-color);
  position: absolute;
  top: 0;
}

.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--title-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--title-color);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid var(--th-border-color);
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--th-border-color);
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
}

.th-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
  padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--black-color2);
  color: var(--white-color);
  border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.th-mobile-menu ul .menu-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--black-color2);
  float: right;
  margin-top: 1px;
}

.th-mobile-menu ul .menu-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

.th-mobile-menu ul .menu-item-has-children.th-active > a:after {
  content: "\f068";
}

.th-mobile-menu > ul {
  padding: 0 40px;
}

.th-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.th-menu-toggle {
  width: 70px;
  height: 54px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 0px;
  -webkit-clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
          clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
  position: relative;
}

.th-menu-toggle .btn-border {
  position: absolute;
  height: calc(100% - 3px);
  width: calc(100% - 3px);
  top: 1.5px;
  left: 1.5px;
  -webkit-clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
          clip-path: polygon(12% 0%, 88% 0%, 100% 50%, 88% 100%, 12% 100%, 0% 50%);
  background: var(--title-color);
  z-index: -2;
}

.th-menu-toggle:before, .th-menu-toggle:after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  top: 5px;
  left: 4px;
  width: 16px;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-clip-path: polygon(70% 0%, 80% 0%, 30% 50%, 80% 100%, 70% 100%, 20% 50%);
          clip-path: polygon(70% 0%, 80% 0%, 30% 50%, 80% 100%, 70% 100%, 20% 50%);
}

.th-menu-toggle:after {
  right: 4px;
  left: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.th-menu-toggle:hover {
  background-color: var(--theme-color2);
}

.th-menu-toggle:hover:after, .th-menu-toggle:hover:before {
  background: var(--theme-color2);
}

.th-menu-toggle.style-text, .th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i, .th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--title-color);
}


.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 0 auto;
}

.loader {
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  -webkit-perspective: 1000px;
          perspective: 1000px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: var(--white-color);
  display: inline-block;
}

.loader:before,
.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  -webkit-transform: rotateX(70deg);
          transform: rotateX(70deg);
  -webkit-animation: 1s spinloader linear infinite;
          animation: 1s spinloader linear infinite;
}

.loader:after {
  color: var(--theme-color);
  -webkit-transform: rotateY(70deg);
          transform: rotateY(70deg);
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
            transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
            transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@-webkit-keyframes rotateccw {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes rotateccw {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@-webkit-keyframes spinloader {
  0%,
  100% {
    box-shadow: .5em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .5em .5em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .5em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.5em .5em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.5em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.5em -.5em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.5em 0 0 currentcolor;
  }
  87% {
    box-shadow: .5em -.5em 0 0 currentcolor;
  }
}

@keyframes spinloader {
  0%,
  100% {
    box-shadow: .5em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: .5em .5em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 .5em 0 0px currentcolor;
  }
  37% {
    box-shadow: -.5em .5em 0 0 currentcolor;
  }
  50% {
    box-shadow: -.5em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -.5em -.5em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -.5em 0 0 currentcolor;
  }
  87% {
    box-shadow: .5em -.5em 0 0 currentcolor;
  }
}

/*------------------- 3.2. Buttons -------------------*/


.icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 54px);
  font-size: var(--btn-font-size, 20px);
  background-color: var(--icon-bg, #f7f7f7);
  color: var(--title-color);
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--th-border-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
}

.icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}

.icon-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none;
  border-radius: 99px;
}

.icon-btn.style2:hover {
  background-color: var(--theme-color2);
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: var(--icon-size, 56px);
  text-align: center;
  background-color: var(--white-color);
  color: var(--theme-color);
  font-size: var(--icon-font-size, 1.4em);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.play-btn:after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.play-btn:hover:after, .play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.play-btn.style2:before, .play-btn.style2:after {
  background-color: transparent;
  border: 1px solid var(--white-color);
}

.play-btn.style3 > i {
  --icon-size: 70px;
  --icon-font-size: 20px;
  background-color: var(--theme-color);
  color: var(--title-color);
}

.play-btn.style3:before, .play-btn.style3:after {
  background-color: var(--theme-color);
}

.play-btn.style3:hover > i {
  background-color: var(--white-color);
}

.play-btn.style3:hover:before, .play-btn.style3:hover:after {
  background-color: var(--white-color);
}

.play-btn.style4 {
  --icon-size: 120px;
  --icon-font-size: 30px;
  /* Small devices */
}

.play-btn.style4 > i {
  color: var(--white-color);
  background-color: transparent;
  border: 1px solid var(--white-color);
}

.play-btn.style4:after, .play-btn.style4:before {
  background: transparent;
  border: 1px solid var(--white-color);
}

@media (max-width: 767px) {
  .play-btn.style4 {
    --icon-size: 100px;
    --icon-font-size: 24px;
  }
}

.play-btn.style5 {
  --icon-size: 30px;
  --icon-font-size: 10px;
}

.play-btn.style5 > i {
  color: var(--theme-color);
  background-color: transparent;
  border: 1px solid var(--white-color);
  line-height: 28px;
}

.play-btn.style5:after, .play-btn.style5:before {
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  inset: -3px;
}

.play-btn.style6 {
  --icon-size: 56px;
  --icon-font-size: 20px;
}

.play-btn.style6 > i {
  color: var(--theme-color);
  line-height: 56px;
  border-radius: 0;
  position: relative;
  background: transparent;
}

.play-btn.style6 .icon-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.play-btn.style6:before, .play-btn.style6:after {
  display: none;
}

.link-btn {
  font-weight: 600;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: uppercase;
  color: var(--theme-color);
}

.link-btn i {
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  position: relative;
  top: -1px;
}

.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.link-btn:hover, .link-btn.active {
  color: var(--theme-color);
}

.link-btn:hover::before, .link-btn.active::before {
  width: 100%;
}

.link-btn.style2 {
  padding-bottom: 4px;
}

.link-btn.style2:before {
  width: 100%;
  height: 1px;
}

.link-btn.style2:hover, .link-btn.style2.active {
  color: var(--theme-color);
}

.link-btn.style2:hover::before, .link-btn.style2.active::before {
  width: 55%;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
      -ms-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--title-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: var(--white-color);
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: var(--title-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 13px);
  margin-top: -0.2em;
  text-transform: capitalize;
  color: var(--white-color);
}

.sub-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--theme-color);
  margin-bottom: 24px;
  text-transform: capitalize;
  line-height: 24px;
  margin-top: -0.2em;
  letter-spacing: 2px;
  /* Extra small devices */
}

.sub-title.h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-top: -0.14em;
}

.sub-title i {
  font-size: 32px;
  margin-right: 10px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .sub-title i {
    font-size: 24px;
  }
}

.sub-title.style2 {
  letter-spacing: 4px;
  text-transform: uppercase;
}

.sub-title.style3 {
  position: relative;
  display: inline-block;
  padding: 3px 20px;
  margin-bottom: 30px;
  margin-top: 0;
}

.sub-title.style3 .sub-title-shape {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  -webkit-clip-path: polygon(7px 0%, calc(100% - 7px) 0%, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0% calc(100% - 7px), 0% 7px);
          clip-path: polygon(7px 0%, calc(100% - 7px) 0%, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0% calc(100% - 7px), 0% 7px);
}

.sub-title.style3 .sub-title-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-title.style3 .sub-title-shape .mask-icon {
  -webkit-mask-size: cover;
          mask-size: cover;
  top: 0;
  left: 0;
}

@media (max-width: 575px) {
  .sub-title {
    font-size: 16px;
  }
}

.sec-text {
  font-size: 18px;
}

.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.32em;
}

.box-title a {
  color: inherit;
}

.box-title a:hover {
  color: var(--theme-color);
}

.box-subtitle {
  margin-bottom: 8px;
}

.box-title2 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: -0.35em;
}

.box-title2 a {
  color: inherit;
}

.box-title2 a:hover {
  color: var(--theme-color);
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 13px);
  position: relative;
  z-index: 2;
}

.title-area .sec-title {
  margin-bottom: 22px;
}

.title-area.mb-0 .sec-title {
  margin-bottom: -0.24em;
}

.title-area.text-center .shadow-title {
  margin: -30px 0 -0.45em 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

hr.title-line {
  --th-border-color: rgba(69, 248, 130, 0.2);
  margin-top: 0;
  background-color: var(--th-border-color);
  opacity: 1;
  margin-bottom: var(--section-title-space) !important;
}

.sec-btn {
  text-align: center;
}

.sec-btn,
.title-line {
  margin-bottom: var(--section-title-space);
}

.shadow-title {
  font-family: var(--war-font);
  font-size: 158px;
  font-weight: 400;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--white-color);
  -webkit-background-clip: text;
          background-clip: text;
  opacity: 0.1;
  margin: -30px 0 -0.45em -199px;
  position: absolute;
  top: 0;
  /* Extra large devices */
  /* Medium Large devices */
}

.shadow-title.color2 {
  background-image: -webkit-linear-gradient(top, #232C47 0%, rgba(20, 29, 56, 0) 91.15%);
  background-image: linear-gradient(180deg, #232C47 0%, rgba(20, 29, 56, 0) 91.15%);
}

.shadow-title.color3 {
  background-image: -webkit-linear-gradient(top, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%);
  background-image: linear-gradient(180deg, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%);
}

@media (max-width: 1500px) {
  .shadow-title {
    margin-left: -50px;
  }
}

@media (max-width: 1399px) {
  .shadow-title {
    margin-left: 0;
    font-size: 140px;
  }
}

.title-area2 {
  padding: 50px 100px;
}

.title-area2 .subtitle {
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: -0.4em;
  margin-bottom: 5px;
  display: block;
}

.title-area2 .title {
  color: var(--white-color);
  max-width: 430px;
  margin-bottom: -0.26em;
}

@media (max-width: 1700px) {
  .title-area2 {
    padding: 50px 50px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    margin-bottom: 20px;
  }
  .shadow-title {
    font-size: 64px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 60px;
  }
  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 36px;
  }
  .title-area.mb-50,
  .sec-title.mb-50 {
    margin-bottom: 40px;
  }
  .sec-btn,
  .title-line {
    --section-title-space: 55px;
  }
  .title-area2 .title {
    max-width: 300px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .shadow-title {
    font-size: 60px;
  }
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
  .title-area.mb-45,
  .sec-title.mb-45 {
    margin-bottom: 35px;
  }
  .sec-btn,
  .title-line {
    --section-title-space: 50px;
  }
  .sub-title.h4 {
    font-size: 22px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .title-area2 {
    text-align: center;
  }
  .title-area2 .title {
    max-width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .shadow-title {
    font-size: 52px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .shadow-title {
    font-size: 40px;
  }
  .title-area2 {
    padding: 40px 20px;
  }
}

/* Single Page Details ---------------------------------- */
.page-title {
  margin-bottom: 20px;
}

.page-img {
  overflow: hidden;
  border-radius: 20px;
  /* Small devices */
}

.page-img img {
  width: 100%;
}

@media (max-width: 767px) {
  .page-img {
    border-radius: 10px;
  }
}

.page-single {
  margin-bottom: 40px;
}

/*------------------- 3.4. Common -------------------*/
.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.shape-mockup.z-index-3 {
  z-index: 3;
  pointer-events: none;
}

.shape-mockup.z-index-1 {
  z-index: 1;
  pointer-events: none;
}

.shape-mockup .svg-img {
  height: 110px;
  width: 110px;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-3 {
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0.25em 0.45em;
  font-size: 0.7em;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.th-social a {
  display: inline-block;
  width: var(--icon-size, 46px);
  height: var(--icon-size, 46px);
  line-height: var(--icon-size, 46px);
  background-color: var(--black-color3);
  color: var(--body-color);
  font-size: 20px;
  text-align: center;
  margin-right: 5px;
  border-radius: 0px;
  position: relative;
}

.th-social a img {
  position: relative;
  margin-top: -2px;
}

.th-social a:last-child {
  margin-right: 0;
}

.th-social a.facebook {
  color: #1778F2;
}

.th-social a.twitter {
  color: #00A1F6;
}

.th-social a.instagram i {
  background: -webkit-linear-gradient(226deg, #791CC9 -1.01%, #C938A8 24.13%, #FE5340 54.23%, #FFD854 95.27%);
  background: linear-gradient(224deg, #791CC9 -1.01%, #C938A8 24.13%, #FE5340 54.23%, #FFD854 95.27%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.th-social a.linkedin {
  color: #2565BD;
}

.th-social a:hover {
  background-color: var(--title-color);
}

.th-social.color-theme a {
  color: var(--body-color);
  border-color: var(--theme-color);
}

.th-social.style2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}

.th-social.style2 a {
  width: auto;
  height: auto;
  line-height: normal;
  background: transparent;
}

.th-social.style2 a:hover {
  background: transparent;
  color: var(--theme-color);
}

.th-social.style3 a {
  height: var(--icon-size, 46px);
  width: var(--icon-size, 62px);
  background: var(--theme-color);
  -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
          clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
}

.th-social.style3 a span {
  display: block;
  -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
          clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
  background: var(--title-color);
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  margin: 1px 0 0 1px;
}

.th-social.style3 a img {
  margin-top: -4px;
}

.th-social.style3 a:before, .th-social.style3 a:after {
  content: "";
  position: absolute;
  background-color: var(--theme-color);
  z-index: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  top: 5px;
  left: 8px;
  width: 14px;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-clip-path: polygon(95% 0, 100% 0, 5% 50%, 100% 100%, 95% 100%, 0% 50%);
          clip-path: polygon(95% 0, 100% 0, 5% 50%, 100% 100%, 95% 100%, 0% 50%);
}

.th-social.style3 a:after {
  right: 8px;
  left: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.th-social.style3 a:hover {
  background: var(--white-color);
}

.th-social.style3 a:hover:before, .th-social.style3 a:hover:after {
  background: var(--white-color);
}

.th-social.style4 a {
  --icon-size: 45px;
  border-radius: 50%;
  background: var(--body-color);
  color: var(--white-color);
}

.th-social.style4 a:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

.th-social.style-mask a {
  -webkit-mask-image: url(../img/theme-img/th-social-bg.svg);
          mask-image: url(../img/theme-img/th-social-bg.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

.th-social.style-mask a:hover {
  background: var(--white-color);
}

.bg-mask {
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.icon-masking {
  position: relative;
  display: inline-block;
  height: auto;
  width: auto;
}

.icon-masking .mask-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  mix-blend-mode: color;
  background: var(--theme-color);
  top: 0;
}

.box-icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.box-text {
  margin-bottom: -0.5em;
}

.btn-group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  /* Small devices */
}

.btn-group.style2 {
  gap: 20px 70px;
  /* Small devices */
}

@media (max-width: 767px) {
  .btn-group.style2 {
    gap: 20px 30px;
  }
}

@media (max-width: 767px) {
  .btn-group {
    gap: 20px;
  }
}

.th-bg-img {
  position: absolute;
  inset: 0;
}

.th-bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-extralight {
  font-weight: 100;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

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

.fs-xs {
  font-size: 14px;
}



.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


.gradient-border {
  --border-width: 1px;
  --border-radius: 20px;
  position: relative;
  background: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color2)), -webkit-linear-gradient(left, var(--theme-color), var(--theme-color2));
  background: linear-gradient(to right, var(--theme-color), var(--theme-color2)), linear-gradient(to right, var(--theme-color), var(--theme-color2));
  background-position: var(--border-radius) 0, var(--border-radius) 100%;
  background-repeat: no-repeat;
  background-size: calc(100% - var(--border-radius) - var(--border-radius)) var(--border-width);
}

.gradient-border:after, .gradient-border:before {
  content: "";
  display: block;
  position: absolute;
  width: var(--border-radius);
  top: 0;
  bottom: 0;
}

.gradient-border:before {
  left: 0;
  border: var(--border-width) solid var(--theme-color);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  border-right-color: transparent;
}

.gradient-border:after {
  right: 0;
  border: var(--border-width) solid var(--theme-color2);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-left-color: transparent;
}




/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

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

.text-theme3 {
  color: var(--theme-color3) !important;
}

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

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

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

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

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

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

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

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
  z-index: 2;
}

[data-overlay] [class^="col-"],
[data-overlay] [class*="col-"] {
  z-index: 1;
}

[data-overlay]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay="theme"]:before {
  background-color: var(--theme-color);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[data-overlay="smoke"]:before {
  background-color: var(--smoke-color);
}

[data-overlay="white"]:before {
  background-color: var(--white-color);
}

[data-overlay="black"]:before {
  background-color: var(--black-color);
}

[data-overlay="overlay1"]:before {
  background-color: #080E1C;
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation, .play-btn:after, .play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
          animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
          animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
    opacity: 0;
  }
}

@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(2.8);
            transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(2.8);
            transform: scale(2.8);
    opacity: 0;
  }
}

@-webkit-keyframes scrollMove {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes scrollMove {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.fancy-animation {
  -webkit-animation: morph 8s ease-in-out infinite;
          animation: morph 8s ease-in-out infinite;
}

@-webkit-keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.movingX {
  -webkit-animation: movingX 8s linear infinite;
          animation: movingX 8s linear infinite;
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.movingCar {
  -webkit-animation: movingCar 25s linear infinite;
          animation: movingCar 25s linear infinite;
}

@-webkit-keyframes movingCar {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
            transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%));
            transform: translateX(calc(100vw*-1 + 108%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
            transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
            transform: translateX(0) rotateY(180deg);
  }
}

@keyframes movingCar {
  0% {
    -webkit-transform: translateX(0) rotateY(0deg);
            transform: translateX(0) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%));
            transform: translateX(calc(100vw*-1 + 108%));
  }
  51% {
    -webkit-transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
            transform: translateX(calc(100vw*-1 + 108%)) rotateY(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotateY(180deg);
            transform: translateX(0) rotateY(180deg);
  }
}

.moving {
  -webkit-animation: moving 8s linear infinite;
          animation: moving 8s linear infinite;
}

@-webkit-keyframes moving {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes moving {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.jump {
  -webkit-animation: jumpAni 7s linear infinite;
          animation: jumpAni 7s linear infinite;
}

@-webkit-keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.jump-reverse {
  -webkit-animation: jumpReverseAni 7s linear infinite;
          animation: jumpReverseAni 7s linear infinite;
}

@-webkit-keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes jumpReverseAni {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.spin {
  -webkit-animation: spin 10s linear infinite;
          animation: spin 10s linear infinite;
}

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

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

.bg-color-ani,
.color-animate {
  -webkit-animation: bgColor 6s linear infinite;
          animation: bgColor 6s linear infinite;
}

@-webkit-keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}

@-webkit-keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
          animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
            transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(120px) translateY(120px);
            transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@-webkit-keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

@keyframes slidetopleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}

.spin2 {
  -webkit-animation: spin2 10s linear infinite;
          animation: spin2 10s linear infinite;
}

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

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

/*animation bubble****************/
.animation-bubble {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.animation-bubble div[class^=bubble-] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../img/shape/star.svg) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .animation-bubble > :nth-child(even) {
    display: none;
  }
}

.bubble-1 {
  bottom: -5px;
  left: 68%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -6.57s;
          animation: bubble-animation 4.5s infinite ease-in -6.57s;
}

.bubble-2 {
  bottom: -71px;
  left: 97%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -5.07s;
          animation: bubble-animation 4.5s infinite ease-in -5.07s;
}

.bubble-3 {
  bottom: -71px;
  left: 43%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -6.73s;
          animation: bubble-animation 4.5s infinite ease-in -6.73s;
}

.bubble-4 {
  bottom: -3.8px;
  left: 82%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -4.04s;
          animation: bubble-animation 4.5s infinite ease-in -4.04s;
}

.bubble-5 {
  bottom: -73.4px;
  left: 29%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -3.11s;
          animation: bubble-animation 4.5s infinite ease-in -3.11s;
}

.bubble-6 {
  bottom: -71px;
  left: 41%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -5.95s;
          animation: bubble-animation 4.5s infinite ease-in -5.95s;
}

.bubble-7 {
  bottom: -79.4px;
  left: 14%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -3.68s;
          animation: bubble-animation 4.5s infinite ease-in -3.68s;
}

.bubble-8 {
  bottom: -115.4px;
  left: 90%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -3.89s;
          animation: bubble-animation 4.5s infinite ease-in -3.89s;
}

.bubble-9 {
  bottom: -44.6px;
  left: 33%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -1.09s;
          animation: bubble-animation 4.5s infinite ease-in -1.09s;
}

.bubble-10 {
  bottom: -6.2px;
  left: 59%;
  -webkit-animation: bubble-animation 4.5s infinite ease-in -.96s;
          animation: bubble-animation 4.5s infinite ease-in -.96s;
}

@-webkit-keyframes bubble-animation {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    -webkit-transform: translate3d(-50%, -280px, 0);
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}

@keyframes bubble-animation {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    -webkit-transform: translate3d(-50%, -280px, 0);
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}

/*custom-animation**********************/
.custom-anim-right {
  -webkit-animation: custom-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
          animation: custom-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@-webkit-keyframes custom-anim-right {
  0% {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes custom-anim-right {
  0% {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.custom-anim-left {
  -webkit-animation: custom-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
          animation: custom-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@-webkit-keyframes custom-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes custom-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.custom-anim-top {
  -webkit-animation: custom-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
          animation: custom-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes custom-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes custom-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.custom-anim-bottom {
  -webkit-animation: custom-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
          animation: custom-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes custom-anim-bottom {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes custom-anim-bottom {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body-font);
  text-transform: capitalize;
  line-height: 1;
  color: var(--white-color);
  background-color: var(--white-color);
  border-radius: 0px;
  position: relative;
  -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
          clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
  clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
  background: var(--title-color);
  display: inline-block;
  padding: 16px 30px;
  margin: 1px;
}

.wp-block-tag-cloud a:before, .wp-block-tag-cloud a:after,
.tagcloud a:before,
.tagcloud a:after {
  content: "";
  position: absolute;
  background-color: var(--white-color);
  z-index: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  top: 5px;
  left: 5px;
  width: 14px;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-clip-path: polygon(85% 0, 100% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%);
          clip-path: polygon(85% 0, 100% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%);
  opacity: 0.4;
}

.wp-block-tag-cloud a:after,
.tagcloud a:after {
  right: 5px;
  left: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--title-color) !important;
}

.wp-block-tag-cloud a:hover:before, .wp-block-tag-cloud a:hover:after,
.tagcloud a:hover:before,
.tagcloud a:hover:after {
  background: var(--title-color);
  opacity: 1;
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 320px;
}

.sidebar-gallery .gallery-btn {
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--white-color);
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidebar-gallery .gallery-btn:hover {
  color: var(--theme-color);
}

.sidebar-gallery .gallery-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 0px;
}

.sidebar-gallery .gallery-thumb:before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: var(--theme-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: inherit;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sidebar-gallery .gallery-thumb img {
  width: 100%;
}

.sidebar-gallery .gallery-thumb:hover:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.sidebar-gallery .gallery-thumb:hover .gallery-btn {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.sidebar-gallery .gallery-thumb:hover .gallery-btn:hover {
  color: var(--white-color);
}

.sidebar-gallery .wp-block-image {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  width: 100% !important;
}

.sidebar-gallery .wp-block-image img {
  width: 100%;
}

.recent-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post .media-img {
  margin-right: 15px;
  width: 85px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.recent-post .media-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.recent-post .media-img:after {
  content: '\f0c1';
  font-family: var(--icon-font);
  position: absolute;
  inset: 0;
  text-align: center;
  border-radius: 20px;
  line-height: 85px;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--theme-color);
  pointer-events: none;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.recent-post .post-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5em;
  margin: -0.4em 0 8px 0;
  font-family: var(--title-font);
  color: var(--white-color);
  text-transform: capitalize;
}

.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 14px;
  color: var(--body-color);
  font-family: var(--body-font);
}

.recent-post .recent-post-meta a i {
  margin-right: 6px;
  color: var(--theme-color);
}

.recent-post .recent-post-meta a:hover {
  color: var(--theme-color);
}

.recent-post:hover .media-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.recent-post:hover .media-img:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}



.price_slider_wrapper {
  margin-top: -0.5em;
}

.price_slider_wrapper .price_label span {
  display: inline-block;
  color: var(--body-color);
}

.price_slider_wrapper .ui-slider {
  height: 6px;
  position: relative;
  width: 100%;
  background-color: var(--theme-color);
  border: none;
  margin-top: 15px;
  margin-bottom: 25px;
  cursor: pointer;
  border-radius: 0;
}

.price_slider_wrapper .ui-slider-range {
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  display: block;
  background-color: var(--title-color);
}

.price_slider_wrapper .ui-slider-handle {
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  cursor: pointer;
  position: absolute;
  margin-top: -5px;
  z-index: 2;
  background-color: var(--white-color);
  border: 3px solid var(--title-color);
  -webkit-transform: translateX(-1px);
      -ms-transform: translateX(-1px);
          transform: translateX(-1px);
}

.price_slider_wrapper .ui-slider-handle:focus {
  outline: none;
  box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15);
}

.price_slider_wrapper .ui-slider-handle:last-child {
  -webkit-transform: translateX(-9px);
      -ms-transform: translateX(-9px);
          transform: translateX(-9px);
}

.price_slider_wrapper button,
.price_slider_wrapper .button {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.6;
  text-transform: capitalize;
  text-align: center;
  border: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 7px 20px;
  min-width: 100px;
  font-size: 14px;
  border-radius: 0;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.price_slider_wrapper button:hover,
.price_slider_wrapper .button:hover {
  background-color: var(--title-color);
}

.widget_shopping_cart .widget_title {
  margin-bottom: 35px;
  border-bottom: none;
}

.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}

.widget_shopping_cart ul li {
  list-style-type: none;
}

.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 30px 30px 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  text-align: left;
}

.widget_shopping_cart .mini_cart_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--body-color);
}

.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 18px;
}

.widget_shopping_cart .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
}

.widget_shopping_cart .total {
  margin-top: 20px;
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--body-font);
}

.widget_shopping_cart .total strong {
  font-family: var(--title-font);
}

.widget_shopping_cart .amount {
  padding-left: 5px;
}

.widget_shopping_cart .th-btn {
  margin-right: 15px;
}

.widget_shopping_cart .th-btn:last-child {
  margin-right: 0;
}

.widget_banner {
  --widget-padding-y: 75px;
  /* Large devices */
}

.widget_banner .icon {
  font-size: 60px;
  color: var(--theme-color);
  margin-bottom: 22px;
}

.widget_banner .subtitle {
  color: var(--white-color);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.widget_banner .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.widget_banner .title a {
  color: var(--theme-color);
}

.widget_banner .title a:hover {
  color: var(--white-color);
}

.widget_banner .link {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--white-color);
}

.widget_banner .link:hover {
  color: var(--theme-color);
}

@media (max-width: 1199px) {
  .widget_banner .subtitle {
    font-size: 20px;
    line-height: normal;
  }
  .widget_banner .title {
    font-size: 24px;
  }
}

.widget_recent_entries ul {
  margin: -0.3em 0 0 0;
  padding: 0;
  list-style: none;
}

.widget_recent_entries ul li > a {
  color: var(--body-color);
  font-weight: 500;
  display: inline-block;
}

.widget_recent_entries ul li > a:hover {
  color: var(--theme-color);
}

.widget_recent_entries ul li span.post-date {
  font-size: 14px;
}

.widget_recent_entries ul li:not(:last-child) {
  border-bottom: 1px solid #dadada;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.widget_recent_comments ul,
.wp-block-latest-comments ul {
  list-style-type: none;
  padding-left: 0;
}

ul.widget_recent_comments,
ol.widget_recent_comments,
.wp-block-latest-comments {
  margin-top: -0.11em;
  padding-left: 0;
}

.widget_recent_comments ol,
.widget_recent_comments ul,
.wp-block-latest-comments ol,
.wp-block-latest-comments ul {
  margin-bottom: 0;
}

.widget_recent_comments li,
.wp-block-latest-comments li {
  margin-bottom: 0;
  color: var(--body-color);
  padding-left: 30px;
  position: relative;
}

.widget_recent_comments li:before,
.wp-block-latest-comments li:before {
  content: "\f086";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--theme-color);
  font-family: var(--icon-font);
}

.widget_recent_comments.has-avatars li,
.wp-block-latest-comments.has-avatars li {
  padding-left: 0;
  padding-bottom: 0 !important;
}

.widget_recent_comments.has-avatars li:before,
.wp-block-latest-comments.has-avatars li:before {
  display: none;
}

.widget_recent_comments .avatar,
.wp-block-latest-comments .avatar {
  margin-top: 0.4em;
}

.widget_recent_comments li:not(:last-child),
.wp-block-latest-comments li:not(:last-child) {
  padding-bottom: 12px;
}

.widget_recent_comments article,
.wp-block-latest-comments article {
  line-height: 1.5;
}

.widget_recent_comments a,
.wp-block-latest-comments a {
  color: inherit;
}

.widget_recent_comments a:hover,
.wp-block-latest-comments a:hover {
  color: var(--theme-color);
}

.wp-block-latest-comments__comment {
  line-height: 1.6;
}

.wp-block-latest-comments__comment a {
  color: var(--body-color);
}

.wp-block-latest-comments__comment a:hover {
  color: var(--theme-color);
}

.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  padding: 10px;
}

.wp-block-calendar,
.calendar_wrap {
  position: relative;
  background-color: #fff;
  padding-bottom: 0;
  border: none;
}

.wp-block-calendar span[class*="wp-calendar-nav"],
.calendar_wrap span[class*="wp-calendar-nav"] {
  position: absolute;
  top: 9px;
  left: 20px;
  font-size: 14px;
  color: var(--white-color);
  font-weight: 400;
  z-index: 1;
  line-height: 1.7;
}

.wp-block-calendar span[class*="wp-calendar-nav"] a,
.calendar_wrap span[class*="wp-calendar-nav"] a {
  color: inherit;
}

.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
  left: auto;
  right: 20px;
}

.wp-block-calendar caption,
.calendar_wrap caption {
  caption-side: top;
  text-align: center;
  color: var(--white-color);
  background-color: var(--theme-color);
}

.wp-block-calendar th,
.calendar_wrap th {
  font-size: 14px;
  padding: 5px 5px;
  border: none;
  text-align: center;
  border-right: 1px solid #fff;
  color: var(--title-color);
  font-weight: 500;
}

.wp-block-calendar th:first-child,
.calendar_wrap th:first-child {
  border-left: 1px solid #eee;
}

.wp-block-calendar th:last-child,
.calendar_wrap th:last-child {
  border-right: 1px solid #eee;
}

.wp-block-calendar table th,
.calendar_wrap table th {
  font-weight: 500;
}

.wp-block-calendar td,
.calendar_wrap td {
  font-size: 14px;
  padding: 5px 5px;
  color: #01133c;
  border: 1px solid #eee;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.wp-block-calendar #today,
.calendar_wrap #today {
  color: var(--theme-color);
  background-color: var(--white-color);
  border-color: #ededed;
}

.wp-block-calendar thead,
.calendar_wrap thead {
  background-color: #fff;
}

.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}

.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
  display: none;
}

.wp-block-calendar a,
.calendar_wrap a {
  color: inherit;
  text-decoration: none;
}

.wp-block-calendar a:hover,
.calendar_wrap a:hover {
  color: var(--title-color);
}

.wp-block-calendar {
  margin-bottom: 30px;
  border: none;
  padding-bottom: 0;
}

.wp-block-calendar table caption {
  color: var(--white-color);
}

ul.widget_rss, ul.wp-block-rss,
ol.widget_rss,
ol.wp-block-rss {
  padding-left: 0;
}

.widget_rss,
.wp-block-rss {
  list-style-type: none;
}

.widget_rss ul,
.wp-block-rss ul {
  margin: -0.2em 0 -0.5em 0;
  padding: 0;
  list-style: none;
}

.widget_rss ul .rsswidget,
.wp-block-rss ul .rsswidget {
  color: var(--title-color);
  font-family: var(--theme-font);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.widget_rss ul .rssSummary,
.wp-block-rss ul .rssSummary {
  font-size: 14px;
  margin-bottom: 7px;
  line-height: 1.5;
}

.widget_rss ul a,
.wp-block-rss ul a {
  display: block;
  font-weight: 600;
  color: inherit;
}

.widget_rss ul a:hover,
.wp-block-rss ul a:hover {
  color: var(--theme-color);
}

.widget_rss ul .rss-date,
.wp-block-rss ul .rss-date {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 400;
  color: var(--title-color);
}

.widget_rss ul .rss-date:before,
.wp-block-rss ul .rss-date:before {
  content: "\f073";
  font-family: var(--icon-font);
  margin-right: 10px;
  font-weight: 300;
  color: var(--theme-color);
}

.widget_rss ul cite,
.wp-block-rss ul cite {
  font-weight: 500;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
}

.widget_rss ul cite:before,
.wp-block-rss ul cite:before {
  content: "";
  position: relative;
  top: -1px;
  left: 0;
  width: 20px;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background-color: var(--theme-color);
}

.widget_rss li:not(:last-child),
.wp-block-rss li:not(:last-child) {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}

.widget_rss a:hover,
.wp-block-rss a:hover {
  color: var(--theme-color);
}

.textwidget {
  margin-top: -0.1em;
}

.sidebar-area .widget_shopping_cart .th-btn {
  margin-right: 10px;
  padding: 8px 22px;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .sidebar-shop .widget {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .sidebar-shop .widget {
    margin-bottom: 24px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_title {
    margin: -0.12em 0 30px 0;
  }
  .author-widget-wrap .name {
    font-size: 22px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .widget {
    padding: 30px 20px;
  }
}

@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 14px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}



.footer-text {
  margin-top: -0.5em;
  margin-bottom: 25px;
}

.social-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-box .social-title {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 0;
}

.icon-group a {
  color: var(--white-color);
  font-size: 18px;
  margin-right: 17px;
}

.icon-group a:last-child {
  margin-right: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .th-widget-about .about-text {
    margin-bottom: 20px;
  }
  .social-box.mb-30 {
    margin-bottom: 25px;
  }
}

.simple-icon {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 16px;
  position: relative;
  color: var(--white-color);
}

.simple-icon:hover {
  color: var(--theme-color);
}

.simple-icon:has(.badge) {
  padding-right: 8px;
}

.simple-icon .badge {
  top: -8px;
  right: 0;
  font-size: 12px;
}


.social-links .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: var(--body-color);
}

.social-links a {
  font-size: 16px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.social-links a:last-child {
  margin-right: 0 !important;
}

.social-links a:hover {
  color: var(--theme-color);
}

.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}

.header-logo a {
  display: block;
}

.header-logo a:hover {
  color: var(--theme-color);
}

.header-logo .logo-mask {
  height: 100%;
  width: 100%;
  mix-blend-mode: color;
  background: var(--theme-color);
  position: absolute;
  top: 0;
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
}

.header-links li:not(:last-child) {
  margin: 0 34px 0 0;
}

.header-links li:not(:last-child):after {
  content: '';
  height: 16px;
  width: 2px;
  background-color: var(--th-border-color);
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -8px;
}

.header-links li > i {
  margin-right: 11px;
  color: var(--theme-color);
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--body-color);
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
  margin-right: 6px;
}

.header-links .social-links a {
  font-size: 14px;
}

.header-notice {
  margin: 0;
  font-family: var(--body-font);
}

.header-notice a {
  color: var(--theme-color);
}

.header-notice a:hover {
  text-shadow: -0.25px -0.25px 0 var(--theme-color), 0.25px 0.25px var(--theme-color);
}

.header-top {
  padding: 14.2px 0;
  background-color: var(--title-color);
}

.header-top a:hover {
  color: var(--theme-color);
}

.dropdown-link {
  position: relative;
}

.dropdown-link > a {
  color: var(--body-color);
}

.dropdown-link > a i {
  color: var(--theme-color);
  margin-right: 5px;
}

.dropdown-toggle::after {
  content: "\f078";
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
  margin-top: -1px;
}

.dropdown-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 6px) !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
      -ms-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  padding: 8px 20px !important;
  text-align: center;
  border-color: var(--th-border-color);
  background: var(--black-color3);
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.06);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
  font-weight: 400;
  font-size: 14px;
}

.dropdown-menu a {
  color: var(--body-color) !important;
}

.dropdown-menu a:hover {
  color: var(--theme-color) !important;
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--black-color3);
  z-index: -1;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid var(--th-border-color);
  border-left: 1px solid var(--th-border-color);
}



.info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 11px;
}

.info-box:last-child {
  margin-bottom: 0;
}

.info-box_icon {
  font-size: 16px;
  background-color: transparent;
  color: var(--theme-color);
  text-align: center;
  margin-right: 10px;
}

.info-box_text {
  display: block;
  color: var(--body-color);
  margin-top: -0.45em;
  margin-bottom: -0.45em;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.info-box_link {
  display: inline-block;
  color: var(--body-color);
}

.info-box_link:hover {
  color: var(--theme-color);
}

/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 20px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 3px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: "\f054";
  position: relative;
  margin-left: 8px;
  font-weight: 500;
  font-size: 15px;
  color: inherit;
  font-family: var(--icon-font);
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  word-break: break-word;
  font-weight: 600;
  font-size: 20px;
  font-family: var(--title-font);
  text-transform: uppercase;
  color: var(--white-color);
}

.breadcumb-menu a {
  color: var(--theme-color);
}

.breadcumb-title {
  margin: -0.18em 0 -0.18em 0;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white-color);
}

@media (min-width: 1300px) {
  .breadcumb-title {
    font-size: 54px;
  }
}

.breadcumb-wrapper {
  background-color: var(--gray-color);
  padding: 135px 0;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.breadcumb-wrapper .breadcumb-shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.breadcumb-wrapper .breadcumb-shape2 {
  position: absolute;
  right: 0;
  top: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper {
    padding: 140px 0;
  }
  .breadcumb-menu {
    margin: 25px 0 -0.5em 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding: 110px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-wrapper .breadcumb-shape1 {
    width: 120px;
  }
  .breadcumb-wrapper .breadcumb-shape2 {
    width: 100px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-wrapper {
    padding: 100px 0;
  }
  .breadcumb-title {
    font-size: 34px;
  }
  .breadcumb-wrapper .breadcumb-shape2,
  .breadcumb-wrapper .breadcumb-shape1 {
    display: none;
  }
}

/*------------------- 4.5. Pagination  -------------------*/
.wp-block-query-pagination-numbers,
.th-pagination {
  margin-bottom: 40px;
}

.wp-block-query-pagination-numbers ul,
.th-pagination ul {
  margin: 0;
  padding: 0;
}

.wp-block-query-pagination-numbers li,
.th-pagination li {
  display: inline-block;
  margin: 0 3px;
  list-style-type: none;
}

.wp-block-query-pagination-numbers li:last-child,
.th-pagination li:last-child {
  margin-right: 0;
}

.wp-block-query-pagination-numbers li:first-child,
.th-pagination li:first-child {
  margin-left: 0;
}

.wp-block-query-pagination-numbers span,
.wp-block-query-pagination-numbers a,
.th-pagination span,
.th-pagination a {
  display: inline-block;
  text-align: center;
  position: relative;
  border: none;
  color: var(--title-color);
  background-color: var(--theme-color);
  width: 82px;
  height: 56px;
  line-height: 56px;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

.wp-block-query-pagination-numbers span .btn-border,
.wp-block-query-pagination-numbers a .btn-border,
.th-pagination span .btn-border,
.th-pagination a .btn-border {
  position: absolute;
  height: calc(100% - 3px);
  width: calc(100% - 3px);
  top: 1.5px;
  left: 1.5px;
  -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
          clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
  background: var(--title-color);
  z-index: -2;
}

.wp-block-query-pagination-numbers span:before, .wp-block-query-pagination-numbers span:after,
.wp-block-query-pagination-numbers a:before,
.wp-block-query-pagination-numbers a:after,
.th-pagination span:before,
.th-pagination span:after,
.th-pagination a:before,
.th-pagination a:after {
  content: "";
  position: absolute;
  background-color: var(--title-color);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  top: 5px;
  left: 5px;
  width: 16px;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-clip-path: polygon(90% 0%, 100% 0%, 30% 50%, 100% 100%, 90% 100%, 20% 50%);
          clip-path: polygon(90% 0%, 100% 0%, 30% 50%, 100% 100%, 90% 100%, 20% 50%);
}

.wp-block-query-pagination-numbers span:after,
.wp-block-query-pagination-numbers a:after,
.th-pagination span:after,
.th-pagination a:after {
  right: 5px;
  left: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.wp-block-query-pagination-numbers span:active, .wp-block-query-pagination-numbers span:hover,
.wp-block-query-pagination-numbers a:active,
.wp-block-query-pagination-numbers a:hover,
.th-pagination span:active,
.th-pagination span:hover,
.th-pagination a:active,
.th-pagination a:hover {
  background: var(--white-color);
}

.wp-block-query-pagination-numbers span:has(.btn-border),
.wp-block-query-pagination-numbers a:has(.btn-border),
.th-pagination span:has(.btn-border),
.th-pagination a:has(.btn-border) {
  background-color: var(--white-color);
  color: var(--white-color);
}

.wp-block-query-pagination-numbers span:has(.btn-border):before, .wp-block-query-pagination-numbers span:has(.btn-border):after,
.wp-block-query-pagination-numbers a:has(.btn-border):before,
.wp-block-query-pagination-numbers a:has(.btn-border):after,
.th-pagination span:has(.btn-border):before,
.th-pagination span:has(.btn-border):after,
.th-pagination a:has(.btn-border):before,
.th-pagination a:has(.btn-border):after {
  background: var(--white-color);
  -webkit-clip-path: polygon(100% 5%, 100% 0%, 25% 50%, 100% 100%, 100% 95%, 30% 50%);
          clip-path: polygon(100% 5%, 100% 0%, 25% 50%, 100% 100%, 100% 95%, 30% 50%);
}

.wp-block-query-pagination-numbers span:has(.btn-border).active, .wp-block-query-pagination-numbers span:has(.btn-border):hover,
.wp-block-query-pagination-numbers a:has(.btn-border).active,
.wp-block-query-pagination-numbers a:has(.btn-border):hover,
.th-pagination span:has(.btn-border).active,
.th-pagination span:has(.btn-border):hover,
.th-pagination a:has(.btn-border).active,
.th-pagination a:has(.btn-border):hover {
  background: var(--theme-color);
  color: var(--theme-color);
}

.wp-block-query-pagination-numbers span:has(.btn-border).active .btn-border, .wp-block-query-pagination-numbers span:has(.btn-border):hover .btn-border,
.wp-block-query-pagination-numbers a:has(.btn-border).active .btn-border,
.wp-block-query-pagination-numbers a:has(.btn-border):hover .btn-border,
.th-pagination span:has(.btn-border).active .btn-border,
.th-pagination span:has(.btn-border):hover .btn-border,
.th-pagination a:has(.btn-border).active .btn-border,
.th-pagination a:has(.btn-border):hover .btn-border {
  background: var(--title-color);
}

.wp-block-query-pagination-numbers span:has(.btn-border).active:before, .wp-block-query-pagination-numbers span:has(.btn-border).active:after, .wp-block-query-pagination-numbers span:has(.btn-border):hover:before, .wp-block-query-pagination-numbers span:has(.btn-border):hover:after,
.wp-block-query-pagination-numbers a:has(.btn-border).active:before,
.wp-block-query-pagination-numbers a:has(.btn-border).active:after,
.wp-block-query-pagination-numbers a:has(.btn-border):hover:before,
.wp-block-query-pagination-numbers a:has(.btn-border):hover:after,
.th-pagination span:has(.btn-border).active:before,
.th-pagination span:has(.btn-border).active:after,
.th-pagination span:has(.btn-border):hover:before,
.th-pagination span:has(.btn-border):hover:after,
.th-pagination a:has(.btn-border).active:before,
.th-pagination a:has(.btn-border).active:after,
.th-pagination a:has(.btn-border):hover:before,
.th-pagination a:has(.btn-border):hover:after {
  background: var(--theme-color);
}

.wp-block-query-pagination-next {
  display: inline-block;
  text-align: center;
  position: relative;
  border: none;
  color: var(--title-color);
  background-color: var(--smoke-color2);
  min-width: 56px;
  height: 56px;
  line-height: 56px;
  z-index: 1;
  font-size: 16px;
  padding: 0 20px;
  font-weight: 500;
  border-radius: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.wp-block-query-pagination-next.active, .wp-block-query-pagination-next:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

/* Small devices */
@media (max-width: 767px) {
  .wp-block-query-pagination-numbers span,
  .wp-block-query-pagination-numbers a,
  .th-pagination span,
  .th-pagination a {
    width: 60px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .wp-block-query-pagination-numbers span:has(.btn-border):before, .wp-block-query-pagination-numbers span:has(.btn-border):after,
  .wp-block-query-pagination-numbers a:has(.btn-border):before,
  .wp-block-query-pagination-numbers a:has(.btn-border):after,
  .th-pagination span:has(.btn-border):before,
  .th-pagination span:has(.btn-border):after,
  .th-pagination a:has(.btn-border):before,
  .th-pagination a:has(.btn-border):after {
    background: var(--white-color);
    -webkit-clip-path: polygon(100% 5%, 100% 0%, 25% 50%, 100% 100%, 100% 95%, 30% 50%);
    clip-path: polygon(80% 10%, 80% 0%, 15% 50%, 100% 120%, 90% 100%, 30% 50%);
  }
}

/*------------------- 4.6. Blog  -------------------*/
/* Blockquote ---------------------*/
blockquote,
.wp-block-quote {
  font-size: 16px;
  line-height: 1.625;
  padding: 40px 60px;
  font-weight: 500;
  display: block;
  position: relative;
  background-color: transparent;
  margin: 42px 0 50px 0;
  color: var(--white-color);
  font-family: var(--body-font);
  font-style: italic;
  border: 1px solid var(--theme-color) !important;
  border-radius: 20px;
}

blockquote p,
.wp-block-quote p {
  font-size: inherit;
  font-family: inherit;
  margin-top: -0.3em;
  margin-bottom: 9px;
  line-height: inherit;
  color: inherit;
  width: 100%;
  position: relative;
  z-index: 3;
}

blockquote p a,
.wp-block-quote p a {
  color: inherit;
}

blockquote:before,
.wp-block-quote:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  height: 50px;
  width: 33px;
  background-color: var(--black-color3);
}

blockquote:after,
.wp-block-quote:after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0px;
  height: 20px;
  width: 25px;
  background-color: var(--theme-color);
  -webkit-clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
          clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
}

blockquote cite,
.wp-block-quote cite {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  font-style: normal;
  font-family: var(--title-font);
  white-space: nowrap;
  position: absolute;
  bottom: -17px;
  left: 80px;
  background-color: var(--theme-color);
  color: var(--title-color);
  padding: 7px 40px 7px 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
  border-radius: 5px;
}

blockquote cite br,
.wp-block-quote cite br {
  display: none;
}

blockquote.is-large:not(.is-style-plain), blockquote.is-style-large:not(.is-style-plain), blockquote.style-left-icon, blockquote.has-text-align-right,
.wp-block-quote.is-large:not(.is-style-plain),
.wp-block-quote.is-style-large:not(.is-style-plain),
.wp-block-quote.style-left-icon,
.wp-block-quote.has-text-align-right {
  padding: 40px;
  margin-bottom: 30px;
}

blockquote.style-left-icon,
.wp-block-quote.style-left-icon {
  font-size: 18px;
  color: var(--body-color);
  font-weight: 400;
  line-height: 1.556;
  background-color: var(--title-color);
  padding-left: 160px;
}

blockquote.style-left-icon:before,
.wp-block-quote.style-left-icon:before {
  right: unset;
  left: 56px;
  top: 60px;
  font-size: 6rem;
  font-weight: 400;
  line-height: 4rem;
  color: var(--theme-color);
  text-shadow: none;
}

blockquote.style-left-icon cite,
.wp-block-quote.style-left-icon cite {
  color: var(--title-color);
}

blockquote.style-left-icon cite:before,
.wp-block-quote.style-left-icon cite:before {
  background-color: var(--black-color3);
  top: 8px;
}

blockquote:not(:has(> cite)) p:last-child,
.wp-block-quote:not(:has(> cite)) p:last-child {
  margin-bottom: -0.3em;
}

blockquote p:has(cite),
.wp-block-quote p:has(cite) {
  padding-bottom: 10px;
}

blockquote p cite,
.wp-block-quote p cite {
  margin-top: 20px;
  margin-bottom: -0.5em;
  bottom: -32px;
}

.wp-block-pullquote {
  color: var(--white-color);
  padding: 0;
}

blockquote.has-very-dark-gray-color {
  color: var(--title-color) !important;
}

.wp-block-pullquote blockquote,
.wp-block-pullquote p {
  color: var(--title-color);
}

.wp-block-pullquote cite {
  position: absolute;
  color: var(--white-color) !important;
}

.wp-block-column blockquote,
.wp-block-column .wp-block-quote {
  padding: 40px 15px 40px 15px;
}

.wp-block-column blockquote:before,
.wp-block-column .wp-block-quote:before {
  width: 100%;
  height: 60px;
  font-size: 30px;
}

.wp-block-column blockquote.style-left-icon, .wp-block-column blockquote.is-large:not(.is-style-plain), .wp-block-column blockquote.is-style-large:not(.is-style-plain), .wp-block-column blockquote.has-text-align-right,
.wp-block-column .wp-block-quote.style-left-icon,
.wp-block-column .wp-block-quote.is-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.is-style-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.has-text-align-right {
  padding: 40px 15px 40px 15px;
}

.wp-block-column blockquote cite,
.wp-block-column .wp-block-quote cite {
  font-size: 14px;
  left: 20px;
}

.wp-block-column blockquote cite:before,
.wp-block-column .wp-block-quote cite:before {
  bottom: 6px;
}

.wp-block-pullquote__citation::before,
.wp-block-pullquote cite::before,
.wp-block-pullquote footer::before {
  bottom: 7px;
}

.has-cyan-bluish-gray-background-color blockquote,
.has-cyan-bluish-gray-background-color .wp-block-quote {
  background-color: var(--white-color);
}

/* Small devices */
@media (max-width: 767px) {
  .wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 90%;
  }
  blockquote,
  .wp-block-quote {
    padding: 30px 40px;
  }
  blockquote cite,
  .wp-block-quote cite {
    font-size: 18px;
    left: 30px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .wp-block-quote.is-large:not(.is-style-plain) p,
  .wp-block-quote.is-style-large:not(.is-style-plain) p {
    font-size: 1.2em;
  }
  blockquote,
  .wp-block-quote {
    padding: 30px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  blockquote cite,
  .wp-block-quote cite {
    font-size: 18px;
    padding-left: 22px;
  }
  blockquote cite:before,
  .wp-block-quote cite:before {
    width: 20px;
  }
}



.share-links-title {
  font-size: 24px;
  color: var(--white-color);
  font-family: var(--title-font);
  font-weight: 600;
  margin: 0 15px 0 0;
  display: inline-block;
}

.share-links {
  margin: 52px 0 0 0;
}

.share-links > .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  --bs-gutter-y: 20px;
}

.share-links .wp-block-tag-cloud,
.share-links .tagcloud {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}

.share-links .wp-block-tag-cloud a,
.share-links .tagcloud a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body-font);
  text-transform: capitalize;
  line-height: 1;
  color: var(--white-color);
  background-color: var(--title-color);
  border-radius: 0px;
  position: relative;
  -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
          clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
}

.share-links .wp-block-tag-cloud a span,
.share-links .tagcloud a span {
  -webkit-clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
          clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
  background: var(--title-color);
  display: inline-block;
  padding: 16px 30px;
  margin: 1px;
}

.share-links .wp-block-tag-cloud a:before, .share-links .wp-block-tag-cloud a:after,
.share-links .tagcloud a:before,
.share-links .tagcloud a:after {
  content: "";
  position: absolute;
  background-color: var(--white-color);
  z-index: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  top: 5px;
  left: 5px;
  width: 14px;
  height: calc(100% - 10px);
  border-radius: 0;
  -webkit-clip-path: polygon(85% 0, 100% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%);
          clip-path: polygon(85% 0, 100% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%);
}

.share-links .wp-block-tag-cloud a:after,
.share-links .tagcloud a:after {
  right: 5px;
  left: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.share-links .wp-block-tag-cloud a:hover,
.share-links .tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--title-color) !important;
}

.share-links .wp-block-tag-cloud a:hover:before, .share-links .wp-block-tag-cloud a:hover:after,
.share-links .tagcloud a:hover:before,
.share-links .tagcloud a:hover:after {
  background: var(--title-color);
}



/*------------------- 4.7. Comments  -------------------*/
.th-comment-form {
  margin: 0px 0 40px 0;
  padding: 40px;
  border-radius: 30px;
  position: relative;
  background: var(--black-color3);
}

.th-comment-form .row {
  --bs-gutter-x: 20px;
}

.th-comment-form .form-title {
  margin-top: -0.35em;
}

.th-comment-form .form-title a#cancel-comment-reply-link {
  font-size: 0.7em;
  text-decoration: underline;
}

.th-comment-form .form-text {
  margin-bottom: 25px;
}

.th-comment-form .form-group > i {
  color: var(--body-color);
}








table.variations {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

table.variations td {
  padding: 0;
}

table.variations td.label {
  padding-right: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

table.variations select {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  margin: 0;
  padding-right: 54px;
  padding-left: 20px;
  height: 50px;
}

table.variations .reset_variations {
  margin-left: 16px;
  display: inline-block;
  position: absolute;
  left: 100%;
  bottom: 25px;
}

.wooscp-table-items a.added_to_cart.wc-forward {
  margin-left: 15px;
  text-decoration: underline;
}

.tinvwl_added_to_wishlist.tinv-modal.tinv-modal-open {
  z-index: 1111;
}

table.woocommerce-product-attributes {
  margin-bottom: 30px;
}


.rating-select label {
  margin: 0;
  margin-right: 10px;
}

.rating-select p.stars {
  margin-bottom: 0;
  line-height: 1;
}

.rating-select p.stars a {
  position: relative;
  height: 14px;
  width: 18px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.rating-select p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 14px;
  line-height: 1;
  font-family: var(--icon-font);
  content: "\e28b";
  font-weight: 400;
  text-indent: 0;
  color: var(--yellow-color);
}

.rating-select p.stars a:hover ~ a::before {
  content: "\e28b";
  font-weight: 400;
}

.rating-select p.stars:hover a::before {
  content: "\e28b";
  font-weight: 700;
}

.rating-select p.stars.selected a.active::before {
  content: "\e28b";
  font-weight: 700;
}

.rating-select p.stars.selected a.active ~ a::before {
  content: "\e28b";
  font-weight: 400;
}

.rating-select p.stars.selected a:not(.active)::before {
  content: "\e28b";
  font-weight: 700;
}



/*------------------- 4.00. Products  -------------------*/
.th-product {
  text-align: center;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  background-color: transparent;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
  padding: 0px;
}

.th-product .product-title {
  font-size: 24px;
  margin: 4px 0 6px 0;
  font-weight: 700;
  color: var(--white-color);
}

.th-product .product-title a {
  color: inherit;
}

.th-product .product-title a:hover {
  color: var(--theme-color);
}

.th-product .category,
.th-product .product-category {
  color: var(--body-color);
  margin-bottom: 0px;
  display: block;
}

.th-product .category:hover,
.th-product .product-category:hover {
  color: var(--theme-color);
}

.th-product .product-tag {
  font-size: 14px;
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--black-color3);
  border: 1px solid var(--theme-color);
  color: var(--white-color);
  padding: 0 12px;
  min-width: 60px;
  z-index: 3;
  border-radius: 10px;
  line-height: 24px;
}

.th-product .woocommerce-product-rating {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 5px;
}


.th-product .price {
  display: block;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: -0.4em;
  font-family: var(--body-font);
}

.th-product .price del {
  margin-left: 10px;
  color: #a9a9a9;
}

.th-product .product-img {
  --space: 0px;
  overflow: hidden;
  position: relative;
  margin: 0 0 23px 0;
  text-align: center;
  background-color: var(--black-color3);
  z-index: 2;
  border-radius: 20px;
  padding-bottom: 20px;
}

.th-product .product-img:before {
  --space: 0px;
  content: '';
  height: calc(100% - var(--space)*2);
  width: calc(100% - var(--space)*2);
  border-radius: inherit;
  position: absolute;
  top: var(--space);
  left: var(--space);
  background-color: var(--theme-color);
  z-index: 1;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-product .product-img .overlay {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-product .product-img img {
  width: 100%;
  padding: 15px;
border-radius: 30px !important;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.th-product .actions {
  position: absolute;
  top: 20px;
  right: 17px;
  text-align: center;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: grid;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  width: 40px;
}

.th-product .actions .icon-btn {
  --btn-size: 36px;
  font-size: 12px;
  border-color: var(--theme-color3);
  color: var(--white-color);
  border-radius: 99px;
  margin-bottom: 10px;
  background: var(--black-color3);
}

.th-product .actions .icon-btn:hover {
  color: var(--white-color);
  border-color: var(--theme-color);
}

.th-product .actions > * {
  margin: 0 0;
}

.th-product .actions > * > a {
  margin: 0;
}

.th-product .icon-btn {
  -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}




.th-product .add_to_cart_button.added {
  display: none;
}

.th-product .added_to_cart {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: var(--title-color);
  color: var(--white-color);
  font-size: 0;
  text-align: center;
  border-radius: 99px;
  border: none;
  margin-bottom: 10px;
}

.th-product .added_to_cart:after {
  content: "\f07a";
  position: relative;
  font-family: var(--icon-font);
  font-size: 16px;
  font-weight: 700;
}

.th-product .added_to_cart:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-product .action-btn {
  background-color: var(--white-color);
  font-size: 14px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 13px 25px;
}

.th-product:hover .product-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.th-product:hover .product-img .overlay {
  opacity: 1;
}

.th-product:hover .product-img:before {
  opacity: 0;
}

.th-product:hover .actions {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.th-product:hover .icon-btn {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.th-product.list-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  height: 100%;
  padding: 10px;
}

.th-product.list-view .product-img {
  --space: 0px;
  width: 100%;
  width: 87px;
  margin: 0;
  border-radius: 10px;
}

.th-product.list-view .product-img:before {
  --space: 0px;
}

.th-product.list-view .product-category {
  font-size: 13px;
  line-height: 23px;
  margin-top: -3px;
}


.th-product.list-view .product-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 4px 0 13px;
}

.th-product.list-view .actions {
  --icon-gap-x: 2px;
  width: 100%;
  right: 0;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.th-product.list-view .actions .icon-btn {
  --btn-size: 36px;
  --btn-font-size: 14px;
  background-color: var(--theme-color2);
  color: var(--white-color);
  border: none;
}

.th-product.list-view .actions .icon-btn:hover {
  background-color: var(--title-color);
}


.th-product.list-view .added_to_cart {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.th-product.list-view .added_to_cart:after {
  font-size: 16px;
}

.th-product.list-view .tag {
  top: 8px;
  right: 8px;
  padding: 0px 15px;
}

.th-product.list-view .product-title {
  font-size: 14px;
  margin: 0;
}

.th-product.list-view .price {
  font-weight: 600;
  font-size: 13px;
  line-height: 23px;
  color: var(--theme-color);
}

.product-list-area {
  margin-bottom: -24px;
}

#productCarousel .slick-arrow {
  top: 37.5%;
}


.woosq-product > .product .summary {
  display: grid;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background: var(--black-color3);
}

.woosq-product .thumbnails {
  background: var(--black-color3);
}

.woosq-product .thumbnails .slick-list {
  display: block;
}

.woosq-product .thumbnails .slick-dots li button {
  width: 12px;
  height: 12px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  background-color: var(--theme-color);
  opacity: 0.4;
}

.woosq-product .thumbnails .slick-dots li button:before {
  display: none;
}

.woosq-product .thumbnails .slick-dots li.slick-active button {
  opacity: 1;
}

.woosq-product .tinv-wraper {
  display: none;
}

.th-sort-bar {
  padding: 10px;
  margin: 0 0 24px 0;
  background-color: var(--black-color3);
  border-radius: 10px;
}

.th-sort-bar .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 15px;
}

.th-sort-bar select {
  height: 50px;
  border: 1px solid var(--theme-color);
  background-color: var(--black-color3);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  font-size: 16px;
  margin: 0;
  color: var(--body-color);
  background-blend-mode: exclusion;
}

.th-sort-bar .woocommerce-result-count {
  padding-left: 15px;
  margin-bottom: 0;
  color: var(--body-color);
}

.th-sort-bar .nav a {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border: 1px solid var(--th-border-color);
  background-color: var(--white-color);
  text-align: center;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--body-color);
  margin: 0 0 0 10px;
  border-radius: 5px;
}

.th-sort-bar .nav a.active, .th-sort-bar .nav a:hover {
  color: var(--theme-color);
}

.product-thumb-area {
  position: relative;
  margin-right: 10px;
}

.product-thumb-area .product-thumb-tab {
  position: absolute;
  top: 0;
  left: 0;
}

.product-thumb-tab {
  --thumb: 120px;
  --gap: 10px;
  max-width: var(--thumb);
  margin-left: calc(0px - var(--thumb)/2);
  position: relative;
  z-index: 3;
  display: grid;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  height: 100%;
}

.product-thumb-tab .tab-btn {
  background-color: var(--white-color);
  cursor: pointer;
  height: var(--thumb);
  width: var(--thumb);
  padding: var(--gap);
}

.product-thumb-tab .tab-btn img {
  max-width: 100%;
}

.product-thumb-tab .tab-btn:not(:last-of-type) {
  margin-bottom: 20px;
}

.product-thumb-tab .indicator {
  position: absolute;
  top: calc(var(--pos-y) + var(--gap));
  left: calc(var(--pos-x) + var(--gap));
  width: calc(var(--width-set) - var(--gap)*2);
  height: calc(var(--height-set) - var(--gap)*2);
  border: 2px solid var(--theme-color);
  pointer-events: none;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.product-big-img {
  background-color: var(--black-color3);
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
}

.product-big-img .img {
  width: 100%;
}

.product-big-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.product-big-img .slider-pagination {
  position: absolute;
  bottom: 40px;
  left: 0;
}

.product-big-img .slick-dots {
  margin: -11px 0 0 0 !important;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  --border-color: #c0c0c0;
}

.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: none;
  width: 200px;
  height: 200px;
}

.magnify {
  position: relative;
  cursor: none;
}

.magnify .magnifier {
  height: 180px;
  width: 180px;
  position: absolute;
  z-index: 20;
  box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background-size: 700%;
  background-repeat: no-repeat;
  margin-left: -90px !important;
  margin-top: -90px !important;
  pointer-events: none;
  display: none;
}

.magnify .magnified {
  display: block;
  z-index: 10;
  margin: auto;
  width: 100%;
  height: 100%;
}

.magnify img {
  width: 100%;
  height: 100%;
}

.quantity {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.quantity > .screen-reader-text {
  display: inline-block;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  margin: 0;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  margin-right: 10px;
}

.quantity .qty-btn,
.quantity .qty-input {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: none;
  border-right: none;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-align: center;
  color: var(--body-color);
  font-size: 18px;
  font-weight: 600;
}

.quantity .qty-btn:last-child,
.quantity .qty-input:last-child {
  border-right: none;
}

.quantity .qty-btn {
  font-size: 16px;
}

.product_meta {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--body-font);
  margin: 35px 0 0 0;
}

.product_meta > span {
  display: block;
  margin-bottom: 5px;
  color: var(--white-color);
  font-weight: bold;
}

.product_meta > span:last-child {
  margin-bottom: 0;
}

.product_meta > span a {
  color: inherit;
}

.product_meta > span a:hover {
  color: var(--theme-color);
}

.product_meta > span > a,
.product_meta > span > span {
  position: relative;
  color: var(--body-color);
  font-weight: 400;
}

.product_meta > span > a:after,
.product_meta > span > span:after {
  content: ",";
  margin-right: 5px;
}

.product_meta > span > a:last-child:after,
.product_meta > span > span:last-child:after {
  display: none;
}

.product_meta > span > a:first-child,
.product_meta > span > span:first-child {
  margin-left: 7px;
}

.product-tab-style1 {
  --th-border-color: rgba(69, 248, 130, 0.2);
  border-bottom: 1px solid var(--th-border-color);
  margin: 95px auto 40px auto;
  padding-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

#productTabContent {
  margin-bottom: -10px;
}

#additional_information {
  margin-bottom: 40px;
}

.product-inner-list > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.product-inner-list li {
  position: relative;
  padding-left: 15px;
}

.product-inner-list li:before {
  content: "-";
  position: absolute;
  left: 0;
}

.share-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 8px;
}

.share-title i {
  color: var(--theme-color);
}

.summary-content .product-title,
.product-about .product-title {
  margin: 0 0 14px 0;
  color: var(--white-color);
}

.summary-content .product_title,
.product-about .product_title {
  margin-bottom: 20px !important;
  color: var(--white-color);
}

.summary-content > .price,
.product-about > .price {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 800;
  color: var(--white-color);
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 19px;
  margin-top: -0.2em;
}

.summary-content > .price del,
.product-about > .price del {
  color: var(--gray-color);
  font-weight: 500;
  margin-left: 15px;
}

.summary-content .woocommerce-product-rating,
.summary-content .product-rating,
.product-about .woocommerce-product-rating,
.product-about .product-rating {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 2px;
  font-size: 16px;
  line-height: 20px;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  margin-bottom: 22px;
}


.summary-content .woocommerce-review-link,
.product-about .woocommerce-review-link {
  color: var(--body-color);
}

.summary-content .checklist,
.product-about .checklist {
  margin: 29px 0 29px 0;
}

.summary-content .actions,
.product-about .actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px;
  margin: 35px 0 27px 0;
}

.summary-content .actions .th-btn .btn-icon,
.product-about .actions .th-btn .btn-icon {
  padding: 10.5px 15px 10.5px 15px;
}

.summary-content .actions .icon-btn,
.product-about .actions .icon-btn {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--title-color);
  border-radius: 0px;
}

.summary-content .actions .icon-btn:hover,
.product-about .actions .icon-btn:hover {
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
}

.summary-content .share,
.product-about .share {
  margin-top: 25px;
}

.summary-content .th-social a,
.product-about .th-social a {
  --icon-size: 40px;
  line-height: 38px;
  font-size: 14px;
  border: 1px solid var(--th-border-color);
  border-radius: 0;
}

.summary-content .th-social a:hover,
.product-about .th-social a:hover {
  border-color: var(--theme-color);
}

.summary-content .quantity,
.product-about .quantity {
  position: relative;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.summary-content .quantity:after,
.product-about .quantity:after {
  content: '';
  height: 100%;
  width: 1px;
  background-color: var(--th-border-color);
  position: absolute;
  top: 0;
  left: 55px;
}

.summary-content .quantity .qty-input,
.product-about .quantity .qty-input {
  width: 112px;
  height: 56px;
  border: 1px solid var(--th-border-color);
  background-color: transparent;
  color: var(--white-color);
  padding: 0 21px;
  text-align: left;
  font-weight: 500;
  border-radius: 0px;
}

.summary-content .quantity .qty-btn,
.product-about .quantity .qty-btn {
  color: var(--white-color);
  background-color: transparent;
  position: absolute;
  right: 21px;
  height: auto;
  width: auto;
  border: none;
  line-height: 16px;
}

.summary-content .quantity .quantity-minus,
.product-about .quantity .quantity-minus {
  bottom: 10px;
  z-index: 1;
}

.summary-content .quantity .quantity-plus,
.product-about .quantity .quantity-plus {
  top: 10px;
}


#description {
  margin-bottom: 30px;
}

.product-details .th-comments-wrap {
  margin-top: 0;
}

.product-details .border-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.product-details .border-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background-color: var(--theme-color);
}

.product-inner-title {
  font-size: 32px;
  border-bottom: 1px solid var(--th-border-color);
  padding: 0 0 7px 0;
  margin: 0 0 30px 0;
}

.related-product-wrapper {
  padding-top: 115px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .th-product.list-view .product-img {
    max-width: 150px;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .product-thumb-tab {
    --thumb: 100px;
    margin-left: -40px;
  }
  .product-thumb-area {
    margin-right: 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .th-sort-bar select {
    min-width: auto;
  }
  .product-tab-style1 {
    margin: 55px 0 40px 0;
  }
  .summary-content,
  .product-about {
    padding-left: 0;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .product-big-img {
    margin-bottom: 40px;
  }
  .product-thumb-tab {
    margin-left: -10px;
  }
  .th-product-box.list-view .product-img {
    max-width: 150px;
  }
  .th-sort-bar .row {
    --bs-gutter-x: 20px;
  }
  .th-sort-bar .nav a:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .th-sort-bar .nav a:last-child:before {
    display: none;
  }
  .woosq-product > .product .thumbnails {
    max-height: 400px;
    min-height: 200px;
    padding: 10px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .th-sort-bar {
    text-align: center;
    padding: 10px 15px 15px 15px;
  }
  .th-sort-bar .nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .th-sort-bar select {
    margin: 0 auto;
  }
  .th-sort-bar .woocommerce-result-count {
    padding-left: 0;
  }
  .th-product-box.list-view .product-img {
    max-width: 130px;
  }
  .th-product-box.list-view .actions {
    --btn-size: 30px;
    --btn-font-size: 10px;
    --icon-gap-x: 2px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .product-about .actions {
    gap: 15px 15px;
  }
  .product-thumb-tab {
    --thumb: 74px;
    --gap: 6px;
  }
  .product-thumb-tab .tab-btn:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .product-grid {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .th-product.list-view .product-img {
    max-width: 130px;
  }
  .th-product.list-view .product-content {
    padding: 0 15px;
  }
}

button.tinvwl_button_close.th-btn .ftinvwl.ftinvwl-times,
button.tinvwl_button_view.th-btn .ftinvwl.ftinvwl-heart-o {
  top: -3px;
}

/*------------------- 4.00. Cart  -------------------*/
.woocommerce-cart-form {
  text-align: center;
}

.cart_table {
  border: 1px solid var(--th-border-color);
  margin-bottom: 45px;
}

.cart_table thead {
  background-color: var(--black-color3);
}

.cart_table thead th {
  border: none !important;
}

.cart_table td:before,
.cart_table th {
  font-family: var(--title-font);
  color: var(--white-color);
  font-weight: 800;
  border: none;
  padding: 27px 15px;
}

.cart_table td:before {
  content: attr(data-title);
  position: absolute;
  left: 15px;
  top: 50%;
  vertical-align: top;
  padding: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.cart_table td {
  border: none;
  border-bottom: 1px solid var(--th-border-color);
  color: #8b8b8b;
  padding: 20px 10px;
  position: relative;
  vertical-align: middle;
}

.cart_table .product-quantity {
  color: var(--title-color);
}

.cart_table .product-quantity input {
  position: relative;
  top: -2px;
}

.cart_table .cart-productname {
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--body-color);
}

.cart_table .cart-productname:hover {
  color: var(--white-color);
}

.cart_table .cart-productimage {
  display: inline-block;
  border: 2px solid var(--th-border-color);
}

.cart_table .remove {
  color: var(--theme-color);
  font-size: 18px;
}

.cart_table .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.cart_table td.product-quantity {
  min-width: 155px;
}

.cart_table .qty-btn {
  border: 2px solid var(--th-border-color) !important;
  background-color: transparent;
  color: #b8c6d0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 4px;
}

.cart_table .qty-btn:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--title-color);
}

.cart_table .qty-input {
  vertical-align: middle;
  border: 2px solid var(--th-border-color);
  width: 60px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: var(--white-color);
  font-weight: 700;
  margin: 0 3px;
  border-radius: 4px;
  padding: 0;
  /* Firefox */
}

.cart_table .qty-input::-moz-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::-webkit-input-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input:-ms-input-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::-ms-input-placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::placeholder {
  color: var(--title-color);
}

.cart_table .qty-input::-webkit-outer-spin-button, .cart_table .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart_table .qty-input[type="number"] {
  -moz-appearance: textfield;
}

.cart_table .actions {
  text-align: right;
  vertical-align: middle;
  padding-left: 20px;
  padding-right: 20px;
}

.cart_table .actions > .th-btn {
  font-size: 16px;
  padding: 20px 28px;
  margin-right: 15px;
}

.cart_table .actions > .th-btn:last-child {
  margin-right: 0;
}

.cart_table .th-cart-coupon {
  float: left;
  margin: 0;
  width: 455px;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.cart_table .th-cart-coupon input {
  width: calc(100% - 200px);
  margin-right: 10px;
  background: var(--black-color3);
  color: var(--white-color);
}

.cart_table .th-cart-coupon .th-btn {
  font-size: 16px;
  padding: 20px 25px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.cart_totals {
  border: 1px solid var(--black-color3);
}

.cart_totals th,
.cart_totals td {
  vertical-align: top;
  padding: 20px 20px;
  border: none;
  border-bottom: 1px solid var(--black-color3);
  font-size: 14px;
  color: var(--white-color);
  width: 55%;
}

.cart_totals th:first-child,
.cart_totals td:first-child {
  width: 45%;
  background-color: var(--black-color3);
  font-weight: 700;
  font-size: 14px;
  color: var(--white-color);
}

.cart_totals .shipping-calculator-button {
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--white-color);
  font-weight: 700;
}

.cart_totals .shipping-calculator-button:hover {
  color: var(--theme-color);
}


.cart_totals .shipping-calculator-form {
  display: none;
}

.cart_totals .shipping-calculator-form p:first-child {
  margin-top: 20px;
}

.cart_totals .shipping-calculator-form p:last-child {
  margin-bottom: 0;
}

.cart_totals .shipping-calculator-form .form-control,
.cart_totals .shipping-calculator-form .form-select {
  border: 1px solid var(--theme-color);
}

.cart_totals .amount {
  font-weight: 700;
}

.cart_totals .order-total .amount {
  color: var(--theme-color);
}

.empty-notice {
  margin: 40px auto;
}

/* Medium devices */
@media (max-width: 991px) {
  .cart_table th {
    padding: 23px 8px;
    font-size: 14px;
  }
  .cart_table .cart-productname {
    font-size: 14px;
  }
  .cart_table .th-cart-coupon {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cart_table .actions {
    text-align: center;
  }
  .cart_table .cart-productimage {
    max-width: 100px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .cart_table {
    text-align: left;
    min-width: auto;
    border-collapse: separate;
    border-spacing: 0 20px;
    border: none;
  }
  .cart_table thead {
    display: none;
  }
  .cart_table td {
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 25%;
    text-align: right;
    border: 1px solid var(--th-border-color);
    border-bottom: none;
  }
  .cart_table td::before {
    display: block;
  }
  .cart_table td:last-child {
    border-bottom: 1px solid var(--th-border-color);
  }
  .cart_table td.actions {
    padding-left: 15px;
    text-align: center;
  }
  .cart_table td.actions > .th-btn {
    margin-top: 10px;
    margin-right: 0;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .cart_table td.actions > .th-btn:last-child {
    margin-right: auto;
  }
  .cart_table .th-cart-coupon {
    width: 100%;
    text-align: center;
    float: none;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: block;
    padding-bottom: 10px;
  }
  .cart_table .th-cart-coupon input {
    width: 100%;
    margin-bottom: 10px;
  }
  .cart_totals th,
  .cart_totals td {
    padding: 15px 10px;
  }
  .cart_totals th:first-child,
  .cart_totals td:first-child {
    width: 17%;
    line-height: 1.4;
  }
}


#ship-to-different-address {
  margin-top: 15px;
}

span.select2-selection.select2-selection--single:focus {
  outline: none;
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: 1px solid var(--th-border-color);
  text-align: right;
  padding: 5px 20px;
  vertical-align: top;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
}

.checkout-ordertable th {
  font-weight: 800;
  text-align: left;
}

.checkout-ordertable ul {
  margin: 0;
  padding: 0;
}

.checkout-ordertable .order-total .amount {
  color: var(--theme-color);
}

.checkout-ordertable input[type="hidden"] ~ label {
  color: var(--theme-color);
}




.wc-block-components-notice-banner.is-info {
  background: var(--black-color3) !important;
}

.wc-block-components-notice-banner {
  color: var(--white-color) !important;
}

.img-box1 {
  position: relative;
  z-index: 2;
  width: 100%;
  display: inline-block;
}

/* About 2 ---------------------------------- */
.img-box2 {
  position: relative;
  /* Medium Large devices */
  /* Large devices */
}

.img-box2:after {
  content: '';
  position: absolute;
  width: 528px;
  height: 28px;
  border-radius: 528px;
  background: var(--theme-color3);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  bottom: 50px;
  z-index: -1;
}

@media (max-width: 1299px) {
  .img-box2 {
    padding-right: 60px;
  }
}

@media (max-width: 1199px) {
  .img-box2 {
    text-align: center;
    padding-right: 0;
  }
}


/* About 4 ---------------------------------- */
.img-box4 {
  position: relative;
  display: inline-block;
}

.img-box4 .img2 {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-left: -300px;
  z-index: -1;
}



/*------------------- 4.00. Team  -------------------*/
/* Team global ---------------------------------- */
.th-team {
  position: relative;
}

.th-team .team-img {
  position: relative;
  overflow: hidden;
}

.th-team .team-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-team .team-desig {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: -0.45em;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: var(--theme-color);
}

.th-team .th-social {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-team .th-social a {
  --icon-size: 40px;
  background-color: var(--white-color);
  color: var(--theme-color);
}

.th-team .th-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-team .box-title {
  margin-bottom: 0;
}

/* Team Card ---------------------------------- */
.team-sec-1:hover .team-slider1 .swiper-slide:nth-of-type(even) {
  margin-top: 100px;
}

.team-slider1 .swiper-slide {
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

.team-slider1:hover .swiper-slide:nth-of-type(even) {
  margin-top: 100px;
}

@media (min-width: 1599px) and (max-width: 1700px) {
  .team-slider1 .slider-arrow {
    --pos-x: -20px;
  }
}

.team-card {
  text-align: center;
  border: double 2px transparent;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(var(--black-color3), var(--black-color3)), -webkit-linear-gradient(left, var(--theme-color), var(--theme-color2));
  background-image: linear-gradient(var(--black-color3), var(--black-color3)), linear-gradient(to right, var(--theme-color), var(--theme-color2));
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin-bottom: 4px;
  position: relative;
}

.team-card .team-card-corner {
  position: absolute;
  display: inline-block;
  width: 34px;
  height: 34px;
  left: 0;
  top: 0;
  border-top: solid 17px var(--theme-color);
  border-left: solid 17px var(--theme-color);
  border-right: solid 17px transparent;
  border-bottom: solid 17px transparent;
  z-index: 1;
  border-radius: 8px 0 0 0;
}

.team-card .team-card-corner.team-card-corner2 {
  right: 0;
  left: auto;
  border-right: solid 17px var(--theme-color2);
  border-left: solid 17px transparent;
  border-top: solid 17px var(--theme-color2);
  border-radius: 0 8px 0 0;
}

.team-card .team-card-corner.team-card-corner3 {
  top: auto;
  bottom: 0;
  border-bottom: solid 17px var(--theme-color);
  border-top: solid 17px transparent;
  border-radius: 0 0 0 8px;
}

.team-card .team-card-corner.team-card-corner4 {
  right: 0;
  left: auto;
  top: auto;
  bottom: 0;
  border-right: solid 17px var(--theme-color2);
  border-left: solid 17px transparent;
  border-bottom: solid 17px var(--theme-color2);
  border-top: solid 17px transparent;
  border-radius: 0 0 8px 0;
}

.team-card .img-wrap {
  position: relative;
  border-radius: 10px;
  border: double 4px transparent;
  background-image: -webkit-linear-gradient(var(--black-color3), var(--black-color3)), -webkit-linear-gradient(left, var(--theme-color), var(--theme-color2));
  background-image: linear-gradient(var(--black-color3), var(--black-color3)), linear-gradient(to right, var(--theme-color), var(--theme-color2));
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin: 7px;
}

.team-card .img-wrap img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.team-card .img-wrap .game-logo {
  position: absolute;
  top: 22px;
  left: 22px;
}

.team-card .team-img {
  border-radius: 10px;
  padding: 12px;
}

.team-card .team-img img {
  width: 100%;
  border-radius: 10px;
}

.team-card .team-card-content {
  display: inline-block;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  position: absolute;
  background: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color2));
  background: linear-gradient(to right, var(--theme-color), var(--theme-color2));
  border-radius: 30px;
  padding: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.team-card .box-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0px;
  display: inline-block;
  background-color: var(--title-color);
  border-radius: 30px;
}

.team-card .box-title a {
  color: var(--white-color);
  padding: 1px 26px;
  display: inline-block;
}

.team-card .box-title a:hover {
  color: var(--theme-color);
}

.team-card:hover .img-wrap .game-logo {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

/* Extra small devices */
@media (max-width: 575px) {
  .team-slider1 .swiper-slide:nth-of-type(even) {
    margin-top: 0px;
  }
}

/* Team Card 2---------------------------------- */
.team-sec-2 .tab-content {
  margin-bottom: -235px;
  position: relative;
  z-index: 3;
}

.team-tab {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  margin-top: -20px;
  border: 0;
  gap: 10px;
  /* Medium devices */
}

.team-tab .nav-item .nav-link {
  height: 80px;
  width: 80px;
  padding: 0;
  line-height: 74px;
  border-radius: 50%;
  border: 2px solid var(--black-color);
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.team-tab .nav-item .nav-link.active, .team-tab .nav-item .nav-link:hover {
  border-color: var(--theme-color);
}

@media (max-width: 991px) {
  .team-tab {
    margin-top: 0;
  }
}

/* Team Card 3---------------------------------- */
.team-sec-3 {
  margin-top: -418px;
  position: relative;
  z-index: 3;
}

.team-card.style3 {
  padding: 10px 10px 0;
  background: var(--white-color);
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.08);
}

.team-card.style3 .img-wrap {
  margin-bottom: 0;
}

.team-card.style3 .img-wrap:before, .team-card.style3 .img-wrap:after {
  display: none;
}

.team-card.style3 .team-card-content {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.team-card.style3 .team-card-content .team-card-bg {
  position: absolute;
  inset: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: -1;
}

.team-card.style3 .th-social {
  position: initial;
  width: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  background: transparent;
  padding: 20px 0 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
}

.team-card.style3 .th-social a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  border: 1px solid var(--th-border-color);
  border-radius: 50%;
  font-size: 13px;
}

.team-card.style3 .th-social a:hover {
  border-color: var(--theme-color);
  background: var(--theme-color);
  color: var(--white-color);
}

.team-card.style3:hover .team-card-bg {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}




@media (min-width: 1300px) {
  .team-about-card {
    margin-left: 55px;
  }
}



.bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.bg-img img {
  width: 100%;
  height: 100%;
}

.th-video {
  position: relative;
  border-radius: 30px;
  border: 1px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.th-video img {
  border-radius: inherit;
}

.th-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-20 {
  border-radius: 20px;
  /* Small devices */
}

@media (max-width: 767px) {
  .rounded-20 {
    border-radius: 10px;
  }
}

.btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 30px;
}

.btn-wrap.g-0 {
  gap: 20px 0;
}


/* Large devices */
@media (max-width: 1199px) {
  p.mb-40 {
    margin-bottom: 35px;
  }
  p.mb-45 {
    margin-bottom: 38px;
  }
}

.modal-backdrop.show {
  opacity: .7;
  z-index: 99;
}

.modal {
  z-index: 999;
  padding-right: 0 !important;
}













/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

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

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

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

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

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

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

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

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

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

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

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

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n2 {
  margin-top: -.45rem;
}

.mt-n3 {
  margin-top: -0.8rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.25rem;
}

.mb-n2 {
  margin-bottom: -.45rem;
}

.mb-n3 {
  margin-bottom: -0.8rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 70px;
  }
}

/*# sourceMappingURL=style.css.map */
/* !-------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d1b11 50%, #0a0a0a 100%) !important;
  background-attachment: fixed !important;
  text-align: center;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.05), transparent 50%);
  pointer-events: none;
  z-index: -1;
}
/* Modern Premium Navbar Styling */
.custom-navbar {
  background: linear-gradient(145deg, rgba(15, 15, 15, 0.98), rgba(10, 10, 10, 0.95)) !important;
  border-bottom: 2px solid rgba(16, 185, 129, 0.4) !important;
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.15), 0 0 60px rgba(16, 185, 129, 0.08) !important;
  backdrop-filter: blur(15px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
}

.navbar-brand {
  font-family: 'Goldman', monospace !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  color: #fff !important;
  letter-spacing: 2px !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  text-decoration: none !important;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4) !important;
}

.navbar-brand::after {
  content: '.com' !important;
  background: linear-gradient(135deg, #10b981, #45f882) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6)) !important;
}

.navbar-brand:hover {
  transform: translateY(-2px) scale(1.02) !important;
  filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.7)) !important;
}

/* Menü Linkleri Hover Efekti */
.nav-link {
  color: #aaa !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  margin: 0 8px !important;
  padding: 10px 18px !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-right span {
  color: #aaa !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}

.menu-right a {
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  padding: 10px !important;
  border-radius: 12px !important;
  background: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  position: relative;
  overflow: hidden;
}

.menu-right a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-right a:hover::before {
  opacity: 1;
}

.menu-right a:hover {
  color: #10b981 !important;
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.6) !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3) !important;
}

.menu-right a i {
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  color: #10b981 !important;
  text-decoration: none;
  border-color: rgba(16, 185, 129, 0.5) !important;
  background: rgba(16, 185, 129, 0.05) !important;
}

.nav-link:hover::before {
  opacity: 1;
}

.custom-toggler {
  border-color: #10b981 !important;
  background: rgba(16, 185, 129, 0.1) !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
}

.custom-toggler:focus,
.custom-toggler:active {
  outline: none;
  box-shadow: none;
  border-color: #10b981 !important;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310b981' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* Hamburger Menüde Ortalama */
@media (max-width: 992px) {
  .nav-item{
    margin-bottom: 5px;
  }
  .menu-right {
      justify-content: center !important;
      width: 100%;
  }
}
/* Hoşgeldin Metni */
.highlighted {
  color: #45f882;
  font-weight: bold;
}
.hero {
  margin: 40px auto 0;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #45f882;
}

/* Info section, info-boxes */
.info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .info-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .info-section {
    grid-template-columns: 1fr;
  }
}

.info-box {
  background: linear-gradient(145deg, #0a1015 0%, #0d1a1f 100%);
  border-radius: 12px;
  padding: 28px 24px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(69, 248, 130, 0.15);
}

.info-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #45f882 0%, #10b981 50%, #065f46 100%);
  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.info-box:hover:before {
  opacity: 1;
}


.info-box h3 {
  color: #45f882;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.info-box h3 i {
  font-size: 1.2rem;
  color: #fbbf24;
}

.info-box p {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

.info-box .info-link {
  color: #45f882;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.info-box .info-link:hover {
  color: #10b981;
  text-shadow: 0 0 10px rgba(69, 248, 130, 0.5);
}
/* Status section */
/* Mod Status Bölümü */
.mod-status {
  margin-top: 40px;
  text-align: center;
}

.mod-status h2 {
  color: #45f882;
  margin-bottom: 20px;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Status Box - Modern Border ve Gradient Efekti */
/* Mod Status Bölümü */
.mod-status {
  margin-top: 40px;
  text-align: center;
}

.mod-status h2 {
  color: #45f882;
  margin-bottom: 20px;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Status Box - Border Radius ve Gradient Border */
/* Mod Status Bölümü */
.mod-status {
  margin-top: 40px;
  text-align: center;
}

.mod-status h2 {
  color: #45f882;
  margin-bottom: 20px;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Status Box - Border Radius ve Gradient Border */
.status-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 15px auto;
  width: 60%;
  border-radius: 10px;  /* Border Radius */
  background: linear-gradient(to right, #45f882, #8a6e1c); /* Gradient Border */
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* İçerik Alanı */
.status-box::before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: rgba(15, 28, 35, 0.95); /* İçerik Arka Planı */
  border-radius: 12px; /* İçerik Alanının Radius'u */
  z-index: -1;
}

/* Hover Efekti */
.status-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Aktif Durum */
.status-active {
  color: #45f882;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(69, 248, 130, 0.6);
}

/* Bakım Durumu */
.status-maintenance {
  color: #8a6e1c;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(138, 110, 28, 0.6);
}

/* Responsive Düzen */
@media screen and (max-width: 768px) {
  .status-box {
      width: 80%;
      flex-direction: column;
      text-align: center;
  }
}


/* Responsive Düzen */
@media screen and (max-width: 768px) {
  .status-box {
      width: 80%;
      flex-direction: column;
      text-align: center;
  }
}


/* Footer styles moved to footer.php for better organization */


/* Video Section Ayarları */
.video-section {
  padding: 20px;
  background: transparent;
  border-radius: 10px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Video Container */
.video-container {
  max-width: 900px;
  margin: 0 auto;

  overflow: hidden;
}

.video-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.video-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

iframe {

  border: 4px solid transparent;
  border-radius: 10px;
  background-image: linear-gradient(to right, #45f882, #8a6e1c);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 2px;        
}


/* Buy */

/* Product Kartları */
/* Başlık Ayarları */
.lifetime-packages-heading {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* Product Kartları */
.product {
  background: rgba(15, 28, 35, 0.9);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  min-height: 320px;
  max-width: 240px;
  margin: 0 auto;
  border: 2px solid transparent;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #45f882, #8a6e1c); /* Gradient Border */
}

/* Hover Efekti: Parlama ve Gölge */
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5), 0 0 15px rgba(69, 248, 130, 0.5);
  border-image-source: linear-gradient(to right, #8a6e1c, #45f882); /* Hover'da Renk Geçişi */
}


.product img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product h2 {
  font-size: 18px;
  color: #45f882;
  margin-bottom: 5px;
}

.product p {
  font-size: 14px;
  color: #c0c0c0;
  margin: 3px 0;
}

.product button {
  background: linear-gradient(to right, #45f882, #8a6e1c);
  border: none;
  padding: 5px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product button:hover {
  background: linear-gradient(to right, #8a6e1c, #45f882);
}

/* Dotlar (Sayfa Numaraları) */
.owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 3px;
  background: #8a6e1c;
  border-radius: 50%;
  transition: background 0.3s ease;
  cursor: pointer;
}


.owl-dots .owl-dot:hover {
  background: #45f882;
}

/* Oklar (Navigasyon) */
/* Dotlar (Sayfa Numaraları) */
.owl-dots {
  text-align: center;
  margin-top: 15px;
  display: block !important;       /* Her Ekranda Göster */
  visibility: visible !important;  /* Her Ekranda Göster */
  z-index: 10;                    /* Slider Üzerinde Görünür Yap */
}

.owl-dots .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 3px;
  background: #8a6e1c;
  border-radius: 50%;
  transition: background 0.3s ease;
  cursor: pointer;
}


/* Oklar (Navigasyon) */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex !important;        /* Her Ekranda Göster */
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;                    /* Slider Üzerinde Görünür Yap */
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: rgba(0, 0, 0, 0.6);
  color: #fff !important;
  padding: 10px 15px;
  border-radius: 50%;
  pointer-events: all;
  transition: background 0.3s ease;
}

/* .owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background: #45f882;
  color: #fff;
} */

.owl-nav .owl-prev {
  left: -20px;
}

.owl-nav .owl-next {
  right: -20px;
}

.social-icons a{
  color: #fff;
  font-size: 2rem;
}
.social-icons a:hover{
  color: #01FF8E;
}

.tab-pane label{
  color: #fff;
}
.btn-green {
  background-color: #01FF8E !important;
  color: #080E1C !important;
  border: none;
  transition: all 0.3s ease;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green:active:focus,
.btn-green:focus-visible {
  color: #fff !important;         /* Hover ve tıklama anında yazı rengi beyaz */
  background-color: #00e67e !important; /* Arka plan sadece yeşil */
  box-shadow: 0 4px 10px rgba(0, 255, 142, 0.4) !important;
}

/* Mavi Background'u Tamamen Kaldırma */
.btn-green:focus,
.btn-green:active,
.btn-green:focus-visible,
.btn-green:focus:not(:focus-visible) {
  background-color: #00e67e !important;  /* Focus ve tıklama anında yeşil kalsın */
  box-shadow: none !important;
}




.text-green{
  color: #01FF8E;
}

/* Genel Ayarlar */
body {
  background-color: #0F1C23;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-title {
  text-align: center;
  color: #45f882;
  text-shadow: 0 0 10px rgba(69, 248, 130, 0.6);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 2.5em;
}

/* Info Box */
.info-box-2 {
  position: relative;
  background: rgba(15, 28, 35, 0.9);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 255, 142, 0.5);
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 0;
}

.info-box-2:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  /* background: linear-gradient(to right, #45f882, #8a6e1c); */
  border-radius: 22px; /* Border radius + 2px */
  z-index: -1;
  filter: blur(4px); /* Hafif parıltı efekti */
}

.info-box-2 a {
  color: #45f882;
  text-decoration: underline;
}

.info-box-2 a:hover {
  color: #8a6e1c;
  text-decoration: none;
}

/* MOD STATUS BOXES */
.mod-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.mod-box {
  position: relative;
  background: linear-gradient(145deg, #1c2a36, #0e1b24);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 255, 142, 0.3);
  padding: 20px;
  width: calc(100% - 40px);
  max-width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

.mod-box:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  /* background: linear-gradient(to right, #45f882, #8a6e1c); */
  border-radius: 17px; /* Border radius + 2px */
  z-index: -1;
  filter: blur(4px); /* Hafif parıltı efekti */
}


.mod-box:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 142, 0.5);
}

.mod-name {
  color: #45f882;
  font-size: 1.4em;
  text-shadow: 0 0 5px rgba(69, 248, 130, 0.6);
  margin-bottom: 10px;
}

.mod-info p {
  color: #cccccc;
  margin: 5px 0;
}

/* DOWNLOAD SECTION */
.download-section h2{
  color: #45f882;
  text-align: center;
  text-shadow: 0 0 10px rgba(69, 248, 130, 0.6);
  margin-bottom: 10px;
}
.download-section h3,
.download-section a{
  color: #fff;
}
.download-section a:hover{
  color: #00e67e;
}


.download-link {
  display: inline-block;
  background: linear-gradient(to right, #45f882, #8a6e1c);
  color: #080E1C !important;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 255, 142, 0.3);
}

.download-link:hover {
  background: linear-gradient(to right, #8a6e1c, #45f882);
  color: #FFFFFF !important;
  box-shadow: 0 6px 15px rgba(0, 255, 142, 0.5);
  transform: scale(1.05);
}

.launcher-box {
  background-color: #192833;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 255, 142, 0.3);
  text-align: center;
  margin-bottom: 30px;
}

.download-notes {
  background-color: rgba(15, 28, 35, 0.9);
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #45f882, #8a6e1c);
  padding: 10px;
  border-radius: 5px;
  color: #cccccc;
}


/* GRID LAYOUT */
.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.download-box {
  background-color: #192833;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 255, 142, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  width: calc(100% - 40px);
  max-width: 300px;
  flex: 1 1 280px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.download-box:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 255, 142, 0.5);
}

.download-box h3 {
  color: #45f882;
  margin-bottom: 10px;
  text-align: center;
}

.download-box p {
  color: #ccc;
}

.download-link {
  display: inline-block;
  background: linear-gradient(to right, #45f882, #8a6e1c);
  color: #080E1C !important;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 255, 142, 0.3);
}

.download-link:hover {
  background: linear-gradient(to right, #8a6e1c, #45f882);
  color: #FFFFFF !important;
  box-shadow: 0 6px 15px rgba(0, 255, 142, 0.5);
  transform: scale(1.05);
}

.premium-section h4,
.free-section h4 {
  color: #8a6e1c;
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.premium-section p,
.free-section p {
  color: #ccc;
  text-align: center;
}

.premium-section i,
.free-section i {
  color: #45f882;
  margin-right: 5px;
}

.premium-section a,
.free-section a {
  color: #45f882;
  text-decoration: none;
}

.premium-section a:hover,
.free-section a:hover {
  color: #8a6e1c;
}

.download-box .fas {
  font-size: 1.2em;
}

.download-box .fa-lock {
  color: #00e67e;
}

/* RESPONSIVE AYARLAR */
@media (max-width: 1200px) {
  .download-box {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .download-grid {
    flex-direction: column;
  }

  .download-box {
    max-width: 100%;
  }
}

.team-shape1-1 {
  overflow: hidden;
  border-radius: 10px;
}
.team-shape1-1 img {
  background-color: rgba(15, 28, 35, 0.9);
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #45f882, #8a6e1c);
  color: #cccccc;
}
.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d1b11 50%, #0a0a0a 100%);
  z-index: -1;
}
/* Modern Premium Background Overlay */
.fullscreen-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08), transparent 60%),
              radial-gradient(circle at 0% 100%, rgba(16, 185, 129, 0.05), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.05), transparent 50%);
  z-index: 1;
}
.fullscreen-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, transparent 0px, rgba(16, 185, 129, 0.015) 1px, transparent 2px);
  z-index: 2;
  pointer-events: none;
}

.product-content p{
  color: #10b981 !important;
}

/* ===== MODERN PREMIUM FOOTER STYLES ===== */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(5, 5, 5, 0.98) 100%) !important;
    border-top: 2px solid rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 -5px 30px rgba(16, 185, 129, 0.15), 0 -10px 60px rgba(16, 185, 129, 0.08) !important;
    margin-top: 80px !important;
    padding: 60px 20px 30px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}

.footer > .container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: repeating-linear-gradient(0deg, transparent 0px, rgba(16, 185, 129, 0.02) 1px, transparent 2px) !important;
    pointer-events: none !important;
}

.footer .footer-content {
    max-width: 1400px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer .footer-section {
    padding: 20px !important;
    background: rgba(16, 185, 129, 0.03) !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.footer .footer-section:hover {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15) !important;
}

.footer .footer-section h3 {
    color: #45f882 !important;
    font-family: 'Goldman', 'Courier New', monospace !important;
    font-size: 1.4em !important;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.4) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    position: relative !important;
    padding-bottom: 12px !important;
}

.footer .footer-section h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 50px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #10b981, transparent) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5) !important;
}

.footer .footer-section p,
.footer .footer-section a {
    color: #aaa !important;
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 1em !important;
    line-height: 1.6 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    padding: 0 !important;
}

.footer .footer-section a:hover {
    color: #10b981 !important;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3) !important;
    transform: translateX(4px) !important;
}

.footer .footer-section p i,
.footer .footer-section a i {
    color: #10b981 !important;
    font-size: 1.1em !important;
    width: 20px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.footer .footer-section a:hover i {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6) !important;
    transform: scale(1.15) !important;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(16, 185, 129, 0.2) !important;
    padding-top: 25px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer .footer-bottom p {
    color: #888 !important;
    font-family: 'Rajdhani', sans-serif !important;
    margin: 0 !important;
    font-size: 0.95em !important;
    letter-spacing: 0.5px !important;
}

.footer .footer-bottom p strong {
    background: linear-gradient(135deg, #10b981, #45f882) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 900 !important;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4)) !important;
}

.footer .social-links {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.footer .social-links a {
    width: 50px !important;
    height: 50px !important;
    border: 2px solid rgba(16, 185, 129, 0.4) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #10b981 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1.4em !important;
    background: rgba(16, 185, 129, 0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.footer .social-links a::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.footer .social-links a:hover::before {
    opacity: 1 !important;
}

.footer .social-links a:hover {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: #10b981 !important;
    color: #45f882 !important;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.4), 0 0 40px rgba(16, 185, 129, 0.2) !important;
    transform: translateY(-5px) scale(1.1) !important;
}

.footer .social-links a i {
    position: relative !important;
    z-index: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 25px 15px !important;
        margin-top: 50px !important;
    }

    .footer .footer-content {
        gap: 25px !important;
        grid-template-columns: 1fr !important;
    }

    .footer .footer-section {
        padding: 15px !important;
    }

    .footer .footer-section h3 {
        font-size: 1.2em !important;
    }

    .footer .social-links a {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2em !important;
    }
}

/* ======================================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ====================================================== */

/* ========== GENERAL MOBILE FIXES ========== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Container responsive fixes */
.container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* ========== VIDEO SECTION MOBILE ========== */
@media (max-width: 992px) {
    .video-section {
        padding: 15px 10px;
    }

    .video-container {
        max-width: 100%;
    }

    .video-section h2 {
        font-size: 20px;
    }

    .video-section iframe {
        max-width: 100%;
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 10px 5px;
    }

    .video-section h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .video-section p {
        font-size: 14px;
    }

    .video-section iframe {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .video-section iframe {
        min-height: 180px;
        border-width: 2px;
    }
}

/* ========== INFO BOXES MOBILE ========== */
@media (max-width: 768px) {
    .info-box {
        padding: 20px 18px;
        min-height: 160px;
    }

    .info-box h3 {
        font-size: 1rem;
    }

    .info-box p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 0 10px;
        gap: 16px;
    }

    .info-box {
        padding: 18px 15px;
        min-height: 140px;
    }

    .info-box h3 {
        font-size: 0.95rem;
        gap: 8px;
    }

    .info-box p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* ========== STATUS BOX MOBILE ========== */
@media (max-width: 576px) {
    .status-box {
        width: 95%;
        padding: 12px;
        gap: 10px;
    }

    .status-box span,
    .status-box p {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .status-box {
        width: 98%;
        padding: 10px;
    }
}

/* ========== PRODUCT CARDS MOBILE ========== */
@media (max-width: 992px) {
    .product {
        max-width: 220px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .product {
        max-width: 200px;
        min-height: 280px;
        padding: 12px;
    }

    .product h2 {
        font-size: 16px;
    }

    .product p {
        font-size: 13px;
    }

    .lifetime-packages-heading {
        font-size: 22px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .product {
        max-width: 100%;
        min-height: auto;
        padding: 15px;
    }

    .lifetime-packages-heading {
        font-size: 20px;
        padding: 0 10px;
    }
}

/* ========== MOD STATUS SECTION MOBILE ========== */
@media (max-width: 768px) {
    .mod-status h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .mod-status {
        margin-top: 25px;
    }

    .mod-status h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* ========== HERO SECTION MOBILE ========== */
@media (max-width: 768px) {
    .hero {
        margin: 25px auto 0;
    }

    .hero h1 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .hero {
        margin: 20px auto 0;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 22px;
    }
}

/* ========== SECTION SPACING MOBILE ========== */
@media (max-width: 768px) {
    section,
    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (max-width: 576px) {
    section,
    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* ========== BUTTONS MOBILE ========== */
@media (max-width: 576px) {
    .btn,
    button,
    .product button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ========== FORM ELEMENTS MOBILE ========== */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 12px;
    }
}

/* ========== TABLE RESPONSIVE ========== */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    td, th {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* ========== OWL CAROUSEL MOBILE ========== */
@media (max-width: 768px) {
    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        padding: 8px 12px;
    }

    .owl-nav .owl-prev {
        left: -10px;
    }

    .owl-nav .owl-next {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .owl-nav {
        display: none !important;
    }

    .owl-dots {
        margin-top: 10px;
    }

    .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
    }
}

/* ========== SOCIAL ICONS MOBILE ========== */
@media (max-width: 576px) {
    .social-icons a {
        font-size: 1.5rem;
    }
}

/* ========== TYPOGRAPHY MOBILE ADJUSTMENTS ========== */
@media (max-width: 480px) {
    h1, .h1 {
        font-size: 28px;
    }

    h2, .h2 {
        font-size: 24px;
    }

    h3, .h3 {
        font-size: 20px;
    }

    h4, .h4 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ========== IMAGES RESPONSIVE ========== */
img {
    max-width: 100%;
    height: auto;
}

/* ========== FLEX/GRID UTILITIES MOBILE ========== */
@media (max-width: 768px) {
    .d-flex {
        flex-wrap: wrap;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .row > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ========== TAB CONTENT MOBILE ========== */
@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: wrap;
    }

    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .tab-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .nav-tabs .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* ========== CARD UTILITIES MOBILE ========== */
@media (max-width: 768px) {
    .card {
        margin-bottom: 15px;
    }

    .card-body {
        padding: 15px;
    }
}

/* ========== CURSOR ANIMATION HIDE ON TOUCH ========== */
/* Disabled - cursor animation removed
@media (hover: none) and (pointer: coarse) {
    .cursor-animation {
        display: none !important;
    }
}
*/

/* ========== SAFE AREA INSETS FOR MODERN PHONES ========== */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

/* ========== ACCESSIBILITY - REDUCE MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}