:root {
    --theme-color: #ff7e02;
    --theme-color2: #ffc010;
    --title-color: #15191a;
    /* --body-color: #6c6c6c; */
    --body-color: #fff;
    --dark-color: #1c1c1c;
    --smoke-color: #f3f6f7;
    --white-color: #ffffff;
    --black-color: #f3f6f7;
    --white-light-color: #c3c3c3;
    --yellow-color: #fec624;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: rgba(0, 0, 0, 0.1);
    --title-font: "Rajdhani", sans-serif;
    --body-font: "Poppins", sans-serif;
    --icon-font: "Font Awesome 5 Pro";
    --main-container: 1640px;
    --container-gutters: 1.5rem;
    --section-space: 120px;
    --section-space-mobile: 80px;
    --section-title-space: 25px;
    --ripple-ani-duration: 5s;
}
@font-face {
  font-family: 'game-font';
  src: url(./game-of-squids/GameOfSquids-1GMVL.ttf);
}
h2, h4, h3{
  font-family: 'game-font'!important;
}
html::-webkit-scrollbar-track {
  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);
  background-color: #f5f5f5;
}
html::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}
html::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
}
html,
body {
  scroll-behavior: auto !important;
  user-select: none;
  box-sizing: border-box!important;
}
body {
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: #1c1121;
}
@media (min-width:1440px){
  body{
    font-size: 17px;
  }
}
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;
}
/* SIDE BAR BUTTON */
#sidebar {
  position: fixed;
  /* top: max(100px, var(--value)); */
  top: 50%;
  right: -70px;
  width: 160px;
  height: 50px;
  background: #15171900;
  transition: all 300ms linear;
  z-index: 99;
  opacity: 0.7;
  border-radius: 100px 100px 0px 0px;
  
}
[draggable=true] {
  cursor: pointer;
}
#sidebar.active {
  right: -200px;
}
#sidebar .toggle-btn {
  position: absolute;
  right: 220px;
  top: 50%;
}
#sidebar .toggle-btn span {
  display: block;
  width: 30px;
  height: 5px;
  background: #7ffb46;
  margin: 5px 0px;
  cursor: pointer;
}
#sidebar div.list div.item {
  padding: 3px 3px;
  border-bottom: 1px solid #444;
  color: #fcfcfc;
  text-transform: uppercase;
  font-size: 15px;
  text-align: center;
}
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(--border-color);
}
th {
  font-weight: 700;
  color: var(--title-color);
}
td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}
a {
  color: var(--theme-color2);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--theme-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%;
}
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;
}
p {
  margin: 0 0 15px 0;
  color: var(--body-color);
  line-height: 2;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: #fff;
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}
.h1,
h1 {
  font-size: 48px;
}
.h2,
h2 {
  font-size: 36px;
}
.h3,
h3 {
  font-size: 30px;
}
@media (min-width:1440px){
  .h3,
  h3 {
    font-size: 30px;
  }
}
.h4,
h4 {
  font-size: 24px;
}
.h5,
h5 {
  font-size: 20px;
}
.h6,
h6 {
  font-size: 16px;
}
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 42px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: 30px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 100%;
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
@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;
  }
}
.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);
}
.gx-10 {
  --bs-gutter-x: 10px;
}
.gy-40 {
  --bs-gutter-y: 40px;
}
.gy-60 {
  --bs-gutter-y: 60px;
}
.gy-50 {
  --bs-gutter-y: 50px;
}
@media only screen and (min-width: 1600px) {
  .gx-20 {
    --bs-gutter-x: 20px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}
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-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* select,
.form-select,
.form-control {
  height: 60px;
  padding: 0 30px;
  padding-right: 60px;
  border: 1px solid #e3e3e3;
  color: var(--body-color);
  background-color: var(--white-color);
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
} */
select:focus,
.form-select:focus,
.form-control:focus {
  outline: 0;
  box-shadow: none;
  background-color: #3b3b3b00;
  border-color: #e3e3e3;
}
select::-moz-placeholder,
.form-select::-moz-placeholder,
.form-control::-moz-placeholder {
  color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: var(--body-color);
}
select:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: var(--body-color);
}
select::-moz-placeholder,
.form-select::-moz-placeholder,
.form-control::-moz-placeholder {
  color: var(--body-color);
}
select:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: var(--body-color);
}
select::-ms-input-placeholder,
.form-select::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-select::placeholder,
.form-control::placeholder {
  color: var(--body-color);
}
select.style2,
.form-select.style2,
.form-control.style2 {
  background-color: #1c1c1c;
  color: var(--white-color);
  border: 1px solid transparent;
  font-size: 14px;
  height: 65px;
  border-radius: 0;
}
select.style2::-moz-placeholder,
.form-select.style2::-moz-placeholder,
.form-control.style2::-moz-placeholder {
  color: #a4a4a4;
}
select.style2::-webkit-input-placeholder,
.form-select.style2::-webkit-input-placeholder,
.form-control.style2::-webkit-input-placeholder {
  color: #a4a4a4;
}
select.style2:-ms-input-placeholder,
.form-select.style2:-ms-input-placeholder,
.form-control.style2:-ms-input-placeholder {
  color: #a4a4a4;
}
select.style2::-webkit-input-placeholder,
.form-select.style2::-webkit-input-placeholder,
.form-control.style2::-webkit-input-placeholder {
  color: #a4a4a4;
}
select.style2::-moz-placeholder,
.form-select.style2::-moz-placeholder,
.form-control.style2::-moz-placeholder {
  color: #a4a4a4;
}
select.style2:-ms-input-placeholder,
.form-select.style2:-ms-input-placeholder,
.form-control.style2:-ms-input-placeholder {
  color: #a4a4a4;
}
select.style2::-ms-input-placeholder,
.form-select.style2::-ms-input-placeholder,
.form-control.style2::-ms-input-placeholder {
  color: #a4a4a4;
}
select.style2::placeholder,
.form-select.style2::placeholder,
.form-control.style2::placeholder {
  color: #a4a4a4;
}
select.style2 ~ i,
.form-select.style2 ~ i,
.form-control.style2 ~ i {
  top: auto;
  bottom: 25px;
  right: 42px;
  color: #484848;
}
.form-select {
  cursor: pointer;
  background-position: right 1.3rem center;
}
input.form-control::-webkit-outer-spin-button,
input.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.form-control[type="number"] {
  -moz-appearance: textfield;
}
textarea.form-control {
  min-height: 150px;
  padding-top: 17px;
  padding-bottom: 17px;
}
textarea.form-control.style2 ~ i {
  top: 53px;
  bottom: auto;
}
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(--theme-color);
  border-color: var(--theme-color);
}
input[type="checkbox"] ~ label {
  position: relative;
  padding-left: 0px;
  cursor: pointer;
  display: block;
}
input[type="checkbox"] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 6px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  visibility: hidden;
}
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: 28px;
  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: 1px;
  width: 15px;
  height: 15px;
  padding-left: 0.5px;
  font-size: 0.29rem;
  line-height: 14.9px;
  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(--white-color);
}
label {
  /* margin-bottom: 0.6em; */
  /* margin-top: -0.3em; */
  display: block;
}
.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 18px;
  color: var(--theme-color);
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  outline: 0;
  box-shadow: none;
}
textarea.form-control.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;
}
@media (max-width: 575px) {
  .form-select,
  .form-control {
    padding-right: 0px;
    padding-left: 15px;
  }
}
.slick-track {
  min-width: 100%;
}
.slick-slide img {
  display: inline-block;
}
.slick-dots {
  list-style-type: none;
  padding: 2px 0;
  margin: 30px 0 30px 0;
  line-height: 0;
  text-align: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.slick-dots li {
  display: inline-block;
  margin-right: 15px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots button {
  font-size: 0;
  padding: 0;
  width: 12px;
  height: 12px;
  line-height: 0;
  border-radius: 9999px;
  border: none;
  background-color: var(--body-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.slick-dots button:hover {
  border-color: var(--theme-color);
}
.slick-dots .slick-active button {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  background-color: var(--theme-color2);
}
.slick-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  margin-top: calc(var(--icon-size, 60px) / -2);
  border: 1px solid var(--theme-color2);
  left: var(--pos-x, -75px);
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  border-radius: 50%;
  z-index: 2;
  font-size: 20px;
}
.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
  margin-right: 15px;
}
.slick-arrow.default:last-child {
  margin-right: 0;
}
.slick-arrow:hover {
  border-color: transparent;
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.slick-arrow.slick-next {
  margin-right: 0;
  right: var(--pos-x, -75px);
  left: auto;
}
.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.slick-3d-active {
  margin-left: -12%;
  margin-right: -12%;
}
.slick-3d-active .slick-list {
  padding-top: 0% !important;
  padding-bottom: 0% !important;
  padding-left: 30% !important;
  padding-right: 30% !important;
}
.slick-3d-active .slick-dots {
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.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;
  background-color: #7a7a7a;
}
.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(61%, 0, -10px);
  transform: translate3d(61%, 0, -10px);
  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(-61%, 0, -10px);
  transform: translate3d(-61%, 0, -10px);
}
.slick-3d-active .slick-3d-prev2 {
  opacity: 1;
  -webkit-transform: translate3d(-40%, 0, -23px);
  transform: translate3d(-40%, 0, -23px);
}
@media (max-width: 1600px) {
  .slick-arrow {
    --pos-x: 30px;
  }
}
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
  }
}
@media (max-width:1200px){
  .upsidedown{
    margin-top: -50px!important;
  }
  .mob-center{
    margin: 0px auto;
    text-align: center!important;
  }
}
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 40px;
  padding-top: 37px;
  display: block;
  background-color: var(--title-color);
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--dark-color);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -1000px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
.vs-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  list-style-type: none;
}
.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
}
.vs-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}
.vs-mobile-menu ul li.vs-active > a {
  color: var(--theme-color);
}
.vs-mobile-menu ul li.vs-active > a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.vs-mobile-menu ul .vs-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  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(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(255, 126, 2, 0.3);
  border-radius: 50%;
}
.vs-mobile-menu ul .vs-item-has-children.vs-active > a:after {
  content: "\f068";
}
.vs-mobile-menu > ul {
  padding: 0 40px;
}
.vs-mobile-menu > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu-form {
  width: 100%;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}
.mobile-menu-form input {
  height: 35px;
  border: none;
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
  padding-left: 20px;
  padding-right: 40px;
}
.mobile-menu-form input:focus {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
}
.mobile-menu-form input::-moz-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}
.mobile-menu-form input::-webkit-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}
.mobile-menu-form input:-ms-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}
.mobile-menu-form input::-ms-input-placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}
.mobile-menu-form input::placeholder {
  color: var(--smoke-color);
  color: var(--theme-color);
}
.mobile-menu-form button {
  border: none;
  background-color: transparent;
  color: var(--theme-color);
  position: absolute;
  right: 13px;
  top: 3px;
}
.vs-menu-toggle:not(.hamburger-btn) {
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 50%;
}
.vs-menu-toggle:not(.hamburger-btn).style2 {
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 28px;
  margin-left: 15px;
}
@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .vs-mobile-menu > ul {
    padding: 0 20px;
  }
}
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--dark-color);
}
.preloader .vs-btn {
  padding: 10px 20px;
  border-radius: 0;
  font-size: 16px;
  font-family: var(--title-font);
  background-color: var(--black-color);
}
.preloader .vs-btn:after,
.preloader .vs-btn:before {
  display: none;
}
.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;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 10px auto;
}
.vs-loadholder {
  width: 240px;
  height: 240px;
  border: 5px solid var(--theme-color2);
  border-radius: 120px;
}
.vs-loadholder:after {
  content: " ";
  display: block;
  background: var(--dark-color);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  z-index: 0;
  -webkit-animation: loaderOuterRotate2 25s infinite linear;
  animation: loaderOuterRotate2 25s infinite linear;
  width: 100px;
  height: 200%;
}
.vs-loadholder .vs-loader {
  width: 200px;
  height: 200px;
  color: var(--dark-color);
  text-align: center;
  border: 5px solid var(--theme-color);
  border-radius: 100px;
  z-index: 20;
  text-transform: uppercase;
}
.vs-loadholder .vs-loader:after {
  content: "";
  display: block;
  background: var(--dark-color);
  z-index: -1;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: loaderOuterRotate1 10s infinite linear;
  animation: loaderOuterRotate1 10s infinite linear;
  width: 100px;
  height: 106%;
}
.vs-loadholder .vs-loader .loader-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 130px;
  -webkit-animation: LoaderColor 1s alternate linear infinite;
  animation: LoaderColor 1s alternate linear infinite;
  display: block;
  width: 140px;
  height: 140px;
  text-align: center;
  border: 5px solid var(--theme-color2);
  border-radius: 70px;
  z-index: 20;
}
.vs-loadholder .vs-loader .loader-text:before,
.vs-loadholder .vs-loader .loader-text:after {
  content: " ";
  display: block;
  background: var(--dark-color);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  z-index: -1;
}
.vs-loadholder .vs-loader .loader-text:before {
  width: 110%;
  height: 40px;
  -webkit-animation: loaderOuterRotate2 2s infinite linear;
  animation: loaderOuterRotate2 2s infinite linear;
}
.vs-loadholder .vs-loader .loader-text:after {
  width: 40px;
  height: 110%;
  -webkit-animation: loaderOuterRotate1 5s infinite linear;
  animation: loaderOuterRotate1 5s infinite linear;
}
.loader-def,
.vs-loadholder,
.vs-loadholder:after,
.vs-loadholder .vs-loader,
.vs-loadholder .vs-loader:after,
.vs-loadholder .vs-loader .loader-text,
.vs-loadholder .vs-loader .loader-text:before,
.vs-loadholder .vs-loader .loader-text:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-51%, -50%);
  -ms-transform: translate(-51%, -50%);
  transform: translate(-51%, -50%);
}
@-webkit-keyframes loaderOuterRotate1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderOuterRotate1 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderOuterRotate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes loaderOuterRotate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes LoaderColor {
  0% {
    color: #fff;
  }
  100% {
    color: var(--theme-color);
  }
}
@keyframes LoaderColor {
  0% {
    color: #fff;
  }
  100% {
    color: var(--theme-color);
  }
}
.vs-btn {
  border: none;
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--body-font);
  padding: 19.5px 40px;
  line-height: 1;
  border-radius: 7px 15px 7px 15px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.4s, background-color 0.4s, border-radius 0.4s;
  transition: color 0.4s, background-color 0.4s, border-radius 0.4s;
}
.vs-btn:after,
.vs-btn:before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 7px;
  z-index: -1;
}
.vs-btn:before {
  left: 0;
  top: 0;
  border-top: 2px solid var(--theme-color);
  border-left: 2px solid var(--theme-color);
}
.vs-btn:after {
  bottom: 0;
  right: 0;
  border-right: 2px solid var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}
.vs-btn:hover {
  color: var(--theme-color2);
}
.vs-btn:hover:after,
.vs-btn:hover:before {
  width: 30%;
  height: 50%;
  background-color: transparent;
  border-color: var(--theme-color2);
}
.vs-btn:hover:before {
  border-radius: 7px 0 0 0;
}
.vs-btn:hover:after {
  border-radius: 0 0 7px 0;
}
@media (max-width: 991px) {
  .vs-btn {
    padding: 18.5px 26px;
    font-size: 14px;
  }
}
.vs-btn i {
  margin-left: 10px;
}
.vs-btn.outline-style {
  border: 1px solid #404040;
  background-color: transparent;
  color: var(--white-color);
  border-radius: 7px;
  font-weight: 600;
  font-family: var(--title-font);
  letter-spacing: 0.05em;
}
.vs-btn.outline-style:before,
.vs-btn.outline-style:after {
  display: none;
}
.vs-btn.outline-style i {
  color: var(--theme-color2);
  margin-left: 0;
  margin-right: 10px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.vs-btn.outline-style:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}
