/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #079f3b;           /* 079f3b medium green */ /* FF7E02 dark orange */
  --theme-color2: #036b31;          /* 036b31 dark green */ /* FFC010 dark yellow */
  --theme-color3: #abcd70;          /* abcd70 light green */
  --theme-color4: #FF7E02;          /* FF7E02 dark orange */
  --theme-color5: #FFC010;          /* FF7E02 dark yellow */
  --title-color: #1C1121;           /* 1C1121 purple-ish black */
  --main-title-color: #036b31;      /* 036b31 dark green */
  --body-color: #6C6C6C;            /* 6C6C6C gray */
  --dark-color: #1C1C1C;            /* 1C1C1C dark gray */
  --smoke-color: #f3f6f7;           /* f3f6f7 blue-ish gray */
  --white-color: #ffffff;
  --black-color: #000000;
  --white-light-color: #c3c3c3;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: rgba(0,0,0,0.10);
  --brand-font: 'Snake in the Boot Regular', sans-serif;
  --title-font: 'Rajdhani', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --icon-font: 'Font Awesome 6 Free Solid';
  --main-container: 1640px;
  --container-gutters: 1.5rem;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;

  --fs-10px: 0.625rem;
  --fs-12px: 0.75rem;
  --fs-13px: 0.8125rem;
  --fs-14px: 0.875rem;
  --fs-16px: 1rem;
  --fs-18px: 1.125rem;
  --fs-20px: 1.25rem;
  --fs-22px: 1.375rem;
  --fs-24px: 1.5rem;
  --fs-26px: 1.625rem;
  --fs-28px: 1.75rem;
  --fs-30px: 1.875rem;
  --fs-33px: 2.0625rem;
  --fs-34px: 2.125rem;
  --fs-36px: 2.25rem;
  --fs-40px: 2.5rem;
  --fs-42px: 2.625rem;
  --fs-46px: 2.875rem;
  --fs-48px: 3rem;
  --fs-50px: 3.125rem;
  --fs-52px: 3.25rem;
  --fs-60px: 3.75rem;
  --fs-62px: 3.875rem;
  --fs-70px: 4.375rem;
  --fs-72px: 4.5rem;
  --fs-75px: 4.6875rem;
  --fs-78px: 4.875rem;
  --fs-80px: 5rem;
  --fs-82px: 5.125rem;
  --fs-90px: 5.625rem;
  --fs-100px: 6.25rem;
  --fs-110px: 6.875rem;
  --fs-120px: 7.5rem;
  --fs-130px: 8.125rem;
  --fs-140px: 8.750rem;
  --fs-150px: 9.375rem;
  --fs-160px: 10rem;
  --fs-200px: 12.5rem;
  --fs-250px: 15.625rem;

  --xs-width: 575px;
  --s-width: 767px;
  --m-width: 991px;
  --l-width: 1199px;
  --xl-width: 1600px;
}

/*------------------- 1.5. Typography -------------------*/
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: 12px;
  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;
}

body {
  font-family: var(--body-font);
  font-size: var(--fs-14px);
  font-weight: 400;
  color: var(--body-color);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--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-color4);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--theme-color5);
}

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 {
  font-family: var(--brand-font);
  letter-spacing: 0.3em;
  color: var(--main-title-color);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: var(--fs-48px);
  line-height: calc(2*var(--fs-48px));
}

.h2,
h2 {
  font-size: var(--fs-36px);
  line-height: calc(2*var(--fs-36px));
}

.h3,
h3 {
  font-size: var(--fs-24px);
}

.h4,
h4 {
  font-size: var(--fs-22px);
}

.h5,
h5 {
  font-size: var(--fs-20px);
}

.h6,
h6 {
  font-size: var(--fs-18px);
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: var(--fs-42px);
    line-height: calc(2*var(--fs-42px));
  }
  .h2,
  h2 {
    font-size: var(--fs-30px);
    line-height: calc(2*var(--fs-30px));
  }
  .h3,
  h3 {
    font-size: var(--fs-22px);
  }
  .h4,
  h4 {
    font-size: var(--fs-18px);
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .h1,
  h1 {
    font-size: var(--fs-36px);
    line-height: calc(2*var(--fs-36px));
  }
  .h2,
  h2 {
    font-size: var(--fs-26px);
    line-height: calc(2*var(--fs-26px));
  }
  .h3,
  h3 {
    font-size: var(--fs-20px);
  }
  .h4,
  h4 {
    font-size: var(--fs-16px);
  }
  .h5 {
    font-size: var(--fs-14px);
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .h1,
  h1 {
    font-size: var(--fs-24px);
    line-height: calc(2*var(--fs-24px));
  }
  .h2,
  h2 {
    font-size: var(--fs-16px);
    line-height: calc(2*var(--fs-16px));
  }
}

/*------------------- 1.6. Extend -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}

@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;
  }
}

/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x)/ 2);
  padding-left: calc(var(--bs-gutter-x)/ 2);
  margin-top: var(--bs-gutter-y);
}

.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;
  }
}

/*------------------- 2.3. Input -------------------*/
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 .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: var(--fs-16px);
}

select:focus,
.form-select:focus,
.form-control:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--white-color);
  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: var(--fs-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;
}

/* Firefox */
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: 30px;
  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: var(--fs-12px);
}

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: var(--fs-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(.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(.375em + 0.5875rem) right calc(.375em + .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;
}

/* Extra small devices */
@media (max-width: 575px) {
  .form-select,
  .form-control {
    padding-right: 30px;
    padding-left: 15px;
  }
}

/*------------------- 2.4. Slick Slider -------------------*/
.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: var(--fs-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);
}

/* Extra large devices */
@media (max-width: 1600px) {
  .slick-arrow {
    --pos-x: 30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
  }
}

/*------------------- 2.5. Mobile Menu -------------------*/
.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: var(--fs-22px);
  position: absolute;
  right: 0;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: var(--fs-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: var(--fs-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: var(--fs-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 var(--theme-color3);
  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: 50px;
  height: 50px;
  padding: 0;
  font-size: var(--fs-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: var(--fs-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;
  }
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.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: var(--fs-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: var(--fs-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);
  }
}

/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  border: none;
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: var(--fs-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;
  /* Medium devices */
}

.vs-btn:after, .vs-btn:before {
  content: '';
  width: 100%;
  height: 100%;
  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: var(--fs-14px);
  }
}

.vs-btn i {
  margin-left: 5px;
}

.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: var(--fs-14px);
  color: var(--title-color);
  border-radius: 9999px;
  padding: 14px;
}

.vs-btn.style3 i {
  margin-right: 10px;
}

.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: var(--fs-22px);
  border-radius: 10px;
}

.icon-btn.style3 {
  background-color: var(--white-color);
  font-size: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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%;
  /* Small devices */
}

.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: var(--fs-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: white;
  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;
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn {
    --icon-size: 60px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}

/*------------------- 3.3. Titles -------------------*/
.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-color);
}

.sub-title {
  font-size: var(--fs-16px);
  letter-spacing: 0.5em;
  color: var(--theme-color);
  font-weight: 400;
  display: block;
  font-family: var(--title-font);
  margin-top: -0.45em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.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: var(--fs-18px);
  line-height: 28px;
}

.title-area {
  margin-bottom: var(--section-title-space);
}

