.cookies-eu-banner {
  background: #444;
  color: #fff;
  padding: 6px;
  font-size: 13px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
}

.cookies-eu-banner .cookie-checkbox {
  display: none;
}

.cookies-eu-banner .accept-btn {
  display: inline-block;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner .accept-btn:hover {
  background: #fff;
  color: #222;
}

.cookie-checkbox:checked+.jIP3uWO822 {
  display: none;
}

:root {
  --primary-color: #222;
  --secondary-color: #f9f9f9;
  --accent-color: #f15025;
}



.header-nav {
  background: var(--primary-color);
  color: var(--secondary-color);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hNB8gaPusi {
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--secondary-color);
}

.nav-links ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}

.nav-links ul li a:hover,
.nav-links ul li a.kuL80KKwIg {
  color: var(--accent-color);
}

/* burger */
.fpbWOlAgw3 {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.fpbWOlAgw3 span {
  width: 26px;
  height: 2px;
  background: var(--secondary-color);
  transition: 0.3s;
}

#nav-toggle {
  display: none;
}

/* mobile */
@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--primary-color);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 15px 20px;
    display: none;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }

  .fpbWOlAgw3 {
    display: flex;
    z-index: 1001;
  }

  #nav-toggle:checked+.fpbWOlAgw3 span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #nav-toggle:checked+.fpbWOlAgw3 span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked+.fpbWOlAgw3 span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  #nav-toggle:checked~.nav-links {
    display: block;
  }
}

h2,
h3 {
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
}

.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

