/* -------------------------------------------
Name: Obelix Media
Version:    1.0
------------------------------------------- */
:root {
  --primary-color: #ffdf00;
  --secondary-color: #ffdf00;
  --heading-color: #000;
  --heading-fixed-color: #000;
  --heading-invert-color: #ffffff;
  --bodytext-color: #000000ee;
  --bodytext-fixed-color: #000000ee;
  --border-color: #2828281a;
  --body-font: "IBM Plex Sans", sans-serif;
  --heading-font: "Space Grotesk", sans-serif;
  --white-color: rgb(255, 255, 255);
  --dark-color: #000;
  --bg-white: #fff;
  --bg-dark: #131313;
  --bg-white-invert: #131313;
  --bg-dark-invert: #fff;
  --bg-gray: #f4f5f5;
  --header-height: 80px;
  --light-gray-color: rgb(235, 235, 235);
}

[theme-mode="dark"],
:root [theme-mode="dark"],
.dark {
  --bg-dark: #cfcfcf;
  --bg-gray: #191919;
  --bg-white: #131313;
  --bg-white-invert: #fff;
  --bg-dark-invert: #131313;
  --heading-color: #fff;
  --heading-invert-color: #000;
  --bodytext-color: #ddd;
  --border-color: #ffffff1a;
  --light-gray-color: rgb(40 40 40);
}

/***************************
  
  color backgrounds
  
  ***************************/
.main-content {
  overflow: visible;
  width: 100%;
  will-change: transform;
  background-color: var(--bg-gray);
  transition: background-color ease 0.2s;
  padding-top: 80px;
}

.obl-accent-bg {
  background-color: var(--primary-color);
  transition: background-color ease 0.2s;
}

.obl-dark-bg {
  background-color: var(--bg-dark);
  transition: background-color ease 0.2s;
}

.bg-gray {
  background-color: var(--bg-gray);
  transition: background-color ease 0.2s;
}

/***************************
  
  main
  
  ***************************/
*,
*:before,
*:after {
  /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  /* Code for Firefox */
  color: black;
  background: var(--primary-color);
}

::selection {
  color: black;
  background: var(--primary-color);
}

html {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  /* -webkit-tap-highlight-color: var(--bg-gray); */
  pointer-events: all;
  background-color: var(--bg-white);
  font-family: var(--body-font);
  font-size: 18px;
  color: var(--bodytext-color);
  font-weight: 400;
  line-height: 1.6;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.obl-relative {
  position: relative;
}

/***************************
  
  typography
  
  ***************************/
a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: 600;
}

ul {
  padding: 0;
  margin: 0;
}

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

blockquote {
  border-left: solid 2px var(--primary-color);
  padding: 30px;
  background-color: var(--bg-gray);
  font-style: italic;
  color: var(--heading-color);
}

blockquote * {
  color: var(--heading-color) !important;
}

.obl-divider {
  border-top: dashed 1px rgb(195, 190, 190);
}

.obl-deco {
  height: 2px;
  width: 30px;
  border-radius: 4px;
  background-color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.obl-h1,
.obl-h2,
.obl-h3,
.obl-h4,
.obl-h5,
.obl-h6 {
  font-family: var(--heading-font);
  line-height: 120%;
  color: var(--heading-color);
  font-weight: 700;
  font-smoothing: antialiased;
}

h1,
.obl-h1 {
  font-size: 92px;
}

h2,
.obl-h2 {
  font-size: 72px;
}

h3,
.obl-h3 {
  font-size: 48px;
}

h4,
.obl-h4 {
  font-size: 36px;
}

h5,
.obl-h5 {
  font-size: 24px;
}

h6,
.obl-h6 {
  font-size: 18px;
}

@media screen and (max-width: 768px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  .obl-h1 br,
  .obl-h2 br,
  .obl-h3 br,
  .obl-h4 br,
  .obl-h5 br,
  .obl-h6 br {
    display: none;
  }

  h1,
  .obl-h1 {
    font-size: 72px;
  }

  h2,
  .obl-h2 {
    font-size: 48px;
  }

  h3,
  .obl-h3 {
    font-size: 36px;
  }

  h4,
  .obl-h4 {
    font-size: 24px;
  }

  h5,
  .obl-h5 {
    font-size: 18px;
  }

  h6,
  .obl-h6 {
    font-size: 16px;
  }
}

.obl-text-xs,
.obl-text-sm,
.obl-text-md,
.obl-text-lg,
.obl-text-xl {
  font-weight: 300;
  line-height: 160%;
  color: var(--bodytext-color);
  font-smoothing: antialiased;
}

.obl-text-xs {
  font-size: 11px;
}

.obl-text-sm {
  font-size: 14px !important;
}

.obl-text-md {
  font-size: 17px;
}

.obl-text-lg {
  font-size: 19px;
}

.obl-text-xl {
  font-size: 22px;
}

.obl-bold {
  font-weight: 600;
}

.obl-thin {
  font-weight: 200;
}

.obl-shortened {
  width: 80%;
}

.obl-shortened-50 {
  width: 50%;
}

@media screen and (max-width: 992px) {
  .obl-shortened {
    width: 100%;
  }

  .obl-shortened-50 {
    width: 100%;
  }
}

.obl-light {
  color: rgb(255, 255, 255) !important;
  fill: rgb(255, 255, 255) !important;
}

.obl-dark,
.obl-dark * {
  color: var(--heading-color) !important;
  fill: var(--heading-color) !important;
}

.obl-softened-5 {
  color: rgb(245, 244, 244) !important;
  fill: rgb(245, 244, 244) !important;
}

.obl-softened-10 {
  color: rgb(235, 233, 233) !important;
  fill: rgb(235, 233, 233) !important;
}

.obl-softened-20 {
  color: rgb(215, 212, 212) !important;
  fill: rgb(215, 212, 212) !important;
}

.obl-softened-30 {
  color: rgb(195, 190, 190) !important;
  fill: rgb(195, 190, 190) !important;
}

.obl-softened-40 {
  color: rgb(175, 169, 168) !important;
  fill: rgb(175, 169, 168) !important;
}

.obl-softened-50 {
  color: var(--bodytext-color) !important;
  fill: var(--bodytext-color) !important;
}

.obl-softened-60 {
  color: rgb(136, 126, 125) !important;
  fill: rgb(136, 126, 125) !important;
}

.obl-softened-70 {
  color: rgb(116, 105, 103) !important;
  fill: rgb(116, 105, 103) !important;
}

.obl-softened-80 {
  color: rgb(93, 86, 81) !important;
  fill: rgb(93, 86, 81) !important;
}

.obl-softened-90 {
  color: rgb(76, 62, 60) !important;
  fill: rgb(76, 62, 60) !important;
}

.obl-softened-95 {
  color: rgb(66, 51, 49) !important;
  fill: rgb(66, 51, 49) !important;
}

.obl-accent,
.obl-accent * {
  color: var(--primary-color) !important;
  fill: var(--primary-color) !important;
}

.obl-accent-hover {
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-accent-hover:hover {
  color: var(--primary-color) !important;
}

.obl-first-letter::first-letter {
  color: var(--heading-color);
  font-weight: 400;
  padding-right: 25px;
  line-height: 100%;
  float: left;
  font-size: 72px;
  font-family: var(--heading-font);
}

.obl-text-stroke {
  color: var(--heading-color);
  text-shadow: -0.4px -0.4px 0 rgb(255, 255, 255),
    0.4px -0.4px 0 rgb(255, 255, 255), -0.4px 0.4px 0 rgb(255, 255, 255),
    0.4px 0.3px 0 rgb(255, 255, 255);
}

.obl-text-center {
  text-align: center;
}

.obl-text-right {
  text-align: right;
}

.dot-divider {
  margin: 0 10px;
}

.obl-simple-list {
  padding: 0;
  margin: 0;
}

.obl-simple-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 150%;
  list-style-type: none;
}

.obl-simple-list li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-right: 20px;
}

.obl-inline-list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.obl-inline-list>li {
  list-style-type: none;
  margin-right: 28px;
}

.obl-inline-list>li:last-child {
  margin: 0;
}

.obl-inline-list>li:not(.has-sub-menu) {
  margin-right: 40px;
}

.obl-2-half-list {
  width: 100%;
}

.obl-2-half-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

.obl-2-half-list li:last-child {
  margin-bottom: 0;
}

/***************************
  
  images
  
  ***************************/
img {
  pointer-events: none;
}