/* Large devices */
@media (max-width: 1199px) {
  .sub-title {
    font-size: var(--fs-14px);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
  }
  .title-area {
    margin-bottom: calc(var(--section-title-space) - 20px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .sec-text {
    font-size: var(--fs-16px);
    line-height: 26px;
  }
}

/*------------------- 3.4. Common -------------------*/
.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: .35em .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;
  /* Medium Large devices */
}

@media (max-width: 1399px) {
  .vs-cursor {
    display: none;
  }
}

.new-label {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: var(--fs-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%;
  /* BG behaviour */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-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: var(--fs-18px);
}

.fs-xs {
  font-size: var(--fs-14px);
}

/*------------------- 3.7. Background -------------------*/
.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: 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;
}

/*------------------- 3.8. Text Color -------------------*/
.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;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-white-light {
  color: var(--white-light-color) !important;
}

.text-error {
  color: var(--error-color) !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;
}

/*------------------- 3.9. Overlay -------------------*/
.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);
}

[data-overlay="title"]:before {
  background-color: var(--title-color);
}

[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;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation, .play-btn:after, .play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
          animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
          animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.40;
  }
  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.40;
  }
  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;
  }
}

/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: 80px;
  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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-12px);
}

/* Extra large devices */
@media (max-width: 1600px) {
  .widget-author-about {
    display: block;
  }
  .widget-author-about .avater {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .sidebar-area {
    padding: 30px 30px 10px 30px;
  }
  .recent-post .post-title {
    font-size: var(--fs-16px);
    margin-bottom: 10px;
  }
  .recent-post .recent-post-meta a {
    font-size: var(--fs-14px);
    padding-right: 11px;
    margin-right: 6px;
  }
  .recent-post .media-img {
    margin-right: 15px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .widget-big-title h2,
  .widget_title {
    font-size: var(--fs-20px);
  }
  .widget_title:before,
  .widget-big-title h2:before {
    width: 45px;
  }
  .widget .search-form button {
    font-size: var(--fs-18px);
  }
  .recent-post-tab .nav-link {
    font-size: var(--fs-14px);
    padding: 0 10px 10px 10px;
  }
  .recent-post:not(.style2) .recent-post-meta a {
    font-size: var(--fs-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;
  }
}

/* Medium devices */
@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: var(--fs-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: var(--fs-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: var(--fs-16px);
  border: none;
}

.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: var(--theme-color2);
}

.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: var(--fs-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: var(--fs-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;
  /*text-align: justify;*/
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-info {
  color: var(--white-light-color);
  font-size: var(--fs-12px);
  max-width: 300px;
  padding-left: 25px;
  position: relative;
  line-height: 24px;
}

.footer-info strong {
    color: var(--white-color);
    font-size: larger;
}

.footer-info:last-child {
  margin-bottom: 0;
}

.footer-info a {
  color: inherit;
  text-decoration: underline;
}

.footer-info a:hover {
  color: var(--theme-color4);
}

.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: var(--fs-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;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-newsletter {
    padding: 40px 40px;
    margin-bottom: -82.5px;
  }
}

/* Medium devices */
@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: var(--fs-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: var(--fs-16px);
  }
  .newsletter-style2 .icon-btn {
    right: 10px;
  }
}

/* Small devices */
@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;
  }
}

/*------------------- 4.2. Header  -------------------*/
.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: var(--fs-16px);
  color: var(--title-color);
  text-transform: uppercase;
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu > ul > li {
  margin: 0 15px;
}

.main-menu > ul > li > a {
  line-height: 1;
}

.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: 55px 0;
  font-weight: 400;
}

.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: var(--black-color);
}

.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);*/
  background-color: rgba(0, 0, 0, 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: var(--fs-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: var(--fs-24px);
  font-family: var(--title-font);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header-call-number {
  font-size: var(--fs-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: var(--fs-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: var(--fs-14px);
  line-height: 1;
}

.header-number i {
  font-size: 1.3em;
  vertical-align: middle;
  margin-right: 10px;
}

.header-links {
  font-size: var(--fs-12px);
  font-weight: 400;
  font-family: var(--body-font);
}

.header-links p,
.header-links a {
  font-size: inherit;
  color: inherit;
}

.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: var(--fs-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: var(--fs-12px);
  right: 0;
  margin: 0;
  top: 50%;
  margin-top: -13px;
}

.breaking-news-slider .slick-arrow.slick-prev {
  right: 35px;
  left: auto;
}

/* Extra large devices */
@media (max-width: 1600px) {
  .menu-style2 > ul > li,
  .menu-style1 > ul > li {
    margin: 0px 18px;
  }
  .header_news_text {
    font-size: var(--fs-12px);
  }
  .header_news_label {
    margin-right: 15px;
    padding: 7px 11px;
    font-size: var(--fs-12px);
  }
  .header-top-links a {
    font-size: var(--fs-14px);
  }
}

/* Large devices */
@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;
  }
}

/* Medium devices */
@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;
  }
}

/* Small devices */
/*@media (max-width: 767px) {
  .header-layout6 {
    position: relative;
    background-color: #03041e;
  }
}*/

/*------------------- 4.3. Footer  -------------------*/
.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: var(--fs-20px);
  /* Small devices */
}

@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: var(--fs-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;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-layout1 .widget-area {
    padding-top: 142.5px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-layout3 .widget-area,
  .footer-layout2 .widget-area,
  .footer-layout1 .widget-area {
    padding-top: 60px;
  }
}

/* Extra small devices */
@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: var(--fs-12px);
  }
}

/*------------------- 4.4. Breadcumb  -------------------*/
.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: var(--fs-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: var(--fs-60px);
  }
}

.breadcumb-wrapper {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-title {
    font-size: var(--fs-36px);
  }
  .breadcumb-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .breadcumb-menu {
    margin: -0.43em 0 20px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: var(--fs-30px);
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: var(--fs-16px);
  }
}

/*------------------- 4.5. Pagination  -------------------*/
.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: var(--fs-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;
}

/* Small devices */
@media (max-width: 767px) {
  .vs-pagination span,
  .vs-pagination a {
    width: 40px;
    height: 40px;
    line-height: 33px;
    font-size: var(--fs-14px);
  }
}

/*------------------- 4.6. Blog  -------------------*/
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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-14px);
}

.blog-coverd.style2 .blog-title {
  padding-bottom: 0;
  margin-bottom: 23px;
  font-size: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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;
}

.blog-style1 {
  position: relative;
}

.blog-style1:before {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  right: 0;
  bottom: 0;
  background-color: var(--theme-color2);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 10px;
}

.blog-style1 .blog-title {
  color: var(--white-color);
  line-height: 34px;
  font-size: var(--fs-24px);
  text-transform: uppercase;
}

.blog-style1 .blog-meta span:before,
.blog-style1 .blog-meta a:before {
  background-color: #42304a;
}

.blog-style1 .link-btn {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--theme-color2);
}

.blog-style1 .link-btn:before {
  background-color: var(--theme-color2);
}

.blog-style1 .blog-content {
  padding: 32px 40px 31px 40px;
  background-color: #1c1121;
  position: relative;
  z-index: 2;
  border-radius: 0 0 10px 10px;
}

.blog-style1 .blog-img {
  position: relative;
  z-index: 2;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: 0 0 -2px 0;
}

.slick-center .blog-style1:before,
.blog-style1:hover:before {
  bottom: -5px;
}

/* Extra large devices */
@media (max-width: 1600px) {
  .blog-media .blog-img {
    position: relative;
    max-width: 100px;
  }
  .blog-coverd.style2 .blog-title {
    font-size: var(--fs-20px);
  }
  .blog-grid .blog-title {
    font-size: var(--fs-26px);
  }
  .blog-grid .blog-text {
    font-size: var(--fs-12px);
  }
  .blog-media .blog-img .play-btn {
    --icon-size: 35px;
  }
}