/* BLOG GRID */
.CxbP7IqsMW {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.tbBq6vJ6gb {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.tbBq6vJ6gb:hover {
  transform: translateY(-6px);
}

.tbBq6vJ6gb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.Qbx4hf4UPL {
  padding: 20px;
}

.Qbx4hf4UPL h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.Qbx4hf4UPL p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.read-btn {
  background: #1e1e1e;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.read-btn:hover {
  background: #444;
}

/* SUBSCRIBE + CONTACT */
.SXu5BmLikR {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  background: #111;
  color: #fff;
  padding: 80px 20px;
}

.subscribe-form,
.contact-info {
  flex: 1 1 300px;
  max-width: 500px;
}

.subscribe-form h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.subscribe-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.subscribe-form input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.subscribe-form button {
  background: #ff5a5f;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: #e0494c;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: #f0f0f0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-info p strong {
  display: inline-block;
  width: 80px;
  color: #ff5a5f;
}

/* DISCLAIMER */
.disclaimer {
  background: #f0f0f0;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {
  .SXu5BmLikR {
    flex-direction: column;
    align-items: center;
  }
}



:root {
  --primary-bg: #1a1a2e;
  --secondary-bg: #2e2e4a;
  --text-color: #e0e0e0;
  --accent-color-1: #007bff;
  --accent-color-2: #8a2be2;
  --border-color: #4a4a6e;
  --font-family-body: 'Montserrat', sans-serif;
  --font-family-heading: 'Orbitron', sans-serif;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: var(--text-color);

  overflow-x: hidden;
}

.container1 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  background-color: var(--secondary-bg);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-top: 150px;
}

.main-content {
  flex: 3;
}

.sidebar {
  flex: 1;
  background-color: #26263f;
  border-left: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

header h1 {
  color: var(--accent-color-1);
  font-family: var(--font-family-heading);
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  margin-bottom: 20px;
}

.article-meta {
  color: #e0e0e0;
  text-align: center;
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.article-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 2px solid var(--accent-color-1);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid var(--accent-color-1);
}

p {
  margin-bottom: 1rem;
  opacity: 0.95;
  text-align: justify;
}

.sidebar h3 {
  font-family: var(--font-family-heading);
  font-size: 1.6rem;
  text-align: center;
  color: var(--accent-color-1);
  margin-bottom: 20px;
}

.related-article {
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 20px;
}

.related-article:last-child {
  border-bottom: none;
}

.related-article-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-article h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.related-article a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
  color: #fff;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-article a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

/* адаптивність */
@media (max-width: 992px) {
  .container1 {
    flex-direction: column;
    padding: 20px;
  }

  .main-content,
  .sidebar {
    flex: 1 1 100%;
    padding: 0;
  }

  .sidebar {
    margin-top: 30px;
    border-left: none;
    border-top: 2px solid var(--border-color);
    background-color: var(--secondary-bg);
  }

  header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .container1 {
    padding: 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .container1 {
    padding: 10px;
  }

  header h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .related-article a {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
















/* start global classes */
:root {

  /* body bg color */
  --bodyColor: #FFFFFF;

  /* primary type color */
  --primary-color: #0E0E0E;

  /* primary brand color */
  --brand-color: #D71105;

  /* dark primary color */
  --dark-primary: #5e0c09;

  /* box color */
  --box-color: #F5F5F5;

  /* white color */
  --white: #fff;

  /* grey color */
  --grey: #686868;

  /* border radius */
  --border-radius: 10px;
}

.container1 p {
  color: #e0e0e0;
}

.contact-info a {
  color: azure;
}

body {
  font-family: 'Outfit', sans-serif;

  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

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

.grey-text {
  color: var(--grey, #cecece) !important;
}

.b-radius {
  border-radius: var(--border-radius);
}

.heading-1,
.heading-2,
.heading-3,
.NwVpHVp8n3 {
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: auto;
}

.heading-1 {
  font-size: 48px;
  font-weight: bold;
  line-height: normal;
}

.heading-2 {
  font-size: 36px;
  font-weight: bold;
}

.heading-3 {
  font-size: 24px;
  font-weight: 600;
}

.NwVpHVp8n3 {
  font-size: 20px;
  font-weight: 600;
}


.body-1 {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.body-2 {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.breadcrubs .content,
.breadcrubs .content .container {
  background-color: var(--box-color) !important;
  color: var(--primary-color) !important;
}

.breadcrubs .content h1 {
  color: var(--primary-color);
}

.breadcrubs .content p {
  color: var(--grey);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

input,
textarea {
  font-family: 'Outfit', sans-serif !important;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px;
}

.gap-64 {
  gap: 64px;
}

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

@media (max-width: 990px) {
  .heading-1 {
    font-size: 36px;
  }

  .heading-2 {
    font-size: 24px;
  }

  .heading-3 {
    font-size: 18px;
  }

  .body-1 {
    font-size: 16px;
  }

  .body-2 {
    font-size: 14px;
  }

  .gap-8 {
    gap: 4px;
  }

  .gap-16 {
    gap: 8px;
  }

  .gap-32 {
    gap: 16px;
  }

  .padding-32 {
    padding: 16px;
  }

  .padding-16 {
    padding: 8px;
  }

  .padding-8 {
    padding: 4px;
  }

  .icon-lg {
    font-size: 48px;
  }

  .icon-md {
    font-size: 32px;
  }

  .icon-sm {
    font-size: 26px;
  }

  .section {
    padding-block: 3rem;
  }

}

a {
  text-decoration: none;
  text-transform: capitalize;
}

.w-fit {
  width: fit-content;
}

.padding-32 {
  padding: 32px;
}

.padding-16 {
  padding: 16px;
}

.padding-8 {
  padding: 8px;
}

.icon-lg {
  font-size: 48px;
}

.icon-md {
  font-size: 32px;
}

.icon-sm {
  font-size: 24px;
}

p {
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.section {
  padding-block: 6rem;
}

.unique-text {
  color: var(--brand-color);
}

input,
textarea {
  border: 0;
  outline: 0;
  color: var(--grey);
  background-color: var(--box-color);
  border-radius: var(--border-radius);
}

/* start buttons style */
.btn,
.btn-outline {
  background-color: var(--brand-color);
  color: var(--white);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--border-radius);
  padding: 10px 28px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: .5px;
  outline: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
}


.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: .5px solid var(--brand-color);
}

.btn:hover {
  color: var(--primary-color);
  border: .5px solid var(--brand-color);
}

.learn-more {
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.learn-more i {
  font-size: 22px;
  margin-left: 8px;
}

.learn-more:hover {
  letter-spacing: 1.5px;
  transition: all .5s;
  color: var(--grey);
}

/* end main button style */


ul {
  list-style: none;
}

img {
  width: 100%;
}


/* end global classes */

/* ==== start  preloader style  ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bodyColor);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader__content svg {
  width: 200px;
  height: 200px;
}

:root {
  --hue: 223;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg: hsl(var(--hue), 10%, 10%);
  /* font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320)); */
}

main {
  padding: 1.5em 0;
}

.ap {
  width: 8em;
  height: 16em;
}

.ap__ring {
  stroke: hsla(var(--hue), 10%, 10%, 0.15);
  transition: stroke 0.3s;
}

.ap__worm1,
.ap__worm2 {
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.ap__worm1 {
  animation-name: worm1;
}

.ap__worm2 {
  animation-name: worm2;
  visibility: hidden;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }

  .ap__ring {
    stroke: hsla(var(--hue), 10%, 90%, 0.1);
  }
}

/* Animtions */
@keyframes worm1 {
  from {
    animation-timing-function: ease-in-out;
    stroke-dashoffset: -87.96;
  }

  20% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 0;
  }

  60% {
    stroke-dashoffset: -791.68;
    visibility: visible;
  }

  60.1%,
  to {
    stroke-dashoffset: -791.68;
    visibility: hidden;
  }
}

@keyframes worm2 {

  from,
  60% {
    stroke-dashoffset: -87.96;
    visibility: hidden;
  }

  60.1% {
    animation-timing-function: cubic-bezier(0, 0, 0.5, 0.75);
    stroke-dashoffset: -87.96;
    visibility: visible;
  }

  77% {
    animation-timing-function: cubic-bezier(0.5, 0.25, 0.5, 0.88);
    stroke-dashoffset: -340;
    visibility: visible;
  }

  to {
    stroke-dashoffset: -669.92;
    visibility: visible;
  }
}

/* ==== end  preloader style  ===== */

/* ======== start scroll-to-top button style  =========== */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
}

#progress i {
  color: var(--grey);
  font-size: 20px;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--brand-color);
}

/* ======== end scroll-to-top button style  =========== */

/*================== start navbar section ==================*/

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

.header .bg-box {
  background-color: #f5f5f596;
  backdrop-filter: blur(8px);
}

.breadcrumb {
  height: 300px;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.678);
  backdrop-filter: blur(8px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}


.navbar i {
  font-size: 20px;
  color: var(--grey);
}

.navbar>* {
  z-index: 999;
}

.navbar .logo {
  width: 9rem;
}

.navbar ul li a {
  font-weight: 600;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.navbar ul li a:hover,
.navbar ul li a.kuL80KKwIg {
  color: var(--primary-color) !important;
}

.navbar i {
  font-size: 24px;
  color: var(--grey);
  z-index: 999 !important;
}



/*================== End navbar section ==================*/

/*================== start hero section ==================*/
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


.hero .heading-hero {
  font-size: 56px;
}


@media (max-width: 990px) {
  .hero .heading-hero {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .hero .heading-1 {
    font-size: 30px;
  }
}

/*================== end hero section =====================*/

.classes .overlay {
  background-color: var(--box-color);
  border-radius: var(--border-radius);
  width: 400px;
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 10%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.classes .img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  z-index: 2;
  width: 100%;
}

.classes .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.classes .img:hover .overlay {
  opacity: 1;
}



.testimonials .text {
  position: relative;
  color: var(--white);
  z-index: 2;
}

.testimonials .bg-box {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
}

.testimonials .text .heading-3 {
  color: var(--bodyColor);
}

.testimonials .text p {
  color: var(--box-color);
}

.testimonials .bg-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: var(--dark-primary);
  border-radius: var(--border-radius);
}

.testimonials .text .img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.cta .container {
  background: url('../img/YhlolaPdf8.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
}

.cta .container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.5);
  border-radius: var(--border-radius);
}

.cta .container h2 {
  color: var(--white);
  z-index: 9;
}

/*============== Start testimonials section ==========*/

.testimonials i {
  font-size: 20px;
  color: rgb(223, 223, 0);
}

.testimonials .img {
  width: 55px;
  height: 55px;
}

/*============== End testimonials section ==========*/


/*============== start FAQ section ==========*/


.faq .btn {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: transparent !important;
  border: none !important;
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

/*============== End FAQ section ==========*/

/*============== Start contact section ==========*/

.contact input,
.contact textarea {
  background-color: var(--box-color);
}

.contact .container {
  background-color: var(--white);
  border-radius: var(--border-radius);
}


.done-msg {
  color: var(--white);
  font-family: 'Outfit', 'sans serif';
}

.toast-success {
  background-color: #0d9700 !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #8b0500 !important;
  opacity: 1 !important;
}

.toast {
  border-radius: var(--border-radius) !important;
  color: var(--bodyColor) !important;
  font-family: 'Outfit', sans-serif;
  box-shadow: none !important;
}

.contact-map {
  width: 100%;
  height: 300px;
}

/*============== End contact section ==========*/

/*============== start Footer section ==========*/

.footer {
  background-color: var(--dark-primary);
  color: var(--bodyColor);
}

.footer p {
  color: var(--bodyColor);
}

.footer h2 {
  color: var(--bodyColor);
}

.footer-link {
  font-size: 16px;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.footer a {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: var(--bodyColor);
}


.copy {
  font-size: 14px;
  color: var(--bodyColor);
}

/*============== End Footer section ==========*/