.obl-just-image {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.obl-just-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obl-image-vert {
  padding-bottom: 140%;
}

.obl-image-square {
  padding-bottom: 100%;
}

.obl-image-hori {
  padding-bottom: 65%;
}

.obl-youtube-video {
  width: 100%;
  height: 550px;
}

@media screen and (max-width: 992px) {
  .obl-youtube-video {
    height: 250px;
  }
}

/***************************
  
  social
  
  ***************************/
.obl-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.obl-social li {
  list-style-type: none;
  margin-right: 15px;
}

.obl-social li:last-child {
  margin-right: 0;
}

.obl-social li a {
  color: var(--heading-color);
}

.obl-social li a i {
  font-size: 16px;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-social li a svg {
  width: 20px;
}

.obl-social li a svg path {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-social li a:hover {
  color: var(--primary-color) !important;
}

.obl-social li a:hover svg path {
  fill: var(--primary-color);
}

.obl-social.obl-right {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.obl-social.obl-left {
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* aside */
.social-side {
  position: fixed;
  left: 25px;
  bottom: 50px;
  z-index: 10;
  display: flex;
  mix-blend-mode: exclusion;
  color: #fff;
  --heading-color: #fff;
  --border-color: #fff;
}

.social-side .icon {
  text-align: center;
  width: 30px;
  line-height: 30px;
  cursor: pointer;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  white-space: nowrap;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 12px;
}

.social-side .icon:before {
  content: "";
  position: relative;
  display: inline-block;
  border-left: 1px solid var(--border-color);
  height: 50px;
  margin-bottom: 10px;
}

.socials {
  text-align: center;
  font-size: 14px;
}

.socials li a {
  position: relative;
  margin-bottom: 10px;
  margin-top: 5px;
  color: var(--heading-color);
  width: 22px;
  height: 22px;
}

.socials li a:after,
.socials li a span,
.socials li a:hover svg {
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--heading-color);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.socials li a svg {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  fill: currentColor;
  width: 17px;
  height: 17px;
}

.socials li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--heading-color);
  font-size: 13px;
  opacity: 0;
  transform-origin: center bottom;
  cursor: pointer;
  transform: translateX(0px) translateY(-50%);
}

.socials li a:hover svg {
  transform: scale(0);
}

.socials li a:hover label {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 12, -8);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
}

.socials li a:hover span {
  opacity: 1;
  transform: translateX(10px) translateY(-50%);
}

.obl-socials li {
  display: inline-block;
}

.obl-socials li:not(:last-of-type) {
  margin-right: -10px;
}

.obl-socials li a {
  position: relative;
  width: 60px;
  height: 60px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
}

.obl-socials li a a:not(.move-circle) {
  border-color: var(--border-color);
}

.obl-socials li a .icon-circle {
  z-index: 1;
}

.obl-socials li a:after,
.obl-socials li a span:not(.obl-icon) {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.obl-socials li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-color);
  transform: translate(-50%, -50%) scale(0.2);
}

.obl-socials li a span:not(.obl-icon) {
  color: var(--heading-color);
  font-weight: bold;
  font-size: 13px;
  transform-origin: center bottom;
  cursor: pointer;
}

.obl-socials li a i {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.obl-socials li a:hover i {
  transform: scale(0);
}

.obl-socials li a:hover span:not(.obl-icon) {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, -20);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.obl-socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
}

@media only screen and (max-width: 667px) {
  .social-side {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .obl-socials li a {
    width: 50px;
    height: 50px;
  }

  .obl-socials li:not(:last-of-type) {
    margin-right: 5px;
  }
}

/***************************
  
  button
  
  ***************************/
.obl-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  font-size: 11px;
  font-family: var(--body-font);
  font-weight: 600;
  margin-right: 5px;
  border: solid 0px transparent;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-button span {
  white-space: nowrap;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.obl-button span i {
  font-size: 17px;
  margin-right: 10px;
}

.obl-button:last-child {
  margin-right: 0;
}

.obl-button.obl-button-sm {
  height: 40px;
  padding: 0 25px;
}

.obl-button.obl-button-sm.obl-icon {
  width: 40px;
}

.obl-button.obl-button-md {
  height: 50px;
  padding: 0 30px;
}

.obl-button.obl-button-md.obl-icon {
  width: 50px;
}

.obl-button.obl-button-lg {
  height: 70px;
  padding: 0 45px;
}

.obl-button.obl-button-lg.obl-icon {
  width: 70px;
}

.obl-button.obl-button-xl {
  height: 90px;
  padding: 0 45px;
}

.obl-button.obl-button-xl.obl-icon {
  width: 90px;
}

.obl-button.obl-button-dark {
  background-color: var(--heading-color);
  color: var(--bg-white);
}

.obl-button.obl-button-light {
  background-color: var(--white-color);
  color: var(--dark-color);
}

.obl-button.obl-button-primary {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.obl-button.obl-button-rounded {
  border-radius: 100px;
}

.obl-button.obl-icon {
  padding: 0;
}

.obl-button.obl-icon span i {
  margin: 0;
}

.obl-button.obl-button-linear {
  background-color: transparent;
  border: solid 2px var(--primary-color);
  color: var(--primary-color);
}

.obl-button.obl-button-linear.obl-button-dark {
  background-color: transparent;
  border: solid 2px var(--heading-color);
  color: var(--heading-color);
}

.obl-button.obl-button-linear.obl-button-light {
  background-color: transparent;
  border: solid 2px rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}

.obl-button.obl-button-linear.obl-button-rounded {
  border-radius: 100px;
}

.obl-button:hover {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.obl-button:hover span {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.obl-buttons-space {
  margin-right: 30px;
}

.obl-buttons-space:last-child {
  margin-right: 0;
}

@media screen and (max-width: 576px) {
  .obl-buttons-space {
    margin-bottom: 30px;
    margin-right: 100%;
  }

  .obl-buttons-space:last-child {
    margin-bottom: 0;
  }
}

/***************************
  
  link
  
  ***************************/
.obl-link,
.obl-link-hover,
.obl-link-arrow {
  line-height: 100%;
  display: inline-block;
  color: var(--heading-color);
  position: relative;
  /* text-transform: uppercase; */
  /* letter-spacing: 2px; */
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: 500;
  cursor: pointer;
}

.obl-link:after,
.obl-link-hover:after,
.obl-link-arrow:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-link.obl-active:after,
.obl-link-hover.obl-active:after,
.obl-link-arrow.obl-active:after {
  width: 100%;
}

.obl-link-hover {
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-link-hover.obl-active:after {
  width: 100%;
}

.obl-link-hover:hover:after {
  width: 100%;
}

.obl-link-hover.obl-softened-50:hover {
  color: rgb(255, 255, 255) !important;
}

.obl-link-arrow {
  position: relative;
  padding-right: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-link-arrow:before {
  position: absolute;
  right: 0;
  font-size: 9px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  color: var(--primary-color);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-link-arrow:hover:before {
  right: -5px;
}

/***************************
  
  badge
  
  ***************************/
.obl-badge {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-family: var(--heading-font);
  line-height: 100%;
  font-weight: 600;
  color: var(--heading-color);
  background-color: var(--primary-color);
  padding: 8px 15px;
  margin-right: 5px;
}

.obl-badge:last-child {
  margin-right: 0;
}

.obl-badge.obl-badge-rounded {
  border-radius: 30px;
}

.obl-badge.obl-badge-dark {
  background-color: var(--heading-color);
  color: var(--primary-color);
}

.obl-badge.obl-badge-light {
  background-color: var(--white-color);
}

.obl-badges-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.obl-badges-frame .obl-badge {
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
  1. Space
  ----------------------------------------------------------------*/
.main-spacer {
  height: 200px;
}

@media screen and (max-width: 992px) {
  .main-spacer {
    height: 100px;
  }
}

/*--------------------------------------------------------------
  2. Preloader
  ----------------------------------------------------------------*/
.obl_preloader {
  position: fixed;
  z-index: 99999999;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.obl_preloader .preloader_bg_transition path {
  fill: var(--bg-white);
}

/* [theme-mode="light"] .obl_preloader .preloader_bg_transition path{
  fill: white;
  } */
.obl_preloader .preloader_bg_transition {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}

.obl_preloader_in {
  background-color: #212428;
  background-position: center center;
  background-size: cover;
  box-shadow: 3px -3px 6px rgb(255 255 255 / 5%),
    inset 1px 1px 15px rgb(255 255 255 / 5%), -4px 4px 5px rgb(0 0 0 / 30%),
    inset -3px 3px 3px rgb(0 0 0 / 30%);
  transition: all ease 0.2s;
  width: 90px;
  height: 90px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 28px;
  border: 8px solid rgb(255 255 255 / 21%);
  border-radius: 50px;
}

.obl_preloader_out {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background: none;
  fill: none;
}

.obl_preloader_out circle {
  fill: none;
  stroke: rgb(255 223 0);
  stroke-width: 11px;
  transition: stroke-dashoffset 0.2s ease-in-out;
  stroke-dashoffset: 297;
  stroke-dasharray: 297;
}

.obl_preloader_box {
  width: 128px;
  height: 128px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e;
  position: relative;
  z-index: 1;
}

.obl_preloader_bg {
  text-align: center;
  height: 100%;
  width: 100%;
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/***************************
  
  cursor
  
  ***************************/
.obl-cursor {
  width: 25px;
  height: 25px;
  position: fixed;
  /* opacity: 0.1; */
  background-color: #b0b0b029;
  border-radius: 50%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  will-change: transform;
  z-index: 99999999999;
}

.obl-cursor span svg {
  width: 35px;
  display: block;
}

.obl-cursor span svg path {
  fill: rgb(255, 255, 255);
}

@media screen and (max-width: 992px) {
  .obl-cursor {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

/***************************
  
  custom scrollbar
  
  ***************************/
::-webkit-scrollbar {
  display: none;
}

.obl-progress-track {
  position: fixed;
  z-index: 999999999999;
  top: 0;
  right: 0;
  height: 100%;
  width: 4px;
  background-color: #000;
}

.obl-progress-track .obl-progress {
  background-color: var(--primary-color);
  height: 0;
  width: 4px;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

@media screen and (max-width: 992px) {
  .obl-progress-track {
    display: none;
  }
}

/***************************
  
  page transitions
  
  ***************************/
html .obl-main-transition {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

html .obl-top-bar-transition {
  opacity: 1;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

/* html .obl-top-bar-transition .obl-link:after {
  bottom: -10px;
  }
  
  html .obl-top-bar-transition ul>li a.active {
  pointer-events: none;
  }
  
  html .obl-top-bar-transition ul>li.obl-link.active:after {
  width: 100%;
  }
  
  html .obl-top-bar-transition ul li ul li a.active:after {
  content: none;
  }
  
  html .obl-top-bar-transition ul li ul li:has(> a.active)::before {
  height: 100%;
  width: 3px;
  background-color: var(--primary-color);
  }
  
  html .obl-top-bar-transition ul li ul li a.active::before {
  opacity: 1;
  } */
html.is-animating .obl-main-transition {
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

html.is-animating .obl-top-bar-transition {
  opacity: 0.999;
}

html.is-animating .obl-top-bar-transition .obl-link.obl-active:after {
  width: 0;
}

html.is-animating .obl-progress-track .obl-progress {
  height: 0;
}

html.is-changing body {
  pointer-events: none;
}

@media screen and (min-width: 1200px) {
  html.is-animating .obl-top-bar-transition ul li ul {
    opacity: 0 !important;
    -webkit-transform: translateY(10px) !important;
    transform: translateY(10px) !important;
  }
}

@media screen and (min-width: 1200px) and (max-width: 992px) {
  html.is-animating .obl-top-bar-transition ul li ul {
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}

/***************************
  
  dots
  
  ***************************/
.obl-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 15%,
      transparent 0);
  background-size: 10px 10px;
}

/***************************
  
  cover
  
  ***************************/
.obl-cover {
  width: 100%;
  padding-bottom: 70%;
  position: relative;
  overflow: hidden;
}

.obl-cover.obl-square {
  padding-bottom: 100%;
}

.obl-cover.obl-long {
  padding-bottom: 130%;
}

.obl-cover .obl-badges-frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 30px;
}

/***************************
  
  image frame
  
  ***************************/
.image-frame {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgb(235, 233, 233);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.image-frame img,
.image-frame .obl-video-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-frame .obl-overay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(56, 40, 38, 0.95);
}

/***************************
  
  overlay
  
  ***************************/
.obl-overlay-50,
.obl-overlay-60,
.obl-overlay-70,
.obl-overlay-80,
.obl-overlay-90,
.obl-overlay-95,
.obl-gradient-overlay,
.obl-gradient-overlay-reverse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(30%, rgba(56, 40, 38, 0.1)),
      color-stop(70%, rgba(56, 40, 38, 0.7)),
      to(rgba(56, 40, 38, 0.95)));
  background: linear-gradient(180deg,
      rgba(56, 40, 38, 0.1) 30%,
      rgba(56, 40, 38, 0.7) 70%,
      rgba(56, 40, 38, 0.95) 100%);
}

.obl-gradient-overlay-reverse {
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      color-stop(30%, rgba(56, 40, 38, 0.3)),
      color-stop(70%, rgba(56, 40, 38, 0.7)),
      to(rgba(56, 40, 38, 0.95)));
  background: linear-gradient(360deg,
      rgba(56, 40, 38, 0.3) 30%,
      rgba(56, 40, 38, 0.7) 70%,
      rgba(56, 40, 38, 0.95) 100%);
}

.obl-overlay-50 {
  background: rgba(56, 40, 38, 0.5);
}

.obl-overlay-60 {
  background: rgba(56, 40, 38, 0.6);
}

.obl-overlay-70 {
  background: rgba(56, 40, 38, 0.7);
}

.obl-overlay-80 {
  background: rgba(56, 40, 38, 0.8);
}

.obl-overlay-90 {
  background: rgba(56, 40, 38, 0.9);
}

.obl-overlay-95 {
  background: rgba(56, 40, 38, 0.95);
}

/***************************
  
  pagination
  
  ***************************/
.obl-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.obl-pagination-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  width: 60px;
  height: 60px;
  margin: 0 5px;
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-pagination-link:hover {
  background-color: rgb(235, 233, 233);
}

.obl-pagination-link--active {
  background-color: var(--primary-color);
}

.obl-pagination-link--prev {
  margin-right: 10px;
}

.obl-pagination-link--next {
  margin-left: 10px;
}

/***************************
  
  accordion
  
  ***************************/
.obl-accordion {
  width: 100%;
  border-bottom: solid 4px rgb(255, 255, 255);
}

.obl-accordion-menu {
  background: rgb(255, 255, 255);
  color: var(--heading-color);
  padding: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  margin-bottom: 10px;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-accordion-content {
  height: 0;
  overflow: hidden;
}

.obl-obl-accordion-content.expanded {
  height: 0;
  overflow: hidden;
  padding: 30px;
}

.obl-accordion-plus,
.obl-accordion-minus {
  text-align: center;
  line-height: 10px;
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 22px;
  padding-top: 10px;
  width: 30px;
  height: 30px;
  background-color: rgb(235, 233, 233);
  border-radius: 50%;
}

.obl-accordion-minus {
  line-height: 6px;
  background-color: var(--primary-color);
}

.obl-accordion-content {
  height: 0;
  overflow: hidden;
}

.obl-accordion-content p {
  padding: 20px 0 30px;
}

/********* HEADER NAV ***********
  ********************************/
#header_nav .container,
#header_nav .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header_nav .container {
  max-width: 1560px;
}

#header_nav {
  position: fixed;
  width: 100%;
  z-index: 9;
  color: var(--heading-color);
}

#header_nav .header-nav-container {
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--bg-white);
}

[theme-mode="dark"] #header_nav .header-nav-container {
  background-color: #00000070;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: solid 1px #0000002e;
}

/*----- Logo -----*/
.obelix-logo {
  display: flex;
  position: relative;
}

.obelix-logo svg {
  width: 70px;
}

.obelix-logo img {
  height: 50px;
}

.obelix-logo img.logo-icon {
  position: relative;
  z-index: 1;
  transition: all ease 0.2s;
}

.obelix-logo:active .logo-icon {
  transform: scale(0.9);
}

.obelix-logo .logo-text {
  position: relative;
  display: inline-block;
  left: -34px;
  height: 50px;
  width: 155px;
  overflow: hidden;
  z-index: 0;
}

.obelix-logo .logo-text img {
  position: absolute;
  left: 0;
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-delay: 0.15s;
  left: 39px;
}

[theme-mode="dark"] .logo-dark {
  transform: translateX(0%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

[theme-mode="light"] .logo-light {
  transform: translateX(0%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

[theme-mode="light"] .logo-dark {
  transform: translateX(-100%) scale(0.7);
  opacity: 0;
  pointer-events: none;
}

[theme-mode="dark"] .logo-light {
  transform: translateX(-100%) scale(0.7);
  opacity: 0;
  pointer-events: none;
}

/*---- End Logo ---*/
/*----- Menu Center -----*/
#header_nav .header-menu-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#header_nav .header-menu-center ul.main-menu-list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#header_nav .header-menu-center ul.main-menu-list>li {
  position: relative;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 28px;
}

#header_nav .header-menu-center ul.main-menu-list>li:not(.has-sub-menu) {
  margin-right: 40px;
}

#header_nav .header-menu-center ul.main-menu-list>li:last-of-type {
  margin-right: 0px;
}

#header_nav .header-menu-center ul.main-menu-list>li.has-sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header_nav .header-menu-center ul>li.has-sub-menu>* {
  padding-right: 16px;
}

#header_nav .header-menu-center ul li.has-sub-menu>a {
  position: relative;
  margin-right: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header_nav .header-menu-center ul li.has-sub-menu>a:before,
#header_nav .header-menu-center ul li.has-sub-menu>a::after {
  content: "";
  position: absolute;
  right: 0px;
  left: auto;
  width: 1px;
  height: 9px;
  background-color: var(--heading-color);
  display: inline-block;
  bottom: 4px;
}

#header_nav .header-menu-center ul li.has-sub-menu>a:before {
  transform: rotate(90deg);
}

#header_nav .header-menu-center ul li.has-sub-menu ul {
  pointer-events: none;
  opacity: 0;
  /* border-top: solid 1px rgb(255, 255, 255); */
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  min-width: 200px;
  padding: 20px 0px;
  position: absolute;
  top: 100%;
  left: -30px;
  background-color: var(--bg-white);
  -webkit-transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  counter-reset: submenu-count;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}

[theme-mode="dark"] #header_nav .header-menu-center ul li.has-sub-menu ul {
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 51%);
}

#header_nav .header-menu-center ul.submenu li {
  white-space: nowrap;
  height: auto;
  margin: 0;
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  padding: 10px 28px 10px 20px;
  font-size: 16px;
  font-weight: 500;
}

#header_nav .header-menu-center ul.submenu li:last-child {
  margin: 0;
}

#header_nav .header-menu-center ul.submenu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 1.5px;
  transition: 0.5s;
  background-color: var(--heading-color);
}

#header_nav .header-menu-center ul.submenu li:hover::before {
  height: 100%;
}

#header_nav .header-menu-center ul.submenu li a {
  font-size: 16px;
}

#header_nav .header-menu-center ul.submenu li a::before {
  counter-increment: submenu-count;
  content: counters(submenu-count, ".", decimal-leading-zero) ". ";
  /* font-family: var(--border-color); */
  pointer-events: none;
  font-size: 14px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

#header_nav .header-menu-center ul.submenu li:hover a::before {
  opacity: 1;
}

