@charset "UTF-8";
/**
 * Global styles
 */
/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap");
html {
  font-size: 16px;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  background-color: #171717;
  margin: 0;
  padding: 0;
}

/* Naslovi */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Linkovi */
a {
  color: #F26224;
  text-decoration: none;
}
a:hover, a:focus {
  color: #F26224;
  text-decoration: underline;
}

/* Form elements */
input,
textarea,
select,
button {
  font-family: inherit;
}

/* Drupal toolbar */
.toolbar {
  font-family: inherit;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
.h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

h2,
.h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* =========================
   SITE HEADER NAVBAR
   Desktop + Mobile Layout
   ========================= */
.site-header {
  background: #171717;
  border-bottom: 1px solid #ff6a00;
}

/* NAVBAR BASE */
.navbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

/* LOGO */
.navbar-brand {
  flex: 0 0 auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  max-width: 200px;
  height: auto;
}

/* COLLAPSE WRAPPER */
.navbar-collapse {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* CENTER MENU */
.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-center .navbar-nav {
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-center .navbar-nav .nav-link {
  color: #fff;
  transition: color 0.2s ease;
}

.navbar-center .navbar-nav .nav-link:hover,
.navbar-center .navbar-nav .nav-link.is-active,
.navbar-center .navbar-nav .nav-link.active {
  color: #ff6a00;
}

/* CTA RIGHT (DESKTOP) */
.navbar-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nav-link-cta {
  background: #ff6a00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease;
}

.nav-link-cta:hover {
  background: #e85f00;
  color: #fff;
}

/* FORCE BOOTSTRAP WHITE LINKS */
.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
  opacity: 1;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 991px) {
  .navbar {
    min-height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
  }
  .navbar-collapse {
    flex-basis: 100%;
    display: block;
  }
  /* MENU LEFT */
  .navbar-center {
    justify-content: flex-start;
  }
  .navbar-center .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
  }
  /* CTA LEFT (IMPORTANT REQUEST) */
  .navbar-cta {
    margin-left: 0;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 15px;
  }
  .nav-link-cta {
    width: auto;
    justify-content: flex-start;
  }
}
/* REGION HELP */
.region-help {
  margin-top: 24px;
  margin-bottom: 32px;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background: transparent;
  font-size: 1rem;
}
.breadcrumb .breadcrumb-item a {
  color: #fd7e14;
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-item.active {
  color: #212529;
  font-weight: 600;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #adb5bd;
}

/* ==========================================
   MAIN NAVIGATION (BOOTSTRAP OVERRIDE)
   SaaS / Apple Style - Clean Version
========================================== */
.navbar {
  position: relative;
  /* =========================
     TOP LEVEL LINKS
  ========================= */
}
.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: 0.2s ease;
  position: relative;
}
.navbar .nav-link:hover {
  color: #ff6a00;
}
.navbar {
  /* =========================
     DROPDOWN WRAPPER
     (hover stability fix)
  ========================= */
}
.navbar .dropdown {
  position: relative;
}
.navbar .dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.navbar {
  /* =========================
     DROPDOWN MENU PANEL
  ========================= */
}
.navbar .dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  background: rgba(23, 23, 23, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 999;
}
.navbar {
  /* SHOW ON HOVER */
}
.navbar .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar {
  /* =========================
     DROPDOWN ITEMS
  ========================= */
}
.navbar .dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}
.navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #ff6a00;
}
.navbar {
  /* =========================
     ACTIVE STATE
  ========================= */
}
.navbar .active > .nav-link {
  color: #ff6a00;
}
.navbar {
  /* =========================
     DIVIDER
  ========================= */
}
.navbar .dropdown-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}
.navbar {
  /* =========================
     REMOVE BOOTSTRAP ARROW
  ========================= */
}
.navbar .dropdown-toggle::after {
  display: none;
}
.navbar {
  /* =========================
     CHEVRON ICON (FIXED)
  ========================= */
  /* target Bootstrap structure safely */
}
.navbar .dropdown .nav-link {
  position: relative;
  padding-right: 22px !important;
  display: inline-flex;
  align-items: center;
}
.navbar .dropdown .nav-link::after {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 1;
  color: #fff !important;
  opacity: 0.75;
  display: inline-block;
  pointer-events: none;
  z-index: 2;
  transition: 0.2s ease;
}
.navbar .dropdown:hover .nav-link::after {
  transform: translateY(-50%) rotate(180deg);
  color: #ff6a00 !important;
  opacity: 1;
}