/* Medium Large devices */
@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;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-single {
    --blog-space-y: 40px;
    --blog-space-x: 30px;
  }
  blockquote {
    padding: 30px 30px 30px 30px;
  }
  blockquote p {
    font-size: var(--fs-18px);
    line-height: 32px;
    margin-bottom: 5px;
  }
  blockquote cite {
    font-size: var(--fs-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%;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  blockquote {
    font-size: var(--fs-20px);
    line-height: 34px;
    padding: 30px 40px 30px 40px;
  }
  blockquote cite {
    font-size: var(--fs-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: var(--fs-12px);
  }
  .blog-style1 .blog-meta {
    margin-bottom: 10px;
  }
  .blog-style1 .blog-content {
    padding: 31px 25px 33px 25px;
  }
  .blog-style1 .blog-title {
    line-height: 28px;
    font-size: var(--fs-24px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .blog-meta span,
  .blog-meta a {
    font-size: var(--fs-14px);
  }
  .blog-single {
    --blog-space-y: 30px;
    --blog-space-x: 20px;
  }
  blockquote {
    padding: 30px 20px 30px 20px;
  }
  .blog-card .blog-title {
    font-size: var(--fs-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;
  }
}

/*------------------- 4.7. Comments  -------------------*/
.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: var(--fs-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: var(--fs-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: var(--fs-12px);
  margin-bottom: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  width: 80px;
}

/* Large devices */
@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;
  }
}

/* Medium devices */
@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;
  }
}

/* Small devices */
@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;
  }
}

/*------------------- 4.8. Hero Area  -------------------*/
.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: var(--fs-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: var(--fs-16px);
  letter-spacing: 0.5em;
  font-weight: 400;
  font-family: var(--title-font);
  display: block;
  margin-bottom: 8px;
}

.hero-title {
  text-transform: uppercase;
}

@media (min-width: 1399px) {
  .hero-title {
    font-size: var(--fs-60px);
    margin-bottom: 3px;
  }
}

.hero-logo-icon {
  margin-bottom: 35px;
}

.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;
}

.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: var(--fs-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: 3rem;
  letter-spacing: 0.5em;
  font-family: var(--brand-font);
  max-width: 480px;
  line-height: 6rem;
  margin-bottom: 0;
}

.hero-style1 .hero-sub-title {
  color: var(--white-color);
  font-weight: 700;
  font-size: var(--fs-24px);
}