.vs-btn.outline-style:hover i {
  color: var(--white-color);
}
.vs-btn.style3:after,
.vs-btn.style3:before,
.vs-btn.style2:after,
.vs-btn.style2:before {
  display: none;
}
.vs-btn.style2 {
  border-radius: 7px;
}
.vs-btn.style2:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.vs-btn.style3 {
  background-color: var(--white-color);
  font-size: 14px;
  color: var(--title-color);
  border-radius: 9999px;
  padding: 14px 33px;
}
.vs-btn.style3 i {
  margin-right: 13px;
}
.vs-btn.style3:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.icon-btn {
  display: inline-block;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  background-color: var(--icon-bg, #f3f3f3);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  border: none;
  padding: 0;
}
.icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.icon-btn.style2 {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 22px;
  border-radius: 10px;
}
.icon-btn.style3 {
  background-color: var(--white-color);
  font-size: 18px;
}
.icon-btn.style3:hover,
.icon-btn.style2:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}
.icon-btn.style4 {
  background-color: var(--title-color);
  color: var(--white-color);
  border-radius: 0;
  font-size: 20px;
  height: 75px;
  width: 75px;
  line-height: 75px;
}
.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  line-height: var(--icon-size, 60px);
  text-align: center;
  background-color: var(--theme-color2);
  color: var(--title-color);
  font-size: 2em;
  border-radius: 50%;
  z-index: 1;
  padding-left: 4px;
  -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(--theme-color2);
  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.style4:hover:after,
.play-btn.style4:hover::before,
.play-btn.style4:hover i,
.play-btn.style3:hover:after,
.play-btn.style3:hover::before,
.play-btn.style3:hover i,
.play-btn.style2:hover:after,
.play-btn.style2:hover::before,
.play-btn.style2:hover i,
.play-btn:hover:after,
.play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.play-btn.style2 i {
  background-color: var(--white-color);
  color: var(--theme-color2);
  font-size: 1.7em;
}
.play-btn.style2::before,
.play-btn.style2::after {
  background-color: var(--white-color);
}
.play-btn.style3 i {
  background-color: var(--white-color);
  color: var(--title-color);
  font-size: 1.7em;
}
.play-btn.style3::before,
.play-btn.style3::after {
  background-color: var(--white-color);
}
.play-btn.style4 i {
  background-color: rgba(28, 17, 33, 0.8);
  color: var(--theme-color2);
  font-size: 22px;
}
.play-btn.style4:after,
.play-btn.style4:before {
  border-color: var(--title-color);
  background-color: transparent;
}
.link-btn {
  display: inline-block;
  font-weight: 400;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -0.2em;
  text-transform: capitalize;
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 16px;
}
.link-btn i {
  margin-right: 7px;
  font-size: 0.9rem;
}
.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.link-btn:hover {
  color: var(--theme-color);
}
.link-btn:hover::before {
  width: 100%;
}
.link-btn.style2 {
  text-transform: uppercase;
  font-weight: 600;
}
.link-btn.style2 i {
  margin-left: 5px;
  color: var(--theme-color2);
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.link-btn.style2:hover i {
  color: var(--theme-color);
}
.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: #fff;
  border-radius: inherit;
  z-index: 1;
}
.scroll-btn:focus i,
.scroll-btn:hover i {
  background-color: var(--title-color);
  color: var(--white-color);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }
  .scroll-btn.show {
    bottom: 15px;
  }
}
.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 96;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .play-btn {
    --icon-size: 60px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}
.sec-title {
  margin-top: -0.25em;
  margin-bottom: 18px;
}
.sec-title + .sec-title-style2 {
  margin-top: -0.45em;
}
.sec-title-style2 {
  font-weight: 300;
  margin-top: -0.25em;
  margin-bottom: 18px;
  color: var(--theme-color2);
}
.sub-title {
  font-size: 16px;
  letter-spacing: 0.5em;
  color: var(--theme-color2);
  font-weight: 400;
  display: block;
  font-family: var(--title-font);
  margin-top: -0.45em;
  margin-bottom: 18px;
  color: var(--theme-color2);
}
.sub-title.style2 {
  color: var(--theme-color);
  font-weight: 500;
}
.sec-shape {
  line-height: 1;
}
.sec-shape_bar {
  display: inline-block;
  background-color: var(--theme-color2);
  height: 10px;
  width: 35px;
  margin-right: 13px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}
.sec-shape_bar:first-child {
  margin-left: 5px;
}
.sec-shape_bar:last-child {
  margin-right: 0;
  background-color: var(--theme-color);
}
.sec-text {
  font-size: 18px;
  line-height: 28px;
  /* text-align: center!important; */
}
@media (min-width:1440px){
  .sec-text {
    font-size: 17px;
  }
}

.title-area {
  margin-bottom: var(--section-title-space);
}
@media (max-width: 1199px) {
  .sub-title {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
  }
  .title-area {
    margin-bottom: calc(var(--section-title-space) - 20px);
  }
}
@media (max-width: 767px) {
  .sec-text {
    font-size: 16px;
    line-height: 26px;
  }
}
.image-scale-hover {
  overflow: hidden;
}
.image-scale-hover img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  -ms-transform: scale(1.001);
  transform: scale(1.001);
}
.image-scale-hover:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}
.z-index-common {
  position: relative;
  z-index: 3;
}
.z-index-n1 {
  z-index: -1;
}
.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.gap-30 {
  gap: 30px;
}
.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.35em 0.55em;
  border-radius: 50%;
}
.border-divider {
  height: 10px;
  width: 100%;
  clear: both;
}
.vs-cursor {
  position: absolute;
  top: -9px;
  left: -9px;
  z-index: 99999;
  width: 30px;
  height: 30px;
  display: inline-block;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--theme-color2);
  opacity: 0.7;
}
@media (max-width: 1399px) {
  .vs-cursor {
    display: none;
  }
}
.new-label {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 12px;
  font-weight: 400;
  font-family: var(--title-font);
  padding: 2px 5px;
  line-height: 1;
  border-radius: 4px;
  position: relative;
  top: -2px;
  letter-spacing: 0.5px;
}
.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
}
.parallax {
  position: fixed;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.font-icon {
  font-family: var(--icon-font);
}
.font-title {
  font-family: var(--title-font);
}
.font-body {
  font-family: var(--body-font);
}
.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-xs {
  font-size: 14px;
}
.bg-theme {
  background-color: var(--theme-color) !important;
}
.bg-theme2 {
  background-color: var(--theme-color2) !important;
}
.bg-title {
  background-color: var(--title-color) !important;
}
.bg-dark {
  background-color: var(--dark-color) !important;
}
.bg-smoke {
  background-color: var(--smoke-color) !important;
}
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-black {
  background-color: var(--black-color) !important;
}
.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}
@media (max-width:767px){
  .background-image,
  [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.bg-auto {
  background-size: auto auto;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-light-gray {
  background-color: #f9f9f9;
}
.bg-light-blue {
  background-color: #d9e6ff;
}
.bg-mock-dark {
  background-color: #262228;
}
.text-theme {
  color: var(--theme-color) !important;
}
.text-theme2 {
  color: var(--theme-color2) !important;
}
.text-title {
  color: var(--title-color) !important;
}
.text-body {
  color: var(--body-color) !important;
}
.text-white {
  color: var(--white-color) !important;
}
.justify{
  text-align: justify!important;
}
.text-yellow {
  color: var(--yellow-color) !important;
}
.text-success {
  color: #ffd032 !important;
}
.text-white-light {
  color: var(--white-light-color) !important;
}
.text-error {
  color: #ffe600 !important;
}
.text-inherit {
  color: inherit;
}
.text-inherit:hover {
  color: var(--theme-color2);
}
a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}
.text-light-white {
  color: #c3c3c3;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.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;
}
[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="theme2"]:before {
  background-color: var(--theme-color2);
}
/*======================= custom css =================================*/

[data-overlay="title-banner"]:before {
    /* background-color: var(--title-color); */
    /*background-color: #020202cf;*/
}
[data-overlay="title-buy"]:before {
    /* background-color: var(--title-color); */
    background-color: #000;
}

[data-overlay="title-token"]:before {
    /* background-color: var(--title-color); */
    background-color: #000000a8;
}
/*======================= custom css =================================*/
[data-overlay="title"]:before {
  /* background-color: var(--title-color); */
  /*background-color: #1c1121;*/
}
[data-overlay="roadmap"]:before {
  /* background-color: var(--title-color); */
  background-color: #000000;
}
[data-overlay="game"]:before {
  /* background-color: var(--title-color); */
  background-color: #1c1121da;
}
[data-overlay="footer"]:before {
  /* background-color: var(--title-color); */
  /* background-color: #1c1121; */
  /*background-color: #1c1121c2;*/
  z-index: -1;
}
[data-overlay="white"]:before {
  background-color: var(--white-color);
}
[data-overlay="black"]:before {
  background-color: var(--black-color);
}
[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;
}
[data-opacity="95"]:before {
  opacity: 0.95;
}
.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.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
.scalein.vs-animated {
  --animation-name: scalein;
}
.slidetopleft.vs-animated {
  --animation-name: slidetopleft;
}
.slidebottomright.vs-animated {
  --animation-name: slidebottomright;
}
.slideinleft.vs-animated {
  --animation-name: slideinleft;
}
.slideinright.vs-animated {
  --animation-name: slideinright;
}
.slideinup.vs-animated {
  --animation-name: slideinup;
}
.slideindown.vs-animated {
  --animation-name: slideindown;
}
.fadein.vs-animated {
  --animation-name: fadein;
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup {
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
  animation-name: var(--animation-name);
}
.vs-animated {
  opacity: 1;
}
@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
    transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
    transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
    transform: translateX(100px) translateY(100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px) translateY(100px);
    transform: translateX(100px) translateY(100px);
  }
  100% {
    -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% {
    -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% {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }
}
@-webkit-keyframes scalein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scalein {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0px 0 -5px 0;
  padding: 0;

}
.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  position: relative;
  color: var(--white-color);
  border-bottom: 1px solid rgba(165, 165, 165, 0.3);
  line-height: 1;
  padding-bottom: 17px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  font-family: var(--title-font);
}
.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  color: var(--theme-color2);
}
.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}
.widget_nav_menu li > span,
.widget_meta li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_categories li > span {
  font-size: 18px;
  color: var(--white-color);
  position: absolute;
  right: 0;
  top: -1px;
  line-height: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  font-family: var(--title-font);
}
.widget_nav_menu li:hover > span,
.widget_meta li:hover > span,
.widget_pages li:hover > span,
.widget_archive li:hover > span,
.widget_categories li:hover > span {
  color: var(--theme-color2);
}
.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}
.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}
.widget_nav_menu .sub-menu {
  margin-left: 10px;
}
.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.wp-block-archives a:not(:hover) {
  color: inherit;
}
.vs-blog ul.wp-block-archives li {
  margin: 5px 0;
}
.sidebar-area {
  background-color: #212121;
  padding: 50px 50px 10px 50px;
}
.sidebar-area .widget {
  margin-bottom: 40px;
}
.widget select,
.widget input {
  color: var(--body-color);
  padding-left: 30px;
  font-size: 16px;
  background-color: var(--input-bg, #212121);
  border: 1px solid rgba(112, 112, 112, 0.4);
  height: 60px;
  border-radius: 9999px;
  font-weight: 500;
  width: 100%;
}
.widget select::-moz-placeholder,
.widget input::-moz-placeholder {
  color: var(--body-color);
}
.widget select::-webkit-input-placeholder,
.widget input::-webkit-input-placeholder {
  color: var(--body-color);
}
.widget select:-ms-input-placeholder,
.widget input:-ms-input-placeholder {
  color: var(--body-color);
}
.widget select::-webkit-input-placeholder,
.widget input::-webkit-input-placeholder {
  color: var(--body-color);
}
.widget select::-moz-placeholder,
.widget input::-moz-placeholder {
  color: var(--body-color);
}
.widget select:-ms-input-placeholder,
.widget input:-ms-input-placeholder {
  color: var(--body-color);
}
.widget select::-ms-input-placeholder,
.widget input::-ms-input-placeholder {
  color: var(--body-color);
}
.widget select::placeholder,
.widget input::placeholder {
  color: var(--body-color);
}
.widget-big-title h2,
.widget_title {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 30px;
  margin-top: -0.17em;
  padding-bottom: 17px;
  position: relative;
  color: var(--white-color);
}
.widget-big-title h2:before,
.widget_title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--theme-color2);
}
.widget .search-form {
  position: relative;
}
.widget .search-form input {
  padding-right: 50px;
}
.widget .search-form button {
  text-align: center;
  padding: 0;
  color: #707070;
  background-color: transparent;
  border: none;
  position: absolute;
  right: 30px;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 26px;
}
.widget .search-form button:hover {
  border-color: var(--theme-color);
  background-color: var(--white-color);
  color: var(--theme-color);
}
.wp-block-tag-cloud a,
.widget .tagcloud a {
  display: inline-block;
  border: none;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 10.5px 23px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: var(--tag-bg, #f6f6f6);
  border-radius: 9999px;
}
.wp-block-tag-cloud a:hover,
.widget .tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
}
.widget .tagcloud {
  margin-right: -5px;
  margin-bottom: -10px;
}
.widget .tagcloud a:not(:hover) {
  background-color: #fff;
}
.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: 30px;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post .post-title {
  font-weight: 500;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.recent-post .media-img {
  margin-right: 25px;
  width: 80px;
  border-radius: 5px;
  border: 1px solid #707070;
  overflow: hidden;
}
.recent-post .media-img img {
  width: 100%;
}
.recent-post .recent-post-meta {
  line-height: 1.2;
}
.recent-post .recent-post-meta a {
  position: relative;
  font-size: 16px;
  font-family: var(--title-font);
  padding-right: 13px;
  margin-right: 8px;
}
.recent-post .recent-post-meta a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  background-color: var(--theme-color2);
  margin-top: -5px;
}
.recent-post .recent-post-meta a i {
  margin-right: 8px;
  font-size: 0.75em;
}
.recent-post .recent-post-meta a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.recent-post .recent-post-meta a:last-child::before {
  display: none;
}
.recent-post.style2 .post-title {
  font-weight: 600;
  color: var(--title-color);
}
.recent-post.style2 .recent-post-meta a {
  color: var(--body-color);
  text-transform: uppercase;
}
.recent-post-tab {
  position: relative;
  margin-bottom: 20px;
}
.recent-post-tab .nav-link {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--title-font);
  text-transform: capitalize;
  padding: 0 19px 10px 19px;
  color: var(--white-color);
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.recent-post-tab .nav-link:last-of-type {
  padding-right: 0;
}
.recent-post-tab .nav-link:first-child {
  padding-left: 0;
}
.recent-post-tab .nav-link.active,
.recent-post-tab .nav-link:hover {
  color: var(--theme-color2);
}
.recent-post-tab .indicator {
  position: absolute;
  left: var(--pos-x);
  bottom: var(--pos-y);
  height: 2px;
  width: var(--width-set);
  background-color: var(--theme-color2);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.recent-post-tab.style2 {
  border-bottom: 1px solid var(--title-color);
}
.recent-post-tab.style2 button {
  color: var(--title-color);
  font-weight: 600;
}
.recent-post-tab.style2 .indicator {
  height: 1px;
  margin-bottom: -1px;
}
.widget-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 10px;
}
.widget-gallery .gallery-thumb {
  position: relative;
  overflow: hidden;
}
.widget-gallery .gallery-thumb img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.widget-gallery .gallery-thumb:hover img {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}
.widget-author-about {
  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;
}
.widget-author-about .avater {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 25px;
}
.widget-author-about .text {
  color: var(--white-color);
  margin-bottom: 10px;
  line-height: 26px;
}
.widget-author-about .name {
  color: var(--theme-color2);
  margin-bottom: 0;
}
.widget-author-about .degi {
  color: #b8b8b8;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 1600px) {
  .widget-author-about {
    display: block;
  }
  .widget-author-about .avater {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
@media (max-width: 1399px) {
  .sidebar-area {
    padding: 30px 30px 10px 30px;
  }
  .recent-post .post-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .recent-post .recent-post-meta a {
    font-size: 14px;
    padding-right: 11px;
    margin-right: 6px;
  }
  .recent-post .media-img {
    margin-right: 15px;
  }
}
@media (max-width: 1199px) {
  .widget-big-title h2,
  .widget_title {
    font-size: 20px;
  }
  .widget_title:before,
  .widget-big-title h2:before {
    width: 45px;
  }
  .widget .search-form button {
    font-size: 18px;
  }
  .recent-post-tab .nav-link {
    font-size: 14px;
    padding: 0 10px 10px 10px;
  }
  .recent-post:not(.style2) .recent-post-meta a {
    font-size: 14px;
    padding-right: 0;
    margin-right: 0;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 5px;
  }
  .recent-post:not(.style2) .recent-post-meta a::before {
    display: none;
  }
  .recent-post:not(.style2) .recent-post-meta a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .wp-block-tag-cloud a,
  .widget .tagcloud a {
    padding: 10.5px 18px;
  }
}
.footer-widget .widget_title,
.widget-big-title h2 {
  font-size: 30px;
  margin-bottom: 22px;
  margin-top: -0.15em;
  text-transform: uppercase;
}
.footer-widget .widget_title:before,
.widget-big-title h2:before {
  width: 60px;
}
.widget-big-title > h2 {
  color: var(--white-color);
}
@media (min-width: 1600px) {
  .widget-big-title > h2 {
    font-size: 48px;
  }
}
.footer-widget {
  margin-bottom: 40px;
}
.footer-widget.widget_meta,
.footer-widget.widget_pages,
.footer-widget.widget_archive,
.footer-widget.widget_categories,
.footer-widget.widget_nav_menu {
  margin-bottom: 45px;
}
.footer-widget.widget_meta .widget_title,
.footer-widget.widget_pages .widget_title,
.footer-widget.widget_archive .widget_title,
.footer-widget.widget_categories .widget_title,
.footer-widget.widget_nav_menu .widget_title {
  margin-bottom: 22px;
}
.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 {
  background-color: transparent;
  padding: 0;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 16px;
  border: none;
  font-weight: 600;
}
@media (min-width:1440px){
  .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 {
    font-size: 17px;
  }
}
.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: #fff;
}
.footer-widget.widget_meta a:before,
.footer-widget.widget_pages a:before,
.footer-widget.widget_archive a:before,
.footer-widget.widget_categories a:before,
.footer-widget.widget_nav_menu a:before {
  content: "\f30b";
  font-family: var(--icon-font);
  margin-right: 15px;
  position: relative;
  top: 1px;
}
.footer-widget.widget_meta li,
.footer-widget.widget_pages li,
.footer-widget.widget_archive li,
.footer-widget.widget_categories li,
.footer-widget.widget_nav_menu li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.footer-widget.widget_meta li > span,
.footer-widget.widget_pages li > span,
.footer-widget.widget_archive li > span,
.footer-widget.widget_categories li > span,
.footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--white-color);
  font-size: 13px;
  line-height: 1;
  margin-left: 5px;
}
.footer-widget.widget_meta li:hover > span,
.footer-widget.widget_pages li:hover > span,
.footer-widget.widget_archive li:hover > span,
.footer-widget.widget_categories li:hover > span,
.footer-widget.widget_nav_menu li:hover > span {
  color: var(--theme-color2);
}
.footer-widget.widget_meta li:last-child a,
.footer-widget.widget_pages li:last-child a,
.footer-widget.widget_archive li:last-child a,
.footer-widget.widget_categories li:last-child a,
.footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}
.newsletter-style3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.newsletter-style3 input {
  font-size: 14px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background-color: transparent;
  height: 60px;
  color: var(--white-color);
}
.newsletter-style3 input::-moz-placeholder {
  color: #8088a8;
}
.newsletter-style3 input::-webkit-input-placeholder {
  color: #8088a8;
}
.newsletter-style3 input:-ms-input-placeholder {
  color: #8088a8;
}
.newsletter-style3 input::-ms-input-placeholder {
  color: #8088a8;
}
.newsletter-style3 input::placeholder {
  color: #8088a8;
}
.newsletter-style3 .form-btn {
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  border-radius: 0;
}
.footer-about-text {
  color: var(--white-color);
  line-height: 21px;
  margin-bottom: 35px;
  max-width: 400px;
}
.footer-logo {
  margin-bottom: 20px;
}
.footer-info {
  color: var(--white-color);
  font-size: 14px;
  max-width: 300px;
  padding-left: 25px;
  position: relative;
  line-height: 24px;
}
.footer-info:last-child {
  margin-bottom: 0;
}
.footer-info a {
  color: inherit;
}
.footer-info a:hover {
  color: var(--theme-color2);
}
.footer-info i {
  color: var(--theme-color2);
  position: absolute;
  left: 0;
  top: 5px;
}
.footer-info.style2 {
  max-width: 390px;
  margin-bottom: 10px;
}
.footer-newsletter {
  background-color: #262228;
  border-radius: 30px;
  padding: 60px 80px;
  margin-bottom: -102.5px;
  z-index: 1;
  position: relative;
}
.newsletter-style1 .form-group {
  position: relative;
  margin-bottom: 0;
}
.newsletter-style1 .form-group > i,
.newsletter-style1 .form-group button {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.newsletter-style1 .form-group > i {
  right: auto;
  left: 40px;
}
.newsletter-style1 input {
  border: none;
  background-color: #322d34;
  color: var(--white-color);
  width: 100%;
  height: 85px;
  border-radius: 10px;
  padding-left: 85px;
  padding-right: 150px;
}
.newsletter-style1 input::-moz-placeholder {
  color: #888888;
}
.newsletter-style1 input::-webkit-input-placeholder {
  color: #888888;
}
.newsletter-style1 input:-ms-input-placeholder {
  color: #888888;
}
.newsletter-style1 input::-ms-input-placeholder {
  color: #888888;
}
.newsletter-style1 input::placeholder {
  color: #888888;
}
.widget-newsletter .newsletter-text {
  color: var(--white-color);
  margin-bottom: 23px;
}
.newsletter-style2 {
  position: relative;
}
.newsletter-style2 .icon-btn,
.newsletter-style2 .form-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.newsletter-style2 .form-icon {
  color: var(--theme-color2);
  font-size: 1.2em;
}
.newsletter-style2 .icon-btn {
  left: auto;
  right: 20px;
}
.newsletter-style2 .icon-btn i {
  margin: 0;
}
.newsletter-style2 .form-control {
  height: 85px;
  border-radius: 10px;
  background-color: #322d34;
  border: 1px solid #707070;
  color: var(--white-color);
  font-size: 20px;
  font-family: var(--title-font);
  width: 390px;
  padding-left: 60px;
  margin-bottom: 0;
  max-width: 100%;
  padding-right: 75px;
}
.newsletter-style2 .form-control::-moz-placeholder {
  color: #888888;
}
.newsletter-style2 .form-control::-webkit-input-placeholder {
  color: #888888;
}
.newsletter-style2 .form-control:-ms-input-placeholder {
  color: #888888;
}
.newsletter-style2 .form-control::-ms-input-placeholder {
  color: #888888;
}
.newsletter-style2 .form-control::placeholder {
  color: #888888;
}
@media (max-width: 1199px) {
  .footer-newsletter {
    padding: 40px 40px;
    margin-bottom: -82.5px;
  }
}
@media (max-width: 991px) {
  .footer-newsletter {
    padding: 40px 40px;
    margin-bottom: var(--section-space-mobile);
  }
  .footer-about-text {
    margin-bottom: 25px;
    padding-right: 10px;
  }
  .widget-big-title h2,
  .footer-widget .widget_title {
    font-size: 24px;
    margin-top: -0.16em;
    margin-bottom: 18px;
  }
  .newsletter-style2 .form-icon {
    left: 20px;
  }
  .newsletter-style2 .form-control {
    height: 65px;
    padding-left: 50px;
    font-size: 16px;
  }
  .newsletter-style2 .icon-btn {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .footer-newsletter {
    padding: 40px 20px;
  }
  .newsletter-style1 .form-group input {
    padding-left: 20px;
    height: 60px;
    padding-right: 40px;
    border-radius: 5px;
  }
  .newsletter-style1 .form-group > i {
    right: 20px;
    left: auto;
    top: 30px;
  }
  .newsletter-style1 .form-group button {
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
    margin-top: 10px;
  }
}
.vs-header {
  position: relative;
  z-index: 41;
}
.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--black-color);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
  top: 0;
}
.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
  text-transform: uppercase;
}
@media (min-width:1440px){
  .main-menu a {
    color: 17px!important;
  }
}