@media (max-width: 991px) {
  .navbar .dropdown {
    position: relative;
    /* BRIDGE FIX - ključ */
  }
  .navbar .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
  }
  .navbar .dropdown-menu {
    top: calc(100% + 6px);
    left: 0;
    margin-top: 0;
    transform: translateY(6px);
  }
  .navbar .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navbar .dropdown-menu .dropdown-item {
  background: transparent !important;
}

.navbar .dropdown-menu .dropdown-item.active {
  background: transparent !important;
  color: #ff6a00 !important;
}

.navbar-toggler {
  display: none;
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }
}
.navbar-toggler.hamburger {
  border: 0;
  padding: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
  width: 34px;
  height: 24px;
}
.navbar-toggler.hamburger:focus, .navbar-toggler.hamburger:active {
  outline: none;
  box-shadow: none;
}
.navbar-toggler.hamburger .hamburger-box {
  width: 34px;
  height: 24px;
}
.navbar-toggler.hamburger .hamburger-inner,
.navbar-toggler.hamburger .hamburger-inner::before,
.navbar-toggler.hamburger .hamburger-inner::after {
  width: 34px;
  height: 3px;
  background-color: #ff6a00 !important;
}
.navbar-toggler.hamburger.is-active .hamburger-inner,
.navbar-toggler.hamburger.is-active .hamburger-inner::before,
.navbar-toggler.hamburger.is-active .hamburger-inner::after {
  background-color: #ff6a00 !important;
}

.navbar-toggler-icon {
  display: none;
}

.hamburger-inner::before,
.hamburger-inner::after {
  box-shadow: none !important;
}

.site-footer {
  background: #171717;
  color: #fff;
  font-size: 14px;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
}
.site-footer a:hover {
  color: #ff6b2c;
}

/* Top */
.footer-top {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 30px 0;
}

.footer-branding {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 300px;
  height: auto;
}

.footer-tagline {
  text-align: right;
  color: #ddd;
  line-height: 1.6;
}

/* Contact */
.footer-contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.contact-item {
  text-align: center;
}
.contact-item i {
  font-size: 52px;
  margin-bottom: 25px;
}
.contact-item h4 {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
}
.contact-item p {
  color: #ddd;
  line-height: 1.8;
}

/* Links */
.footer-links {
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 15px 0;
}

.footer-links .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.links-left,
.links-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Bottom */
.footer-bottom {
  padding: 15px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #999;
}

@media (max-width: 991px) {
  .footer-branding {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    text-align: center;
  }
  .footer-social {
    margin: 0 auto;
  }
  .footer-logo {
    font-size: 42px;
  }
  .footer-tagline {
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-links .container,
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  .links-left,
  .links-right {
    justify-content: center;
  }
}
ul.pagination {
  justify-content: center;
  margin-bottom: 1.5rem;
}
ul.pagination li.page-item {
  padding: 0;
}
ul.pagination li.page-item a.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #F26224;
  background: transparent;
  border: none;
}

/* CONTENT SECTION */
.content__section {
  padding: 60px 0;
  position: relative;
  overflow: visible;
}
.content__section--dark {
  background: #171717;
  color: #fff;
}
.content__section--light {
  background: #fff;
  color: #111;
}
.content__section--gradient {
  background: linear-gradient(135deg, #171717 0%, #1c1c1c 100%);
  color: #fff;
}

/* SPLIT LAYOUT */
.content-col {
  padding: 20px;
}

.content-col--full {
  text-align: center;
}

.content-col--full .field__title,
.content-col--full .field__subtitle {
  text-align: center;
}

.image-col img {
  width: 100%;
  height: auto;
  display: block;
}

/* HERO SECTION */
.hero__section {
  position: relative;
  padding: 0;
  color: #fff;
}
.hero__section .hero__image {
  position: relative;
}
.hero__section .hero__image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}
.hero__section .hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero__section .hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* ==========================================
   BLOG SECTION
========================================== */
.blog-section {
  padding: 60px 0 100px;
  position: relative;
}

.blog-section__header {
  max-width: 900px;
  margin: 0 auto 70px;
}

/* ==========================================
   BLOG CARD
========================================== */
.blog-card {
  height: 100%;
  border: 1px solid rgba(255, 106, 0, 0.7);
  border-radius: 16px;
  padding: 16px;
}