#header_nav .header-menu-center ul li:hover ul {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*---- End Menu Center ---*/
/*----- Navbar Right -----*/
.navbar-right {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/*Theme mode */
.theme_mode {
  --ease-1: cubic-bezier(0.25, 0, 0.5, 1);
  --ease-2: cubic-bezier(0.25, 0, 0.4, 1);
  --ease-3: cubic-bezier(0.25, 0, 0.3, 1);
  --ease-4: cubic-bezier(0.25, 0, 0.2, 1);
  --ease-5: cubic-bezier(0.25, 0, 0.1, 1);
  --ease-in-1: cubic-bezier(0.25, 0, 1, 1);
  --ease-in-2: cubic-bezier(0.5, 0, 1, 1);
  --ease-in-3: cubic-bezier(0.7, 0, 1, 1);
  --ease-in-4: cubic-bezier(0.9, 0, 1, 1);
  --ease-in-5: cubic-bezier(1, 0, 1, 1);
  --ease-out-1: cubic-bezier(0, 0, 0.75, 1);
  --ease-out-2: cubic-bezier(0, 0, 0.5, 1);
  --ease-out-3: cubic-bezier(0, 0, 0.3, 1);
  --ease-out-4: cubic-bezier(0, 0, 0.1, 1);
  --ease-out-5: cubic-bezier(0, 0, 0, 1);
  --ease-in-out-1: cubic-bezier(0.1, 0, 0.9, 1);
  --ease-in-out-2: cubic-bezier(0.3, 0, 0.7, 1);
  --ease-in-out-3: cubic-bezier(0.5, 0, 0.5, 1);
  --ease-in-out-4: cubic-bezier(0.7, 0, 0.3, 1);
  --ease-in-out-5: cubic-bezier(0.9, 0, 0.1, 1);
  --ease-elastic-1: cubic-bezier(0.5, 0.75, 0.75, 1.25);
  --ease-elastic-2: cubic-bezier(0.5, 1, 0.75, 1.25);
  --ease-elastic-3: cubic-bezier(0.5, 1.25, 0.75, 1.25);
  --ease-elastic-4: cubic-bezier(0.5, 1.5, 0.75, 1.25);
  --ease-elastic-5: cubic-bezier(0.5, 1.75, 0.75, 1.25);
  --ease-squish-1: cubic-bezier(0.5, -0.1, 0.1, 1.5);
  --ease-squish-2: cubic-bezier(0.5, -0.3, 0.1, 1.5);
  --ease-squish-3: cubic-bezier(0.5, -0.5, 0.1, 1.5);
  --ease-squish-4: cubic-bezier(0.5, -0.7, 0.1, 1.5);
  --ease-squish-5: cubic-bezier(0.5, -0.9, 0.1, 1.5);
  --ease-step-1: steps(2);
  --ease-step-2: steps(3);
  --ease-step-3: steps(4);
  --ease-step-4: steps(7);
  --ease-step-5: steps(10);
}

.theme_mode {
  border-radius: 40px;
  overflow: hidden;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-theme-mode {
  margin-left: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}

.theme_mode .check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}

.theme_mode .theme-toggle>svg {
  inline-size: 100%;
  block-size: 100%;
  stroke-linecap: round;
  max-width: 40px;
  max-height: 40px;
  margin: auto;
  width: 22px;
}

.theme_mode .theme-toggle {
  --size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: 0 0;
  border: none;
  padding: 0;
  position: relative;
  inline-size: var(--size);
  block-size: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  /* -webkit-tap-highlight-color: transparent; */
  outline-offset: 5px;
  position: relative;
  bottom: 2px;
}

.theme_mode .sun-and-moon {
  -webkit-transition: -webkit-transform 0.5s var(--ease-elastic-4);
  transition: -webkit-transform 0.5s var(--ease-elastic-4);
  transition: transform 0.5s var(--ease-elastic-4);
  transition: transform 0.5s var(--ease-elastic-4),
    -webkit-transform 0.5s var(--ease-elastic-4);
}

.theme_mode .sun-and-moon {
  transition: transform 0.5s var(--ease-elastic-4);
}

.theme_mode .sun-and-moon> :is(.moon, .sun, .sun-beams) {
  transform-origin: center center;
}

.theme_mode .sun-and-moon> :is(.moon, .sun) {
  fill: var(--heading-color);
}

.theme_mode .sun-and-moon>.sun {
  -webkit-transition: stroke 0.5s, fill 0.5s,
    -webkit-transform 0.5s var(--ease-elastic-3);
  transition: stroke 0.5s, fill 0.5s,
    -webkit-transform 0.5s var(--ease-elastic-3);
  transition: transform 0.5s var(--ease-elastic-3), stroke 0.5s, fill 0.5s;
  transition: transform 0.5s var(--ease-elastic-3), stroke 0.5s, fill 0.5s,
    -webkit-transform 0.5s var(--ease-elastic-3);
}

.theme_mode .sun-and-moon>.sun-beams {
  -webkit-transition: opacity 0.5s var(--ease-3), stroke 0.5s, fill 0.5s,
    -webkit-transform 0.5s var(--ease-elastic-4);
  transition: opacity 0.5s var(--ease-3), stroke 0.5s, fill 0.5s,
    -webkit-transform 0.5s var(--ease-elastic-4);
  transition: transform 0.5s var(--ease-elastic-4), opacity 0.5s var(--ease-3),
    stroke 0.5s, fill 0.5s;
  transition: transform 0.5s var(--ease-elastic-4), opacity 0.5s var(--ease-3),
    stroke 0.5s, fill 0.5s, -webkit-transform 0.5s var(--ease-elastic-4);
  stroke: var(--heading-color);
  stroke-width: 1px;
  stroke-linecap: round;
}

.theme_mode .theme-toggle:hover .sun-beams {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  stroke: var(--heading-color);
}

.theme_mode .theme-toggle:hover .sun-and-moon> :is(.moon, .sun) {
  fill: var(--heading-color);
}

[theme-mode="dark"] .theme_mode .sun-and-moon> :is(.moon, .sun) {
  fill: var(--heading-color);
}

[theme-mode="dark"] .theme_mode .sun-and-moon>.moon>circle {
  -webkit-transition: -webkit-transform 0.25s var(--ease-out-5);
  transition: -webkit-transform 0.25s var(--ease-out-5);
  transition: transform 0.25s var(--ease-out-5);
  transition: transform 0.25s var(--ease-out-5),
    -webkit-transform 0.25s var(--ease-out-5);
  -webkit-transform: translateX(-7px);
  -ms-transform: translateX(-7px);
  transform: translateX(-7px);
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

[theme-mode="dark"] .theme_mode .sun-and-moon>.sun {
  -webkit-transform: scale(1.55);
  -ms-transform: scale(1.55);
  transform: scale(1.55);
  -webkit-transition-timing-function: var(--ease-3);
  transition-timing-function: var(--ease-3);
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

[theme-mode="dark"] .theme_mode .sun-and-moon>.sun-beams {
  opacity: 0;
  -webkit-transform: rotateZ(-25deg);
  -ms-transform: rotate(-25deg);
  transform: rotateZ(-25deg);
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

[theme-mode="light"] .theme_mode .sun-and-moon>.sun,
[theme-mode="light"] .theme_mode .theme-toggle:hover .sun-and-moon>.sun {
  stroke: var(--heading-color);
  fill: none;
}

[theme-mode="light"] .theme_mode .sun-and-moon>.moon>circle {
  transform: translateX(2px);
}

/* Time clock */
#header_nav.open-search .navbar-timer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#header_nav .navbar-right .navbar-timer {
  font-family: var(--heading-font);
  font-weight: 400;
  overflow: hidden;
  font-size: 15px;
  opacity: 1;
  visibility: visible;
}

.navbar-timer-box {
  transform: none;
  transition: transform ease-in-out 0.2s;
}

#header_nav .navbar-right .navbar-timer>.navbar-timer-box * {
  opacity: 0.7;
}

#header_nav .navbar-right .navbar-timer .current-time {
  opacity: 1;
  margin-left: 4px;
  font-weight: 500;
}

#header_nav.open-search .navbar-timer-box {
  transform: translateY(-28px);
}

/* Menu Search bar */
#header_nav .navbar-right .navbar-search {
  position: relative;
}

#header_nav .navbar-right .navbar-search .search-container {
  position: absolute;
  right: 33px;
  display: flex;
  align-items: center;
  width: 246px;
  transition: all ease-in-out 0.2s;
  z-index: 0;
  height: 100%;
  border-bottom: 1px solid var(--border-color);
  height: 34px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  top: 100%;
}

#header_nav.open-search .navbar-search .search-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

#header_nav .navbar-right .navbar-search .search-container svg {
  width: 17px;
  padding: 0;
  top: auto;
  left: auto;
  /* right: 0; */
}

#header_nav .navbar-right .navbar-search svg {
  fill: var(--heading-color);
  padding: 6px;
}

#header_nav .navbar-right .navbar-search .search-container .search-input {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0px 12px 0px 30px;
  color: var(--bodytext-color);
  font-size: 16px;
  z-index: 3;
  font-family: var(--heading-font);
  min-width: unset;
  border-radius: 0;
}

#header_nav .navbar-right .navbar-search .search-container .search-input::placeholder {
  color: var(--bodytext-color);
}

#header_nav .navbar-right .navbar-search .search-toggle {
  font-size: 17px;
  color: var(--heading-color);
  margin-left: 17px;
  cursor: pointer;
  z-index: 1;
  border: none;
  background: none;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 3;
}

#header_nav .navbar-right .navbar-search .icon {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
}

#header_nav .navbar-right .navbar-search .icon svg {
  transition: all ease 0.3s;
}

#header_nav.open-search .navbar-search .search-toggle .icon .icon-search {
  transform: translateY(100%);
}

#header_nav .navbar-search .search-toggle .icon .icon-close {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 0;
}

#header_nav.open-search .navbar-search .search-toggle .icon .icon-close {
  top: 0;
}

.mobile-menu-bg {
  pointer-events: none;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  display: none;
}

.mobile-menu-bg path {
  fill: var(--bg-white);
}

#open_menu_toggle,
#mobile_menu_wrap {
  display: none;
}

/*---- End Navbar Right ---*/
@media screen and (max-width: 667px) {

  #open_menu_toggle,
  #mobile_menu_wrap {
    display: inline;
  }

  /*-Mobile Navbar Right-*/
  #header_nav .navbar-right {
    position: relative;
    right: 50px;
  }

  #header_nav .navbar-right .nav-theme-mode {
    margin-left: 20px;
  }

  #header_nav .navbar-right .navbar-timer {
    display: none;
  }

  /*- Search container -*/
  #header_nav.open-search .navbar-right {
    right: -50px;
  }

  #header_nav .navbar-right .navbar-search .search-container {
    position: fixed;
    top: -105%;
    left: 0;
    width: 100%;
    height: 105px;
    background: none;
    z-index: 100;
    padding: 10px 20px;
    border: none;
    z-index: 1;
    background: var(--bg-white);
  }

  #header_nav.open-search .navbar-search .search-container {
    top: 0;
    opacity: 1;
    visibility: visible;
  }

  #header_nav.open-search .header-nav-container {
    z-index: 99999;
    position: relative;
  }

  #header_nav.open-search .navbar-right .navbar-search .icon {
    width: 34px;
    height: 34px;
  }

  #header_nav.open-search .navbar-search .search-toggle .icon .icon-close {
    padding: 6px;
  }

  #header_nav.open-search .navbar-right .navbar-search .search-toggle {
    top: 6px;
  }

  /*-Mobile Open Toggle-*/
  #open_menu_toggle {
    position: fixed;
    top: 18px;
    right: 12px;
    display: inline;
    z-index: 9999;
  }

  #open_menu_toggle .mobile-action-btn {
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 0;
  }

  #open_menu_toggle .action-circle-mobile {
    display: flex;
    width: 42px;
    height: 42px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 50%;
    position: relative;
  }

  #open_menu_toggle .mobile-menu-icon {
    width: 24px;
    height: auto;
  }

  #open_menu_toggle .mobile-menu-icon line,
  #open_menu_toggle .close-mobile-circle circle {
    stroke: var(--heading-color);
  }

  #open_menu_toggle .mobile-menu-icon line {
    stroke-width: 20px;
    stroke-miterlimit: 10;
    stroke: var(--heading-color);
  }

  #open_menu_toggle .close-mobile-circle {
    position: absolute;
    width: 90%;
    height: 90%;
    top: calc(50% - 1px);
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #open_menu_toggle #mobile_close_btn .mobile-menu-icon {
    width: 17px;
    height: auto;
    position: relative;
    top: 0.5px;
  }

  /*- Menu Back button -*/
  #menu_back_btn {
    display: flex !important;
    width: 42px;
    height: 42px;
    left: 12px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 50%;
    position: fixed;
    top: 18px;
    left: 12px;
    z-index: 9999;
  }

  #menu_back_btn #menu_back_circle {
    position: absolute;
    width: 90%;
    height: 90%;
    top: calc(50%);
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #menu_back_btn #menu_back_circle circle {
    stroke: var(--heading-color);
  }

  #menu_back_btn #menu_back_icon {
    width: 17px;
    height: auto;
    position: relative;
    top: 1.5px;
    left: 1px;
  }

  #menu_back_btn #menu_back_icon line {
    stroke-width: 20px;
    stroke-miterlimit: 10;
    stroke: var(--heading-color);
  }

  /*- Menu mobile list -*/
  #mobile_menu_wrap .obl-link:after,
  #mobile_menu_wrap .obl-link-hover:after,
  #mobile_menu_wrap .obl-link-arrow:after {
    content: none;
  }

  #mobile_menu_wrap {
    --font-size: 30px;
    --font-weight: 500;
    position: relative;
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }

  #mobile_menu_wrap.open {
    display: block;
    pointer-events: auto;
  }

  #mobile_menu_wrap #mobile-action-menu {
    position: absolute;
    top: 0;
    width: 100%;
  }

  /* Menu */
  #mobile_menu_nav {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: scroll;
  }

  #mobile_menu_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
  }

  #mobile_menu_nav li {
    margin: 4px 0px;
    width: 100%;
    position: relative;
    text-align: center;
  }

  #mobile_menu_nav li a {
    overflow: hidden;
    position: relative;
  }

  #mobile_menu_nav .obl-link {
    display: inline-block;
    font-size: var(--font-size);
    font-weight: var(--font-weight);
    line-height: 56px;
    overflow: hidden;
    height: 60px;
    padding: 0 14px;
    transition: none;
    cursor: pointer;
  }

  #mobile_menu_nav .obl-link span {
    display: inline-block;
  }

  /* Submenu */
  #mobile_menu_nav ul.submenu {
    --font-size: 24px;
    --font-weight: 400;
    margin: 10px 0px;
    position: absolute;
    top: 100%;
    height: auto;
    transition: all ease 0.3s;
    display: none;
    pointer-events: none;
  }

  #mobile_menu_nav ul.submenu .obl-link {
    height: 50px;
    line-height: 49px;
  }

  #mobile_menu_nav ul.submenu .obl-link.current {
    opacity: 0.5 !important;
    pointer-events: none;
  }

  #mobile_menu_nav ul.submenu .obl-link span {
    display: inline-block;
  }

  #mobile_menu_nav li.opensub ul.submenu {
    display: flex;
    pointer-events: auto;
    justify-content: flex-start;
  }
}

.menu-arrow {
  width: 20px;
  margin-left: 10px;
}

.menu-arrow line {
  stroke-width: 7;
  stroke: var(--heading-color);
}

/********* HEADER NAV ***********
  ********************************/
/******* HELPER *********
  /********************************/
.input-suggest-wrap {
  position: relative;
}

.input-suggest-wrap .suggestion {
  position: absolute;
  left: 0;
  top: 49px;
  background: var(--bg-white);
  color: var(--bodytext-color);
  width: 100%;
  border-radius: 4px;
  width: 100%;
  padding: 14px 0px;
  font-size: 16px;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}

.input-suggest-wrap .suggestion>li {
  cursor: pointer;
  display: block;
  list-style: none;
  opacity: 1;
  padding: 6px 20px;
  text-align: left;
  font-size: 16px;
}

.input-suggest-wrap .suggestion>li:hover,
.input-suggest-wrap .suggestion>li.selected {
  background-color: var(--light-gray-color);
  color: var(--heading-color);
}

input:focus,
textarea:focus {
  outline: none;
}

/********************************
  /******* END HELPER *********
  
  /***************************
  
  footers
  
  ***************************/
.obl-footer {
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  /* border-top: solid 1px var(--border-color); */
}

.obl-footer-content {
  position: relative;
  padding: 60px 0 40px;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  border-top: solid 1px var(--border-color);
}

.obl-footer-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0px;
  border-top: solid 1px var(--border-color);
  font-size: 14px;
  font-weight: 400;
}

.obl-footer-bottom .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .obl-footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.obl-footer-bottom a,
.obl-footer-bottom p {
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  margin: auto;
}

.obl-footer-bottom a {
  color: var(--heading-color);
  font-weight: 600;
}

.obl-footer .obl-footer-content .obelix-logo .logo-text {
  height: 62px;
  width: 190px;
  /* left: -29px; */
}

.obl-footer .obl-footer-content .obelix-logo img {
  height: 62px;
}

.obl-footer .obl-footer-content p {
  margin-top: 16px;
}

.obl-footer .obl-footer-content p b,
.obl-footer .obl-footer-content strong {
  color: var(--heading-color);
}

.obl-footer .footer-item {
  padding: 0px 10px;
}

