
:root {
  --theme-color: #FF7E02;
  --theme-color2: #FFC010;
  --title-color: #252525;
  --body-color: #6C6C6C;
  --dark-color: #1F1F1F;
  --smoke-color: #f4f4f4;
  --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);
  --title-font: 'Rajdhani', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --icon-font: 'Font Awesome 5 Pro';
  --main-container: 1440px;
  --container-gutters: 1.5rem;
  --section-space: 100px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;

  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #fff;
  --bs-white: #1f1f1f;
  --bs-gray: #a5a5a5;
  --bs-gray-dark: #d2d2d2;
  --bs-gray-100: #353535;
  --bs-gray-200: #4c4c4c;
  --bs-gray-300: #626262;
  --bs-gray-400: #797979;
  --bs-gray-500: #8f8f8f;
  --bs-gray-600: #a5a5a5;
  --bs-gray-700: #bcbcbc;
  --bs-gray-800: #d2d2d2;
  --bs-gray-900: #e9e9e9;
  --bs-primary: #931b1b;
  --bs-secondary: #a41515;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #353535;
  --bs-dark: #e9e9e9;
  --bs-primary-rgb: 147,27,27;
  --bs-secondary-rgb: 164,21,21;
  --bs-success-rgb: 25,135,84;
  --bs-info-rgb: 13,202,240;
  --bs-warning-rgb: 255,193,7;
  --bs-danger-rgb: 220,53,69;
  --bs-light-rgb: 53,53,53;
  --bs-dark-rgb: 233,233,233;
  --bs-white-rgb: 31,31,31;
  --bs-black-rgb: 255,255,255;
  --bs-body-color-rgb: 233,233,233;
  --bs-body-bg-rgb: 31,31,31;
}


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: 14px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: var(--dark-color);
}

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-color2);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--theme-color);
}

a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin: 0 0 15px 0;
  color: var(--body-color);
  line-height: 2;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 36px;
}

.h3,
h3 {
  font-size: 30px;
}

.h4,
h4 {
  font-size: 24px;
}

.h5,
h5 {
  font-size: 20px;
}

.h6,
h6 {
  font-size: 16px;
}

.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-btn {
  border: none;
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--body-font);
  padding: 19.5px 40px;
  line-height: 1;
  border-radius: 7px 15px 7px 15px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.4s, background-color 0.4s, border-radius 0.4s;
  transition: color 0.4s, background-color 0.4s, border-radius 0.4s;
}

.vs-btn.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:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}

.link-btn {
  display: inline-block;
  font-weight: 400;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -0.2em;
  text-transform: capitalize;
  color: var(--white-color);
  font-family: var(--title-font);
  font-size: 16px;
}

.link-btn: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::before {
  width: 100%;
}

.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;
}


.vs-header {
  position: relative;
  z-index: 41;
}

.main-menu a:hover {
  color: var(--theme-color2);
}

.main-menu > ul {
  padding: 0;
  margin: 0;
  display: inline-block; 
}

.main-menu > ul > li {
  margin: 0 15px; 
}

.main-menu ul li {
  list-style-type: none; 
  display: inline-block; 
  position: relative; 
}

.menu-style2 > ul > li > a {
  color: var(--white-color);
  padding: 55px 0;
  font-weight: 400;
}

.header-layout2 .header-menu-area,
.header-layout3 .header-menu-area {
  border-bottom: 1px solid rgba(59,59,59,.702);
  background-image: linear-gradient(rgba(5,5,5,.702),rgba(35,35,35,.702));
  position: absolute;
  left: 0;
  /*top: 0;*/
  right: 0;
}

.blog-title a {
  color: inherit;
}

.blog-title a:hover {
  color: var(--theme-color);
}

.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-content {
  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);
}

.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-more-extra-top {
  padding-top: calc(var(--section-space) + 90px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

@media (max-width: 768px) {
  .header-menu {
      display: none;
  }
  .header-button {
      flex-direction: column; 
  }
}

@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);
  }
}


.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: 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;
}

.parallax {
  background-size: cover; /* La imagen cubre todo el fondo */
  background-position: center 120%; /* Mueve la imagen más abajo */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 100vh; /* Sección ocupa toda la altura de la ventana */
}



.image-fixed {
  position: fixed; /* Mantiene la imagen fija en la ventana */
  top: 10%; /* Mueve la imagen un 2% desde la parte superior */
  left: -35%; /* Mueve la imagen un 5% desde la izquierda */
  width: 50%; /* Ajusta el tamaño de la imagen a un 40% del ancho de la ventana */
  height: auto; /* Mantiene la proporción */
  z-index: 999; /* Asegura que la imagen se muestre sobre otros elementos */
}

.image-fixed2 {
  position: fixed; /* Mantiene la imagen fija en la ventana */
  top: 10%; /* Mueve la imagen un 2% desde la parte superior */
  left: 80%; /* Mueve la imagen un 5% desde la izquierda */
  width: 50%; /* Ajusta el tamaño de la imagen a un 40% del ancho de la ventana */
  height: auto; /* Mantiene la proporción */
  z-index: 999; /* Asegura que la imagen se muestre sobre otros elementos */
}