/* ==========================================
   IMAGE
========================================== */
.blog-card__image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

/* ==========================================
   META
========================================== */
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  color: #d8d8d8;
  font-size: 14px;
}

.blog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card__meta-item i {
  color: #ff6a00;
  font-size: 13px;
}

/* ==========================================
   TITLE
========================================== */
.blog-card__title {
  line-height: 1rem;
  margin-bottom: 16px;
}
.blog-card__title a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #ff6a00;
}

/* ==========================================
   EXCERPT
========================================== */
.blog-card__excerpt {
  margin-bottom: 16px;
}

/* ==========================================
   LINK
========================================== */
.blog-card__link {
  color: #00c8ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.blog-card__link:hover {
  color: #fff;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
  .blog-card__title a {
    font-size: 28px;
  }
  .blog-card__image {
    height: 220px;
  }
}
@media (max-width: 991px) {
  .blog-section {
    padding: 80px 0;
  }
  .blog-section__title {
    font-size: 48px;
  }
  .blog-card {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 60px 0;
  }
  .blog-section__title {
    font-size: 36px;
  }
  .blog-section__subtitle {
    font-size: 16px;
  }
  .blog-card {
    padding: 20px;
  }
  .blog-card__image {
    height: 220px;
  }
  .blog-card__title a {
    font-size: 16px;
  }
  .blog-card__excerpt {
    font-size: 15px;
  }
}
.faq-section {
  padding: 60px 0;
}
.faq-section__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
.faq-section .faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.faq-section .faq-list li {
  padding: 8px 0;
}
.faq-section .faq-list li:before {
  content: "";
}
.faq-section .faq-list a {
  text-decoration: none;
  color: #ff6a00;
  font-size: 18px;
}
.faq-section .faq-list a:hover {
  color: #fff;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonial-slider {
  width: 100%;
}

.testimonial-slider.full-width {
  width: 100%;
}

.testimonial-slider {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: visible;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.testimonial-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.testimonial-slider .container {
  position: relative;
  z-index: 2;
}
.testimonial-slider .section-subtitle {
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
  opacity: 0.8;
}
.testimonial-slider h2 {
  color: #fff;
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 60px;
}
.testimonial-slider .carousel-item {
  min-height: 350px;
}
.testimonial-slider .testimonial {
  max-width: 850px;
  margin: auto;
  text-align: center;
  color: #fff;
}
.testimonial-slider .testimonial blockquote {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.testimonial-slider .testimonial .stars {
  margin-bottom: 30px;
}
.testimonial-slider .testimonial .stars i {
  color: #ff9d00;
  margin: 0 4px;
  font-size: 22px;
}
.testimonial-slider .testimonial .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid rgba(255, 255, 255, 0.2);
}
.testimonial-slider .testimonial h4 {
  font-size: 30px;
  margin-bottom: 5px;
}
.testimonial-slider .testimonial span {
  color: #ff7b00;
  font-size: 18px;
}
.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
  width: 60px;
}
.testimonial-slider .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next-icon {
  width: 45px;
  height: 45px;
}

/* TYPOGRAPHY */
.field__kicker {
  color: #ff6a2a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.field__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.field__subtitle {
  color: #ff6a2a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 40px;
}

.field__cta {
  margin-top: 30px;
}

.field__cta a {
  display: inline-block;
  background: #ff6a2a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.field__cta a:hover {
  background: #e65f22;
}

/* LIST (FontAwesome) */
.text-columns ul,
.field__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.text-columns li,
.field__description li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.text-columns li:before,
.field__description li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A7D6;
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.1rem;
}

/* COLUMNS */
.columns-1 {
  column-count: 1;
}

.columns-2 {
  column-count: 2;
  column-gap: 40px;
}

.columns-3 {
  column-count: 3;
  column-gap: 40px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .blog__section,
  .hero__section,
  .content__section {
    padding: 50px 0;
  }
  .field__title {
    font-size: 38px;
  }
  .columns-2,
  .columns-3 {
    column-count: 1;
  }
}
.image-col,
.hero__image,
.field--name-field-image {
  width: 100%;
}

.image-col img,
.hero__image img,
.field--name-field-image img {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  display: block;
}

.content__section--hero .hero__image img {
  width: 100vw;
  max-width: 100vw;
  height: 60vh;
  object-fit: cover;
}