.obl-footer .footer-title {
  color: var(--heading-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.05rem;
  font-weight: 700;
}

.obl-footer .footer-des {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
  /* font-style: italic; */
}

.obl-footer .obl-footer-content ul li {
  margin-top: 16px;
  /* font-weight: 500; */
}

.obl-footer-bottom a:hover {
  color: var(--primary-color);
}

.footer-bottom-left {
  white-space: nowrap;
  display: flex;
}

.footer-bottom-left a {
  margin-left: 6px;
}

@media screen and (max-width: 667px) {
  .obl-footer-bottom {
    flex-direction: column;
  }

  .obl-footer .footer-item .menu-service {
    column-count: 2;
  }

  .obl-footer .obl-footer-content ul li:first-child {
    margin-top: 0;
  }

  .obl-footer .footer-item {
    padding: 0;
    margin-bottom: 30px;
  }

  .obl-footer .footer-title {
    margin-bottom: 12px;
  }
}

/***************************
  
  fancybox
  
  ***************************/
.fancybox-container {
  --heading-color: #000;
}

.fancybox-fx-slide-in-out.fancybox-slide--previous {
  -webkit-transform: translateY(60px) scale(0.98);
  transform: translateY(60px) scale(0.98);
  opacity: 0;
}

.fancybox-fx-slide-in-out.fancybox-slide--next {
  -webkit-transform: translateY(60px) scale(0.98);
  transform: translateY(60px) scale(0.98);
  opacity: 0;
}

.fancybox-fx-slide-in-out.fancybox-slide--current {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.fancybox-fx-fade-in-out.fancybox-slide--previous {
  -webkit-transform: translateX(-35%) scale(0.9);
  transform: translateX(-35%) scale(0.9);
  opacity: 0;
}

.fancybox-fx-fade-in-out.fancybox-slide--next {
  -webkit-transform: translateX(35%) scale(0.9);
  transform: translateX(35%) scale(0.9);
  opacity: 0;
}

.fancybox-fx-fade-in-out.fancybox-slide--current {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.fancybox-button {
  background: var(--heading-color);
  opacity: 1;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: rgb(255, 255, 255);
}

.fancybox-button:hover {
  color: rgb(255, 255, 255);
}

.fancybox-button[disabled] {
  color: rgb(255, 255, 255);
  opacity: 0 !important;
}

.fancybox-button[disabled]:hover {
  color: rgb(255, 255, 255);
  opacity: 0;
}

.fancybox-bg {
  background: var(--heading-color);
}

.fancybox-progress {
  bottom: 0;
  top: auto;
  height: 4px;
  background-color: var(--primary-color);
}

.fancybox-infobar {
  color: rgb(255, 255, 255);
  padding: 0 15px;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.fancybox-image {
  -webkit-transform: scale(0.87);
  transform: scale(0.87);
}

.fancybox-slide--video {
  padding: 180px 20px;
}

/***************************
  
  swiper
  
  ***************************/
.obl-pagination-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 45px;
  -webkit-transform: translateY(-75px);
  transform: translateY(-75px);
}

.obl-pagination-frame .obl-slider-pagination {
  margin: 0;
  width: auto;
}

.obl-pagination-frame .obl-slider-pagination .swiper-pagination-bullet {
  background-color: var(--heading-color);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
  margin: 0 6px;
}

.obl-pagination-frame .obl-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  margin: 0 8px;
  background-color: var(--primary-color);
}

@media screen and (max-width: 992px) {
  .obl-pagination-frame {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }
}

/***** Cookie Notification *****/
.cookie_notify {
  position: fixed;
  z-index: 999999;
  bottom: 15px;
  left: 15px;
  display: none;
  visibility: hidden;
  width: 300px;
  padding: 15px 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.32, 0.74, 0.57, 1);
  transition: all 0.5s cubic-bezier(0.32, 0.74, 0.57, 1);
  pointer-events: none;
  opacity: 0;
  color: var(--heading-color);
  background-color: var(--bg-white);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}

.cookie_notify.is-show {
  visibility: visible;
  pointer-events: auto !important;
  opacity: 1;
}

.cookie_notify p {
  font-size: 13px;
  line-height: 1.6;
}

.cookie_notify .cookie-content a {
  -webkit-transition: all 0.3s cubic-bezier(0.32, 0.74, 0.57, 1);
  transition: all 0.3s cubic-bezier(0.32, 0.74, 0.57, 1);
  text-decoration: underline;
}

.cookie_notify .cookie-content a:hover {
  opacity: 0.7;
}

.cookie_notify .cookie-footer {
  border-top: solid 1px var(--border-color);
  display: block;
  margin-top: 8px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie_notify .cookie-footer .cookie-read-more {
  font-size: 12px;
}

.cookie_notify .cookie-accept {
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
  padding: 3px 16px;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.32, 0.74, 0.57, 1);
  transition: all 0.3s cubic-bezier(0.32, 0.74, 0.57, 1);
  white-space: nowrap;
  /* background-color: var(--assistant-color); */
  box-shadow: none !important;
  height: auto;
  letter-spacing: 0;
  text-transform: none;
}

.cookie_notify .cookie-accept.obl-btn .title-btn {
  letter-spacing: 0;
}

/* .cookie-accept:hover {
  background-color: var(--g-color)
  } */
.block-pp-desc {
  position: relative;
  margin-bottom: 30px;
}

/***** End Cookie Notification *****/
/***** BreadCumbs *****/
.breadcrumb a {
  font-weight: 400;
  font-size: 15px;
}

.breadcrumb>*:last-child::before {
  content: "/";
  display: inline-block;
  margin-right: 8px;
}

.page-hero {
  padding-top: 50px;
}

.page-hero .breadcumb {
  margin-bottom: 10px;
}

.breadcumb .breadcrumb-nav {
  color: var(--bodytext-color);
  border-bottom: 0;
  font-size: 13px;
  margin-bottom: 0;
}

.breadcrumb-nav li {
  display: inline;
  position: relative;
}

.breadcrumb-item a::after {
  color: inherit;
  padding-right: 4px;
  padding-left: 3px;
  content: "/";
  font-size: 15px;
  font-weight: 300;
  vertical-align: middle;
  top: -1px;
  position: relative;
}

/***** Main Hero  *****/

.hero-wrap {
  display: flex;
  flex-direction: column;
}
.obl-hero .hero-wrap {
  align-items: center;
}
.hero-wrap .hero-content-wrap {
  width: 60%;
}

.hero-wrap .hero-background-video {
  width: 40%;
}

.hero-wrap video {
  width: 100%;
  padding: 40px;
}

.hero-wrap .hero-title {
  font-size: 46px;
  font-weight: 700;
}

.hero-wrap .hero-subtitle {
  margin-top: 20px;
}

.hero-wrap .hero-action {
  margin-top: 30px;
}

@media screen and (max-width: 667px) {
  .hero-wrap {
    flex-direction: column;
    padding-top: 10px;
  }

  .hero-wrap .hero-content-wrap,
  .hero-wrap .hero-background-video {
    width: 100%;
  }

  .hero-wrap .hero-title {
    font-size: 32px;
  }

  .hero-wrap video {
    padding: 20px;
  }
}

/***** End Main Hero  *****/
/***** End BreadCumbs *****/
/***** Page Hero Banner *****/
.page-hero .hero-title {
  font-weight: 700;
  font-size: 70px;
}

.page-hero .hero-title-sm {
  font-weight: 700;
  font-size: 50px;
}

.page-hero .hero-title.long-text {
  font-size: 44px;
}

h1.hero-title {
  display: inline;
  line-height: 1.25;
  vertical-align: middle;
  opacity: 0;
}

.has-word-split div,
h1.hero-title div {
  display: inline-block;
}

.has-word-split .words-mask,
h1 .words-mask {
  margin-bottom: -0.25em;
  overflow: hidden;
}

.page-hero .hero-subtitle {
  font-weight: 400;
  max-width: 750px;
  margin-top: 20px;
  color: var(--heading-color);
}

.page-hero .row>* .hero-subtitle {
  margin-top: 0;
}

.page-hero .hero-action {
  margin-top: 18px;
}

[theme-mode="dark"] .page-hero .hero-action a {
  color: var(--primary-color);
}

/***** End Page Hero Banner *****/
body .grain {
  --bodytext-color: #222 !important;
  color: var(--bodytext-color);
}

[theme-mode="dark"] .grain {
  --bodytext-color: #ddd !important;
  color: var(--bodytext-color);
}

[theme-mode="dark"] .grain::after {
  display: none;
}

.grain::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08)),
    url("../img/grain-effect.gif");
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  pointer-events: none;
}

@media screen and (max-width: 667px) {

  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 0;
  }

  .contents-box {
    --space: 20px;
    --space-md: calc(var(--space) * 1.5);
    --base-size: 18px;
  }

  .single-post-title.long-text {
    font-size: 32px;
  }

  .page-hero {
    padding-top: 26px;
  }

  .page-hero .hero-title.long-text {
    font-size: 32px;
  }
}

/***** Button effects *****/
.obl-btn {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: width, padding, margin;
}

.obl-btn.btn-hover-icon {
  --icon-with: 44px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.obl-btn.btn-hover-icon .title-btn {
  position: relative;
  font-size: inherit;
  line-height: 1.2;
  z-index: 1;
}

.obl-btn.btn-hover-icon .icon {
  width: var(--icon-with);
  height: var(--icon-with);
  line-height: calc(var(--icon-with) + 1px);
  border-radius: 50px;
  z-index: 0;
  display: inline-block;
  text-align: center;
  font-size: calc(var(--icon-with) - 28px);
  font-weight: 300;
}

.obl-btn.btn-hover-icon i,
.obl-btn.btn-hover-icon svg {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: width, padding, margin;
  position: relative;
  z-index: 1;
}

.obl-btn.btn-icon-left .icon {
  margin-right: 10px;
}

.obl-btn.btn-icon-right .icon {
  margin-left: 10px;
}

.obl-btn.btn-hover-icon.dark .icon {
  color: var(--bg-white);
}

.obl-btn.btn-hover-icon.dark .title-btn {
  color: var(--heading-color);
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: color;
}

.obl-btn.btn-hover-icon.dark:hover .title-btn {
  color: var(--bg-white);
}

.obl-btn.btn-hover-icon.light {
  color: var(--bg-dark);
}

.obl-btn.btn-hover-icon.primary {
  color: var(--heading-color);
}

.obl-btn.btn-hover-icon.primary .icon {
  color: black;
}

.obl-btn.btn-hover-icon.dark .icon:before {
  background-color: var(--bg-dark);
}

.obl-btn.btn-hover-icon.light .icon:before {
  background-color: var(--bg-white);
}

.obl-btn.btn-hover-icon.primary .icon:before {
  background-color: var(--primary-color);
}

.obl-btn.btn-primary .icon:before {
  background-color: var(--primary-color);
}

.obl-btn.btn-hover-icon .icon:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: width, padding, margin;
}

.obl-btn.btn-icon-left .icon:before {
  left: 0;
}

.obl-btn.btn-icon-right .icon:before {
  right: 0;
}

.obl-btn.btn-icon-left:hover {
  padding-right: var(--icon-with);
}

.obl-btn.btn-icon-right:hover {
  padding-left: var(--icon-with);
}

.obl-btn.btn-icon-left:hover .icon i {
  margin-left: calc(var(--icon-with) / 2);
}

.obl-btn.btn-icon-right:hover .icon i {
  margin-right: calc(var(--icon-with) / 2);
}

.obl-btn.btn-hover-icon:hover .icon:before {
  width: 100%;
}

/* .obl-btn.primary:hover {
  transition-delay:.2s ;
  } */
/* .obl-btn.primary:hover {
  color: black;
  } */
.obl-btn.move-circle {
  position: relative;
  padding: 15px;
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 1;
  background-color: transparent;
  border-color: transparent !important;
  text-align: center;
  cursor: pointer;
}

.obl-btn.move-circle i {
  font-size: 23px;
  line-height: 1;
  position: relative;
  bottom: 1px;
  color: var(--heading-color);
}

.obl-btn.move-circle svg {
  fill: var(--heading-color);
  transform: scale(0.75);
}

.obl-btn.move-circle .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  border: inherit;
  border-color: var(--heading-color);
}

/***** End Button effects *****/
/***************************
  
  404
  
  ***************************/
.page-404-content {
  padding-top: 200px;
  padding-bottom: 100px;
}

.obl-404-text {
  display: block;
  font-size: 34px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-weight: 400;
}

.obl-404-frame {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  text-align: center;
  margin-bottom: 30px;
}

.obl-404 {
  position: relative;
  color: var(--heading-color);
  font-size: 6em;
  font-weight: 700;
  animation: glitch-skew 1s infinite linear alternate-reverse;
}

.obl-404::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: 2px;
  text-shadow: -2px 0 var(--primary-color);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.obl-404::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: -2px;
  text-shadow: -2px 0 rgb(175, 169, 168), 2px 2px rgb(235, 233, 233);
  animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@-webkit-keyframes glitch-anim {
  0% {
    clip: rect(54px, 9999px, 64px, 0);
    -webkit-transform: skew(0.17deg);
    transform: skew(0.17deg);
  }

  5% {
    clip: rect(17px, 9999px, 41px, 0);
    -webkit-transform: skew(0.26deg);
    transform: skew(0.26deg);
  }

  10% {
    clip: rect(98px, 9999px, 85px, 0);
    -webkit-transform: skew(0.47deg);
    transform: skew(0.47deg);
  }

  15% {
    clip: rect(64px, 9999px, 15px, 0);
    -webkit-transform: skew(0.81deg);
    transform: skew(0.81deg);
  }

  20% {
    clip: rect(24px, 9999px, 93px, 0);
    -webkit-transform: skew(0.1deg);
    transform: skew(0.1deg);
  }

  25% {
    clip: rect(99px, 9999px, 59px, 0);
    -webkit-transform: skew(0.74deg);
    transform: skew(0.74deg);
  }

  30% {
    clip: rect(39px, 9999px, 70px, 0);
    -webkit-transform: skew(0.18deg);
    transform: skew(0.18deg);
  }

  35% {
    clip: rect(24px, 9999px, 18px, 0);
    -webkit-transform: skew(0.14deg);
    transform: skew(0.14deg);
  }

  40% {
    clip: rect(90px, 9999px, 56px, 0);
    -webkit-transform: skew(0.71deg);
    transform: skew(0.71deg);
  }

  45% {
    clip: rect(77px, 9999px, 86px, 0);
    -webkit-transform: skew(0.63deg);
    transform: skew(0.63deg);
  }

  50% {
    clip: rect(68px, 9999px, 16px, 0);
    -webkit-transform: skew(0.12deg);
    transform: skew(0.12deg);
  }

  55% {
    clip: rect(36px, 9999px, 98px, 0);
    -webkit-transform: skew(0.7deg);
    transform: skew(0.7deg);
  }

  60% {
    clip: rect(87px, 9999px, 48px, 0);
    -webkit-transform: skew(0.68deg);
    transform: skew(0.68deg);
  }

  65% {
    clip: rect(12px, 9999px, 24px, 0);
    -webkit-transform: skew(0.31deg);
    transform: skew(0.31deg);
  }

  70% {
    clip: rect(30px, 9999px, 54px, 0);
    -webkit-transform: skew(0.89deg);
    transform: skew(0.89deg);
  }

  75% {
    clip: rect(17px, 9999px, 3px, 0);
    -webkit-transform: skew(0.9deg);
    transform: skew(0.9deg);
  }

  80% {
    clip: rect(36px, 9999px, 72px, 0);
    -webkit-transform: skew(0.13deg);
    transform: skew(0.13deg);
  }

  85% {
    clip: rect(1px, 9999px, 24px, 0);
    -webkit-transform: skew(0.14deg);
    transform: skew(0.14deg);
  }

  90% {
    clip: rect(52px, 9999px, 18px, 0);
    -webkit-transform: skew(0.4deg);
    transform: skew(0.4deg);
  }

  95% {
    clip: rect(6px, 9999px, 72px, 0);
    -webkit-transform: skew(0.41deg);
    transform: skew(0.41deg);
  }

  100% {
    clip: rect(61px, 9999px, 46px, 0);
    -webkit-transform: skew(0.73deg);
    transform: skew(0.73deg);
  }
}