.main-menu a:hover {
  color: var(--theme-color2);
}
.main-menu > ul > li {
  margin: 0 15px;
}
.main-menu > ul > li > a {
  line-height: 1;
  font-family: 'game-font';
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f107";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 3px;
  top: 0.8px;
  font-size: 0.8rem;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09),
    0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: margin-top 0.4s ease-in-out 0s,
    visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s,
    opacity 0.4s ease-in-out 0s, z-index 0s;
}
.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}
.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34.5px;
  top: 30px;
  width: 1px;
  background-color: #ededed;
  height: calc(100% - 60px);
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 3px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
  text-transform: capitalize;
}
.main-menu ul.sub-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 2.5em;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--theme-color);
  font-weight: 700;
  background-color: var(--white-color);
  box-shadow: inset 0px 2px 4px 0px rgba(173, 136, 88, 0.4);
}
.main-menu ul.sub-menu li a:hover {
  color: var(--theme-color);
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.main-menu .mega-menu-wrap {
  position: static;
}
.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.main-menu ul.mega-menu li li {
  padding: 4px 0;
}
.main-menu ul.mega-menu li a {
  display: inline-block;
  text-transform: capitalize;
}
.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after,
.main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}
.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}
.menu-style1 > ul > li {
  margin: 0 32px;
}
.menu-style1 > ul > li > a {
  color: var(--white-color);
  padding: 42px 0;
}
.menu-style2 > ul > li {
  margin: 0 32px;
}
.menu-style2 > ul > li > a {
  color: var(--white-color);
  padding: 40px 0;
  font-weight: 400;
}
@media (min-width:1440px){
  .menu-style2 > ul > li > a {
    font-size: 17px;
  }
}

