:root {
  --primary-color: #0d0d0d;
  --primary-rgb: 13, 13, 13;
  --secondary-color: #2c5282;
  --secondary-rgb: 44, 82, 130;
  --theme-color: #1a365d;
  --theme-rgb: 26, 54, 93;

  --accent-gold: #d4af37;
  --accent-gold-rgb: 212, 175, 55;
  --accent-gold-light: #f4d03f;
  --accent-gold-light-rgb: 244, 212, 63;
  --accent-gold-dark: #b8860b;
  --accent-gold-dark-rgb: 184, 134, 11;

  --card-start-bg: #ffffff;
  --card-start-bg-rgb: 255, 255, 255;
  --card-start-accent: #e8f4fd;
  --card-start-accent-rgb: 232, 244, 253;
  --card-premium-bg: #2c3e50;
  --card-premium-bg-rgb: 44, 62, 80;
  --card-vip-bg: #f39c12;
  --card-vip-bg-rgb: 243, 156, 18;
  --card-vip-dark: #e67e22;
  --card-vip-dark-rgb: 230, 126, 34;
  --card-disabled: #95a5a6;
  --card-disabled-rgb: 149, 165, 166;
  --card-success: #27ae60;
  --card-success-rgb: 39, 174, 96;

  --primary-font: "Jura", sans-serif;
  --secondary-font: "Jura", sans-serif;

  /* Font weight biztosítás - minimum 500 */
  --min-font-weight: 500;

  /* Új színváltozók */
  --text-muted: #b8c5d8;
  --text-muted-rgb: 184, 197, 216;
  --bg-white: #ffffff;
  --bg-white-rgb: 255, 255, 255;
  --bg-white-alpha: rgba(255, 255, 255, 1);
  --border-light: #e871c2;
  --preloader-bg-dark: #1a2b4a;
  --preloader-bg-darker: #0f1e35;
  --loader-gold: #f1c40f;
  --loader-gold-alpha: rgba(241, 196, 15, 0.5);
  --loader-gold-light: #f4d03f;
  --border-dark: #0d0d0d;
  --pagination-text: #1d165c;
  
  /* Sötét téma háttér változók */
  --dark-bg: linear-gradient(111deg, #1a2b4a 19.42%, #0f1e35 73.08%);
  --dark-bg-solid: #1a2b4a;
  --dark-text: #ffffff;
  --dark-text-muted: #b8c5d8;
}
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}
body {
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
  color: var(--dark-text-muted);
  background: var(--dark-bg);
  background-size: cover;
  font-style: normal;
  font-family: var(--secondary-font);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
.boxed_wrapper {
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  width: 100%;
  background: transparent;
  min-width: 300px;
}
.container-fulid {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}
.container {
  max-width: 1320px;
  width: 100%;
}
a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
a:hover {
  text-decoration: none;
  outline: none;
}
input,
button,
select,
textarea {
  font-weight: 500;
  font-size: 18px;
  background: transparent;
}
::-webkit-input-placeholder {
  color: inherit;
}
::-moz-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
}
ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
button:focus,
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}
p {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  color: var(--dark-text-muted);
  font-family: var(--secondary-font);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--dark-text);
  font-family: var(--primary-font);
}
h1 {
  font-size: 64px;
  line-height: 74px;
  font-weight: 700;
}
h2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}
h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
}
h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
h5 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.centred {
  text-align: center;
}
figure {
  margin: 0px;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
/** Defult Form **/
.form-group {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.form-group input,
.form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  border-radius: 5px;
  padding: 10px 30px;
  font-family: var(--secondary-font);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.form-group textarea {
  height: 170px;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
}
/** End Defult Form **/

/** Button Style One **/
.btn_style_one {
  position: relative;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  z-index: 1;
  display: inline-block;
  border-radius: 60px;
  color: var(--bs-white);
  overflow: hidden;
  padding: 12px 30px 12px 30px;
  font-family: var(--primary-font);
  background: linear-gradient(106deg, var(--secondary-color) 11.27%, var(--theme-color) 88.73%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.btn_style_one::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(275deg, var(--secondary-color) 11.27%, var(--theme-color) 88.73%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.btn_style_one:hover:before {
  width: 100%;
}

/** End Button Style One **/

.btn_style_two {
  position: relative;
  display: flex;
  padding: 12px 30px 12px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  border-radius: 60px;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--border-light);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.btn_style_two span {
  border-radius: 60px;
  background: linear-gradient(106deg, var(--secondary-color) 11.27%, var(--theme-color) 88.73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn_style_two:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  content: "";
  z-index: -1;
  background: linear-gradient(106deg, var(--secondary-color) 11.27%, var(--theme-color) 88.73%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.btn_style_two:hover:before {
  height: 100%;
}
.btn_style_two:hover span {
  background: var(--bg-white);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tabs-box .tab {
  position: relative;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.tabs-box .tab.active-tab {
  display: block;
}
.tabs-box .tab {
  transform: scale(0.9, 0.9) translateY(0px);
}
.tabs-box .tab.active-tab {
  transform: scale(1) translateY(0px);
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-x;
  -webkit-animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-x;
  -moz-animation-duration: 15s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-x;
  -ms-animation-duration: 15s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-x;
  -o-animation-duration: 15s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(var(--bg-white-rgb), 0);
    box-shadow: 0 0 0 30px rgba(var(--bg-white-rgb), 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(var(--bg-white-rgb), 0);
    box-shadow: 0 0 0 0 rgba(var(--bg-white-rgb), 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 30px rgba(var(--bg-white-rgb), 0);
    box-shadow: 0 0 0 30px rgba(var(--bg-white-rgb), 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(var(--bg-white-rgb), 0);
    box-shadow: 0 0 0 0 rgba(var(--bg-white-rgb), 0);
  }
}

/* Preloader */
.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: linear-gradient(111deg, var(--secondary-color) 19.42%, var(--theme-color) 73.08%);
  background: linear-gradient(111deg, var(--preloader-bg-dark) 19.42%, var(--preloader-bg-darker) 73.08%);
  z-index: 9999999;
}
.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #FFD700;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 15px;
  border-radius: 50%;
}
.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}
.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  color: var(--loader-gold-light) !important;
  position: absolute;
  transition: all 0.3s ease;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading.animate:before {
  animation: letters-loading 4s ease-in-out infinite;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-family: var(--primary-font);
  font-weight: 600;
  letter-spacing: 15px;
  display: inline-block;
  position: relative;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--loader-gold-alpha);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading.animate {
  opacity: 1;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.handle-preloader .loader-section {
  background-color: var(--bg-white);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading {
}
.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: var(--loader-gold-light);
}
.handle-preloader .animation-preloader .spinner {
  border: 3px solid var(--loader-gold);
  border-top-color: var(--loader-gold-alpha);
}
/* AnimaciÃƒÂ³n del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes letters-loading {
  0% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.8);
  }
  25% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  75% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
  }
}
@media screen and (max-width: 767px) {
  .handle-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
}
@media screen and (max-width: 500px) {
  .handle-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 30px;
    letter-spacing: 10px;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links li a {
  display: inline-block;
  font-size: 15px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid rgba(var(--bg-white-rgb), 0.35);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.social-links li a:hover {
  border-color: var(--secondary-color);
}
.social-links li a i {
  font-size: 24px;
  line-height: 43px;
  color: rgba(var(--bg-white-rgb), 0.5);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}
.social-links li a:hover i {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: -webkit-linear-gradient(-45deg, var(--secondary-color), var(--card-vip-dark) 100%);
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.pt_150 {
  padding-top: 150px;
}
.pb_150 {
  padding-bottom: 150px;
}
.pb_100 {
  padding-bottom: 100px;
}
.pb_120 {
  padding-bottom: 120px;
}
.tag_text {
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  padding: 5px 18px;
  margin-bottom: 12px;
  background: rgb(159 112 253 / 10%);
}
.tag_text h6 {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.35px;
  font-family: var(--primary-font);
  text-transform: uppercase;
  background: linear-gradient(111deg, var(--secondary-color) 19.42%, var(--theme-color) 73.08%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_title {
  margin-bottom: 50px;
}
.section_title h2 {
  color: var(--dark-text);
  font-family: var(--primary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  text-transform: capitalize;
}
.section_title.light h2 {
  color: var(--bs-white);
}
.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
  display: none !important;
}

.owl-theme.owl-dots-one .owl-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.owl-theme.owl-dots-one .owl-dot {
  position: relative;
}
.owl-theme.owl-dots-one .owl-dot span {
  width: 14px;
  height: 14px;
  display: block;
  margin: 0px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--bg-white);
  transition: opacity 200ms ease 0s;
}
.owl-theme.owl-dots-one .owl-dot.active span {
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 50%;
  border-color: var(--theme-color);
  background: var(--bg-white);
}
.owl-theme.owl-dots-one .owl-dot:before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 14px;
  height: 14px;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  visibility: hidden;
}
.owl-theme.owl-dots-one .owl-dot.active:before {
  position: absolute;
  top: 4px;
  left: 4px;
  visibility: visible;
}
.owl-theme.nav-style-one .owl-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.owl-theme.nav-style-one .owl-nav button {
  width: 60px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  border-radius: 60px;
  text-align: center;
  color: var(--dark-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.owl-theme.nav-style-one .owl-nav button:hover {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.owl-theme.nav-style-one .owl-nav button.owl-prev {
  transform: rotate(180deg);
}
.accordion_box .block .acc-content {
  display: none;
}
.accordion_box .block .acc-content.current {
  display: block;
}

.pagination {
  position: relative;
  display: block;
}
.pagination li {
  position: relative;
  display: inline-block;
  margin: 0px;
}
.pagination li a,
.pagination li span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  height: 48px;
  width: 48px;
  line-height: 52px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  color: var(--dark-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0px 30px 5px rgb(228 228 238 / 0%);
  transition: all 500ms ease;
}
.pagination li a:focus,
.pagination li a:hover,
.pagination li span:focus,
.pagination li span:hover,
.pagination li span.current {
  color: var(--bg-white);
  background: linear-gradient(106deg, var(--secondary-color) 11.27%, var(--theme-color) 88.73%);
}