.hero__image {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ==========================================
   HERO
========================================== */
.hero {
  color: #fff;
  padding: 40px 0 80px 0;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__brand {
  color: #ff6a00;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero__title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title span {
  color: #ff6a00;
}
.hero__subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
}
.hero__media {
  display: flex;
  justify-content: center;
}
.hero__media img {
  max-width: 100%;
  height: auto;
  display: block;
}
.hero {
  /* ==========================================
     MOBILE
  ========================================== */
}
@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__description {
    max-width: 100%;
    margin: 0 auto 30px;
  }
  .hero__media {
    order: -1;
  }
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn--primary {
  background: #ff6a00;
  color: #fff;
  transition: background 0.3s ease;
}
/* ==========================================
   FEATURES
========================================== */
.features {
  background: #0e0e0e;
  padding: 60px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FEATURE CARD
========================================== */
.feature-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  padding: 25px;
  border-radius: 12px;
  color: #fff;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* ==========================================
   OVERVIEW
========================================== */
.overview__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.overview__toggle:focus, .overview__toggle:active, .overview__toggle:focus-visible {
  outline: none;
  box-shadow: none;
}
.overview__icon {
  width: 42px;
  height: 42px;
  border: 2px solid #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a00;
  font-size: 18px;
}
.overview__icon .fa-minus {
  display: none;
}
.overview__toggle.collapsed .fa-plus {
  display: block;
}
.overview__toggle.collapsed .fa-minus {
  display: none;
}
.overview__toggle:not(.collapsed) .fa-plus {
  display: none;
}
.overview__toggle:not(.collapsed) .fa-minus {
  display: block;
}

/* ==========================================
   REQUIREMENTS
========================================== */
.requirements__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.requirements__toggle:focus, .requirements__toggle:active, .requirements__toggle:focus-visible {
  outline: none;
  box-shadow: none;
}
.requirements__icon {
  width: 42px;
  height: 42px;
  border: 2px solid #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a00;
  font-size: 18px;
}
.requirements__icon .fa-minus {
  display: none;
}
.requirements__toggle.collapsed .fa-plus {
  display: block;
}
.requirements__toggle.collapsed .fa-minus {
  display: none;
}
.requirements__toggle:not(.collapsed) .fa-plus {
  display: none;
}
.requirements__toggle:not(.collapsed) .fa-minus {
  display: block;
}

/* ==========================================
   WHY SECTION
========================================== */
.why {
  padding: 60px 0 40px 0;
  background: #171717;
  color: #fff;
}
.why .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why {
  /* ==========================================
     HEADER
  ========================================== */
}
.why__heading {
  text-align: center;
  margin-bottom: 80px;
}
.why__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.why__title span {
  color: #ff6a00;
}
.why__subtitle {
  font-size: 18px;
  opacity: 0.75;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.why {
  /* ==========================================
     GRID (FIXED)
  ========================================== */
}
.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.why {
  /* wrapper column (3 per row) */
}
.why__col {
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
}
.why {
  /* ==========================================
     CARD
  ========================================== */
}
.why__card {
  height: 100%;
  background: #1e1e1e;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  padding: 28px 28px 28px 60px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.why {
  /* ==========================================
     ICON
  ========================================== */
}
.why__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff6a00;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.why__icon i {
  font-size: 24px;
  color: #fff;
}
.why {
  /* ==========================================
     TEXT
  ========================================== */
}
.why__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.why__card-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 992px) {
  .why__title {
    font-size: 48px;
  }
  .why__col {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 576px) {
  .why__title {
    font-size: 36px;
  }
  .why__subtitle {
    font-size: 16px;
  }
  .why__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* LIST (FontAwesome) */
.hero__description ul,
article ul,
section.overview ul,
section.requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hero__description ul li,
article ul li,
section.overview ul li,
section.requirements ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.hero__description ul li:before,
article ul li:before,
section.overview ul li:before,
section.requirements ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A7D6;
  position: absolute;
  left: 0;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

.hero__description ul li {
  margin-bottom: 0.75rem;
}

.hero .btn {
  margin-top: 0.75rem;
}

/* ==========================================
   HERO
========================================== */
.hero {
  padding: 0px 0px 60px 0;
  /* MAIN LAYOUT */
}
.hero__container {
  max-width: 1200px;
  margin: 0 auto;
}
.hero__content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero {
  /* CONTENT - ŠIRI */
}
.hero__content {
  flex: 1.6;
  min-width: 0;
}
.hero {
  /* MEDIA - SUŽEN */
}
.hero__media {
  flex: 0.9;
  max-width: 420px;
}
.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .hero__content-wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .hero__media {
    max-width: 100%;
    flex: none;
  }
}
.hero {
  /* ==========================================
     CONTENT
  ========================================== */
}
.hero__content {
  flex: 1;
  min-width: 0;
}
.hero__brand {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
}
.hero__title {
  font-weight: 700;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 20px;
}
.hero {
  /* ==========================================
     DESCRIPTION + PRICES ROW
  ========================================== */
}
.hero__row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
    gap: 30px;
  }
}
.hero {
  /* DESCRIPTION */
}
.hero__description {
  flex: 1;
  min-width: 0;
}
.hero__description ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__description li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hero {
  /* ==========================================
     PRICES
  ========================================== */
}
.hero__prices {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .hero__prices {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.hero__price {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .hero__price {
    margin-bottom: 0;
  }
}
.hero__price-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b7b7b7;
  margin-bottom: 15px;
  font-weight: 600;
}
.hero__price-old {
  font-size: clamp(1.2rem, 2vw, 2rem);
  color: #9b9b9b;
  text-decoration: line-through;
  margin-bottom: 4px;
}
.hero__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hero__price-new {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero__price-discount {
  background: #2d67d2;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero__price-description {
  color: #d4d4d4;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.hero__price-button .btn {
  width: 100%;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media (min-width: 992px) {
  .hero__price-button .btn {
    width: 170px;
  }
}
.hero {
  /* ==========================================
     IMAGE
  ========================================== */
}
.hero__media {
  flex: 1;
}
.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ==========================================
     LOGO
  ========================================== */
.logos {
  padding: 40px 0 20px 0;
}
.logos__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.logos__item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
}
.logos__item img {
  max-width: 140px;
  width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logos__item img:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .logos__inner {
    justify-content: center;
    gap: 20px;
  }
  .logos__item {
    flex: 0 0 33.33%;
  }
}

.product-card__image {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 24px;
}

.blog-hero__image {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  overflow: hidden;
}
.blog-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content p {
  margin-bottom: 1.5rem;
}
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin: 3rem 0 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.blog-content h2 {
  font-size: 2rem;
}
.blog-content h3 {
  font-size: 1.6rem;
}
.blog-content h4 {
  font-size: 1.3rem;
}
.blog-content {
  /* LIST (FontAwesome) */
}
.blog-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.blog-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}
.blog-content ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A7D6;
  position: absolute;
  left: 0;
}
.blog-content a {
  color: var(--bs-primary);
  text-decoration: none;
}
.blog-content a:hover {
  text-decoration: underline;
}
.blog-content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2rem auto;
}
.blog-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--bs-primary);
  background: #f8f9fa;
  font-style: italic;
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.blog-content th,
.blog-content td {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
}
.blog-content code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.blog-content pre {
  padding: 1.5rem;
  border-radius: 12px;
  overflow-x: auto;
  background: #1f1f1f;
}
.blog-content pre code {
  background: transparent;
  padding: 0;
  color: #fff;
}

.contact-wrapper {
  margin-top: 30px;
  margin-bottom: 40px;
}

.contact-intro .contact-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
}
.contact-intro p {
  line-height: 1.6;
  margin-bottom: 14px;
}
.contact-intro hr {
  border-top: 1px solid #222;
  margin: 30px 0;
}

.contact-form-box textarea.form-control {
  min-height: 120px;
  height: 120px;
  resize: vertical;
  border-radius: 6px;
}
.contact-form-box textarea.form-control:focus,
.contact-form-box input.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ff6a00;
}
.contact-form-box .button,
.contact-form-box .btn,
.contact-form-box .btn-primary,
.contact-form-box input[type=submit] {
  background-color: #ff6a00 !important;
  border-color: #ff6a00 !important;
  color: #ffffff !important;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
}
.contact-form-box .button:hover,
.contact-form-box .btn:hover,
.contact-form-box .btn-primary:hover,
.contact-form-box input[type=submit]:hover {
  background-color: #e65f00 !important;
  border-color: #e65f00 !important;
  color: #ffffff !important;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}
/*# sourceMappingURL=style.css.map */