@keyframes glitch-anim {
  0% {
    clip: rect(54px, 9999px, 64px, 0);
    -webkit-transform: skew(0.17deg);
    transform: skew(0.17deg);
  }

  5% {
    clip: rect(17px, 9999px, 41px, 0);
    -webkit-transform: skew(0.26deg);
    transform: skew(0.26deg);
  }

  10% {
    clip: rect(98px, 9999px, 85px, 0);
    -webkit-transform: skew(0.47deg);
    transform: skew(0.47deg);
  }

  15% {
    clip: rect(64px, 9999px, 15px, 0);
    -webkit-transform: skew(0.81deg);
    transform: skew(0.81deg);
  }

  20% {
    clip: rect(24px, 9999px, 93px, 0);
    -webkit-transform: skew(0.1deg);
    transform: skew(0.1deg);
  }

  25% {
    clip: rect(99px, 9999px, 59px, 0);
    -webkit-transform: skew(0.74deg);
    transform: skew(0.74deg);
  }

  30% {
    clip: rect(39px, 9999px, 70px, 0);
    -webkit-transform: skew(0.18deg);
    transform: skew(0.18deg);
  }

  35% {
    clip: rect(24px, 9999px, 18px, 0);
    -webkit-transform: skew(0.14deg);
    transform: skew(0.14deg);
  }

  40% {
    clip: rect(90px, 9999px, 56px, 0);
    -webkit-transform: skew(0.71deg);
    transform: skew(0.71deg);
  }

  45% {
    clip: rect(77px, 9999px, 86px, 0);
    -webkit-transform: skew(0.63deg);
    transform: skew(0.63deg);
  }

  50% {
    clip: rect(68px, 9999px, 16px, 0);
    -webkit-transform: skew(0.12deg);
    transform: skew(0.12deg);
  }

  55% {
    clip: rect(36px, 9999px, 98px, 0);
    -webkit-transform: skew(0.7deg);
    transform: skew(0.7deg);
  }

  60% {
    clip: rect(87px, 9999px, 48px, 0);
    -webkit-transform: skew(0.68deg);
    transform: skew(0.68deg);
  }

  65% {
    clip: rect(12px, 9999px, 24px, 0);
    -webkit-transform: skew(0.31deg);
    transform: skew(0.31deg);
  }

  70% {
    clip: rect(30px, 9999px, 54px, 0);
    -webkit-transform: skew(0.89deg);
    transform: skew(0.89deg);
  }

  75% {
    clip: rect(17px, 9999px, 3px, 0);
    -webkit-transform: skew(0.9deg);
    transform: skew(0.9deg);
  }

  80% {
    clip: rect(36px, 9999px, 72px, 0);
    -webkit-transform: skew(0.13deg);
    transform: skew(0.13deg);
  }

  85% {
    clip: rect(1px, 9999px, 24px, 0);
    -webkit-transform: skew(0.14deg);
    transform: skew(0.14deg);
  }

  90% {
    clip: rect(52px, 9999px, 18px, 0);
    -webkit-transform: skew(0.4deg);
    transform: skew(0.4deg);
  }

  95% {
    clip: rect(6px, 9999px, 72px, 0);
    -webkit-transform: skew(0.41deg);
    transform: skew(0.41deg);
  }

  100% {
    clip: rect(61px, 9999px, 46px, 0);
    -webkit-transform: skew(0.73deg);
    transform: skew(0.73deg);
  }
}

@-webkit-keyframes glitch-anim2 {
  0% {
    clip: rect(5px, 9999px, 54px, 0);
    -webkit-transform: skew(0.89deg);
    transform: skew(0.89deg);
  }

  5% {
    clip: rect(5px, 9999px, 22px, 0);
    -webkit-transform: skew(0.5deg);
    transform: skew(0.5deg);
  }

  10% {
    clip: rect(92px, 9999px, 95px, 0);
    -webkit-transform: skew(0.58deg);
    transform: skew(0.58deg);
  }

  15% {
    clip: rect(83px, 9999px, 17px, 0);
    -webkit-transform: skew(0.83deg);
    transform: skew(0.83deg);
  }

  20% {
    clip: rect(78px, 9999px, 31px, 0);
    -webkit-transform: skew(0.53deg);
    transform: skew(0.53deg);
  }

  25% {
    clip: rect(81px, 9999px, 88px, 0);
    -webkit-transform: skew(0.26deg);
    transform: skew(0.26deg);
  }

  30% {
    clip: rect(47px, 9999px, 13px, 0);
    -webkit-transform: skew(0.61deg);
    transform: skew(0.61deg);
  }

  35% {
    clip: rect(74px, 9999px, 98px, 0);
    -webkit-transform: skew(0.92deg);
    transform: skew(0.92deg);
  }

  40% {
    clip: rect(2px, 9999px, 26px, 0);
    -webkit-transform: skew(0.59deg);
    transform: skew(0.59deg);
  }

  45% {
    clip: rect(69px, 9999px, 86px, 0);
    -webkit-transform: skew(0.04deg);
    transform: skew(0.04deg);
  }

  50% {
    clip: rect(91px, 9999px, 67px, 0);
    -webkit-transform: skew(0.6deg);
    transform: skew(0.6deg);
  }

  55% {
    clip: rect(49px, 9999px, 74px, 0);
    -webkit-transform: skew(0.37deg);
    transform: skew(0.37deg);
  }

  60% {
    clip: rect(11px, 9999px, 2px, 0);
    -webkit-transform: skew(0.52deg);
    transform: skew(0.52deg);
  }

  65% {
    clip: rect(69px, 9999px, 48px, 0);
    -webkit-transform: skew(0.86deg);
    transform: skew(0.86deg);
  }

  70% {
    clip: rect(7px, 9999px, 54px, 0);
    -webkit-transform: skew(0.03deg);
    transform: skew(0.03deg);
  }

  75% {
    clip: rect(70px, 9999px, 80px, 0);
    -webkit-transform: skew(0.77deg);
    transform: skew(0.77deg);
  }

  80% {
    clip: rect(100px, 9999px, 38px, 0);
    -webkit-transform: skew(0.69deg);
    transform: skew(0.69deg);
  }

  85% {
    clip: rect(11px, 9999px, 9px, 0);
    -webkit-transform: skew(0.53deg);
    transform: skew(0.53deg);
  }

  90% {
    clip: rect(16px, 9999px, 28px, 0);
    -webkit-transform: skew(0.06deg);
    transform: skew(0.06deg);
  }

  95% {
    clip: rect(35px, 9999px, 63px, 0);
    -webkit-transform: skew(0.63deg);
    transform: skew(0.63deg);
  }

  100% {
    clip: rect(78px, 9999px, 6px, 0);
    -webkit-transform: skew(0.56deg);
    transform: skew(0.56deg);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(5px, 9999px, 54px, 0);
    -webkit-transform: skew(0.89deg);
    transform: skew(0.89deg);
  }

  5% {
    clip: rect(5px, 9999px, 22px, 0);
    -webkit-transform: skew(0.5deg);
    transform: skew(0.5deg);
  }

  10% {
    clip: rect(92px, 9999px, 95px, 0);
    -webkit-transform: skew(0.58deg);
    transform: skew(0.58deg);
  }

  15% {
    clip: rect(83px, 9999px, 17px, 0);
    -webkit-transform: skew(0.83deg);
    transform: skew(0.83deg);
  }

  20% {
    clip: rect(78px, 9999px, 31px, 0);
    -webkit-transform: skew(0.53deg);
    transform: skew(0.53deg);
  }

  25% {
    clip: rect(81px, 9999px, 88px, 0);
    -webkit-transform: skew(0.26deg);
    transform: skew(0.26deg);
  }

  30% {
    clip: rect(47px, 9999px, 13px, 0);
    -webkit-transform: skew(0.61deg);
    transform: skew(0.61deg);
  }

  35% {
    clip: rect(74px, 9999px, 98px, 0);
    -webkit-transform: skew(0.92deg);
    transform: skew(0.92deg);
  }

  40% {
    clip: rect(2px, 9999px, 26px, 0);
    -webkit-transform: skew(0.59deg);
    transform: skew(0.59deg);
  }

  45% {
    clip: rect(69px, 9999px, 86px, 0);
    -webkit-transform: skew(0.04deg);
    transform: skew(0.04deg);
  }

  50% {
    clip: rect(91px, 9999px, 67px, 0);
    -webkit-transform: skew(0.6deg);
    transform: skew(0.6deg);
  }

  55% {
    clip: rect(49px, 9999px, 74px, 0);
    -webkit-transform: skew(0.37deg);
    transform: skew(0.37deg);
  }

  60% {
    clip: rect(11px, 9999px, 2px, 0);
    -webkit-transform: skew(0.52deg);
    transform: skew(0.52deg);
  }

  65% {
    clip: rect(69px, 9999px, 48px, 0);
    -webkit-transform: skew(0.86deg);
    transform: skew(0.86deg);
  }

  70% {
    clip: rect(7px, 9999px, 54px, 0);
    -webkit-transform: skew(0.03deg);
    transform: skew(0.03deg);
  }

  75% {
    clip: rect(70px, 9999px, 80px, 0);
    -webkit-transform: skew(0.77deg);
    transform: skew(0.77deg);
  }

  80% {
    clip: rect(100px, 9999px, 38px, 0);
    -webkit-transform: skew(0.69deg);
    transform: skew(0.69deg);
  }

  85% {
    clip: rect(11px, 9999px, 9px, 0);
    -webkit-transform: skew(0.53deg);
    transform: skew(0.53deg);
  }

  90% {
    clip: rect(16px, 9999px, 28px, 0);
    -webkit-transform: skew(0.06deg);
    transform: skew(0.06deg);
  }

  95% {
    clip: rect(35px, 9999px, 63px, 0);
    -webkit-transform: skew(0.63deg);
    transform: skew(0.63deg);
  }

  100% {
    clip: rect(78px, 9999px, 6px, 0);
    -webkit-transform: skew(0.56deg);
    transform: skew(0.56deg);
  }
}

@-webkit-keyframes glitch-skew {
  0% {
    -webkit-transform: skew(3deg);
    transform: skew(3deg);
  }

  10% {
    -webkit-transform: skew(5deg);
    transform: skew(5deg);
  }

  20% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  30% {
    -webkit-transform: skew(5deg);
    transform: skew(5deg);
  }

  40% {
    -webkit-transform: skew(2deg);
    transform: skew(2deg);
  }

  50% {
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }

  60% {
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }

  70% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  80% {
    -webkit-transform: skew(0deg);
    transform: skew(0deg);
  }

  90% {
    -webkit-transform: skew(-1deg);
    transform: skew(-1deg);
  }

  100% {
    -webkit-transform: skew(-1deg);
    transform: skew(-1deg);
  }
}

@keyframes glitch-skew {
  0% {
    -webkit-transform: skew(3deg);
    transform: skew(3deg);
  }

  10% {
    -webkit-transform: skew(5deg);
    transform: skew(5deg);
  }

  20% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  30% {
    -webkit-transform: skew(5deg);
    transform: skew(5deg);
  }

  40% {
    -webkit-transform: skew(2deg);
    transform: skew(2deg);
  }

  50% {
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }

  60% {
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }

  70% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }

  80% {
    -webkit-transform: skew(0deg);
    transform: skew(0deg);
  }

  90% {
    -webkit-transform: skew(-1deg);
    transform: skew(-1deg);
  }

  100% {
    -webkit-transform: skew(-1deg);
    transform: skew(-1deg);
  }
}

.code-page-404 {
  height: 170px;
}

.code-page-404 code {
  color: var(--heading-color);
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  text-align: center;
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin: 0 30px 12px;
  line-height: 1.45;
}

.code-page-404 code span {
  color: #e90;
}

.code-page-404 code i {
  color: #690;
}

.code-page-404 code em {
  color: #905;
  font-style: unset;
}

.code-page-404 code b {
  color: #07a;
  font-weight: 500;
}

.fw-semibold {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.fw-bolder {
  font-weight: 700 !important;
}

[theme-mode="dark"] .code-page-404 code {
  color: var(--bodytext-color);
}

[theme-mode="dark"] .code-page-404 code span {
  color: #f0c674;
}

[theme-mode="dark"] .code-page-404 code i {
  color: #b5bd68;
}

[theme-mode="dark"] .code-page-404 code em {
  color: #b294bb;
}

[theme-mode="dark"] .code-page-404 code b {
  color: #81a2be;
}

@media screen and (max-width: 667px) {
  .obl-404-frame {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    margin-bottom: 30px;
  }

  .code-page-404 code {
    margin: 0 0px 12px;
  }

  .code-page-404 {
    height: 180px;
  }
}

/***** 404 page *****/
/***** cursor *****/
.obl-cursor.cursor-blur {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.obl-cursor.zoom .cursor-inner {
  /* background-color: #000; */
  height: 20px;
  width: 20px;
  display: block;
  /* z-index: 1; */
  opacity: 1;
  position: absolute;
}

.obl-cursor.zoom .cursor-inner::before,
.obl-cursor.zoom .cursor-inner::after {
  content: "";
  width: 1px;
  height: 22px;
  background: white;
  display: block;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 11px);
}

.obl-cursor.zoom .cursor-inner::after {
  transform: rotate(90deg);
}

.obl-cursor.center-text .cursor-inner {
  font-family: var(--heading-font);
  color: white;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.obl-cursor .cursor-inner .data-text {
  width: 76px;
  height: 76px;
  line-height: 76px;
  text-align: center;
  overflow: hidden;
}

/***** End cursor *****/
/***** Form  *****/
.form-floating {
  position: relative;
}

.form-floating ::placeholder {
  font-size: 0;
}

.form-floating>.form-control,
.form-select {
  height: 50px;
  line-height: 1.25;
}

.form-select:focus-visible {
  border: none;
  box-shadow: none;
  outline: none;
}

.form-floating>textarea.form-control {
  min-height: 90px;
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 10px 20px;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
}

.form-select {
  font-family: var(--heading-font);
  color: var(--bodytext-color);
  font-size: 16px;
  font-weight: 500;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  opacity: 0.65;
  transform: scale(0.8) translateY(-0.5rem) translateX(0.15rem);
}

/***** End Form  *****/
.close-action-btn {
  display: flex;
  width: 42px;
  height: 42px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.close-action-btn .close-circle {
  position: absolute;
  width: 90%;
  height: 90%;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-action-btn .close-icon {
  width: 20px;
  height: auto;
}

.close-action-btn .close-icon line {
  stroke: var(--heading-color);
  stroke-width: 10px;
  stroke-miterlimit: 10;
}

.close-action-btn .close-circle {
  stroke: var(--heading-color);
  stroke-width: 8px;
}

[data-modal-position] {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

/* .modal.modal-show{
  opacity: 1;
  } */
.modal .modal-dialog {
  min-height: calc(100% - (1.75rem * 2));
  max-width: 500px;
  margin: 1.75rem auto;
  position: relative;
  width: auto;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--bg-white);
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 20px;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  cursor: pointer;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  pointer-events: none;
  height: 100vh;
  width: 100%;
}

.modal-backdrop path {
  fill: black;
  opacity: 0.7;
}

/*** SECTION TITLE **/
.section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
}

.section-title-wrap .title-inner {
  width: 60%;
}

.section-title-wrap .title-inner .section-title {
  margin-bottom: 18px;
}

.section-title {
  font-size: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
}

.section-subtitle {}

.section-title.section-title-dot::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 17px;
  margin-right: 10px;
}

@media only screen and (max-width: 667px) {
  .section-title-wrap {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {}

/*** END SECTION TITLE **/
.obl-slider-3col {
  overflow: hidden;
}

.obl-slider-3col.nav-top {
  position: relative;
}

.obl-slider-3col.nav-top .slider-nav {
  position: absolute;
  display: inline-flex;
  top: 8px;
  right: 0;
}

.obl-slider-3col.nav-top .slider-nav .swiper-button {
  text-align: center;
  width: 30px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
}

.obl-slider-3col.nav-top .slider-nav .swiper-button:last-child {
  margin-left: 20px;
}

.related-post .obl-slider-3col {
  border-top: solid 1px var(--border-color);
  padding-top: 30px;
  margin-top: 20px;
  padding-bottom: 60px;
}

.ajax-loadmore {
  margin-top: 30px;
  text-align: center;
}

.ajax-loadmore.loading {
  background: none;
}

.ajax-loadmore.loading span,
.ajax-loadmore.loading::after,
.ajax-loadmore.loading::before {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--border-color);
  position: relative;
}

.ajax-loadmore.loading::after,
.ajax-loadmore.loading::before {
  content: "";
  display: inline-block;
  position: relative;
}

.ajax-loadmore.loading::before {
  right: 12px;
  z-index: 1;
  animation: bounce 1s infinite ease-in-out;
}

.ajax-loadmore.loading span {
  animation: bounce 1s infinite ease-in-out;
  animation-delay: 0.1s;
  transition: none;
}

.ajax-loadmore.loading::after {
  left: 12px;
  animation: bounce 1s infinite ease-in-out;
  animation-delay: 0.2s;
}

@keyframes bounce {

  0%,
  15% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -8px) scale(0.7);
  }

  85%,
  100% {
    transform: translate(0, 0);
  }
}

/***** Filter Toolbar *****/
.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 22;
}