.menu-style3 > ul > li {
  margin: 0 32px;
}
.menu-style3 > ul > li > a {
  padding: 29.5px 0;
}
.header-layout1 {
  position: absolute;
  left: 0;
  top: 20px;
  right: 0;
  z-index: 4;
}
.header-layout2 .header-menu-area,
.header-layout3 .header-menu-area {
  background-color: var(--title-color);
}
.header-layout2 .will-sticky .sticky-active,
.header-layout3 .will-sticky .sticky-active {
  background-color: var(--black-color);
}
.header-layout2 .will-sticky .header-menu-area,
.header-layout3 .will-sticky .header-menu-area {
    background-color: #130a17;
}
.header-layout5 .header-top,
.header-layout3 .header-top,
.header-layout2 .header-top {
  padding: 10px 0;
  background-color: #2b1f30;
}
.header-layout3 {
  position: absolute;
  left: 0;
  right: 0;
}
.header-layout3 .header-menu-area {
  padding: 0 30px;
}
.header-layout3 .header-top {
  padding: 10px 30px;
}
.header-layout5 .menu-top {
  padding: 13px 0;
}
.header-layout5 .menu-area {
  background-color: #f0f0f0;
}
.header-layout5 .sticky-active {
  background-color: transparent;
  box-shadow: none;
}
.header-layout6 {
  background-color: rgba(3, 4, 30, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}
.header-call {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.header-call-icon {
  background-color: var(--theme-color2);
  color: var(--white-color);
  width: 120px;
  text-align: center;
  font-size: 34px;
  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;
}
.header-call-content {
  background-color: var(--title-color);
  padding: 25px 40px 25px 30px;
}
.header-call-title {
  color: var(--white-color);
  font-size: 24px;
  font-family: var(--title-font);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}
.header-call-number {
  font-size: 14px;
  color: var(--white-color);
  font-weight: 600;
  font-family: var(--body-font);
  letter-spacing: 0.2em;
}
.header-call-number:hover {
  color: var(--theme-color);
}
.header-button .outline-style {
  margin-right: 35px;
}
.header-button button {
  border: none;
  background-color: transparent;
  color: var(--white-color);
  font-size: 28px;
  display: inline-block;
  margin-right: 30px;
  padding: 0;
}
.header-button button:last-child {
  margin-right: 0;
}
.header-button button:hover {
  color: var(--theme-color2);
}
.header-text {
  margin-bottom: 0;
}
.header-number {
  display: inline-block;
  letter-spacing: 0.19em;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
.header-number i {
  font-size: 1.3em;
  vertical-align: middle;
  margin-right: 10px;
}
.header-links {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--body-font);
}
.header-links p,
.header-links a {
  font-size: inherit;
  color: inherit;
}
@media (min-width:1440px){
  .header-links p,
  .header-links a {
    font-size: 17px;
  }
}
.header-links a:hover {
  color: var(--theme-color);
}
.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header-links li {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  margin-right: 25px;
}
.header-links li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 16px;
  margin-top: -8px;
  background-color: #707070;
}
.header-links li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-links li:last-child:before {
  display: none;
}
.header-links .dropdown-toggle:after {
  content: "\f107";
  margin: 0;
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 3px;
}
.header-links ul.dropdown-menu {
  padding: 10px 15px;
  border: none;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
  margin: 0;
  margin-left: -15px !important;
  margin-top: 15px !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  position: relative;
  z-index: 3;
  border: 1px solid #ededed;
}
.header-links ul.dropdown-menu li {
  padding: 0;
  margin: 0;
}
.header-links ul.dropdown-menu li:before {
  display: none;
}
.header-links ul.dropdown-menu li:last-child {
  margin-bottom: 0;
}
.header-links ul.dropdown-menu a {
  display: block;
  margin: 11px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 2px 0;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
}
.header-links ul.dropdown-menu a:hover {
  color: var(--theme-color);
}
.header-links ul.dropdown-menu a:first-child {
  margin-top: 0;
  padding-top: 0;
}
.header-links ul.dropdown-menu a:last-of-type,
.header-links ul.dropdown-menu a:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.header-links ul.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 18px;
  top: -7px;
  width: 14px;
  height: 14px;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
}
.header-top-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-top-links li {
  display: inline-block;
  margin-right: 23px;
}
.header-top-links li:last-child {
  margin-right: 0;
}
.header-top-links a {
  font-size: 18px;
  font-family: var(--title-font);
}
.header-top-links.text-white a:not(:hover) {
  color: var(--white-color);
}
.header_news {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 3px 0;
}
.header_news_label {
  background-color: var(--theme-color2);
  color: var(--white-color);
  margin-right: 20px;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 7px;
}
.header_news.text-white .header_news_text {
  color: var(--white-color);
  margin-bottom: 0;
}
.breaking-news-slider {
  padding-right: 70px;
}
.breaking-news-slider .slick-arrow {
  width: 26px;
  height: 26px;
  line-height: 25px;
  border: none;
  font-size: 12px;
  right: 0;
  margin: 0;
  top: 50%;
  margin-top: -13px;
}
.breaking-news-slider .slick-arrow.slick-prev {
  right: 35px;
  left: auto;
}
@media (max-width: 1600px) {
  .menu-style2 > ul > li,
  .menu-style1 > ul > li {
    margin: 0px 10px;
  }
  .header_news_text {
    font-size: 12px;
  }
  .header_news_label {
    margin-right: 15px;
    padding: 7px 11px;
    font-size: 12px;
  }
  .header-top-links a {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .header-button button {
    margin-right: 15px;
  }
  .header-layout1 {
    top: 10px;
  }
  .menu-style3 > ul > li,
  .menu-style1 > ul > li {
    margin: 0px 14px;
  }
  .breaking-news-slider {
    padding-right: 0;
  }
  .header-top-links li {
    margin-right: 12px;
  }
}
@media (max-width: 991px) {
  .header-layout1 {
    position: relative;
    top: 0;
    background-color: var(--title-color);
  }
  .header-layout3 {
    position: relative;
    background-color: var(--title-color);
  }
  .header-layout3 .header-menu-area,
  .header-layout3 .header-top {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-layout6 {
    position: relative;
    background-color: #03041e;
  }
}
/* .widget-area {
  padding-top: 100px;
} */
.footer-layout4 .copyright-wrap,
.footer-layout3 .copyright-wrap,
.footer-layout2 .copyright-wrap,
.footer-layout1 .copyright-wrap {
  background-color: #262525;
  padding: 30px 0;
}
.footer-layout4 .copyright-wrap p,
.footer-layout3 .copyright-wrap p,
.footer-layout2 .copyright-wrap p,
.footer-layout1 .copyright-wrap p {
  color: var(--white-color);
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 767px) {
  .footer-layout4 .copyright-wrap p,
  .footer-layout3 .copyright-wrap p,
  .footer-layout2 .copyright-wrap p,
  .footer-layout1 .copyright-wrap p {
    font-size: 16px;
  }
}
.footer-layout1 .widget-area {
  padding-top: 182.5px;
  padding-bottom: 20px;
}
.footer-layout5 .widget-area,
.footer-layout4 .widget-area,
.footer-layout2 .widget-area,
.footer-layout3 .widget-area {
  padding-top: 100px;
  padding-bottom: 40px;
}
.footer-layout2 {
  background-color: #1e191f;
}
.footer-layout4 .copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
}
.footer-layout5 {
  background-color: #101c4f;
}
.footer-layout5 .copyright-wrap {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-layout5 .copyright-wrap p {
  color: #8088a8;
}
.copyright-wrap p {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .footer-layout1 .widget-area {
    padding-top: 142.5px;
  }
}
@media (max-width: 991px) {
  .footer-layout3 .widget-area,
  .footer-layout2 .widget-area,
  .footer-layout1 .widget-area {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .footer-layout4 .copyright-wrap p,
  .footer-layout3 .copyright-wrap p,
  .footer-layout2 .copyright-wrap p,
  .footer-layout1 .copyright-wrap p {
    font-size: 12px;
  }
}
.breadcumb-menu {
  max-width: 100%;
  margin: -0.43em 0 30px 0;
  padding: 0;
  list-style-type: none;
}
.breadcumb-menu li {
  display: inline-block;
  list-style: none;
  position: relative;
}
.breadcumb-menu li:after {
  content: ">";
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--body-font);
  margin-left: 15px;
  margin-right: 13px;
  vertical-align: middle;
}
.breadcumb-menu li:last-child:after {
  display: none;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 18px;
  color: var(--theme-color2);
  letter-spacing: 0.1em;
  font-family: var(--title-font);
}
.breadcumb-menu li i,
.breadcumb-menu a i,
.breadcumb-menu span i {
  margin-right: 10px;
  font-size: 0.8rem;
  position: relative;
  top: -1px;
}
.breadcumb-title {
  font-weight: 700;
  margin: -0.3em 0;
  color: var(--white-color);
  text-transform: uppercase;
}
@media (min-width: 1399px) {
  .breadcumb-title {
    font-size: 60px;
  }
}
.breadcumb-wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1199px) {
  .breadcumb-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .breadcumb-title {
    font-size: 36px;
  }
  .breadcumb-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .breadcumb-menu {
    margin: -0.43em 0 20px 0;
  }
}
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: 30px;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}
.vs-pagination {
  text-align: center;
}
.vs-pagination ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.vs-pagination li {
  display: inline-block;
  margin: 0 3px;
}
.vs-pagination li:last-child {
  margin-right: 0;
}
.vs-pagination li:first-child {
  margin-left: 0;
}
.vs-pagination span,
.vs-pagination a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 18px;
  color: var(--white-color);
  text-align: center;
  position: relative;
  border: 2px solid #707070;
  z-index: 1;
  font-weight: 500;
  border-radius: 50%;
  font-family: var(--title-font);
}
.vs-pagination span.active,
.vs-pagination span:hover,
.vs-pagination a.active,
.vs-pagination a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: transparent;
}
@media (max-width: 767px) {
  .vs-pagination span,
  .vs-pagination a {
    width: 40px;
    height: 40px;
    line-height: 33px;
    font-size: 14px;
  }
}
blockquote {
  padding: 50px 60px 50px 60px;
  display: block;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-color);
  margin: 35px 0;
  border-left: 5px solid var(--theme-color2);
}
blockquote p {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: var(--title-font);
  color: var(--white-color);
  position: relative;
  z-index: 2;
}
blockquote p {
  margin-bottom: 10px;
}
blockquote p a {
  color: inherit;
}
blockquote cite {
  font-size: 24px;
  font-weight: 400;
  color: var(--theme-color2);
  font-family: var(--title-font);
  line-height: 1;
  font-style: normal;
}
.blog-meta span,
.blog-meta a {
  display: inline-block;
  font-size: 16px;
  color: var(--theme-color2);
  font-family: var(--title-font);
  text-transform: uppercase;
  position: relative;
  padding-right: 15px;
  margin-right: 12px;
}
.blog-meta span:before,
.blog-meta a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 12px;
  margin-top: -6px;
  width: 1px;
  background-color: currentColor;
}
.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
  padding-right: 0;
}
.blog-meta span:last-child:before,
.blog-meta a:last-child:before {
  display: none;
}
.blog-meta span:hover,
.blog-meta a:hover {
  color: var(--theme-color);
}
.blog-meta span i,
.blog-meta a i {
  margin-right: 10px;
  font-size: 0.8em;
  color: var(--theme-color2);
}
.blog-category {
  margin-bottom: -10px;
}
.blog-category a {
  display: inline-block;
  color: #fff;
  padding: 4.5px 24.5px;
  margin-right: 5px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  background-color: var(--theme-color);
}
.blog-category a:hover {
  background-color: var(--white-color);
  color: var(--body-color);
  border-color: var(--theme-color);
}
.blog-title a {
  color: inherit;
}
.blog-title a:hover {
  color: var(--theme-color);
}
.vs-blog {
  margin-bottom: 30px;
}
.blog-inner-title {
  margin-bottom: 40px;
  margin-top: -0.25em;
  padding-bottom: 17px;
  position: relative;
  color: var(--white-color);
}
.blog-inner-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background-color: var(--theme-color2);
}
.blog-inner-title.style2 {
  color: var(--title-color);
  margin-bottom: 20px;
}
.blog-author {
  padding: 40px;
  margin: var(--blog-space-y, 60px) var(--blog-space-x, 60px);
  position: relative;
  background-color: #262525;
}
.blog-author .author-degi {
  margin-bottom: 0px;
  color: var(--theme-color2);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 16px;
  font-family: var(--title-font);
}
.blog-author .media-img {
  display: inline-block;
  margin-right: 25px;
  overflow: hidden;
  border-radius: 50%;
}
.blog-author .media-img img {
  border-radius: inherit;
}
.blog-author .author-name {
  margin-bottom: 10px;
}
.share-links-title {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-weight: 400;
  color: var(--theme-color2);
  margin: -0.3em 10px 0 0;
}
.share-links {
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  padding: 30px 0;
  margin: var(--blog-space-y, 40px) var(--blog-space-x, 60px)
    var(--blog-space-y, 60px) var(--blog-space-x, 60px);
}
.share-links .multi-social,
.share-links .tagcloud {
  display: inline-block;
}
.share-links .tagcloud a {
  color: var(--white-color);
}
.share-links .tagcloud a:hover {
  color: var(--theme-color);
}
.share-links .tagcloud a:not(:last-child):after {
  content: ",";
  position: relative;
  margin-right: 3px;
}
.blog-single {
  position: relative;
  background-color: var(--title-color);
}
.blog-single h1,
.blog-single h2,
.blog-single h3,
.blog-single h4,
.blog-single h5,
.blog-single h6 {
  color: var(--white-color);
}
.blog-single,
.blog-single p {
  color: #c3c3c3;
}
.blog-single blockquote p {
  color: var(--white-color);
}
.blog-single .blog-content {
  padding: 0 var(--blog-space-x, 60px) var(--blog-space-y, 60px)
    var(--blog-space-x, 60px);
  margin: var(--blog-space-y, 60px) 0;
  position: relative;
  overflow: hidden;
}
.blog-single .social-links {
  margin-top: -0.05em;
}
.blog-single .blog-meta {
  margin-bottom: 10px;
  margin-top: -0.45em;
}
.blog-single .blog-title {
  line-height: 1.4;
  padding-bottom: 13px;
  margin-bottom: 17px;
  position: relative;
}
.blog-single .blog-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100px;
  background-color: var(--theme-color2);
}
.blog-single .blog-audio {
  line-height: 0;
}
.blog-single .link-btn {
  margin-bottom: -0.2em;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.blog-single .blog-img {
  position: relative;
  background-color: #282828;
}
.blog-single .blog-img .slick-arrow {
  position: absolute;
  left: 40px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  --title-color: #fff;
}
.blog-single .blog-img .slick-arrow.slick-next {
  left: auto;
  right: 40px;
}
.blog-single .blog-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.blog-single:hover .blog-img .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.blog-details .blog-content {
  margin-bottom: calc(var(--blog-space-y, 60px) - 10px);
  padding-bottom: 0;
}
.blog-details .blog-single {
  padding-bottom: var(--blog-space-y, 60px);
  margin-bottom: 30px;
}
.blog-card {
  text-align: center;
}
.blog-card .blog-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.blog-card .blog-img img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.blog-card .blog-meta {
  margin-bottom: 15px;
}
.blog-card .blog-title {
  color: var(--white-color);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.blog-card .blog-title:before {
  content: "";
  position: absolute;
  left: 50%;
  width: 80px;
  margin-left: -40px;
  bottom: 0;
  background-color: var(--theme-color2);
  height: 2px;
}
.blog-card .blog-content {
  background-color: var(--title-color);
  background-color: var(--title-color);
  padding: 27px 20px 26px 20px;
  border-radius: 10px;
  margin-top: -10px;
  position: relative;
  z-index: 1;
}
.blog-card:hover .blog-img img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.blog-box .blog-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 23px;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  background-color: transparent;
}
.blog-box .blog-img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
}
.blog-box .blog-meta {
  margin-bottom: 10px;
}
.blog-box .blog-title {
  color: var(--white-color);
  padding-bottom: 20px;
  margin-bottom: 17px;
  position: relative;
}
.blog-box .blog-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background-color: var(--theme-color2);
}
.blog-box .blog-text {
  color: var(--white-color);
}
.blog-box:hover .blog-img img {
  -webkit-transform: scale(1.3) rotate(5deg);
  -ms-transform: scale(1.3) rotate(5deg);
  transform: scale(1.3) rotate(5deg);
}
.blog-box.list-style {
  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;
}
.blog-box.list-style .blog-img {
  margin-right: 30px;
  margin-bottom: 0;
}
.blog-box.list-style .blog-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.blog-box.layout2 {
  margin-bottom: 50px;
}
.blog-box.layout2:last-child {
  margin-bottom: 30px;
}
.blog-box.layout2 .blog-meta a {
  color: var(--body-color);
}
.blog-box.layout2 .blog-meta a i {
  color: inherit;
}
.blog-box.layout2 .blog-meta a:hover {
  color: var(--theme-color);
}
.blog-box.layout2 .blog-title {
  color: var(--title-color);
}
.blog-box.layout2 .blog-text {
  color: var(--body-color);
}
.blog-box.layout2 .link-btn {
  color: var(--title-color);
}
.blog-coverd {
  position: relative;
  margin-bottom: 10px;
}
.blog-coverd .blog-category {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 3;
}
.blog-coverd .blog-category a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
  border-radius: 7px;
  line-height: 1;
  padding: 6px 16px;
}
.blog-coverd .blog-img {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.blog-coverd .blog-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(
    bottom,
    var(--title-color) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background-image: linear-gradient(
    to top,
    var(--title-color) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  opacity: 0.85;
}
.blog-coverd .blog-img img {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-coverd .blog-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.blog-coverd .blog-content {
  position: absolute;
  left: 40px;
  bottom: 10px;
  z-index: 3;
}
.blog-coverd .blog-title {
  color: var(--white-color);
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 23px;
}
.blog-coverd .blog-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background-color: var(--theme-color2);
}
.blog-coverd .blog-meta {
  margin-bottom: 5px;
}
.blog-coverd.style2 .blog-content {
  bottom: 0;
  left: 30px;
}
.blog-coverd.style2 .blog-meta a {
  font-size: 14px;
}
.blog-coverd.style2 .blog-title {
  padding-bottom: 0;
  margin-bottom: 23px;
  font-size: 24px;
}
.blog-coverd.style2 .blog-title:after {
  display: none;
}
.blog-coverd:hover .blog-img img {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}
.blog-media {
  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;
}
.blog-media .blog-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.blog-media .blog-img {
  margin-right: 15px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.blog-media .blog-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  --icon-size: 45px;
}
.blog-media .blog-img .play-btn i {
  font-size: 1.3em;
}
.blog-media .blog-meta {
  margin-top: -0.1em;
}
.blog-media .blog-meta a {
  font-size: 14px;
  color: var(--body-color);
}
.blog-media .blog-meta a i {
  color: inherit;
}
.blog-media .blog-meta a:hover {
  color: var(--theme-color);
}
.blog-media .blog-title {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 0;
}
.blog-media.style2 .blog-meta a {
  color: var(--theme-color2);
}
.blog-media.style2 .blog-meta a:hover {
  color: var(--theme-color);
}
.blog-media.style2 .blog-title {
  color: var(--white-color);
}
.blog-grid .blog-img {
  overflow: hidden;
  border-radius: 10px;
}
.blog-grid .blog-img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.blog-grid .blog-content {
  background-color: var(--title-color);
  text-align: center;
  border-radius: 10px;
  margin-top: -15px;
  position: relative;
  padding: 32px 30px 30px 30px;
}
.blog-grid .blog-meta {
  margin-bottom: 5px;
}
.blog-grid .blog-text {
  color: var(--white-light-color);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 18px;
  font-size: 14px;
}
.blog-grid .blog-text:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 80px;
  background-color: var(--theme-color2);
  margin-left: -40px;
}
.blog-grid .blog-title {
  color: var(--white-color);
  margin-bottom: 7px;
}
.blog-small-grid .blog-meta {
  margin-bottom: 5px;
}
.blog-small-grid .blog-meta a {
  color: var(--body-color);
}
.blog-small-grid .blog-meta a i {
  color: inherit;
}
.blog-small-grid .blog-img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 8px;
}
.blog-small-grid .blog-img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-small-grid .blog-title {
  margin-bottom: 3px;
}
.blog-small-grid .blog-text {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .blog-media .blog-img {
    position: relative;
    max-width: 100px;
  }
  .blog-coverd.style2 .blog-title {
    font-size: 20px;
  }
  .blog-grid .blog-title {
    font-size: 26px;
  }
  .blog-grid .blog-text {
    font-size: 12px;
  }
  .blog-media .blog-img .play-btn {
    --icon-size: 35px;
  }
}
@media (max-width: 1399px) {
  .blog-box.list-style {
    display: block;
  }
  .blog-box.list-style .blog-img {
    margin-bottom: 20px;
    margin-right: 0;
  }
  .blog-single {
    --blog-space-y: 40px;
    --blog-space-x: 40px;
  }
}
@media (max-width: 1199px) {
  .blog-single {
    --blog-space-y: 40px;
    --blog-space-x: 30px;
  }
  blockquote {
    padding: 30px 30px 30px 30px;
  }
  blockquote p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 5px;
  }
  blockquote cite {
    font-size: 16px;
    margin-top: 5px;
  }
  .blog-author {
    padding: 25px 30px;
  }
  .blog-author .media-img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
  }
  .share-links-title {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .blog-media .blog-img {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  blockquote {
    font-size: 20px;
    line-height: 34px;
    padding: 30px 40px 30px 40px;
  }
  blockquote cite {
    font-size: 16px;
    margin-top: 20px;
  }
  blockquote:before {
    right: 20px;
    bottom: 20px;
    font-size: 4rem;
  }
  .blog-coverd .blog-content {
    left: 30px;
    bottom: 0;
  }
  .blog-coverd .blog-title {
    margin-bottom: 23px;
    padding-bottom: 16px;
  }
  .blog-media .blog-meta a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .blog-meta span,
  .blog-meta a {
    font-size: 14px;
  }
  .blog-single {
    --blog-space-y: 30px;
    --blog-space-x: 20px;
  }
  blockquote {
    padding: 30px 20px 30px 20px;
  }
  .blog-card .blog-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .blog-card .blog-meta {
    margin-bottom: 7px;
  }
  .blog-author {
    padding: 25px 15px;
  }
  .blog-coverd .blog-content {
    left: 20px;
    bottom: 0;
  }
  .blog-coverd.style2 .blog-content {
    bottom: 0;
    left: 20px;
  }
  .blog-media {
    display: block;
  }
  .blog-media .blog-img {
    margin-bottom: 10px;
    margin-right: 0;
    border-radius: 0;
    max-width: 100%;
  }
  .blog-media .blog-img img {
    width: 100%;
  }
  .blog-coverd .blog-img .play-btn {
    left: auto;
    right: 10px;
    top: 10px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .blog-coverd .blog-img .play-btn i {
    --icon-size: 40px;
    font-size: 1.3em;
  }
}
.vs-comment-form {
  margin: var(--blog-space-y, 60px) var(--blog-space-x, 60px);
  margin-bottom: 0;
}
.vs-comment-form .blog-inner-title {
  margin-bottom: 8px;
}
.vs-comment-form .inner-wrap {
  background-color: #262525;
  padding: 40px;
}
.vs-comment-form textarea.form-control ~ i {
  top: 18px;
}
.vs-comment-form .form-text {
  margin-bottom: 30px;
}
.vs-comments-wrap {
  margin: var(--blog-space-y, 60px) var(--blog-space-x, 60px);
}
.vs-comments-wrap li {
  margin: 0;
}
.vs-comments-wrap .vs-post-comment {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  position: relative;
  margin: 40px 0;
}
.vs-comments-wrap ul.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-comments-wrap ul.comment-list ul ul,
.vs-comments-wrap ul.comment-list ul ol,
.vs-comments-wrap ul.comment-list ol ul,
.vs-comments-wrap ul.comment-list ol ol {
  margin-bottom: 0;
}
.vs-comments-wrap .comment-avater {
  width: 130px;
  height: 130px;
  margin-right: 30px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #262525;
}
.vs-comments-wrap .comment-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  background-color: #262525;
  padding: 40px;
  position: relative;
}
.vs-comments-wrap .comment-content:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: inherit;
  left: 0;
  top: 0;
  margin: 40px 0 0 -8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.vs-comments-wrap .commented-on {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--theme-color2);
  font-family: var(--title-font);
}
.vs-comments-wrap .commented-on i {
  margin-right: 7px;
  font-size: 0.9rem;
}
.vs-comments-wrap .name {
  margin-bottom: 2px;
}
.vs-comments-wrap .comment-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.vs-comments-wrap .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: 70px;
}
.vs-comments-wrap .reply_and_edit {
  margin-top: 20px;
}
.vs-comments-wrap .replay-btn {
  background-color: var(--dark-color);
  color: var(--theme-color2);
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 400;
  border-radius: 7px;
  line-height: 1;
  padding: 10px 15px;
  display: inline-block;
}
.vs-comments-wrap .replay-btn i {
  margin-right: 7px;
  font-size: 0.8em;
  color: var(--white-color);
}
.vs-comments-wrap .replay-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.vs-comments-wrap .star-rating {
  font-size: 12px;
  margin-bottom: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  width: 80px;
}
@media (max-width: 1199px) {
  .vs-comments-wrap .comment-avater {
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }
  .vs-comments-wrap .comment-content {
    padding: 30px;
  }
  .vs-comments-wrap .children {
    margin-left: 40px;
  }
  .vs-comment-form .inner-wrap {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .vs-comments-wrap .vs-post-comment {
    display: block;
  }
  .vs-comments-wrap .comment-content:before {
    left: 0;
    top: 0;
    margin: -8px 0 0 40px;
  }
  .vs-comments-wrap .comment-avater {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .vs-comments-wrap .children {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .vs-comments-wrap .children {
    margin-left: 30px;
  }
  .vs-comments-wrap .comment-content {
    padding: 30px 15px;
  }
  .vs-comment-form .inner-wrap {
    padding: 30px 15px;
  }
}
.hero-clip-slider {
  padding-top: 40px;
  height: 980px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.hero-clip-shape,
.hero-clip-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  -webkit-clip-path: polygon(
    0% 0%,
    100% 0,
    100% calc(100% - 230px),
    50% 100%,
    0 calc(100% - 230px)
  );
  clip-path: polygon(
    0% 0%,
    100% 0,
    100% calc(100% - 230px),
    50% 100%,
    0 calc(100% - 230px)
  );
  z-index: 2;
}
.hero-clip-shape {
  z-index: 1;
  -webkit-clip-path: polygon(
    0% 0%,
    100% 0,
    100% calc(100% - 240px),
    50% 100%,
    0 calc(100% - 150px)
  );
  clip-path: polygon(
    0% 0%,
    100% 0,
    100% calc(100% - 240px),
    50% 100%,
    0 calc(100% - 150px)
  );
}
.hero-clip-content {
  position: relative;
  z-index: 3;
}
.hero-clip-title {
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-color);
  line-height: 100px;
  margin-top: -0.06em;
  margin-bottom: 35px;
  letter-spacing: 0.08em;
}
.hero-slider-box {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 340px;
  padding-bottom: 175px;
}
.hero-sub-title {
  font-size: 16px;
  letter-spacing: 0.5em;
  font-weight: 400;
  font-family: 'game-font';
  display: block;
  margin-bottom: 8px;
}
.hero-title {
  text-transform: uppercase;
}
@media (min-width: 1399px) {
  .hero-title {
    font-size: 45px;
    margin-bottom: 3px;
  }
}
.hero-logo-icon {
    margin-bottom: 130px;
}
.hero-dots-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.hero-card:before {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}
.hero-card_img {
  overflow: hidden;
}
.text-justify{
  text-align: justify!important;
  font-weight: 600!important;
}
.hero-card_img img {
  -webkit-transform: scale(1) rotate(0);
  -ms-transform: scale(1) rotate(0);
  transform: scale(1) rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  width: 100%;
  border-radius: inherit;
}
.hero-card_content {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.hero-card_label {
  margin-bottom: 8px;
}
.hero-card_title {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-card .vs-btn,
.hero-card_label,
.hero-card_title {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.hero-card .vs-btn {
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}
.hero-box-slider .slick-dots {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 140px;
}
.slick-3d.slick-center .hero-card:before {
  opacity: 0.62;
  visibility: visible;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.slick-3d.slick-center .hero-card .vs-btn,
.slick-3d.slick-center .hero-card_label,
.slick-3d.slick-center .hero-card_title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.slick-3d.slick-center .hero-card_label {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.hero-social {
  position: absolute;
  left: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  z-index: 4;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}
.hero-social a {
  font-family: var(--title-font);
  font-size: 14px;
  color: var(--white-color);
  display: inline-block;
  margin: 17px 0;
  letter-spacing: 0.05em;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.hero-social a:first-child {
  margin-left: 0;
}
.hero-social a:last-child {
  margin-right: 0;
}
.hero-social a span {
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 2px;
}
.hero-social a:hover {
  color: var(--theme-color2);
}
.hero_arrow {
  position: absolute;
  right: 145px;
  bottom: 230px;
}
.hero_arrow_btn {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  line-height: 1;
  border: none;
  color: var(--white-color);
  margin-right: 5px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  cursor: pointer;
  z-index: 4;
  position: relative;
}
.hero_arrow_btn:last-child {
  margin-right: 0;
}
.hero_arrow_btn:hover {
  opacity: 0.6;
}
.hero_arrow.style2 {
  bottom: 40px;
  right: 30px;
}
.hero_wide {
  position: relative;
  padding-top: 128px;
  height: 900px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.hero_wide_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-style1 {
  height: 910px;
  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;
  padding-top: 100px;
}
.hero-style1 .hero-title {
  color: var(--white-color);
  font-size: 100px;
  letter-spacing: 0.01em;
  max-width: 480px;
  line-height: 100px;
  margin-bottom: 0;
}
.hero-style1 .hero-sub-title {
  color: var(--theme-color2);
  font-weight: 700;
  font-size: 24px;
}
.hero-style1 .hero-text {
  font-size: 30px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  font-family: var(--title-font);
  margin-bottom: 30px;
}
.hero-style1 .hero-logos {
  position: relative;
  width: 100%;
}
.hero-style1 .hero-logos .logo-1 {
  position: absolute;
  left: 21%;
  top: -285px;
}
.hero-style1 .hero-logos .logo-2 {
  position: absolute;
  left: 55%;
  bottom: -195px;
}
.hero-style1 .hero-logos .logo-2:before,
.hero-style1 .hero-logos .logo-1:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 318px;
  height: 318px;
  border-radius: 50%;
  background-color: #171f8e;
  z-index: -1;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}
.hero-style1 .versus-text {
  color: var(--white-color);
  font-family: var(--title-font);
  position: absolute;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 80px;
  left: 40%;
  top: 9px;
}
@media (max-width: 1600px) {
  .hero-clip-img {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 130px),
      50% 100%,
      0 calc(100% - 130px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 130px),
      50% 100%,
      0 calc(100% - 130px)
    );
  }
  .hero-clip-shape {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 140px),
      50% 100%,
      0 calc(100% - 80px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 140px),
      50% 100%,
      0 calc(100% - 80px)
    );
  }
  .hero-clip-title {
    font-size: 100px;
    line-height: 90px;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
  .hero-social {
    left: 2%;
  }
  .hero_arrow {
    right: 60px;
    bottom: 130px;
  }
  .hero-style1 {
    height: 750px;
  }
  .hero-style1 .hero-title {
    font-size: 76px;
    max-width: 430px;
    line-height: 76px;
  }
  .hero-style1 .hero-sub-title {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
  .hero-style1 .hero-text {
    font-size: 20px;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
  }
  .hero-style1 .hero-logos .logo-1 {
    left: 10%;
    top: -230px;
  }
  .hero-style1 .versus-text {
    left: 37%;
    top: 0px;
  }
}
@media (max-width: 1199px) {
  .hero-clip-title {
    font-size: 72px;
    line-height: 80px;
    margin-bottom: 25px;
  }
  .hero-clip-slider {
    padding-top: 0;
    height: 700px;
  }
  .hero-clip-img {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 70px),
      50% 100%,
      0 calc(100% - 70px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 70px),
      50% 100%,
      0 calc(100% - 70px)
    );
  }
  .hero-clip-shape {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 80px),
      50% 100%,
      0 calc(100% - 40px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 80px),
      50% 100%,
      0 calc(100% - 40px)
    );
  }
  .slick-3d-active .slick-list {
    padding-left: 20% !important;
    padding-right: 20% !important;
  }
  .slick-3d-active .slick-3d-next {
    -webkit-transform: translate3d(35%, 0, -10px);
    transform: translate3d(35%, 0, -10px);
  }
  .slick-3d-active .slick-3d-prev {
    -webkit-transform: translate3d(-35%, 0, -10px);
    transform: translate3d(-35%, 0, -10px);
  }
  .hero-social {
    right: 4%;
    left: auto;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .hero_wide {
    height: 640px;
  }
  .hero-style1 {
    max-height: 590px;
  }
  .hero-style1 .hero-title {
    font-size: 60px;
    max-width: 400px;
    line-height: 1;
  }
  .hero-style1 .hero-sub-title {
    font-size: 16px;
  }
  .hero-style1 .hero-text {
    font-size: 16px;
  }
  .hero-style1 .versus-text {
    left: 38%;
    top: -30px;
    font-size: 50px;
  }
  .hero-style1 .hero-logos .logo-1 {
    left: 0%;
    top: -180px;
    max-width: 150px;
  }
  .hero-style1 .hero-logos .logo-2 {
    max-width: 150px;
    left: 60%;
    bottom: -160px;
  }
  .hero-style1 .hero-logos .logo-2:before,
  .hero-style1 .hero-logos .logo-1:before {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 991px) {
  .hero-clip-slider {
    height: 400px;
  }
  .hero-clip-img {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 30px),
      50% 100%,
      0 calc(100% - 30px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 30px),
      50% 100%,
      0 calc(100% - 30px)
    );
  }
  .hero-clip-shape {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 40px),
      50% 100%,
      0 calc(100% - 10px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 40px),
      50% 100%,
      0 calc(100% - 10px)
    );
  }
  .hero-clip-title {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 20px;
    margin-top: -0.25em;
  }
  .hero-slider-box {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .hero_wide {
    height: 400px;
    padding-top: 0;
  }
  .hero-style1 {
    height: 490px;
  }
  .hero-style1 .hero-title {
    font-size: 46px;
    max-width: 550px;
  }
  .hero-style1 .hero-logos .logo-1 {
    left: 13%;
    top: -134px;
    max-width: 100px;
  }
  .hero-style1 .hero-logos .logo-2 {
    max-width: 100px;
    left: 68%;
    bottom: -130px;
  }
  .hero-style1 .hero-logos .logo-2:before,
  .hero-style1 .hero-logos .logo-1:before {
    width: 150px;
  }
  .hero-style1 .versus-text {
    left: 47%;
    top: -22px;
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-clip-slider {
    height: 300px;
  }

    .hero-content .text {
        text-transform: uppercase;
        font-size: 50px;
        letter-spacing: 2px;
        font-weight: 600;
        height: 106px;
        line-height: 53px;
    }

  .hero-clip-img {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 10px),
      50% 100%,
      0 calc(100% - 10px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 10px),
      50% 100%,
      0 calc(100% - 10px)
    );
  }
  
  .hero-clip-shape {
    -webkit-clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 20px),
      50% 100%,
      0 calc(100% - 5px)
    );
    clip-path: polygon(
      0% 0%,
      100% 0,
      100% calc(100% - 20px),
      50% 100%,
      0 calc(100% - 5px)
    );
  }

  .hero-clip-title {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .hero-sub-title {
    letter-spacing: 0.3em;
  }
  .hero-logo-icon {
    margin-bottom: 15px;
  }

  .slick-3d-active .slick-list {
    padding-left: 12% !important;
    padding-right: 12% !important;
  }
  .hero_wide {
    height: 330px;
  }
  .hero-style1 {
    height: auto;
    padding: 60px 0 60px 0;
  }
  .hero-style1 .hero-logos {
    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;
    gap: 40px;
    margin-bottom: 30px;
  }
  .hero-style1 .hero-logos .logo-2,
  .hero-style1 .hero-logos .logo-1 {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
    -webkit-animation-name: fadein;
    animation-name: fadein;
  }
  .hero-style1 .hero-logos .logo-2:before,
  .hero-style1 .hero-logos .logo-1:before {
    width: 150px;
  }
  .hero-style1 .versus-text {
    position: relative;
    left: 0;
    top: 0;
  }
  .hero-style1 .hero-title {
    font-size: 36px;
    max-width: 550px;
    margin-bottom: 10px;
  }
  .hero-style1 .hero-content {
    text-align: center;
  }
}
.error-content img {
  margin-bottom: 70px;
}
.error-title {
  font-size: 100px;
  line-height: 1;
  margin-bottom: 10px;
}
.error-text {
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .error-title {
    font-size: 78px;
  }
  .error-content img {
    margin-bottom: 50px;
  }
  .error-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .error-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .error-content img {
    margin-bottom: 40px;
  }
  .error-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .error-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.features-box {
  width: 100%;
  max-width: 325px;
  display: inline-block;
}
.features-box_icon {
  margin-bottom: 15px;
}
.features-box_label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 7px;
}
.features-box_title {
  margin-bottom: 10px;
}
.features-box_text {
  margin-bottom: 0;
}
.feature-media {
  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;
  padding: 35px 40px 36px 40px;
  border: 1px solid #707070;
  border-radius: 10px;
}
.feature-media_icon {
  margin-right: 40px;
}
.feature-media_title {
  margin-bottom: 7px;
}
.feature-media_text:last-child {
  margin-bottom: 0;
}
.stream-video-slide {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.stream-video-slide .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 1199px) {
  .feature-media {
    padding: 25px 30px 26px 30px;
  }
  .feature-media_icon {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .feature-media {
    display: block;
  }
  .feature-media_icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.check-list ul,
.arrow-list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.check-list li,
.arrow-list li {
  position: relative;
  padding-left: 30px;
}
.check-list li > i,
.arrow-list li > i {
  position: absolute;
  left: 0;
  top: 7.5px;
  color: var(--theme-color2);
}
.check-list li {
  padding-left: 25px;
  color: #646871;
  margin-bottom: 8px;
}
.check-list li i {
  color: #4cd059;
}
.about-style1 {
  padding-left: 105px;
  margin-bottom: 30px;
}
.about-style1 .about-title {
  max-width: 400px;
  margin-bottom: 22px;
}
.about-style1 .sec-text {
  max-width: 380px;
  margin: 30px 0 27px 0;
}
.about-box {
  background-color: #f5f5f5;
  padding: 30px;
  max-width: 270px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.about-box__title {
  line-height: 34px;
  margin-bottom: 8px;
}
.about-box__text {
  color: #154d59;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.about-box__icon {
  width: var(--icon-size, 60px);
  height: var(--icon-size, 60px);
  line-height: var(--icon-size, 60px);
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 24px;
  margin-bottom: 12px;
  border-radius: 50%;
}
.about-box .vs-btn {
  width: 100%;
  padding: 0;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--theme-color);
}
.about-box .vs-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.about-box .vs-btn:after,
.about-box .vs-btn:before {
  display: none;
}
.img-box_style1 {
  position: relative;
}
.img-box_style1 .img1 {
  margin-left: 50px;
  margin-bottom: 80px;
  overflow: hidden;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.img-box_style1 .img2 {
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 1;
}
.img-box_style1 .img-label {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--theme-color);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.img-box_style2 {
  position: relative;
  padding-bottom: 110px;
}
.img-box_style2 .img-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.img-box_style2 .img-2 .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.img-box_style3 {
  position: relative;
  margin: -25px 0 60px 0;
}
.img-box_style3 .img1 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
  background-color: var(--white-color);
  margin: 0 0 0 auto;
  padding: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.img-box_style3 .img1 .bg-shape {
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 426px;
  height: 436px;
  background-color: #d9e6ff;
  border-radius: 37px;
  z-index: -1;
}
.img-box_style3 .img1 img {
  border-radius: inherit;
}
.img-box_style3 .img-label {
  background-color: var(--white-color);
  color: var(--title-color);
  display: inline-block;
  position: absolute;
  right: -60px;
  bottom: 55px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  padding: 45px 50px 43px 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.img-box_style3 .img-label i,
.img-box_style3 .img-label img {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.about-shape1 {
  position: absolute;
  right: 0;
  font-size: 200px;
  -webkit-text-stroke: 1px #d8d8d8;
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 700;
  color: transparent;
  opacity: 0.2;
  top: 2%;
  line-height: 1;
}
.skill_box {
  margin-bottom: 20px;
}
.skill_box_bar {
  width: 100%;
  background-color: #262525;
  height: 20px;
  border-radius: 7px;
  overflow: hidden;
}
.skill_box_bar .progress {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0 10px 0 0;
  line-height: 1;
  line-height: 22px;
  height: 100%;
  background-color: var(--theme-color2);
  border-radius: 0;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--title-font);
  color: var(--white-color);
}
.skill_box_title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .img-box_style1 .img2 {
    right: 0;
  }
  .img-box_style1 .img1 {
    max-width: 80%;
  }
  .img-box_style3 .img1 .bg-shape {
    display: none;
  }
  .img-box_style3 .img-label {
    right: -30px;
  }
  .about-shape1 {
    font-size: 8rem;
    top: 2%;
  }
  .about-style1 {
    padding-left: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .img-box_style1 .img1 {
    max-width: 85%;
    margin-bottom: 50px;
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .img-box_style3 {
    margin: -25px 0 40px 0;
  }
  .img-box_style3 .img1 {
    margin-left: 0;
    width: 100%;
  }
  .img-box_style3 .img1 img {
    width: 100%;
  }
  .img-box_style3 .img-label {
    right: 0;
    padding: 35px 40px 33px 100px;
    font-size: 20px;
    line-height: 1.5;
  }
  .about-style1 {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .about-style1 .sec-text {
    max-width: 100%;
    margin: 20px 0 17px 0;
  }
  .about-style1 .about-title {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .about-box__title {
    line-height: 28px;
    margin-bottom: 8px;
  }
}
@media (max-width: 991px) {
  .about-shape1 {
    font-size: 4rem;
    top: 56%;
  }
}
@media (max-width: 767px) {
  .img-box_style1 .img-label {
    right: 30px;
  }
  .img-box_style3 {
    margin: 0 0 30px 0;
  }
  .img-box_style3 .img1 {
    padding: 0;
  }
  .img-box_style3 .img-label {
    right: 0;
    padding: 15px 10px 15px 60px;
    font-size: 16px;
    border-radius: 7px;
    bottom: 20px;
  }
  .img-box_style3 .img-label img {
    max-width: 30px;
    left: 20px;
  }
  .about-style1 .about-title {
    font-size: 16px;
    line-height: 24px;
  }
  .about-box {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .img-box_style1 .img-label {
    right: 10px;
  }
  .img-box_style2 .img-2 {
    right: 20px;
    max-width: 245px;
  }
}
.video-card {
  position: relative;
  padding-bottom: 40px;
}
.video-card_img {
  overflow: hidden;
  position: relative;
}
.video-card_content {
  text-align: center;
  background-color: var(--title-color);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  padding: 17px 20px 25px 20px;
  border-radius: 10px;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.video-card_label {
  font-size: 16px;
  color: var(--theme-color2);
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
}
.video-card_label i {
  margin-right: 10px;
}
.video-card_title {
  color: var(--white-color);
  position: relative;
  padding-bottom: 13px;
  margin-bottom: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
}
.video-card_title:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 80px;
  margin-left: -40px;
  background-color: var(--theme-color2);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.video-card .play-btn {
  position: absolute;
  top: 30px;
  right: -100px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.video-card:hover .play-btn {
  right: 30px;
  opacity: 1;
  visibility: visible;
}
.video-card:hover .video-card_content {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.video-card:hover .video-card_label,
.video-card:hover .video-card_title {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.video-card:hover .video-card_title:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.video-card_slider {
  margin-bottom: -40px;
}
.video-big {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.video-big_content {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.video-big_title {
  margin: 35px 0 0 0;
  color: var(--theme-color2);
  font-weight: 400;
  letter-spacing: 0.3em;
}
.video-media {
  margin-bottom: 20px;
}
.video-media_img {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 5px;
}
.video-media_img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.video-media_title {
  margin-bottom: 0;
}
.video-media_text {
  margin-bottom: 0;
}
.video-media:hover .video-media_img img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.video-media_slider {
  --pos-x: -25px;
}
.video-box_img {
  position: relative;
  overflow: hidden;
  margin-bottom: 17px;
  border-radius: 5px;
  border: 1px solid #707070;
}
.video-box_img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.video-box_img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.video-box_title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.video-box_views {
  font-size: 12px;
}
.video-box:hover .video-box_img img {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
@media (max-width: 1399px) {
  .video-card_title {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .video-big_title {
    margin: 15px 0 0 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 575px) {
  .video-media_text {
    font-size: 12px;
    line-height: 20px;
  }
  .video-media_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.filter-menu {
  margin-top: -10px;
  margin-bottom: 20px;
}
.filter-menu button {
  background-color: transparent;
  border: none;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--title-font);
  font-size: 30px;
  line-height: 1;
  display: inline-block;
  padding: 0;
  position: relative;
  margin: 10px 25px;
}
.filter-menu button:last-child {
  margin-right: 0;
}
.filter-menu button:first-child {
  margin-left: 0;
}
.filter-menu button .badge {
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 16px;
  width: 26px;
  height: 26px;
  padding: 0;
  line-height: 26px;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.filter-menu button.active {
  color: var(--theme-color2);
}
.filter-menu button.active .badge {
  opacity: 1;
  visibility: visible;
}
.match-tab {
  display: block;
  margin: 40px 0 70px 0;
}
.match-tab button {
  padding: 21px 29px;
  line-height: 1;
  display: inline-block;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: 30px;
  font-weight: 700;
  font-family: var(--title-font);
  border-radius: 10px;
  margin: 0 10px 0 0;
}
.match-tab button:last-child {
  margin-right: 0;
}
.match-tab button.active,
.match-tab button:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}
.vs-match {
  --box-bg: #171a2100;
  margin-bottom: 60px;
}
.vs-match_content {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.vs-match_content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  /* height: var(--box-height, 190px); */
  height: 100%;
  margin-top: calc(var(--box-height, 190px) / -2);
  background-color: var(--box-bg);
  z-index: -1;
  border-radius: 10px;
}
.vs-match_body:last-child .vs-match_content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.vs-match_team {
  margin: 0 auto;
  padding: 20px;
}
.vs-match_label {
  font-size: 16px;
  color: var(--theme-color);
  font-weight: 400;
  line-height: 1;
  display: block;
  font-family: var(--title-font);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.vs-match_title {
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: -0.25em;
}
.vs-match_schedule {
  text-align: center;
  background-color: var(--box-bg);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 25px 20px 20px 20px;
  width: var(--box-width, 270px);
  height: var(--box-height, 190px);
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.vs-match_time,
.vs-match_date {
  font-family: var(--title-font);
  line-height: 1;
  color: var(--white-color);
  font-weight: 700;
}
.vs-match_time {
  font-size: 40px;
  margin-bottom: 8px;
}
.vs-match_date {
  font-size: 18px;
  margin-bottom: 20px;
}
.vs-match_links a {
  color: var(--white-color);
  font-size: 30px;
  display: inline-block;
  line-height: 1;
  margin-right: 15px;
}
.vs-match_links a:last-child {
  margin-right: 0;
}
.vs-match_links a:hover {
  color: var(--title-color);
}
.vs-match:hover .vs-match_schedule {
  background-color: var(--theme-color);
}
.big-match {
  background-color: #171a21;
  text-align: center;
  padding: 58px 0 57px 0;
  margin-bottom: 30px;
}
.big-match .match-logo {
  margin: 0 0 12px 0;
}
.big-match .match-desig {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5em;
  display: block;
  margin: 0 0 5px 0;
}
.big-match .match-name {
  color: var(--white-color);
  margin: 0;
}
.big-match .match-title {
  font-size: 30px;
  color: var(--white-color);
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.big-match .match-price {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
  margin: 0 0 20px 0;
}
.big-match .match-total {
  font-size: 14px;
  color: var(--white-color);
  margin: 0 0 5px 0;
}
.big-match .versus-pill {
  font-size: 33px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--white-color);
  text-align: center;
  width: 66px;
  height: 66px;
  line-height: 66px;
  background-color: var(--theme-color);
  margin: 0 0 13px 0;
  display: inline-block;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.big-match .match-time {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 0px 0;
  line-height: 1;
}
.big-match .match-date {
  font-size: 14px;
  color: var(--white-color);
  margin: 0;
}
.big-match .match-body {
  background-color: #292929;
  padding: 15px 15px 15px 15px;
  margin: 0 auto 23px auto;
  position: relative;
  max-width: 270px;
}
.big-match .match-body:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--theme-color);
  -webkit-clip-path: polygon(100% 0, 0 100%, 0 0);
  clip-path: polygon(100% 0, 0 100%, 0 0);
}
.big-match .match-body > * {
  position: relative;
  z-index: 2;
}
.big-match .match-links a {
  font-size: 30px;
  line-height: 1;
  color: var(--white-color);
  margin: 0 15px 0 0;
}
.big-match .match-links a:last-child {
  margin-right: 0;
}
.match-grid {
  background-color: #171a21;
  text-align: center;
  padding: 30px 50px 30px 50px;
  margin-bottom: 30px;
}
.match-grid__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 18px;
}
.match-grid__title {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.match-grid__time {
  font-size: 20px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 0px 0;
  line-height: 1;
}
.match-grid__date {
  font-size: 14px;
  color: var(--white-color);
  margin: 0 0 20px 0;
}
.match-grid__links a {
  font-size: 30px;
  color: var(--white-color);
  margin: 0 20px 0 0;
}
.match-grid__links a:last-child {
  margin-right: 0;
}
.match-bottom-btn {
  margin: 40px 0 30px 0;
  text-align: center;
}
@media (max-width: 1600px) {
  .vs-match-wapper .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .match-grid {
    padding: 30px 20px 30px 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .vs-match {
    --box-height: 160px;
    --box-width: 220px;
  }
  .vs-match_title {
    font-size: 30px;
  }
  .vs-match_logo img {
    max-width: 150px;
  }
}
@media (max-width: 1199px) {
  .vs-match {
    --box-height: 160px;
    --box-width: 220px;
    margin-bottom: 40px;
  }
  .vs-match_title {
    font-size: 24px;
  }
  .vs-match_team {
    margin-top: 90px;
    padding: 0;
  }
  .vs-match_content {
    display: block;
    text-align: center;
    background-color: var(--box-bg);
    border-radius: 10px;
    padding: 30px;
  }
  .vs-match_content::before {
    display: none;
  }
  .big-match .match-title {
    font-size: 24px;
    margin: 0 0 5px 0;
  }
  .big-match .match-name {
    font-size: 24px;
  }
  .match-tab button {
    padding: 18px 26px;
    font-size: 20px;
    border-radius: 5px;
  }
}
@media (max-width: 991px) {
  .vs-match {
    --box-width: 100%;
    margin-bottom: 30px;
  }
  .vs-match_title {
    font-size: 20px;
  }
  .vs-match .gx-30 {
    --bs-gutter-x: 15px;
  }
  .big-match {
    padding: 48px 15px 47px 15px;
  }
  .big-match .match-desig {
    font-size: 14px;
    display: block;
    margin: 5px 0 10px 0;
  }
  .big-match .match-title {
    font-size: 20px;
  }
  .big-match .match-logo {
    margin: 0 0 0 0;
  }
  .match-bottom-btn {
    margin: 10px 0 30px 0;
  }
  .filter-menu button {
    font-size: 24px;
    margin: 10px 18px;
  }
  .match-tab {
    margin: 30px 0 40px 0;
  }
  .match-tab button {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .vs-match_schedule {
    margin-top: 15px;
  }
  .big-match .match-team {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 20px;
    max-width: 50%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .big-match .match-middle {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .filter-menu button {
    font-size: 18px;
    margin: 10px 12px;
  }
  .filter-menu button .badge {
    top: -8px;
    right: -13px;
    width: 18px;
    height: 18px;
    line-height: 20px;
    font-size: 12px;
  }
}
@media (max-width: 575px) {
  .vs-match_content {
    padding: 20px 10px;
  }
  .vs-match_logo img {
    max-width: 100px;
  }
  .vs-match_label {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
  .big-match {
    padding: 28px 15px 27px 15px;
  }
  .big-match .match-name {
    font-size: 16px;
  }
  .big-match .match-desig {
    font-size: 12px;
    margin: 0px 0 10px 0;
    letter-spacing: 2px;
  }
  .big-match .match-logo {
    max-width: 85px;
    margin: 0 auto;
  }
  .big-match .match-title {
    font-size: 18px;
  }
  .big-match .match-price {
    font-size: 14px;
    margin: 0 0 20px 0;
  }
  .match-tab button {
    padding: 12px 16px;
    font-size: 14px;
  }
}
.palyer-card {
  position: relative;
  margin-bottom: 30px;
}
.palyer-card_img {
  overflow: hidden;
  border-radius: 30px;
}
.palyer-card_img img {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.palyer-card_degi {
  font-size: 16px;
  font-family: var(--title-font);
  display: block;
  line-height: 1;
  color: var(--theme-color2);
  margin-bottom: 8px;
}
.palyer-card_content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 1;
  text-align: center;
  background-color: var(--title-color);
  padding: 25px 20px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.palyer-card_name {
  color: var(--white-color);
  padding-bottom: 13px;
  position: relative;
  margin-bottom: 0;
}
.palyer-card_name:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 2px;
  width: 40px;
  margin-left: -20px;
  background-color: var(--theme-color2);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.palyer-card:hover .palyer-card_img img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.palyer-card:hover .palyer-card_content {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
.palyer-card-slider {
  margin-bottom: -50px;
}
.palyer-card-slider .palyer-card {
  padding-bottom: 50px;
}
.release-card {
  --border-color: #707070;
}
.release-card_img {
  border-radius: 10px;
  overflow: hidden;
}
.release-card_img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.release-card_logo {
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: var(--white-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
}
.release-card_label {
  font-size: 14px;
  letter-spacing: 0.5em;
  font-weight: 300;
  display: block;
  margin-bottom: 10px;
}
.release-card_title {
  margin-bottom: 11px;
}
.release-card_content {
  padding: 0 25px;
}
@media (max-width: 1199px) {
  .release-card_content {
    padding: 0 15px;
  }
}
.release-card:hover .release-card_img img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.release-card:hover .release-card_logo {
  background-color: var(--theme-color2);
}
.team-card {
  text-align: center;
  /* background-color: var(--dark-color); */
  border-radius: 10px;
  /* position: relative; */
  /* padding: 70px 0; */
  /* margin-bottom: 35px; */
}
.team-card_icon {
  /* position: absolute; */
  right: 40px;
  bottom: 40px;
}
.team-card_shape {
  background-color: var(--theme-color2);
  position: absolute;
  left: 0;
  top: 5px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: inherit;
}
.team-card_logo {
  margin-bottom: 25px;
  max-height: 160px;
}
.team-card_logo img {
  width: auto;
  max-height: 100%;
}
.team-card_label {
  font-size: 20px;
  line-height: 1;
  color: var(--theme-color);
  letter-spacing: 0.5em;
  font-family: var(--title-font);
  margin-bottom: 8px;
  display: block;
}
.team-card_title {
  color: var(--white-color);
  margin-bottom: 20px;
}
.team-card_time,
.team-card_date {
  font-family: var(--title-font);
  line-height: 1;
  color: var(--white-color);
  font-weight: 700;
}
.team-card_time {
  font-size: 40px;
  margin-bottom: 8px;
}
.team-card_date {
  font-size: 16px;
  margin-bottom: 25px;
}
.team-card_links {
  margin-bottom: 17px;
}
.team-card_links a {
  color: var(--white-color);
  font-size: 30px;
  display: inline-block;
  line-height: 1;
  margin-right: 15px;
}
.team-card_links a:last-child {
  margin-right: 0;
}
.team-card_links a:hover {
  color: var(--title-color);
}
.team-card_slider {
  --pos-x: -20px;
}
.team-map iframe {
  height: 280px;
}
.verses-text {
  font-size: 250px;
  line-height: 1;
  display: inline-block;
}
.team-pill {
  background-color: var(--white-color);
  border: 1px solid #e2eef1;
  border-radius: 10px;
  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;
  padding: 15px 20px 15px 20px;
}
.team-pill__img {
  width: var(--img-size, 102px);
  height: var(--img-size, 102px);
  line-height: var(--img-size, 102px);
  margin-right: 35px;
  text-align: center;
  background-color: #e4e4e4;
  border-radius: 50%;
}
.team-pill__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.team-pill__title {
  font-size: 20px;
  margin-bottom: 0;
}
.team-pill__time {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  font-family: var(--title-font);
  color: var(--title-color);
  margin: 0 5px 0 0;
}
.team-pill__date {
  font-size: 14px;
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  display: inline-block;
  margin: 0 0 0 0;
}
.team-pill__links a {
  font-size: 18px;
  display: inline-block;
  margin: 0 8px 0 0;
}
@media (max-width: 1399px) {
  .verses-text {
    font-size: 110px;
  }
}
@media (max-width: 1199px) {
  .team-card {
    padding: 40px 15px;
  }
  .team-card_icon {
    right: 20px;
    top: 20px;
    bottom: auto;
    max-width: 50px;
  }
  .verses-text {
    font-size: 90px;
  }
}
@media (max-width: 1399px) {
  .verses-text {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .team-pill {
    --img-size: 80px;
  }
  .team-pill .team-pill__img {
    margin-right: 20px;
  }
  .team-pill .team-pill__img img {
    max-width: 60%;
  }
}
.testimonial-box {
  margin-bottom: 30px;
}
.testimonial-box_avater {
  width: var(--avater-size, 90px);
  height: var(--avater-size, 90px);
  margin: 0 0 calc(var(--avater-size, 90px) / -2) var(--gap-x, 50px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.testimonial-box_icon {
  position: absolute;
  right: 25px;
  top: 25px;
}
.testimonial-box_rating {
  color: var(--yellow-color);
  margin-top: calc(var(--avater-size, 90px) / 2);
}
.testimonial-box_text {
  color: var(--white-color);
}
.testimonial-box_name {
  border-top: 1px solid #393939;
  color: var(--white-color);
  margin-top: 18px;
  padding-top: 15px;
  margin-bottom: 0;
}
.testimonial-box_degi {
  color: rgba(255, 255, 255, 0.7);
}
.testimonial-box_content {
  position: relative;
  padding: 15px var(--gap-x, 50px) 22px var(--gap-x, 50px);
  border-radius: 10px;
  background-color: var(--title-color);
}
@media (max-width: 1600px) {
  .testimonial-box {
    --gap-x: 40px;
  }
  .testimonial-box_icon {
    right: 15px;
    top: 15px;
    max-width: 45px;
  }
}
@media (max-width: 767px) {
  .testimonial-box {
    --gap-x: 30px;
  }
}
ul.multi-social,
.multi-social ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.multi-social li {
  display: inline-block;
  margin: 0 5px;
}
.multi-social li:first-child {
  margin-left: 0;
}
.multi-social li:last-child {
  margin-right: 0;
}
.multi-social a > i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 5px;
  margin-right: 7px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.multi-social a > i.fa-facebook-f {
  --theme-color: #3b5998;
}
.multi-social a > i.fa-twitter {
  --theme-color: #55acee;
}
.multi-social a > i.fa-pinterest-p {
  --theme-color: #d71e18;
}
.multi-social a > i.fa-instagram {
  --theme-color: #c13584;
}
.multi-social a:hover i {
  background-color: var(--theme-color2);
}
.multi-social a:last-child > i {
  margin-right: 0;
}
.logo-animator {
  width: var(--box-size, 360px);
  height: var(--box-size, 360px);
  line-height: var(--box-size, 360px);
  text-align: center;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  --box-translate: 40px;
}
.logo-animator_img {
  position: relative;
  z-index: 5;
}
.logo-animator_img img {
  -webkit-animation-name: logo-animator;
  animation-name: logo-animator;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.logo-animator_shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.3;
  z-index: 0;
  background-color: #ffc55b;
  border-radius: inherit;
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-animation-name: logo-animator;
  animation-name: logo-animator;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-transform: translateX(calc(var(--box-translate) * -1));
  -ms-transform: translateX(calc(var(--box-translate) * -1));
  transform: translateX(calc(var(--box-translate) * -1));
}
.logo-animator_shape.shape-2 {
  opacity: 0.2;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.logo-animator_shape.shape-3 {
  opacity: 0.15;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.logo-animator_shape.shape-4 {
  opacity: 0.1;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.logo-animator_shape.shape-5 {
  opacity: 0.05;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@-webkit-keyframes logo-animator {
  0% {
    -webkit-transform: translateX(calc(var(--box-translate) * -1));
    transform: translateX(calc(var(--box-translate) * -1));
  }
  100% {
    -webkit-transform: translateX(var(--box-translate));
    transform: translateX(var(--box-translate));
  }
}
@keyframes logo-animator {
  0% {
    -webkit-transform: translateX(calc(var(--box-translate) * -1));
    transform: translateX(calc(var(--box-translate) * -1));
  }
  100% {
    -webkit-transform: translateX(var(--box-translate));
    transform: translateX(var(--box-translate));
  }
}
.logo-shape-1 {
  position: absolute;
  right: 5%;
  top: 7%;
}
.text-shape-2,
.text-shape-1 {
  font-family: 'game-font';
  font-weight: 700;
  font-size: 200px;
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  line-height: 1;
}
.text-shape-1 {
  opacity: 0.2;
  bottom: 0;
  -webkit-text-stroke: 1px #d8d8d8;
}
.text-shape-2 {
  opacity: 0.5;
  top: 3%;
  -webkit-text-stroke: 1px #707070;
}
.choose-title {
  line-height: 1.4;
  margin-bottom: 22px;
}
.info-table {
  border: none;
  width: 100%;
  margin-bottom: 30px;
}
.info-table th {
  font-weight: 600;
}
.info-table td,
.info-table th {
  font-size: 20px;
  font-family: var(--title-font);
  color: var(--white-color);
  padding: 0 0 7px 0;
  vertical-align: top;
  font-weight: 600;
}
@media (min-width:1440px){
  .info-table td,
  .info-table th {
    font-size: 17px;
  }
}

.info-table td:first-child,
.info-table th:first-child {
  padding-right: 10px;
}
.info-table tr:last-child td,
.info-table tr:last-child th {
  padding-bottom: 0;
}
.progress-card {
  --wins-color: #ffc010;
  --draws-color: #707070;
  --losses-color: #ff0000;
  margin-bottom: 25px;
}
.progress-card .wins {
  background-color: var(--wins-color);
}
.progress-card .draws {
  background-color: var(--draws-color);
}
.progress-card .losses {
  background-color: var(--losses-color);
}
.progress-card_title {
  display: inline-block;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 20px;
}
.progress-card_rank {
  color: var(--white-color);
  display: inline-block;
  margin-left: 10px;
  font-weight: 300;
}
.progress-card_bar {
  height: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.progress-card_bar .progress {
  height: 100%;
  padding: 0;
  border-radius: 10px;
  margin-left: -7px;
}
.progress-card_bar .progress:first-child {
  margin-left: 0;
}
.progress-card_list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--white-color);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 400;
  margin-top: 15px;
}
.progress-card_list li {
  display: inline-block;
  margin-right: 15px;
}
.progress-card_list li:last-child {
  margin-right: 0;
}
.progress-card_list .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 3px;
}
.subscribe_box {
  background-color: #f9f9f9;
  padding: 40px;
}
.subscribe_box_title {
  line-height: 38px;
  margin: -0.1em 0 5px 0;
}
.subscribe_box_text {
  margin-bottom: 23px;
}
.subscribe_box .form-control {
  background-color: #f2e7e7;
  border: none;
  border-radius: 0;
  color: var(--title-color);
  font-size: 14px;
  margin-bottom: 20px;
}
.subscribe_box .form-control::-moz-placeholder {
  color: #a4a4a4;
}
.subscribe_box .form-control::-webkit-input-placeholder {
  color: #a4a4a4;
}
.subscribe_box .form-control:-ms-input-placeholder {
  color: #a4a4a4;
}
.subscribe_box .form-control::-ms-input-placeholder {
  color: #a4a4a4;
}
.subscribe_box .form-control::placeholder {
  color: #a4a4a4;
}
.subscribe_box .form-group {
  margin-bottom: 0;
}
.vs-tags-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.vs-tags-block a {
  border-radius: 6px;
  display: inline-block;
  width: 109px;
  height: 43px;
  line-height: 43px;
  color: var(--white-color);
  text-align: center;
  background-color: var(--body-color);
  font-size: 14px;
  font-family: var(--title-font);
  font-weight: 400;
}
.vs-tags-block a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.social-cat-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.social-cat-wrap a {
  display: inline-block;
  text-align: center;
  background-color: var(--bg-color, #464646);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  padding: 27px 0 24px 0;
  font-family: var(--title-font);
}
.social-cat-wrap a i {
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: block;
}
.social-cat-wrap a:hover {
  background-color: var(--hover-bg, #ff7e02);
  color: var(--white-color);
}
.social-cat-wrap .facebook {
  --bg-color: #3b5998;
}
.social-cat-wrap .youtube {
  --bg-color: #e52d27;
}
.social-cat-wrap .instagram {
  --bg-color: #3f729b;
}
.social-cat-wrap .twitter {
  --bg-color: #1dcaff;
}
.social-cat-wrap .dribble {
  --bg-color: #ea4c89;
}
.social-cat-wrap .soundcloud {
  --bg-color: #ff8800;
}
.social-cat-wrap .posts {
  --bg-color: #837d7d;
}
.vs-map {
  line-height: 0;
}
.vs_counter_number {
  color: var(--theme-color);
  font-size: 70px;
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.vs_counter_text {
  color: var(--white-color);
  font-family: var(--title-font);
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .logo-shape-1 {
    max-width: 270px;
  }
  .text-shape-1 {
    font-size: 120px;
    bottom: 50px;
  }
  .text-shape-2 {
    font-size: 120px;
    top: 30px;
  }
}
@media (max-width: 1399px) {
  .logo-shape-1 {
    max-width: 170px;
  }
  .text-shape-2,
  .text-shape-1 {
    font-size: 80px;
  }
}
@media (max-width: 1199px) {
  .logo-animator {
    --box-size: 200px;
    --box-translate: 20px;
  }
  /* .logo-animator_img img {
    max-width: calc(var(--box-size) / 2);
  } */
  .text-shape-1 {
    bottom: auto;
    right: auto;
    left: 5%;
    top: 4%;
  }
  .text-shape-2 {
    font-size: 40px;
  }
  .vs-tags-block {
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .choose-title {
    letter-spacing: 0;
    margin-bottom: 17px;
  }
  .subscribe_box {
    padding: 30px;
  }
  .vs_counter_number {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .info-table td,
  .info-table th {
    font-size: 14px;
  }
  .progress-card_title {
    font-size: 16px;
  }
  .progress-card_rank {
    font-size: 12px;
  }
  .progress-card .progress-card_list {
    font-size: 10px;
  }
  .subscribe_box {
    padding: 25px 20px 30px 20px;
  }
}
.vs-slider-tab {
  position: relative;
  background-color: var(--dark-color);
  margin-bottom: 35px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.vs-slider-tab .tab-btn {
  border: none;
  background-color: transparent;
  display: inline-block;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  background-color: transparent;
  font-family: var(--title-font);
  line-height: 1;
  padding: 25px 49px;
  z-index: 1;
}
@media (min-width:1440px){
  .vs-slider-tab .tab-btn {
    font-size: 17px;
  }
}
.vs-slider-tab .tab-btn:hover {
  background-color: transparent;
  color: var(--white-color);
}
.vs-slider-tab .tab-btn.active {
  background-color: transparent;
  color: var(--white-color);
}
.vs-slider-tab .indicator {
  position: absolute;
  left: var(--pos-x);
  top: var(--pos-y);
  background: -webkit-linear-gradient(
    left,
    var(--theme-color) 0%,
    var(--theme-color2) 100%
  );
  background: linear-gradient(
    to right,
    var(--theme-color) 0%,
    var(--theme-color2) 100%
  );
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  --indicator-size: 15px;
  -webkit-clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--indicator-size)),
    54% calc(100% - var(--indicator-size)),
    50% 100%,
    46% calc(100% - var(--indicator-size)),
    0 calc(100% - var(--indicator-size))
  );
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--indicator-size)),
    54% calc(100% - var(--indicator-size)),
    50% 100%,
    46% calc(100% - var(--indicator-size)),
    0 calc(100% - var(--indicator-size))
  );
  height: calc(var(--height-set) + var(--indicator-size));
  width: var(--width-set);
}
.vs-slider-tab .indicator.start {
  -webkit-clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--indicator-size)),
    100% calc(100% - var(--indicator-size)),
    100% 100%,
    95% calc(100% - var(--indicator-size)),
    0 calc(100% - var(--indicator-size))
  );
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--indicator-size)),
    100% calc(100% - var(--indicator-size)),
    100% 100%,
    95% calc(100% - var(--indicator-size)),
    0 calc(100% - var(--indicator-size))
  );
}
.vs-slider-tab .indicator.end {
  -webkit-clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--indicator-size)),
    0% calc(100% - var(--indicator-size)),
    0% 100%,
    5% calc(100% - var(--indicator-size)),
    0 calc(100% - var(--indicator-size))
  );
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% calc(100% - var(--indicator-size)),
    0% calc(100% - var(--indicator-size)),
    0% 100%,
    5% calc(100% - var(--indicator-size)),
    0 calc(100% - var(--indicator-size))
  );
}
@media (max-width: 991px) {
  .vs-slider-tab .tab-btn {
    font-size: 16px;
    padding: 18px 30px;
  }
}
@media (max-width: 767px) {
  .vs-slider-tab .tab-btn {
    font-size: 14px;
    padding: 11px 16px;
  }
  .vs-slider-tab .indicator {
    --indicator-size: 7px;
    -webkit-clip-path: none !important;
    clip-path: none !important;
    height: var(--height-set);
  }
}
.info-card {
  background-color: #262525;
  position: relative;
  margin: 0 0 35px 0;
  box-shadow: 0px 5px 0px #ffc010;
  border-radius: 5px;
  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;
  padding: 44px 50px 42px 50px;
}
.info-card_icon {
  color: var(--theme-color2);
  font-size: 62px;
  line-height: 1;
  margin-right: 30px;
}
.info-card_title {
  color: var(--white-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 5px;
}
.info-card_text {
  color: #a4a4a4;
  margin-bottom: 0;
  max-width: 300px;
}
.form-style1 {
  background-color: #262525;
  padding: 60px;
}
.map-wrap {
  line-height: 0;
}
.map-wrap iframe {
  height: 600px;
}
@media (max-width: 1199px) {
  .info-card {
    padding: 34px 30px 32px 30px;
  }
  .info-card_icon {
    font-size: 48px;
    margin-right: 20px;
  }
  .info-card_title {
    font-size: 20px;
  }
  .form-style1 {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .form-style1 {
    padding: 40px 15px;
  }
  .info-card {
    padding: 34px 15px 32px 15px;
  }
  .info-card_icon {
    font-size: 40px;
    margin-right: 15px;
  }
  .map-wrap iframe {
    height: 400px;
  }
}
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose:hover {
  color: var(--body-color);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border-width: 0;
  border: 2px solid var(--theme-color);
  background-color: transparent;
  padding-left: 30px;
  color: var(--white-color);
  border-radius: 0;
  border-radius: 9999px;
}
.popup-search-box form input::-moz-placeholder {
  color: var(--white-color);
}
.popup-search-box form input::-webkit-input-placeholder {
  color: var(--white-color);
}
.popup-search-box form input:-ms-input-placeholder {
  color: var(--white-color);
}
.popup-search-box form input::-ms-input-placeholder {
  color: var(--white-color);
}
.popup-search-box form input::placeholder {
  color: var(--white-color);
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: var(--white-color);
  font-size: 24px;
  right: 12px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  -ms-transform: scale(1.001);
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 0;
}
.popup-search-box.show form {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.sidemenu-wrapper .closeButton:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: transparent;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidemenu-wrapper .sidemenu-content {
  background-color: var(--black-color);
  width: 450px;
  margin-right: auto;
  padding: 60px 40px;
  height: 100%;
  overflow-y: scroll;
  position: relative;
  left: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: left ease 1s;
  transition: left ease 1s;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 0px;
  background-color: #f5f5f5;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 60px;
}
.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.sidemenu-wrapper.show .sidemenu-content {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.vs-product-card {
  margin-bottom: 20px;
}
.vs-product-card .product-img {
  text-align: center;
  background-color: var(--white-color);
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  height: 250px;
}
.vs-product-card .product-img img {
  max-height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.vs-product-card .product-title {
  color: var(--white-color);
  margin-bottom: 4px;
  font-weight: 600;
}
.vs-product-card .price {
  color: var(--white-color);
  font-weight: 500;
  opacity: 1;
  margin-bottom: 0;
}
.vs-product-card .price del {
  font-weight: 400;
  opacity: 0.7;
}
.vs-product-card:hover .product-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.vs-product-card.style2 .product-img {
  height: 350px;
  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;
}
.vs-product-card.style2 .product-img img {
  width: auto;
  height: auto;
  max-height: 100%;
}
.vs-product-grid {
  background-color: var(--white-color);
  padding: 35px 40px 40px 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(25, 44, 75, 0.08);
}
.vs-product-grid .product-content {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 18px 0;
}
.vs-product-grid .product-title {
  margin: -0.01em 0 0 0;
  font-size: 20px;
  font-weight: 600;
}
.vs-product-grid .star-rating {
  font-size: 12px;
  width: 80px;
}
.vs-product-grid .product-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.vs-product-grid .product-img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.0001);
  -ms-transform: scale(1.0001);
  transform: scale(1.0001);
}
.vs-product-grid .product-img .wishlist-total {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  color: var(--title-color);
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 50px;
}
.vs-product-grid .product-img .wishlist-total i {
  margin-right: 8px;
  color: #ff0000;
}
.vs-product-grid:hover .product-img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 1600px) {
  .vs-product-grid {
    padding: 25px 25px 30px 25px;
  }
  .vs-product-grid .product-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .vs-product-grid .product-title {
    font-size: 16px;
  }
}
.star-rating {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 1.2em;
  line-height: 1.2em;
  display: block;
  font-family: var(--icon-font);
  font-weight: 700;
  font-size: 14px;
}
.star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  color: #e1e1e1;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  letter-spacing: 3px;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--yellow-color);
  letter-spacing: 3px;
}
.gallery_grid {
  position: relative;
}
.gallery_grid_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gallery_grid_img {
  overflow: hidden;
  position: relative;
}
.gallery_grid_img > img {
  width: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.gallery_grid:hover .gallery_grid_img > img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.cta-box {
  background-color: var(--white-color);
  padding: 0 80px;
  border: 1px solid #e2eef1;
  border-radius: 20px;
}
.cta-box__title {
  font-size: 46px;
  line-height: 59px;
  margin-bottom: 8px;
}
.cta-box__text {
  font-size: 18px;
  line-height: 28px;
  max-width: 650px;
  margin-bottom: 20px;
  color: #154d59;
}
.cta-box__img {
  text-align: right;
  margin: -20px 0 0 0;
}
@media (max-width: 1600px) {
  .cta-box {
    padding: 0 60px;
  }
  .cta-box__title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 8px;
  }
  .cta-box__text {
    font-size: 16px;
    line-height: 28px;
    max-width: 650px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .cta-box {
    text-align: center;
    padding-bottom: 40px;
  }
  .cta-box__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .cta-box__img {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cta-box {
    padding-bottom: 40px;
    padding: 40px 20px;
  }
  .cta-box__title {
    font-size: 24px;
    line-height: 30px;
  }
  .cta-box__text {
    font-size: 14px;
    line-height: 26px;
  }
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.pt-60 {
  padding-top: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.mt-n1 {
  margin-top: -0.25rem;
}
p{
  font-weight: 600;
  text-align: justify!important;
}
.mt-n2 {
  margin-top: -0.5rem;
}
.mt-n3 {
  margin-top: -1rem;
}
.mt-n4 {
  margin-top: -1.5rem;
}
.mt-n5 {
  margin-top: -3rem;
}
.mb-n1 {
  margin-bottom: -0.25rem;
}
.mb-n2 {
  margin-bottom: -0.5rem;
}
.mb-n3 {
  margin-bottom: -1rem;
}
.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);
}
@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;
  }
}
video::-webkit-media-controls-fullscreen-button {
  display: none;
}
video::-webkit-media-controls-play-button {
  /* display: none; */
}
video::-webkit-media-controls-timeline {
  display: none;
}
video::-webkit-media-controls-current-time-display{
  display: none;
}
video::-webkit-media-controls-time-remaining-display {
  display: none;
}
video::-webkit-media-controls-mute-button {
  display: none;
}
video::-webkit-media-controls-toggle-closed-captions-button {
  display: none;
}
video::-webkit-media-controls-volume-slider {
  display: none;
}
/* .d-lg-none{
  display: block!important;
} */

@media (max-width:767px){
  .t-sm-none{
    display: block!important;
  }
  .t-lg-none{
    display: none!important;
  }
  .top-area .tab a{
    font-size: 15px;
  }
  .form{
    padding: 10px!important;
  }
  .top-area li a{
    padding: 4px!important;
  }
  .form-control{
    font-size: 1rem!important;
  }
  body{
    font-size: 15px!important;
  }
  .t-sm-pad{
    display: block!important;
    padding-left: 34px;
  }
}
@media (min-width:767px){
  .t-sm-none{
    display: none!important;
  }
  .t-lg-none{
    display: block!important;
  }
}
.justify-content-custom{
  justify-content: left!important;
}
@media (max-width:767px){
  .justify-content-custom{
    justify-content: center!important;
  }
  .custom-margin{
    margin-top: 60px;
  }
}
.hero-content p{
  font-weight: 600;
  text-align: center!important;
}







/*Glitch Effect*/
.text {
    text-transform: uppercase;
    font-size: 100px;
    letter-spacing: 2px;
    font-weight: 600;
    height: 50px;
    line-height: 86px;
}

    .text:before, .text:after {
        content: attr(data-text);
        position: absolute;
        top: -1px;
        left: -1px;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .text:before {
        /* color: #ff00c1;*/
        color: #ec6705;
        animation: glitch-effect .5s infinite;
    }

    .text:after {
        color: #cbf00d;
        animation: glitch-effect 2s infinite;
    }

@keyframes glitch-effect {
    0% {
        left: -2px;
        top: 2px;
    }


    25% {
        left: -4px;
        top: 4px;
    }


    50% {
        left: 2px;
        top: 2px;
    }


    75% {
        left: 2px;
        top: -4px;
    }


    100% {
        left: -2px;
        top: 2px;
    }
}



@keyframes glitch-effect {
    0% {
        left: -2px;
        top: 2px;
    }


    25% {
        left: -2px;
        top: -2px;
    }


    50% {
        left: 2px;
        top: 2px;
    }


    75% {
        left: 2px;
        top: -2px;
    }


    100% {
        left: -2px;
        top: 2px;
    }
}



/*Second*/

.Select_currency_drop {
    position: relative;
}
.spend_divide {
    position: absolute;
    top: 10px;
    right: 105px;
    width: 1px;
    height: 20px;
    background: rgb(225 225 225);
    border-radius: 5px;
}
.ui.fluid.dropdown {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100px;
    height: 40px;
    background: #fff;
    border: none;
    z-index: 1;
}
.ui.dropdown > input:not(.search):first-child, .ui.dropdown > select {
    display: none !important;
}
.btn-select {
    width: 100%;
    max-width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 8px;
    padding: 0;
}
.btn-select2 {
    background: none;
    border: none;
    height: 43px;
}
.btn-select li {
    display: flex;
    align-items: center;
    list-style: none;
}
.lang-select .a img, .btn-select img {
    width: 20px;
}
.lang-select .a li span, .btn-select li span {
    margin-left: 8px;
    font-size: 14px;
    color: #000;
}
.ui.fluid.dropdown .lang-select {
    background: #fff;
    border-radius: 5px;
}



@media (max-width: 770px) {
.footer-widget.widget_categories li { 
  width: unset;
}
}

.card-custom {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

    .card-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

.icon-box {
    font-size: 2rem;
    color: #28a745;
}

.highlight {
    background-color: #15071c;
    padding: 15px;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    margin-top: 1rem;
}