.hero-style1 .hero-text {
  font-size: var(--fs-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: var(--fs-80px);
  left: 40%;
  top: 9px;
}

/* Extra large devices */
@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: var(--fs-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: 3.75rem;
    max-width: 430px;
    line-height: 7.5rem;
  }
  .hero-style1 .hero-sub-title {
    font-size: var(--fs-20px);
    letter-spacing: 0.2em;
  }
  .hero-style1 .hero-text {
    font-size: var(--fs-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;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-clip-title {
    font-size: var(--fs-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: 3.75rem;
    max-width: 400px;
    line-height: 1;
    line-height: 7.5rem;
  }
  .hero-style1 .hero-sub-title {
    font-size: var(--fs-16px);
  }
  .hero-style1 .hero-text {
    font-size: var(--fs-16px);
  }
  .hero-style1 .versus-text {
    left: 38%;
    top: -30px;
    font-size: var(--fs-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;
  }
}

/* Medium devices */
@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: var(--fs-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: 2.5rem;
    max-width: 550px;
    line-height: 5rem;
  }
  .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: var(--fs-36px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-clip-slider {
    height: 300px;
  }
  .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: var(--fs-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: 2rem;
    max-width: 550px;
    margin-bottom: 10px;
    line-height: 4rem;
  }
  .hero-style1 .hero-content {
    text-align: center;
    margin: 50% 0;
  }
}

/*------------------- 4.9. Error  -------------------*/
.error-content img {
  margin-bottom: 70px;
}

.error-title {
  font-size: var(--fs-100px);
  line-height: 1;
  margin-bottom: 10px;
}

.error-text {
  margin-bottom: 50px;
}

/* Large devices */
@media (max-width: 1199px) {
  .error-title {
    font-size: var(--fs-78px);
  }
  .error-content img {
    margin-bottom: 50px;
  }
  .error-text {
    margin-bottom: 30px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .error-title {
    font-size: var(--fs-60px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .error-content img {
    margin-bottom: 40px;
  }
  .error-title {
    font-size: var(--fs-36px);
    margin-bottom: 20px;
  }
  .error-text {
    font-size: var(--fs-18px);
    margin-bottom: 20px;
  }
}

/*------------------- 4.10. Features  -------------------*/
.features-box {
  width: 100%;
  max-width: 325px;
  display: inline-block;
}

.features-box_icon {
  margin-bottom: 15px;
}

.features-box_label {
  font-size: var(--fs-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;
}

/* Large devices */
@media (max-width: 1199px) {
  .feature-media {
    padding: 25px 30px 26px 30px;
  }
  .feature-media_icon {
    margin-right: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .feature-media {
    display: block;
  }
  .feature-media_icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/*------------------- 4.11. About  -------------------*/
.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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-200px);
  -webkit-text-stroke: 1px #D8D8D8;
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 700;
  color: transparent;
  opacity: 0.20;
  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: var(--fs-16px);
  font-family: var(--title-font);
  color: var(--white-color);
}

.skill_box_title {
  font-size: var(--fs-18px);
  margin-bottom: 10px;
  font-weight: 600;
}

/* Extra large devices */
@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;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .img-box_style1 .img1 {
    max-width: 85%;
    margin-bottom: 50px;
    margin-left: 0;
  }
}

/* Large devices */
@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: var(--fs-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;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .about-shape1 {
    font-size: 4rem;
    top: 56%;
  }
}

/* Small devices */
@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: var(--fs-16px);
    border-radius: 7px;
    bottom: 20px;
  }
  .img-box_style3 .img-label img {
    max-width: 30px;
    left: 20px;
  }
  .about-style1 .about-title {
    font-size: var(--fs-16px);
    line-height: 24px;
  }
  .about-box {
    max-width: 100%;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box_style1 .img-label {
    right: 10px;
  }
  .img-box_style2 .img-2 {
    right: 20px;
    max-width: 245px;
  }
}

/*------------------- 4.12. Video  -------------------*/
.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: var(--fs-16px);
  color: var(--theme-color2);
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all ease .4s;
  transition: all ease .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 .4s;
  transition: all ease .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 .4s;
  transition: all ease .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: var(--fs-16px);
  font-weight: 600;
  margin-bottom: 5px;
}

.video-box_views {
  font-size: var(--fs-12px);
}

.video-box:hover .video-box_img img {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .video-card_title {
    font-size: var(--fs-20px);
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .video-big_title {
    margin: 15px 0 0 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .video-media_text {
    font-size: var(--fs-12px);
    line-height: 20px;
  }
  .video-media_title {
    font-size: var(--fs-18px);
    margin-bottom: 10px;
  }
}

/*------------------- 4.13. Match  -------------------*/
.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: var(--fs-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: var(--fs-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: var(--fs-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: #171A21;
  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: 50%;
  width: 100%;
  height: var(--box-height, 190px);
  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: var(--fs-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: var(--fs-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: var(--fs-40px);
  margin-bottom: 8px;
}

.vs-match_date {
  font-size: var(--fs-18px);
  margin-bottom: 20px;
}

.vs-match_links a {
  color: var(--white-color);
  font-size: var(--fs-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: var(--fs-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: var(--fs-30px);
  color: var(--white-color);
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.big-match .match-price {
  color: var(--white-color);
  font-size: var(--fs-16px);
  font-weight: 600;
  font-family: var(--title-font);
  margin: 0 0 20px 0;
}

.big-match .match-total {
  font-size: var(--fs-14px);
  color: var(--white-color);
  margin: 0 0 5px 0;
}

.big-match .versus-pill {
  font-size: var(--fs-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-color2);
  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: var(--fs-20px);
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 0px 0;
  line-height: 1;
}

.big-match .match-date {
  font-size: var(--fs-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: var(--fs-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: var(--fs-20px);
  font-weight: 500;
  line-height: 1;
}

.match-grid__time {
  font-size: var(--fs-20px);
  font-weight: 700;
  color: var(--white-color);
  margin: 0 0 0px 0;
  line-height: 1;
}

.match-grid__date {
  font-size: var(--fs-14px);
  color: var(--white-color);
  margin: 0 0 20px 0;
}

.match-grid__links a {
  font-size: var(--fs-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;
}

/* Extra large devices */
@media (max-width: 1600px) {
  .vs-match-wapper .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .match-grid {
    padding: 30px 20px 30px 20px;
    margin-bottom: 30px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .vs-match {
    --box-height: 160px;
    --box-width: 220px;
  }
  .vs-match_title {
    font-size: var(--fs-30px);
  }
  .vs-match_logo img {
    max-width: 150px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .vs-match {
    --box-height: 160px;
    --box-width: 220px;
    margin-bottom: 40px;
  }
  .vs-match_title {
    font-size: var(--fs-24px);
  }
  .vs-match_team {
    margin-top: 20px;
    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: var(--fs-24px);
    margin: 0 0 5px 0;
  }
  .big-match .match-name {
    font-size: var(--fs-24px);
  }
  .match-tab button {
    padding: 18px 26px;
    font-size: var(--fs-20px);
    border-radius: 5px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .vs-match {
    --box-width: 100%;
    margin-bottom: 30px;
  }
  .vs-match_title {
    font-size: var(--fs-20px);
  }
  .vs-match .gx-30 {
    --bs-gutter-x: 15px;
  }
  .big-match {
    padding: 48px 15px 47px 15px;
  }
  .big-match .match-desig {
    font-size: var(--fs-14px);
    display: block;
    margin: 5px 0 10px 0;
  }
  .big-match .match-title {
    font-size: var(--fs-20px);
  }
  .big-match .match-logo {
    margin: 0 0 0 0;
  }
  .match-bottom-btn {
    margin: 10px 0 30px 0;
  }
  .filter-menu button {
    font-size: var(--fs-24px);
    margin: 10px 18px;
  }
  .match-tab {
    margin: 30px 0 40px 0;
  }
  .match-tab button {
    padding: 12px 20px;
    font-size: var(--fs-16px);
    border-radius: 4px;
  }
}

/* Small devices */
@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: var(--fs-18px);
    margin: 10px 12px;
  }
  .filter-menu button .badge {
    top: -8px;
    right: -13px;
    width: 18px;
    height: 18px;
    line-height: 20px;
    font-size: var(--fs-12px);
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .vs-match_content {
    padding: 20px 10px;
  }
  .vs-match_logo img {
    max-width: 100px;
  }
  .vs-match_label {
    font-size: var(--fs-16px);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
  .big-match {
    padding: 28px 15px 27px 15px;
  }
  .big-match .match-name {
    font-size: var(--fs-16px);
  }
  .big-match .match-desig {
    font-size: var(--fs-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: var(--fs-18px);
  }
  .big-match .match-price {
    font-size: var(--fs-14px);
    margin: 0 0 20px 0;
  }
  .match-tab button {
    padding: 12px 16px;
    font-size: var(--fs-14px);
  }
}

/*------------------- 4.14. Palyer  -------------------*/
.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: var(--fs-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 .4s;
  transition: all ease .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;
}

/*------------------- 4.15. New Release  -------------------*/
.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(--theme-color3);
  -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: var(--fs-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;
  /* Large devices */
}

@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(--white-color);
}

/*------------------- 4.16. Team  -------------------*/
.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: var(--fs-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: var(--fs-40px);
  margin-bottom: 8px;
}

.team-card_date {
  font-size: var(--fs-16px);
  margin-bottom: 25px;
}

.team-card_links {
  margin-bottom: 17px;
}

.team-card_links a {
  color: var(--white-color);
  font-size: var(--fs-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: var(--fs-250px);
  line-height: 1;
  display: inline-block;
}

.sponsor-card {
  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;
}

.sponsor-card-smoke {
  background-color: var(--smoke-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;
}

.sponsor-card-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%;
}

.sponsor-card-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sponsor-card-title {
  font-size: var(--fs-20px);
  margin-bottom: 0;
}

.sponsor-card-location {
  font-size: var(--fs-16px);
  font-weight: 700;
  display: inline-block;
  font-family: var(--title-font);
  color: var(--title-color);
  margin: 0 5px 0 0;
}

.sponsor-card-address {
  font-size: var(--fs-14px);
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  display: inline-block;
  margin: 0 0 0 0;
}

.sponsor-card-benefits {
  font-size: var(--fs-14px);
  font-family: var(--title-font);
  color: var(--theme-color2);
  font-weight: 700;
  /*display: inline-block;*/
  margin: 0 0 0 0;
}

.sponsor-card-links a {
  font-size: var(--fs-18px);
  display: inline-block;
  margin: 0 8px 0 0;
}

.card-box {
  background-color: #171A21;
  text-align: center;
  border-radius: 6px;
  padding: 0 0 38px 0;
  margin-bottom: 30px;
}

.card-box__title {
  color: var(--white-color);
  font-size: var(--fs-24px);
  text-align: left;
  border: 1px solid #34373c;
  border-left: 3px solid var(--theme-color2);
  padding: 15px 0 15px 40px;
  margin: 0 0 30px 0;
  line-height: 1;
  border-radius: 6px;
}

.team-award__img {
  margin: 0 0 20px 0;
}

.team-award__name {
  color: var(--white-color);
  font-size: var(--fs-20px);
  font-weight: 600;
  margin: 0 0 0 0;
}

.team-award__date {
  color: var(--theme-color);
  font-size: var(--fs-14px);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.team-award .slick-arrow {
  --pos-x: 30px;
  --icon-size: 40px;
  font-size: var(--fs-16px);
  border: 1px solid #34373c;
  background-color: transparent;
  color: var(--white-light-color);
}

.team-award .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}

.team-award .slick-dots {
  margin: 20px 0 0 0;
}

.circle-progress {
  position: relative;
  line-height: 1;
}

.circle-progress span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--white-color);
  font-weight: 600;
  font-size: var(--fs-18px);
}

.team-statistics__progress {
  text-align: center;
}

.team-statistics__progress .circle-progress {
  margin-bottom: 8px;
}

.team-statistics__label {
  font-size: var(--fs-14px);
  color: var(--white-light-color);
  line-height: 20px;
}

.team-statistics__body {
  padding: 0 30px;
}

.team-stats {
  padding-bottom: 0;
}

.team-stats__title {
  margin-bottom: 0;
}

.team-stats__icon {
  color: var(--theme-color2);
  font-size: var(--fs-36px);
  margin: 0 0 20px 0;
}

.team-stats__number {
  font-size: var(--fs-30px);
  font-weight: 700;
  color: var(--white-color);
  line-height: 1;
  margin: 0 0 5px 0;
}

.team-stats__label {
  font-size: var(--fs-14px);
  color: rgba(255, 255, 255, 0.5);
}

.team-stats__content {
  padding: 27px 20px 60px 30px;
  border-color: #34373c;
  background-image: -webkit-linear-gradient(left, rgba(52, 55, 60, 0.5) 4px, transparent 4px), -webkit-linear-gradient(left, rgba(52, 55, 60, 0.5) 4px, transparent 4px), -webkit-linear-gradient(left, rgba(52, 55, 60, 0.5) 4px, transparent 4px), -webkit-linear-gradient(left, rgba(52, 55, 60, 0.5) 4px, transparent 4px), -webkit-linear-gradient(left, rgba(52, 55, 60, 0.5) 4px, transparent 4px), -webkit-linear-gradient(left, rgba(52, 55, 60, 0.5) 4px, transparent 4px), -webkit-linear-gradient(left, #202226 4px, transparent 4px), -webkit-linear-gradient(left, #16181b 4px, transparent 4px);
  background-image: linear-gradient(to right, rgba(52, 55, 60, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(52, 55, 60, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(52, 55, 60, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(52, 55, 60, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(52, 55, 60, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(52, 55, 60, 0.5) 4px, transparent 4px), linear-gradient(to right, #202226 4px, transparent 4px), linear-gradient(to right, #16181b 4px, transparent 4px);
  background-repeat: repeat-x;
  background-size: 36px 24px, 36px 30px, 36px 34px, 36px 40px, 36px 37px, 36px 29px, 72px 30px, 108px 37px;
  background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}

.team-stats__content:nth-child(even) {
  border-left: 1px solid #34373c;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .verses-text {
    font-size: var(--fs-110px);
  }
}

/* Large devices */
@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: var(--fs-90px);
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .verses-text {
    font-size: var(--fs-60px);
  }
  .card-box__title {
    font-size: var(--fs-20px);
    padding: 15px 0 15px 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .sponsor-card {
    --img-size: 80px;
  }
  .sponsor-card .sponsor-card-img {
    margin-right: 20px;
  }
  .sponsor-card .sponsor-card-img img {
    max-width: 60%;
  }
  .team-stats__content:nth-child(even) {
    border-left: none;
  }
}

/*------------------- 4.17. Testimonial -------------------*/
.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);
}

/* Extra large devices */
@media (max-width: 1600px) {
  .testimonial-box {
    --gap-x: 40px;
  }
  .testimonial-box_icon {
    right: 15px;
    top: 15px;
    max-width: 45px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .testimonial-box {
    --gap-x: 30px;
  }
}

/*------------------- 4.18. Simple Section -------------------*/
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: var(--fs-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 {
  --theme-color: #6C6C6C;
}

.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 > i.fa-whatsapp {
  --theme-color: #25D366
      ;
}

/*.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: var(--theme-color2);
  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.20;
  -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.10;
  -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: var(--title-font);
  font-weight: 700;
  font-size: var(--fs-150px);
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  line-height: 1;
}*/

.text-shape-2, .text-shape-1 {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: var(--fs-75px);
  letter-spacing: 0.2rem;
  color: transparent;
  text-transform: uppercase;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  line-height: 1;
}

.text-shape-1 {
  opacity: 0.20;
  bottom: 0;
  -webkit-text-stroke: 1px #D8D8D8;
}

.text-shape-2 {
  opacity: 0.50;
  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: 500;
}

.info-table td,
.info-table th {
  font-size: var(--fs-20px);
  font-family: var(--title-font);
  color: var(--white-color);
  padding: 0 0 7px 0;
  vertical-align: top;
}

.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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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: var(--fs-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;
}

/* Extra large devices */
@media (max-width: 1600px) {
  .logo-shape-1 {
    max-width: 270px;
  }
  .text-shape-1 {
    font-size: var(--fs-120px);
    bottom: 50px;
  }
  /*.text-shape-2 {
    font-size: var(--fs-120px);
    top: 30px;
  }*/
  .text-shape-2 {
    font-size: var(--fs-60px);
    top: 30px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .logo-shape-1 {
    max-width: 170px;
  }
  /*.text-shape-2, .text-shape-1 {
    font-size: var(--fs-80px);
  }*/
  .text-shape-2, .text-shape-1 {
    font-size: var(--fs-40px);
  }
}

/* Large devices */
@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: var(--fs-80px);
  }*/
  .text-shape-2 {
    font-size: var(--fs-40px);
  }
  .vs-tags-block {
    gap: 15px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  /*.text-shape-2 {
    font-size: var(--fs-60px);
  }*/
  .text-shape-2 {
    font-size: var(--fs-30px);
  }
  .choose-title {
    letter-spacing: 0;
    margin-bottom: 17px;
  }
  .subscribe_box {
    padding: 30px;
  }
  .vs_counter_number {
    font-size: var(--fs-48px);
  }
}

/* Small devices */
@media (max-width: 767px) {
/*.text-shape-2 {
  font-size: var(--fs-40px);
}*/
  .text-shape-2 {
    font-size: var(--fs-20px);
  }
  .info-table td,
  .info-table th {
    font-size: var(--fs-14px);
  }
  .progress-card_title {
    font-size: var(--fs-16px);
  }
  .progress-card_rank {
    font-size: var(--fs-12px);
  }
  .progress-card .progress-card_list {
    font-size: var(--fs-10px);
  }
  .subscribe_box {
    padding: 25px 20px 30px 20px;
  }
}

/*------------------- 4.19. Tab -------------------*/
.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: var(--fs-20px);
  font-weight: 500;
  text-transform: capitalize;
  background-color: transparent;
  font-family: var(--title-font);
  line-height: 1;
  padding: 25px 49px;
  z-index: 1;
}

.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)));
}

/* Medium devices */
@media (max-width: 991px) {
  .vs-slider-tab .tab-btn {
    font-size: var(--fs-16px);
    padding: 18px 30px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .vs-slider-tab .tab-btn {
    font-size: var(--fs-14px);
    padding: 11px 16px;
  }
  .vs-slider-tab .indicator {
    --indicator-size: 7px;
    -webkit-clip-path: none !important;
            clip-path: none !important;
    height: var(--height-set);
  }
}

/*------------------- 4.20. Contact -------------------*/
.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: var(--fs-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;
}

/* Large devices */
@media (max-width: 1199px) {
  .info-card {
    padding: 34px 30px 32px 30px;
  }
  .info-card_icon {
    font-size: var(--fs-48px);
    margin-right: 20px;
  }
  .info-card_title {
    font-size: var(--fs-20px);
  }
  .form-style1 {
    padding: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .form-style1 {
    padding: 40px 15px;
  }
  .info-card {
    padding: 34px 15px 32px 15px;
  }
  .info-card_icon {
    font-size: var(--fs-40px);
    margin-right: 15px;
  }
  .map-wrap iframe {
    height: 400px;
  }
}

/*------------------- 4.21. Popup Search  -------------------*/
.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: var(--fs-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;
  /* Large devices */
}

@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}

.popup-search-box form input {
  font-size: var(--fs-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: var(--fs-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);
}

/*------------------- 4.22. Popup Side Menu  -------------------*/
.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: var(--fs-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: 6px;
  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;
}

/*------------------- 4.23.. Products  -------------------*/
.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: var(--fs-20px);
  font-weight: 600;
}

.vs-product-grid .star-rating {
  font-size: var(--fs-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: var(--fs-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);
}

/* Extra large devices */
@media (max-width: 1600px) {
  .vs-product-grid {
    padding: 25px 25px 30px 25px;
  }
  .vs-product-grid .product-title {
    font-size: var(--fs-18px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .vs-product-grid .product-title {
    font-size: var(--fs-16px);
  }
}

/*------------------- 4.24. Wocommerce  -------------------*/
.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: var(--fs-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;
}

/*------------------- 4.25. Gallery  -------------------*/
.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);
}

/*------------------- 4.26. Call To Action  -------------------*/
.cta-box {
  text-align: center;
  background-color: var(--white-color);
  padding: 0 80px;
  padding-bottom: 40px;
  border: 1px solid #E2EEF1;
  border-radius: 20px;
}

.cta-box__title {
  font-size: var(--fs-46px);
  line-height: 59px;
  margin-bottom: 8px;
}

.cta-box__text {
  font-size: var(--fs-18px);
  line-height: 28px;
  max-width: 650px;
  margin-bottom: 20px;
  color: #154D59;
}

.cta-box__img {
  text-align: right;
  margin: -20px 0 0 0;
}

/* Extra large devices */
@media (max-width: 1600px) {
  /*.cta-box {
    padding: 0 60px;
  }*/
  .cta-box__title {
    font-size: var(--fs-36px);
    line-height: 44px;
    margin-bottom: 8px;
  }
  .cta-box__text {
    font-size: var(--fs-16px);
    line-height: 28px;
    max-width: 650px;
    margin-bottom: 20px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .cta-box {
    text-align: center;
    padding-bottom: 40px;
  }
  .cta-box__title {
    font-size: var(--fs-30px);
    line-height: 36px;
    margin-bottom: 8px;
  }
  .cta-box__img {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .cta-box {
    padding-bottom: 40px;
    padding: 40px 20px;
  }
  .cta-box__title {
    font-size: var(--fs-24px);
    line-height: 30px;
  }
  .cta-box__text {
    font-size: var(--fs-14px);
    line-height: 26px;
  }
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mt-n1 {
  margin-top: -.25rem;
}

.mt-n2 {
  margin-top: -.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -.25rem;
}

.mb-n2 {
  margin-bottom: -.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);
}

.space-top-60 {
  padding-top: 60px;
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-top-60 {
    padding-top: 30px;
  }
}

/*------------------- 06. Update 1  -------------------*/
/*------------------- Global  -------------------*/
.bg-black2 {
  background-color: #171A21;
}

[data-overlay="black2"]:before {
  background-color: #171A21;
}

.icon-btn.style5 {
  background-color: #6C6C6C;
  color: var(--white-color);
  font-size: var(--fs-18px);
}

.icon-btn.style5:hover {
  background-color: var(--theme-color);
}

.fs-16 {
  font-size: var(--fs-16px);
}

.vs-social a {
  display: inline-block;
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  background-color: var(--white-color);
  color: var(--theme-color);
  font-size: var(--fs-18px);
  text-align: center;
  margin-right: 5px;
  border-radius: 50%;
}

.vs-social a:last-child {
  margin-right: 0;
}

.vs-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

@media only screen and (min-width: 1300px) {
  .vs-container {
    --main-container: 1530px;
  }
}

.mockup-box1 {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 75px;
  border-radius: 20px;
  position: relative;
  margin-top: 120px;
}

.mockup-box1-area {
  position: relative;
}

.mockup-box1-area .mockup-img {
  position: absolute;
  right: 190px;
  bottom: 0;
  z-index: 2;
}

.mockup-box1-area .mockup-img:before {
  content: '';
  width: 140px;
  height: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0px 50px 200px 0 var(--theme-color);
  opacity: 0.7;
  z-index: -1;
}

@media (max-width: 1299px) {
  .mockup-box1-area .mockup-img {
    right: 40px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .mockup-box1 {
    padding: 50px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .mockup-box1 {
    margin-top: -200px;
    padding-top: 250px;
  }
  .mockup-box1-area .mockup-img {
    position: relative;
    display: inline-block;
    right: 20px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .mockup-box1 {
    padding: 20px;
    border-radius: 10px;
    margin-top: -200px;
    padding-top: 230px;
  }
  .mockup-box1-area .mockup-img:before {
    width: 50px;
    height: 50px;
  }
}

/*------------------- Header  -------------------*/
.header-button .vs-btn {
  margin-right: 30px;
}

.header-layout7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-layout7 .header-top {
  background-color: transparent;
  padding: 11px 0;
}

.header-layout7 .header-menu-area {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0 30px;
  border-radius: 10px;
  border-bottom: 2px solid var(--theme-color2);
}

.header-layout7 .will-sticky .sticky-active {
  background-color: var(--black-color);
}

.header-layout7 .will-sticky .header-menu-area {
  background-color: var(--black-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-layout7 .header-menu-area {
    padding: 0 20px;
  }
}

/*------------------- Hero  -------------------*/
.vs-hero-bg {
  position: absolute;
  inset: 0;
}

.vs-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-style7 {
  padding: 350px 0 175px 0;
}

.hero-style7 .sub-title {
  margin-bottom: 10px;
}

.hero-style7 .hero-title {
  font-size: var(--fs-100px);
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--white-color);
}

.hero-style7 .hero-title:last-of-type {
  margin-bottom: 25px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .hero-style7 .hero-title {
    font-size: var(--fs-82px);
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-style7 {
    padding: 310px 0px 135px;
  }
  .hero-style7 .hero-title {
    font-size: var(--fs-72px);
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-style7 {
    padding: 210px 0px 100px;
  }
  .hero-style7 .hero-title {
    font-size: var(--fs-60px);
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-style7 .hero-title {
    font-size: var(--fs-52px);
  }
}

@media (max-width: 450px) {
  .hero-style7 .hero-title {
    font-size: 44px;
  }
}

@media (max-width: 375px) {
  .hero-style7 .hero-title {
    font-size: var(--fs-36px);
  }
}

/*------------------- About  -------------------*/
.img-box_style4 {
  position: relative;
  margin-left: 80px;
}

.img-box_style4 .img-label {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: var(--fs-20px);
  color: var(--theme-color2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  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_style4 .img1 {
  text-align: right;
  padding-bottom: 59px;
  padding-top: 20px;
}

.img-box_style4 .img2 {
  position: absolute;
  left: 0;
  top: 0;
}

.img-box_style4 .img3 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 40px;
}

.about-shape1.style2 {
  bottom: 120px;
  left: 26%;
  top: unset;
  right: unset;
  opacity: 0.08;
}

.about-shape2 {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1300px) {
  .img-box_style4 {
    margin-left: 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .img-box_style4 {
    margin-bottom: 35px;
  }
  .img-box_style4 .img1 {
    padding-bottom: 40px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .img-box_style4 .img3 {
    max-width: 250px;
  }
  .img-box_style4 .img2 {
    max-width: 200px;
  }
  .img-box_style4 .img-label {
    font-size: var(--fs-16px);
  }
}

/*------------------- Game  -------------------*/
.game-box {
  position: relative;
}

.game-box-wrap {
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0px -2px 1px var(--theme-color2), 0px 2px 0px var(--theme-color2);
}

.game-box_img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.game-box_img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.game-box_content {
  background-color: var(--title-color);
  padding: 33px;
  border-radius: 0 0 10px 10px;
  position: relative;
  z-index: 2;
}

.game-box_title {
  color: var(--white-color);
  font-size: var(--fs-24px);
  margin-top: -0.24em;
  margin-bottom: 3px;
}

.game-box_title a {
  color: inherit;
}

.game-box_title a:hover {
  color: var(--theme-color2);
}

.game-box_fee {
  margin-bottom: -0.5em;
  color: var(--white-color);
}

.game-box_icon {
  width: 112px;
  height: 112px;
  padding: 22px 0;
  background-color: var(--title-color);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  bottom: 60px;
  left: 0;
}

.game-box .icon-btn {
  position: absolute;
  right: 33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.game-box:hover .game-box_img img {
  -webkit-transform: scale(1.1) rotate(5deg);
      -ms-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}

/* Medium devices */
@media (max-width: 991px) {
  .game-box-wrap {
    padding: 20px;
    border-radius: 10px;
  }
  .game-box_content {
    padding: 33px 15px;
  }
  .game-box .icon-btn {
    right: 15px;
  }
}

@media (max-width: 380px) {
  .game-box .icon-btn {
    display: none;
  }
}

/*------------------- Feature  -------------------*/
.feature-card {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}

.feature-card_icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: rgba(255, 192, 16, 0.5);
  text-align: center;
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
  position: relative;
  z-index: 2;
  margin: 5px 0 22px 8px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.feature-card_icon img {
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.feature-card_shape {
  position: absolute;
  top: 30px;
  left: 30px;
}

.feature-card_shape:before, .feature-card_shape:after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
          clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
}

.feature-card_shape:after {
  width: 48px;
  height: 48px;
  background-color: #302E33;
  top: 1px;
  left: 1px;
}

.feature-card_title {
  color: var(--white-color);
  font-size: var(--fs-24px);
  margin-bottom: 10px;
}

.feature-card_text {
  color: var(--white-color);
  margin-bottom: -0.5em;
}

.feature-card:hover .feature-card_icon {
  margin: 0 0 22px 0;
}

/*------------------- Match  -------------------*/
.match-box {
  --box-bg: rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
  position: relative;
}

.match-box_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;
  position: relative;
  z-index: 2;
  height: 200px;
  width: 674px;
  background-position: left center;
  background-size: contain;
}

.match-box_shape {
  position: absolute;
  bottom: 20px;
  right: 80px;
  z-index: -1;
}

.match-box_logo {
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  z-index: -1;
}

.match-box_body {
  position: relative;
}

.match-box_body:last-child .match-box_content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
  margin-left: auto;
  background-position: right center;
}

.match-box_body:last-child .match-box_shape {
  left: 80px;
  right: unset;
}

.match-box_team {
  padding: 62px 20px 20px 20px;
}

.match-box_label {
  font-size: var(--fs-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;
}

.match-box_title {
  font-size: var(--fs-30px);
  color: var(--white-color);
  margin-bottom: -0.25em;
}

.match-box_schedule {
  text-align: center;
  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;
  background-color: var(--box-bg);
  width: 120px;
  height: 116px;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -60px;
  margin-top: 30px;
}

.match-box_schedule:before, .match-box_schedule:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 103px 116px 0;
  border-color: transparent var(--box-bg) transparent transparent;
  position: absolute;
  top: 0;
}

.match-box_schedule:before {
  right: 100%;
}

.match-box_schedule:after {
  left: 100%;
  border-width: 116px 0 0 103px;
  border-color: transparent transparent transparent var(--box-bg);
}

.match-box .triangle-top-right {
  display: inline-block;
}

.match-box_time, .match-box_date {
  font-family: var(--title-font);
  line-height: 1;
  color: var(--white-color);
  font-weight: 700;
}

.match-box_time {
  font-size: var(--fs-36px);
  margin-bottom: 8px;
}

.match-box_date {
  font-size: var(--fs-16px);
  margin-bottom: 15px;
  color: var(--theme-color);
}

.match-box_links a {
  color: var(--white-color);
  font-size: var(--fs-28px);
  display: inline-block;
  line-height: 1;
  margin-right: 15px;
}

.match-box_links a:last-child {
  margin-right: 0;
}

.match-box_links a:hover {
  color: var(--theme-color2);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .match-box_content {
    width: 590px;
  }
}

@media (max-width: 1300px) {
  .match-box_content {
    width: 490px;
    background-size: 100% 100%;
  }
  .match-box_logo {
    width: 160px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .match-box_content {
    width: 410px;
  }
  .match-box_team {
    padding: 62px 0 20px 0px;
  }
  .match-box_title {
    font-size: var(--fs-24px);
  }
  .match-box_logo {
    width: 140px;
  }
  .match-box_logo img {
    max-width: 80px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .match-box_content {
    width: 260px;
    height: 260px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-size: cover;
  }
  .match-box_team {
    padding: 0px;
    text-align: center;
    margin-top: -40px;
  }
  .match-box_shape {
    display: none;
  }
  .match-box_body {
    position: relative;
  }
  .match-box_body:last-child .match-box_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .match-box_logo {
    width: 140px;
    line-height: 170px;
  }
  .match-box_logo img {
    max-width: 80px;
  }
  .match-box_label {
    margin-bottom: 4px;
  }
  .match-box_schedule {
    bottom: 40px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .match-box_schedule {
    bottom: 0;
    position: relative;
    width: 220px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    height: 130px;
  }
  .match-box_schedule:before, .match-box_schedule:after {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .match-box {
    margin-bottom: 50px;
  }
  .match-box_content {
    width: 100%;
    height: auto;
    background-size: contain;
  }
  .match-box_logo {
    line-height: 1;
    height: auto;
  }
  .match-box_team {
    margin-top: 20px;
  }
}

@media (max-width: 350px) {
  .match-box_title {
    font-size: var(--fs-20px);
  }
}

/*------------------- Team  -------------------*/
.team-box {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--theme-color3);
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
  position: relative;
}

.team-box_img {
  border-radius: 10px;
  overflow: hidden;
}

.team-box_img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.team-box_desig {
  color: var(--theme-color);
  margin-bottom: 2px;
  margin-top: 22px;
  font-weight: 500;
}

.team-box_title {
  font-size: var(--fs-30px);
  color: var(--white-color);
  margin-bottom: 2px;
}

.team-box_title a {
  color: inherit;
}

.team-box_title a:hover {
  color: var(--theme-color2);
}

.team-box .icon-btn {
  position: relative;
}

.team-box .vs-social {
  position: absolute;
  bottom: 0;
  right: -12px;
  width: 180px;
}

.team-box .vs-social a {
  background-color: #6C6C6C;
  color: var(--white-color);
  box-shadow: 0px 5px 18px rgba(76, 88, 104, 0.06);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.team-box .vs-social a > i {
  margin-right: 0;
}

.team-box .vs-social a:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.team-box .vs-social a:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.team-box .vs-social a:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.team-box .vs-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.team-box .team-social {
  position: absolute;
  bottom: 30px;
  right: 20px;
}

.team-box .team-social:hover .vs-social a {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.team-box .team-social:hover .vs-social a:nth-child(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.team-box .team-social:hover .vs-social a:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.team-box .team-social:hover .vs-social a:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.team-box:hover .team-box_img img {
  -webkit-transform: scale(1.1) rotate(5deg);
      -ms-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}

/*------------------- Contact  -------------------*/
.contact-shape1 {
  position: absolute;
  top: 5%;
  left: 0;
}

select.style3,
.form-select.style3,
.form-control.style3 {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white-color);
}

select.style3::-moz-placeholder,
.form-select.style3::-moz-placeholder,
.form-control.style3::-moz-placeholder {
  color: var(--white-color);
}

select.style3::-webkit-input-placeholder,
.form-select.style3::-webkit-input-placeholder,
.form-control.style3::-webkit-input-placeholder {
  color: var(--white-color);
}

select.style3:-ms-input-placeholder,
.form-select.style3:-ms-input-placeholder,
.form-control.style3:-ms-input-placeholder {
  color: var(--white-color);
}

select.style3::-webkit-input-placeholder, .form-select.style3::-webkit-input-placeholder, .form-control.style3::-webkit-input-placeholder {
  color: var(--white-color);
}

select.style3::-moz-placeholder, .form-select.style3::-moz-placeholder, .form-control.style3::-moz-placeholder {
  color: var(--white-color);
}

select.style3:-ms-input-placeholder, .form-select.style3:-ms-input-placeholder, .form-control.style3:-ms-input-placeholder {
  color: var(--white-color);
}

select.style3::-ms-input-placeholder, .form-select.style3::-ms-input-placeholder, .form-control.style3::-ms-input-placeholder {
  color: var(--white-color);
}

select.style3::placeholder,
.form-select.style3::placeholder,
.form-control.style3::placeholder {
  color: var(--white-color);
}

.form-style2 {
  position: relative;
  z-index: 2;
}

.form-style2 textarea {
  height: 200px;
}

/*------------------- Product  -------------------*/
.product_style1 {
  position: relative;
  margin-bottom: 30px;
}

.product_style1 .product-img {
  margin-bottom: 27px;
  border-radius: 10px;
  overflow: hidden;
}

.product_style1 .product-img img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.product_style1 .product-title {
  font-size: var(--fs-24px);
  color: var(--white-color);
  margin-bottom: 3px;
  padding-right: 84px;
}

.product_style1 .tag {
  color: var(--theme-color);
  font-family: var(--title-font);
  font-weight: 500;
  margin-bottom: -.5em;
  font-size: var(--fs-16px);
}

.product_style1 .product-price {
  position: absolute;
  bottom: 32px;
  right: 0;
  font-size: var(--fs-16px);
  font-weight: 500;
  color: var(--white-color);
  font-family: var(--title-font);
}

.product_style1 .product-price del {
  margin-left: 4px;
}

.product_style1:hover .product-img img {
  -webkit-transform: scale(1.1) rotate(5deg);
      -ms-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}

/*------------------- Footer  -------------------*/
.footer-menu {
  text-align: center;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
  display: inline-block;
  list-style: none;
}

.footer-menu li {
  display: inline-block;
  margin: 0 25px;
  position: relative;
}

.footer-menu li:before {
  content: '';
  height: 6px;
  width: 100%;
  background-color: var(--theme-color2);
  position: absolute;
  bottom: -6px;
  left: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
}

.footer-menu li:hover:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.footer-menu a {
  display: inline-block;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: var(--fs-16px);
  color: var(--white-color);
  padding: 75px 0;
}

.footer-menu a:hover {
  color: var(--theme-color2);
}

.footer-top {
  border: 6px solid var(--black-color);
  border-top: none;
  padding: 0 40px;
}

.footer-middle {
  border: 6px solid var(--black-color);
  border-top: none;
  padding: 40px;
}

.newsletter-style3 {
  position: relative;
}

.newsletter-style3 .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--theme-color3);
  height: 55px;
  border-radius: 99px;
  color: var(--white-color);
}

.newsletter-style3 .form-control::-moz-placeholder {
  color: var(--white-color);
}

.newsletter-style3 .form-control::-webkit-input-placeholder {
  color: var(--white-color);
}

.newsletter-style3 .form-control:-ms-input-placeholder {
  color: var(--white-color);
}

.newsletter-style3 .form-control::-ms-input-placeholder {
  color: var(--white-color);
}

.newsletter-style3 .form-control::placeholder {
  color: var(--white-color);
}

.newsletter-style3 button {
  background-color: transparent;
  border: none;
  color: var(--white-color);
  font-size: var(--fs-24px);
  padding: 0;
  height: 35px;
  line-height: 35px;
  position: absolute;
  top: 10px;
  right: 0;
  width: 88px;
  text-align: center;
  border-left: 1px solid var(--theme-color);
}

.footer-bottom {
  border: 6px solid var(--black-color);
  border-top: none;
  border-bottom: none;
  padding: 30px 40px;
}

.footer-social {
  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;
  gap: 30px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--theme-color3);
  border-radius: 99px;
  padding: 0 40px;
}

.footer-social a {
  font-size: var(--fs-18px);
  color: var(--white-color);
}

.footer-social a:hover {
  color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-menu li {
    margin: 0 15px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-top {
    padding: 35px 15px;
  }
  .footer-menu {
    margin: 20px auto;
  }
  .footer-menu li:before {
    display: none;
  }
  .footer-menu a {
    padding: 5px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-menu li {
    margin: 0 10px;
  }
  .footer-middle {
    padding: 35px 15px;
  }
  .footer-bottom {
    padding: 20px 15px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .footer-social {
    gap: 15px;
    padding: 0 25px;
  }
  .footer-social a {
    font-size: var(--fs-16px);
  }
  .newsletter-style3 button {
    width: 60px;
  }
}

@media (max-width: 375px) {
  .footer-social {
    gap: 10px;
    padding: 0 15px;
  }
  .footer-social a {
    font-size: var(--fs-14px);
  }
}

/*# sourceMappingURL=style.css.map */

.attribution {
    font-size: xx-small;
    color: var(--smoke-color);
    position: absolute;
    bottom: 3px;
    left: 3px;
}

.full-screen {
    height: 100vh !important;
}

/* Board Game Card stats */
.boardgame-detail-row {
    text-align: center;
}

.boardgame-detail:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

/* Center footer logo on smaller devices */
/*@media (max-width: 767px) {
    .footer-logo {
        text-align: center;
    }

    .footer-about-text {
        width: 100%;
        max-width: 100%;
    }
}*/

.hero-style1 .hero-sub-title { 
  -webkit-text-stroke: 1px var(--dark-color);
}

.hero-style1 span {
    padding: 0.5rem;
}

/* Image overlay */
.image-overlay {
    -webkit-text-stroke: 0.5px var(--dark-color);
}

.image-overlay .sub-title {
    color: var(--white-color);
    -webkit-text-stroke: 0.5px var(--smoke-color);
}

.image-overlay .sec-shape_bar {
    background-color: var(--white-color);
}

.image-overlay .sec-shape_bar:last-child {
    background-color: var(--white-light-color);
}

/* Hero scroll down arrow */
.arrow{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.arrow span{
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--smoke-color);
    border-right: 5px solid var(--smoke-color);
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}
.arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}

/* Sponsor benefits */
.sponsor-benefit {
    color: var(--theme-color4);
}

/*** FIXES ***/
/* Fix logo sizing on mobile */
.header-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    /*min-width: 300px;
    min-height: 50px;*/
    
}

.header-logo img {
    /*min-width: 300px;
    min-height: 50px;
    max-width: 70%;
    max-height: 70%;*/
    padding: 1rem 0;
    margin: 0.5rem;
}

/* Fix sponsor button size */
.cta-box .vs-btn {
    max-width: 50%;
}

/* Fix board game card publisher logo */
.release-card_logo img {
    object-fit: cover;
    width: 80%;
    height: 80%;
    border-radius: 50%;
}

/* Fix board game card image height */
.release-card_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Fix hero content down */
.hero-content {
    margin-top: 70%;
}