.filter-toolbar .right-toolbox {
  display: flex;
  align-items: center;
}

.filter-toolbar .right-toolbox>*:not(:last-child) {
  margin-right: 16px;
}

.filter-toolbar .right-toolbox .search-container input {
  background-color: var(--light-gray-color);
  color: var(--bodytext-color);
}

.nav-filter {
  display: block;
  margin: 0;
  position: relative;
}

.nav-filter .active-filter-bg {
  position: absolute;
  /* margin: 0px; */
  height: 38px;
  width: 90px;
  background-color: white;
  /* box-sizing: border-box; */
  border-radius: 30px;
  /* vertical-align: baseline; */
  pointer-events: none;
  bottom: 0;
  top: 0px;
}

.nav-filter li {
  display: inline;
  position: relative;
  color: var(--heading-color);
}

.nav-filter li.active {
  opacity: 1;
  font-weight: 500;
  color: var(--heading-fixed-color);
  transition-delay: 0.2s;
}

[theme-mode="dark"] .nav-filter.hover li {
  color: var(--heading-color) !important;
  transition: none;
}

[theme-mode="dark"] .nav-filter.hover li:hover {
  transition: all ease 0.2s;
  transition-delay: 0.2s;
  color: var(--heading-fixed-color) !important;
}

.nav-filter li a {
  color: inherit;
  opacity: 1;
  font-weight: inherit;
  font-size: 15px;
  padding: 12px 20px 11px 20px;
  border-radius: 60px;
}

.fixed-filter-toolbar {
  position: fixed;
  bottom: 100px;
  margin: 0 auto;
  margin: 20px auto;
  width: 100%;
  box-sizing: border-box;
  bottom: 20px;
  left: 0;
  display: flex;
  --heading-color: black;
  color: var(--bodytext-fixed-color);
  transition: opacity ease 0.3s;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fixed-filter-toolbar .nav-filter {
  margin-right: 20px;
}

.fixed-filter-toolbar .filter-pin-bar {
  background: white;
  border-radius: 60px;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: center;
}

.fixed-filter-toolbar .filter-pin-bar::after {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  display: block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: #ebebeb2e;
  z-index: -1;
  border-radius: 60px;
  backdrop-filter: blur(5px);
}

.fixed-filter-toolbar .nav-filter .active-filter-bg {
  background: var(--primary-color);
}

.fixed-filter-toolbar.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fixed-filter-toolbar .right-toolbox {
  display: flex;
}

.fixed-filter-toolbar .filter-box {
  display: flex;
  align-items: center;
}

.fixed-filter-toolbar .select2-container {
  min-width: unset;
  width: 42px !important;
}

.fixed-filter-toolbar .select2-container .select2-selection--single {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
}

.fixed-filter-toolbar .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 0;
  min-width: unset;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M80 320a48 48 0 1 0 0 96 48 48 0 1 0 0-96zm78.4 32L496 352c8.8 0 16 7.2 16 16s-7.2 16-16 16l-337.6 0c-7.4 36.5-39.7 64-78.4 64c-44.2 0-80-35.8-80-80s35.8-80 80-80c38.7 0 71 27.5 78.4 64zM384 144a48 48 0 1 0 96 0 48 48 0 1 0 -96 0zm-30.4-16C361 91.5 393.3 64 432 64c44.2 0 80 35.8 80 80s-35.8 80-80 80c-38.7 0-71-27.5-78.4-64L16 160c-8.8 0-16-7.2-16-16s7.2-16 16-16l337.6 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  padding: 0;
  border-radius: 0;
  background-size: 18px;
  background-position: center 65%;
  background-color: transparent;
}

.fixed-filter-toolbar .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.fixed-filter-toolbar .search-container input {
  /* background-color: var(--light-gray-color); */
}

.fixed-filter-toolbar .input-suggest-wrap .suggestion {
  top: auto;
  bottom: 100%;
}

@media screen and (max-width: 667px) {
  .fixed-filter-toolbar .filter-pin-bar::after {
    content: none;
  }

  .fixed-filter-toolbar {
    bottom: 0;
  }

  .fixed-filter-toolbar .box-inner {
    background: white;
    border-radius: 50px;
    min-height: 38px;
    position: relative;
  }

  .fixed-filter-toolbar .box-inner::after {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    display: block;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background: #ebebeb2e;
    z-index: -1;
    border-radius: 60px;
    backdrop-filter: blur(5px);
  }

  .mobile-toggle-filter {
    display: block;
    position: relative;
    height: 38px;
    width: 82px;
  }

  .mobile-toggle-filter::after,
  .mobile-toggle-filter::before {
    content: "";
    width: 16px;
    height: 1px;
    background-color: var(--heading-color);
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
  }

  .mobile-toggle-filter::after {
    transform: rotate(90deg);
  }

  .fixed-filter-toolbar .nav-filter {
    margin: 0;
    text-align: left;
    padding: 19px 38px 14px 10px;
    display: block;
  }

  .fixed-filter-toolbar .right-toolbox {
    margin: 10px 16px 16px;
    width: auto;
    display: flex;
    justify-content: space-between;
    border-top: solid 1px #e5e5e5;
    padding: 13px 16px 14px;
    margin: 0;
  }

  .fixed-filter-toolbar .search-container input {
    background-color: #ebebeb;
  }

  .fixed-filter-toolbar .select2-container {
    margin-left: 8px;
  }

  /* open box */
  .fixed-filter-toolbar .box-inner.open {
    border-radius: 14px;
    width: 100%;
    max-width: 90%;
    height: 100%;
    background-color: white;
  }

  .fixed-filter-toolbar .box-inner.open::after {
    border-radius: 17px;
  }

  .fixed-filter-toolbar .box-inner.open .mobile-toggle-filter {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
  }

  .fixed-filter-toolbar .box-inner.open .mobile-toggle-filter::after {
    transform: rotate(0deg);
  }

  .fixed-filter-toolbar .filter-pin-bar {
    padding: 0;
    border-radius: 14px;
    display: block;
    overflow: hidden;
    background: transparent;
    visibility: hidden;
  }

  .fixed-filter-toolbar .right-toolbox {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.42s;
  }

  .fixed-filter-toolbar .box-inner.open .filter-pin-bar {
    visibility: visible;
  }

  .fixed-filter-toolbar .box-inner.open .right-toolbox {
    opacity: 1;
  }
}

/*---------- end nav filter ----------*/
.search-container {
  position: relative;
}

.search-container svg {
  position: absolute;
  width: 17px;
  fill: currentColor;
  left: 18px;
  top: 14px;
  z-index: 1;
}

.search-container {
  position: relative;
}

.search-container input {
  min-width: 200px;
  height: 42px;
  background: white;
  padding-left: 47px;
  border: none;
  border-radius: 50px;
  color: var(--heading-fixed-color);
}

/***** End 404 page *****/
/*****  select2 *****/
.select2-container .select2-selection--single {
  background-color: var(--light-gray-color);
  border: none;
  border-radius: 50px !important;
  color: var(--bodytext-color);
  cursor: pointer;
  height: 42px;
}

.select2-container {
  min-width: 164px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--bodytext-color);
  line-height: 43px;
  font-size: 15px;
  padding-left: 20px;
  padding-right: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  width: 0.4em;
  height: 0.4em;
  border-left: none;
  border-top: none;
  border-bottom: 1px solid var(--bodytext-color);
  border-right: 1px solid var(--bodytext-color);
  transform: rotate(45deg);
  position: relative;
  margin: 0;
  left: auto;
  top: auto;
  display: block;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: var(--bodytext-color);
  border-width: 0 1px 1px 1px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 50px 50px 50px 50px;
}

.select2-dropdown {
  background: var(--bg-white);
  border-radius: 4px !important;
  min-width: 210px;
  padding: 14px 0px;
  border: none;
  /* transition: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); */
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: var(--light-gray-color);
  color: var(--heading-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--light-gray-color);
  color: var(--bodytext-color);
}

.select2-results__option {
  cursor: pointer;
  display: block;
  list-style: none;
  opacity: 1;
  padding: 6px 20px;
  text-align: left;
  font-size: 16px;
}

/***** End select2 *****/

/***************************

icon box

***************************/
.obl-icon-box .obl-icon {
  width: 50px;
}

.obl-icon-box .obl-icon img,
.obl-icon-box .obl-icon svg {
  width: 100%;
}

.obl-icon-box.obl-box-hori {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.obl-icon-box.obl-box-hori .obl-icon-box-text {
  margin-left: 30px;
}

/***************************

fields

***************************/
.obl-styled-input {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 992px) {
  .obl-styled-input {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.obl-styled-input label {
  position: absolute;
  top: 25px;
  left: 20px;
  color: var(--heading-color);
  pointer-events: none;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.obl-styled-input textarea {
  height: 200px;
  padding: 30px 20px 0;
}

input,
textarea,
select {
  width: 100%;
  background-color: transparent;
  padding: 4px 20px 0;
  height: 46px;
  border: none;
  color: var(--heading-color);
  border-bottom: solid 1px var(--border-color);
}

input~span,
textarea~span {
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

input:focus,
textarea:focus {
  outline: 0;
}

input:focus~span,
textarea:focus~span {
  width: 100%;
}

input:valid~span,
textarea:valid~span {
  width: 100%;
}

textarea~span {
  bottom: 8px;
}

/******* BLOG POST *********
  /********************************/
.single-post-title {
  font-size: 64px;
  font-weight: 600;
}

.single-post-title.long-text {
  font-size: 44px;
}

.single-post-shortdes::first-letter {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 340%;
  float: left;
  line-height: 0.25;
  margin-right: 0.4rem;
  margin-top: 0.38em;
}

.single-post-thumb {
  margin-bottom: 40px;
}

.single-post-meta {
  display: flex;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 14px;
  color: var(--bodytext-color);
}

/********************************
  /******* END BLOG POST *********
  
  /*******  ARTICLE CONTENT BOX *********
  /********************************/
.obl-content-frame {
  position: relative;
  background-color: var(--bg-gray);
  padding-top: 60px;
  padding-bottom: 30px;
}

.obl-content-frame:before {
  content: "";
  width: 90px;
  height: 70vh;
  background-color: var(--bg-gray);
  position: absolute;
  left: -90px;
  top: 0;
}

.obl-content-frame:after {
  content: "";
  width: 90px;
  height: 70vh;
  background-color: var(--bg-gray);
  position: absolute;
  right: -90px;
  top: 0;
}

.contents-box {
  --space: 20px;
  --space-md: calc(var(--space) * 1.5);
  --base-size: 20px;
}

.contents-box>*+*,
.wp-block-column>*+* {
  margin-top: calc(var(--space) * 2.2);
}

.contents-box h1,
.contents-box h2,
.contents-box h3,
.contents-box h4,
.contents-box h5,
.contents-box h6 {
  margin-bottom: calc(var(--space-md) * -1);
  padding-top: calc(var(--space) * 1);
  margin-top: calc(var(--space) * 1.5);
}

[theme-mode="light"] .contents-box,
[theme-mode="light"] .aside-box,
[theme-mode="light"] .aside-box a {
  --font-color: #222;
  color: #222;
}

.contents-box h1:first-child,
.contents-box h2:first-child,
.contents-box h3:first-child,
.contents-box h4:first-child {
  margin-top: 0;
  padding-top: 0;
}

[theme-mode="dark"] .contents-box h1,
[theme-mode="dark"] .contents-box h2,
[theme-mode="dark"] .contents-box h3,
[theme-mode="dark"] .contents-box h4 {
  color: var(--primary-color);
}

[theme-mode="dark"] .contents-box h1 strong,
[theme-mode="dark"] .contents-box h2 strong,
[theme-mode="dark"] .contents-box h3 strong,
[theme-mode="dark"] .contents-box h4 strong,
[theme-mode="dark"] .contents-box h5 strong,
[theme-mode="dark"] .contents-box a {
  color: var(--primary-color);
}

.contents-box h1 {
  font-size: calc(var(--base-size) + 14px);
  letter-spacing: 0;
  font-weight: 700;
}

.contents-box h2 {
  font-size: calc(var(--base-size) + 10px);
  letter-spacing: 0;
  font-weight: 700;
}

.contents-box h3 {
  font-size: calc(var(--base-size) + 6px);
  letter-spacing: 0;
  font-weight: 700;
}

.contents-box h4 {
  font-size: calc(var(--base-size) + 2px);
  letter-spacing: 0;
  font-weight: 700;
}

.contents-box li,
.contents-box p,
.contents-box a:not([data-fancybox]),
.contents-box span {
  font-size: var(--base-size);
  color: var(--bodytext-color);
  line-height: 1.7em;
}

.contents-box strong {
  font-weight: 600;
  color: var(--heading-color);
}

.contents-box ul,
.contents-box ol {
  margin-top: calc(var(--space) * 1.5);
}

.contents-box ol li,
.contents-box ul li {
  margin: calc(var(--space) * 0.5) 0 4px calc(var(--space) * 1);
}

[theme-mode="dark"] li::marker {
  color: var(--primary-color);
}

.contents-box ul li {
  list-style-position: outside;
  list-style-type: disc;
}

.contents-box ol li {
  list-style-position: outside;
  list-style-type: decimal;
}

.contents-box img,
.obl-content-frame img {
  width: 100%;
  height: auto;
}

.contents-box figure {
  position: relative;
}

.contents-box figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--heading-color);
  color: var(--heading-invert-color);
  padding: 6px 24px;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.contents-box a:not([data-fancybox]) {
  position: relative;
  text-decoration: none;
}

.contents-box a:not([data-fancybox]):after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  left: -0.025em;
  right: -0.075em;
  background: rgb(255 216 0);
  background-size: 100% 100%;
  transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22),
    background 670ms linear 417ms;
  transform: translateZ(0);
}

.contents-box a:not([data-fancybox]):before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 45%;
  left: -0.15em;
  right: -0.15em;
  background: rgb(255 248 113);
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: 50% 100%;
  transform: scale(0.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
}

[theme-mode="dark"] .contents-box a::before {
  background: rgb(77 77 77);
}

.contents-box a:hover:before {
  transform: scale(1, 0.99999999) translateZ(0);
}

.contents-box a:hover:after {
  opacity: 0;
  transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}

.content-wrapper .post-tags {
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 0 0;
}

.post-tags a:before {
  content: "#";
  position: relative;
  margin-right: 5px;
  font-size: 14px;
  background-color: transparent;
  border: 0;
}

.post-tags a {
  color: var(--heading-color);
  margin-right: 30px;
  display: inline-block;
  line-height: 1;
  text-align: left;
}

/* ----------- Blog card ------------ */
.blog-item .title {
  font-size: 22px;
  line-height: 1.4;
  transition: all ease 0.3s;
}

.blog-item .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 14px;
  color: var(--bodytext-color);
  margin-bottom: 2px;
}

.blog-item .post-meta span,
.blog-item .post-meta a {
  font-size: 14px;
}

.blog-item .card-content {
  padding: 18px 0 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.blog-item .title .blinkable {
  display: none;
  font-weight: 400;
}

.blog-item .title:hover .blinkable {
  display: inline-block;
}

@media screen and (max-width: 667px) {
  .single-post-title.long-text {
    font-size: 32px;
  }

  blockquote {
    padding: 0 0px 0px 20px;
  }

  .post-slider {
    overflow: auto;
  }

  .post-slider .swiper-slide {
    width: 80%;
  }

  .post-slider .swiper-initialized {
    margin-right: -16px;
  }

  .post-slider .swiper-initialized .swiper-slide {
    transition: filter ease 0.3s;
  }

  .post-slider .swiper-initialized .swiper-slide:not(.swiper-slide-active) {
    filter: grayscale();
  }

  .post-slider .swiper-initialized .swiper-slide:not(.swiper-slide-active) .card-content {
    opacity: 0.5;
  }

  .card .post-title {
    font-size: 22px;
  }

  .card .post-excepts {
    font-size: 16px;
  }

  .card .single-post-meta span,
  .card .single-post-meta a {
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .page-hero .hero-title-sm {
    font-size: 40px;
  }

  .card .post-title .blinkable {
    display: none;
  }
}

/********************************
  /******* END ARTICLE CONTENT BOX *********/
.space-200 {
  height: 200px;
}

.mt-120 {
  margin-top: 120px;
}

/* margin top */
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

/* margin bottom */
.mb-20 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

/* padding top */
.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

/* padding bottom */
.p-0 {
  padding: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

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

.blinkable {
  vertical-align: baseline;
  -webkit-animation: blink 0.7s infinite;
  -ms-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  display: inline-block;
}

.page-hero-banner {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
}

.page-hero-banner .image-frame {
  height: 80vh;
}

.image-frame {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: rgb(235, 233, 233);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  49% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 667px) {

  #smooth-wrapper,
  body {
    overflow-x: hidden;
  }
}

/***************************
  
  cards
  
  ***************************/
.card {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.card a {
  display: block;
}

.card-content {
  width: 100%;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.divider {
  border-top: solid 1px var(--border-color);
}

.divider.dash {
  border-top-style: dashed;
}

@media screen and (max-width: 992px) {
  .card .obl-cover .image-frame {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .card .obl-hover-show {
    opacity: 1;
  }

  .card .obl-hover-show .obl-description {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .card.obl-complex-hover .obl-overlay {
    background: rgba(56, 40, 38, 0.8);
  }

  .card.obl-complex-hover .obl-overlay .obl-top-hidden,
  .card.obl-complex-hover .obl-overlay .obl-bottom-hidden {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  .card.obl-complex-hover .obl-overlay .obl-bottom-part-hidden {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .card.obl-complex-hover .obl-overlay .obl-bottom-part-hidden .obl-hidden-part {
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
  }
}

/******* WEBSITE TEMPLATE *********
  /********************************/
.browser-decor {
  position: relative;
  text-align: center;
  font-size: 13px;
  background-color: var(--border-color);
  border-radius: 5px 5px 0 0;
  bottom: -1px;
  display: block;
  height: 24px;
  position: relative;
  width: 100%;
  z-index: 10;
  opacity: 0.7;
}

.browser-decor .button::after {
  color: #f05735;
  content: "• • •";
  display: inline-block;
  font-size: 20px;
  height: 0.625rem;
  line-height: 0.8;
  margin-left: 0.375rem;
  position: absolute;
  top: 0;
  vertical-align: middle;
  z-index: 10;
  left: 0;
  height: 1.3125rem;
  line-height: 1.1;
  margin-left: 0.625rem;
}

.browser-decor .project-href {
  /* background: #ffffff1a; */
  font-size: 9px;
  /* padding: 0px 11px; */
  border-radius: 4px;
  position: relative;
  bottom: 0px;
  opacity: 0.8;
  letter-spacing: 0.2px;
}

.label-info {
  line-height: 1;
  position: absolute;
  z-index: 12;
  right: -26px;
  top: 8px;
  background: var(--heading-color);
  padding: 4px 30px;
  font-size: 11px;
  transform: rotate(45deg);
  text-align: center;
  color: black;
  text-transform: uppercase;
  font-weight: 500;
}

.label-info.sale {
  background: #00e9b5;
}

.label-info.hot {
  background-color: var(--primary-color);
}

/*------ website template card item  -------*/
.website-template-item .card-content {
  margin-top: 0;
  padding: 20px;
  background: white;
  border-radius: 0px 0px 5px 5px;
}

.website-template-item .title {
  font-size: 20px;
  margin-bottom: 4px;
}

.website-template-item .item-price {
  font-family: var(--heading-font);
  font-size: 18px;
}

.website-template-item .item-price .old-price {
  position: relative;
  color: var(--bodytext-color);
  margin-left: 10px;
  /* text-decoration: line-through; */
  font-size: 16px;
}

.website-template-item .item-price .old-price::before {
  content: "";
  position: absolute;
  bottom: 9px;
  height: 2px;
  left: 0;
  right: 0;
  background: var(--bodytext-color);
  z-index: 1;
  opacity: 0.5;
}

.website-template-item .item-price .sale-price {
  color: var(--heading-color);
  font-weight: 600;
}

.website-template-item .item-cat {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
}

.website-template-item .item-cat>* {
  background: var(--border-color);
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 12px;
  font-family: var(--body-font);
  height: auto;
  line-height: 1;
  margin-top: 6px;
}

.website-template-item .item-cat>*:not(:last-child) {
  margin-right: 10px;
}

[theme-mode="dark"] .website-template-item .card-content {
  background: #8080801a;
}

[theme-mode="dark"] .card .title:hover {
  color: var(--primary-color);
}

/*------ Single website template   -------*/
.website-template-row {
  position: relative;
  z-index: 1;
}

.single-website-template {
  display: flex;
  padding-top: 46px;
  padding-left: calc(calc(100vw - 1350px) / 2);
}

.single-website-template .left-side {
  width: 50%;
  padding-right: 70px;
}

.single-website-template .right-side {
  width: 50%;
}

.single-website-template .right-side .template-img-preview img {
  width: 100%;
}

.single-website-template .template-details {
  display: flex;
  flex-direction: column;
}

.single-website-template .template-details .template-title {
  font-size: 32px;
}

.single-website-template .template-details .template-title b {
  opacity: 0.5;
  font-weight: 400;
  font-size: 22px;
  margin-left: 10px;
}

.single-website-template .template-details .contents-box {
  margin: 20px 0px;
}

.single-website-template .template-details .sample-nine-func-title {
  font-weight: 500;
  margin-bottom: 20px;
}

.sample-nine-func-content ul {
  column-count: 2;
}

.sample-nine-func-content li {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.sample-nine-func-content li:last-child {
  margin-bottom: 0px;
}

.sample-nine-func-content li svg {
  width: 14px;
  margin-right: 8px;
}

/* Right Side */
.template-img-preview {
  position: relative;
}

.template-img-preview .scroll-hint {
  position: absolute;
  left: 20px;
  top: 56px;
  z-index: 9999;
  transition-delay: 0.4s;
}

.template-img-preview:hover .scroll-hint {
  opacity: 0;
}

.single-website-template .swiper-slide .preview-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.single-website-template .swiper-slide .preview-item img {
  border-radius: 0px 0px 8px 8px;
}

.single-website-template .swiper-slide .preview-item .browser-decor {
  position: absolute;
  top: 0;
  bottom: auto;
  background: #e6e7e7;
  border-radius: 0;
  opacity: 1;
}

.single-website-template .swiper-slide .preview-item .page-preview {
  height: calc(100vh - 156px);
  overflow: scroll;
  padding-top: 24px;
}

.single-website-template .swiper-slide:not(.swiper-slide-active) .preview-item .page-preview {
  filter: grayscale(1);
}

.template-preview-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-track {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #d5d8d8;
  z-index: 999;
}

.scroll-track .bar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #f05735;
  transition: all ease 0.3s;
}

.template-overview {
  height: calc(100vh - 80px);
}

.template-detail {
  padding: 50px 0px;
}

@media screen and (max-width: 667px) {
  .single-website-template {
    flex-direction: column;
  }

  .single-website-template .left-side,
  .single-website-template .right-side {
    width: 100%;
    padding: 0;
  }
}

/* price */
.price-table {
  background: var(--bg-white);
  border-radius: 11px;
  padding: 32px 20px;
  font-size: 16px;
  text-align: center;
}

.price-table .price-wrap {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--border-color);
}

.price-table .price {
  font-weight: 700;
  font-size: 30px;
  display: block;
  line-height: 1;
}

.price-table .sale-price {
  margin-top: 10px;
  display: block;
}

.price-table .sale-price b {
  font-weight: 500;
  position: relative;
}

.price-table .sale-price b::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0000003d;
  position: absolute;
  top: 11px;
  right: 0;
  transform: rotate(5deg);
}

.price-table svg {
  width: 14px;
  opacity: 0.6;
  margin-right: 3px;
}

.price-table ul {
  margin: 0;
}

.price-table ul li {
  margin: 0;
  list-style: none;
  margin-bottom: 10px;
}

.price-table ul li:last-child {
  margin-bottom: 0px;
}

.price-table ul li span {
  display: inline-block;
}

.price-table .edit-template-func {
  margin-top: 24px;
}

.price-table .new-function .title {
  opacity: 0.6;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.price-table .new-function {
  padding-top: 10px;
}

/* modal add function */
.modal-add-function .total-price {
  margin-top: 10px;
  padding-top: 10px;
  border-top: dashed 1px var(--border-color);
  font-size: 18px;
  font-weight: 600;
}

.modal-add-function .item {
  padding: 10px 0px;
  font-size: 17px;
  cursor: pointer;
  transition: all ease 0.3s;
  opacity: 0.6;
}

.modal-add-function .item:has(input:checked),
.modal-add-function .item:hover {
  opacity: 1;
}

/* .modal-add-function .item:hover{
  background-color: var(--border-color);
  } */
.modal-add-function .form-group {
  display: flex;
  align-items: center;
}

.modal-add-function .modal-body {}

.modal-add-function {}

.modal-add-function {}

.modal-add-function {}

/********************************
  /******* END WEBSITE TEMPLATE *********/
.scroll-hint {
  opacity: 1;
  transition: 0.4s ease-in-out;
  transition-delay: 0.8s;
}

.scroll-hint span {
  display: block;
  position: relative;
  width: 25px;
  height: 40px;
  border-radius: 15px;
  border: solid 2px var(--primary-color);
}

.scroll-hint span::before {
  content: "Scroll Down";
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  width: 100px;
  text-align: right;
  position: absolute;
  bottom: -75px;
  right: -38px;
  color: #fff;
  transform: rotate(90deg);
}

.scroll-hint span::after {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #ffd54f;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 45%;
  animation: mousePoint 1s ease-in-out infinite;
}

@keyframes mousePoint {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
  }
}

/******* PROJECTS SHOWCASE *********
  /********************************/
.card.project {}

.card.project.website .title {
  font-size: 28px;
  margin-bottom: 6px;
}

.card.project.website .item-excepts {
  font-size: 17px;
  line-height: 1.56;
}

.card.project.website .item-cat>* {
  background: var(--border-color);
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 400;
  font-size: 12px;
  font-family: var(--body-font);
  height: auto;
  line-height: 1;
  margin-top: 6px;
  margin-right: 10px;
}

.card.project.website .item-cat>*:last-child {
  margin-right: 0px;
}

.card.project.website .obl-cover {
  border-radius: 0px 0px 5px 5px;
  overflow: hidden;
}

.card.project.website .card-content {
  margin-top: 18px;
}

.card.project.website .item-cat {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
}

/*------ Single project website    -------*/
.project-info {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.project-info .project-meta .project-meta-heading {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.project-info .project-meta .project-meta-items p {
  margin-bottom: 8px;
  color: var(--heading-color);
}

.project-info .project-meta .project-meta-items a {
  font-size: inherit;
}

.split-box.split-2col {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.split-box.split-2col .split-content {
  grid-column: span 5 / span 5;
}

.split-box.split-2col .split-media {
  grid-column: span 7 / span 7;
}

.split-content.content-left {
  padding-right: 50px;
  left: 0 !important;
}

.split-content.content-right {
  padding-left: 60px;
  right: 0;
}

.contents-box figure.desktop-ui,
.contents-box figure.mobile-ui {
  position: relative;
}

.contents-box figure.desktop-ui figcaption,
.contents-box figure.mobile-ui figcaption {
  position: static;
  background: none;
  color: var(--bodytext-color);
  padding: 0;
}

.contents-box figure.desktop-ui::after {
  color: #f05735;
  content: "• • •";
  display: inline-block;
  font-size: 20px;
  height: 0.625rem;
  line-height: 0.8;
  margin-left: 0.375rem;
  position: absolute;
  top: 0;
  vertical-align: middle;
  z-index: 10;
  left: 0;
  height: 1.3125rem;
  line-height: 1.1;
  margin-left: 0.625rem;
}

.contents-box figure.desktop-ui::before {
  background-color: var(--border-color);
  border-radius: 5px 5px 0 0;
  bottom: -1px;
  content: "";
  display: block;
  height: 1.25rem;
  position: relative;
  width: 100%;
  z-index: 10;
  opacity: 0.7;
}

.contents-box figure.mobile-ui {
  max-width: 400px;
}

.contents-box figure.mobile-ui figcaption {
  text-align: center;
}

.contents-box figure.mobile-ui::after {
  background-color: #2f2f2f;
  bottom: 40px;
  left: calc(50% - 53px);
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  width: 106px;
  border-radius: 50px;
  z-index: 10;
}

.contents-box figure.mobile-ui::before {
  background-color: var(--border-color);
  top: 144px;
  left: -11px;
  content: "";
  display: block;
  height: 80px;
  position: absolute;
  width: 5px;
  border-radius: 2px 0px 0px 2px;
  z-index: 10;
}

.contents-box figure.mobile-ui img {
  border-radius: 41px;
  max-height: 520px;
  /* background: #e2e0da; */
  box-shadow: var(--border-color) 0px 0px 0px 6px;
  /* border: solid 2px #eaeaea; */
}

@media only screen and (max-width: 667px) {
  .split-box.split-2col {
    display: block;
  }

  .split-box.split-2col .split-content {
    padding: 0;
  }
}

/********************************
  /******* END PROJECTS SHOWCASE *********/
.iframe-web-preview .fancybox-toolbar {
  background: white;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  height: 80px;
  z-index: 999999;
  padding: 0 17px;
  transition: 0.4s ease-in-out;
}

.iframe-web-preview .obl-button.obl-button-dark {
  color: white;
}

.iframe-web-preview .fancybox-infobar {
  top: 5px;
  left: 50px;
  z-index: 9999999999999;
  height: 70px;
  opacity: 1;
  visibility: visible;
  mix-blend-mode: unset !important;
  display: flex;
  align-items: center;
}

.iframe-web-preview .fancybox-infobar h3 {
  font-size: 18px;
}

.iframe-web-preview .fancybox-inner {
  /* padding: 30px; */
}

.iframe-web-preview .fancybox-slide {
  padding: 0;
}

.iframe-web-preview [data-fancybox-screen-view] svg {
  fill: white;
  height: 16px;
  margin-right: 10px;
}

.iframe-web-preview .fancybox-content {
  margin-top: 80px;
}

.iframe-web-preview.mobile-screen .fancybox-content {
  height: 90% !important;
  max-height: 875px;
  width: 390px !important;
  transition: all ease 0.3s;
}

/* .fancybox-fx-slide-in-out.fancybox-slide--previous {
    opacity: 1;
    transform: translateY(-100%);
  }
  
  .fancybox-fx-slide-in-out.fancybox-slide--next {
    opacity: 1;
    transform: translateY(100%);
  }
  
  .fancybox-fx-slide-in-out.fancybox-slide--current {
    opacity: 1;
    transform: translateX(0);
  } */

.img-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.opacity-6 {
  opacity: 0.6;
}

/***** PARTNER AREA *****/
.partners-area {
  padding: 60px 0px;
}

.partners .partner-item-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners .partner-item-frame img {
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  height: 58px;
}

.partners .partner-item-frame:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}

[theme-mode="dark"] .partners .partner-item-frame img {
  filter: invert(1) brightness(1) grayscale(1);
  opacity: 1;
}

/***** End PARTNER AREA *****/
.header-back {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
  padding-bottom: 20px;
}

.d-flex {
  display: flex;
}

.flex-stack {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background-color: var(--border-color);
  border-radius: 2px;
  margin-right: 4px;
}

input[type="checkbox"]~label {
  font-size: 15px;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: var(--primary-color);
}

input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid var(--bg-white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 6px;
}

/* Browse ui */
.browse-ui .browse-bar .dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 36px;
}

.browse-ui .browse-bar .dot,
.browse-ui .browse-bar .dot::before,
.browse-ui .browse-bar .dot::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  border: 1px solid transparent;
  border-color: #ca8a04;
  background-color: #f4be50;
}

.browse-ui .browse-bar .dot::before,
.browse-ui .browse-bar .dot::after {
  position: absolute;
  top: -1px;
}

.browse-ui .browse-bar .dot::before {
  left: -22px;
  border-color: #e12b24;
  background-color: #ed695f;
}

.browse-ui .browse-bar .dot::after {
  right: -22px;
  border-color: #16a34a;
  background-color: #62c654;
}

.browse-ui .browse-bar {
  border-radius: 5px 5px 0 0;
  background: #2f2f2f;
  padding: 14px 12px;
  z-index: -1;
  opacity: 1;
  bottom: 0;
  position: relative;
  width: 100%;
}

.browse-ui .browse-content.code-block {
  background-color: black;
  color: white;
  font-size: 12px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  padding: 20px 24px;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 320px;
}

.wpcode-app-area {
  padding-top: 96px;
  background-size: cover;
  background-color: #0e0e0e;
  color: white;
  background-position: bottom center;
  --code-indent-base: 1.5rem;
}

.wpcode-app-area .cta-content {
  padding-right: 80px;
}

.wpcode-app-area .cta-content .title {
  font-size: 38px;
  margin-bottom: 20px;
}

.wpcode-app-area .cta-content .des {
  margin-bottom: 44px;
}

.wpcode-app-area .cta-action {
  margin-bottom: 90px;
}

.wpcode-app-area .row {
  align-items: flex-end;
}

.obl-code-doctag,
.obl-code-keyword,
.obl-code-formula {
  color: #2e95d3;
}

.obl-code-symbol,
.obl-code-bullet,
.obl-code-link,
.obl-code-meta,
.obl-code-selector-id,
.obl-code-title {
  color: #f22c3d;
  font-weight: 400;
}

.obl-code-class .obl-code-title,
.obl-code-params,
.obl-code-title.class_ {
  color: #f8f8f2;
}

.obl-code-attr,
.obl-code-variable,
.obl-code-template-variable,
.obl-code-type,
.obl-code-selector-class,
.obl-code-selector-attr,
.obl-code-selector-pseudo,
.obl-code-number {
  color: #df3079;
}

.obl-code-literal {
  color: #2e95d3;
}

.obl-code-string,
.obl-code-regexp,
.obl-code-addition,
.obl-code-attribute,
.obl-code-meta .obl-code-string {
  color: #00a67d;
}

.browse-ui .browse-content.code-block [class*="line"] {
  overflow: hidden;
  width: fit-content;
  display: inline;
  width: 0%;
  min-height: 22px;
}

.line-2,
.line-4,
.line-5,
.line-9,
.line-19 {
  margin-left: var(--code-indent-base);
}

.line-3,
.line-6,
.line-7,
.line-9,
.line-10,
.line-12,
.line-13,
.line-18 {
  margin-left: calc(var(--code-indent-base) * 2);
}

.line-8,
.line-11,
.line-14,
.line-15,
.line-16,
.line-17 {
  margin-left: calc(var(--code-indent-base) * 2 + var(--code-indent-base));
}

/* line animation */
.viewed .line-1 {
  animation: module_code_typing 1.5s steps(30) 1s forwards;
}

.viewed .line-2 {
  animation: module_code_typing 1.5s steps(30) 2s forwards;
}

.viewed .line-3 {
  animation: module_code_typing 1.5s steps(30) 3s forwards;
}

.viewed .line-4 {
  animation: module_code_typing 1.5s steps(30) 4s forwards;
}

.viewed .line-5 {
  animation: module_code_typing 1.5s steps(30) 5s forwards;
}

.viewed .line-6 {
  animation: module_code_typing 1.5s steps(30) 6s forwards;
}

.viewed .line-7 {
  animation: module_code_typing 1.5s steps(30) 7s forwards;
}

.viewed .line-8 {
  animation: module_code_typing 1.5s steps(30) 8s forwards;
}

.viewed .line-9 {
  animation: module_code_typing 1.5s steps(30) 9s forwards;
}

.viewed .line-10 {
  animation: module_code_typing 1.5s steps(30) 10s forwards;
}

.viewed .line-11 {
  animation: module_code_typing 1.5s steps(30) 11s forwards;
}

.viewed .line-12 {
  animation: module_code_typing 1.5s steps(30) 12s forwards;
}

.viewed .line-13 {
  animation: module_code_typing 1.5s steps(30) 13s forwards;
}

.viewed .line-14 {
  animation: module_code_typing 1.5s steps(30) 14s forwards;
}

.viewed .line-15 {
  animation: module_code_typing 1.5s steps(30) 15s forwards;
}

.viewed .line-16 {
  animation: module_code_typing 1.5s steps(30) 16s forwards;
}

.viewed .line-17 {
  animation: module_code_typing 1.5s steps(30) 17s forwards;
}

.viewed .line-18 {
  animation: module_code_typing 1.5s steps(30) 18s forwards;
}

.viewed .line-19 {
  animation: module_code_typing 1.5s steps(30) 19s forwards;
}

.viewed .line-20 {
  animation: module_code_typing 1.5s steps(30) 20s forwards;
}

/* animation keyframe */
@keyframes module_code_typing {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes module_code_typing_cursor {

  0%,
  45% {
    border-color: transparent;
  }

  50%,
  to {
    border-color: white;
  }
}

@media only screen and (max-width: 667px) {
  .wpcode-app-area .cta-content {
    padding-right: 0px;
  }

  .wpcode-app-area {
    padding-top: 50px;
    --code-indent-base: 1rem;
  }

  .browse-ui .browse-content.code-block {
    padding: 18px 18px;
  }

  .wpcode-app-area .cta-action {
    margin-bottom: 30px;
  }

  .partners .partner-item-frame {
    /* padding: 10px; */
  }

  .project-info {
    flex-direction: column;
  }

  .project-info li {
    margin-bottom: 10px;
  }

  .project-info .project-meta,
  .project-meta-items {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .project-info .project-meta .project-meta-items p {
    margin-bottom: 0;
  }

  .project-info .project-meta .project-meta-heading {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {}

/***** Map Box *****/
.obl_mapgl {
  height: 600px;
  position: relative;
}

.front-page-map .obl_mapgl {
  height: 380px;
}

.obl_mapgl .obl_mapbox {
  height: 100%;
  width: 100%;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}

.obl_mapgl .obl_mapbox .mapboxgl-ctrl-bottom-right,
.obl_mapgl .obl_mapbox .mapboxgl-ctrl-bottom-left {
  display: none;
}

.obl_mapgl iframe {
  height: 100%;
  display: block;
  border: none;
  width: 100%;
  -webkit-filter: grayscale(100%) invert(90%) contrast(120%);
  filter: grayscale(100%) invert(90%) contrast(120%);
}

.mapboxgl-marker:after {
  position: absolute;
  content: 'Obelix Media';
  transform: translateX(-30%) translateY(10px);
  display: block;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  padding: 1px 10px;
  white-space: nowrap;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.mapboxgl-marker svg {
  transform: scale(1.2);
  animation: marker 1s infinite ease-in-out;
}

.mapboxgl-marker svg g,
.mapboxgl-marker svg path {
  fill: var(--primary-color) !important;
}

.mapboxgl-marker svg circle {
  fill: #28292c;
}

[theme-mode="light"] .mapboxgl-marker svg circle {
  fill: #f7f7f7;
}

[theme-mode="light"] .mapboxgl-marker:after {
  color: var(--bodytext-color);
  background-color: var(--primary-color);
}

.mapboxgl-marker svg ellipse {
  fill: #000 !important;
  opacity: 0.4 !important;
}

.obl_mapgl .obl_lock {
  opacity: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 35px;
  height: 35px;
  color: #28292c;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}

.obl_mapgl:hover .obl_lock {
  opacity: 1;
}

.obl_mapgl .obl_lock svg {
  width: 12px;
  fill: #28292c;
}

.obl_mapgl .obl_lock .unlock,
.obl_mapgl .obl_lock .lock {
  display: flex;
}

.obl_mapgl .obl_lock .unlock,
.obl_mapgl .obl_lock.is-unlock .lock {
  display: none;
}

.obl_mapgl .obl_lock.is-unlock .unlock {
  display: flex;
}

.obl_mapbox.active {
  pointer-events: all;
}


@keyframes marker {
  0% {
    transform: scale(1.2) translateY(0);
  }

  50% {
    transform: scale(1.2) translateY(-10px);
  }

  0% {
    transform: scale(1.2) translateY(0);
  }
}

/* .contact-page */
.contact-page .container {
  max-width: 1000px;
}

.contact-info-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: stretch;
}

.contact-info-wrap .box-info .box-title,
.contact-info-wrap .box-info .info,
.contact-info-wrap .box-form {
  padding: 30px;
  background-color: var(--bg-white);
  display: grid;
  align-items: center;
}

.contact-info-wrap .box-info {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
}

.contact-info-wrap .box-info .box-title>* {
  font-size: 34px;
  align-items: center;
  margin-bottom: 0;
}

.contact-info-wrap .info-box {
  margin-bottom: 22px;
}

.contact-info-wrap .info-box .info-title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-wrap .info-box>* {
  font-size: 15px;
  margin-bottom: 8px;
  /* font-weight: 400; */
}

.contact-info-wrap .info-box>*:last-child {
  margin-bottom: 0px;
}

.contact-page ::placeholder {
  font-weight: 300;
  font-size: 0;
}

.contact-page input,
.contact-page textarea,
.contact-page select {
  padding: 0;
}

.form-floating {
  position: relative;
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem .75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
}

.form-floating>input:focus~label,
.form-floating>input:not(:placeholder-shown)~label,
.form-floating>textarea:focus~label,
.form-floating>textarea:not(:placeholder-shown)~label {
  opacity: .65;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.contact-page .form-floating>label {
  padding: 0;
  font-weight: 400;
  top: .5rem;
}

.contact-page .form-floating>input:focus~label,
.contact-page .form-floating>input:not(:placeholder-shown)~label,
.contact-page .form-floating>textarea:focus~label,
.contact-page .form-floating>textarea:not(:placeholder-shown)~label {
  opacity: .65;
  transform: scale(.85) translateY(-1.4rem);
}

.contact-page textarea {
  padding-top: 20px;
}

.contact-page form button[type="submit"] {
  display: block;
  margin-left: auto;
}

.contact-page.page-hero .hero-title {
  font-size: 52px;
  text-align: center;
}

.contact-page .dsn-socials li a:hover span:not(.dsn-icon) {
  transform: matrix(1, 0, 0, 1, -30, -26);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.contact-page .dsn-socials li a {
  background-color: var(--bg-white);
}

.social-box {
  padding: 20px;
  display: flex;
  border-bottom: solid 1px var(--border-color);
  border-top: solid 1px var(--border-color);
  align-items: center;
  justify-content: center;
}

.social-box p {
  border-right: 1px solid var(--border-color);
  padding-right: 30px;
  margin-right: 30px;
  font-size: 16px;
  font-weight: 500;
}

.dsn-socials li {
  display: inline-block;
  margin-right: 10px;
}

.dsn-socials li:last-of-type {
  margin-right: 0px;
}

.dsn-socials li a {
  position: relative;
  padding: 8px 22px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
}

.dsn-socials li a i,
.dsn-socials li a svg {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsn-socials li a svg {
  /* width: 18px; */
  height: 18px;
  fill: var(--heading-color);
}

.dsn-socials li a:hover i,
.dsn-socials li a:hover svg {
  transform: scale(0);
}

.dsn-socials li a:after,
.dsn-socials li a span:not(.dsn-icon) {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.dsn-socials li a span:not(.dsn-icon) {
  color: var(--heading-color);
  font-weight: bold;
  font-size: 13px;
  transform-origin: center bottom;
  cursor: pointer;
}

.dsn-socials li a:hover span:not(.dsn-icon) {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, -20);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.dsn-socials li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(0.2);
}

.dsn-socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
}


@media only screen and (max-width: 667px) {
  .contact-info-wrap {
    display: block;
  }

  .contact-page.page-hero .hero-title {
    font-size: 36px;
  }

  .contact-info-wrap .box-info .box-title>* {
    font-size: 28px;
  }

  .contact-info-wrap .box-form {
    margin-top: 24px;
  }

  .social-box {
    flex-direction: column;
  }

  .social-box p {
    border: none;
    padding: 0;
    margin-right: 0;
    margin-bottom: 10px;
    font-family: var(--heading-font);
    font-weight: 600;
  }

  .contact-info-wrap .box-info .box-title {
    display: none;
  }

  .contact-page form button[type="submit"] {
    margin-right: auto;
  }
}