/* --- 1. ROOT VARIABLES --- */
:root {
  /* Farby */
  --color-primary: #c10c1a;
  --color-primary-darker: #a10a15;
  --color-text-default: #3c3f41;
  --color-text-secondary: #6c757d;
  --color-background: #ffffff;
  --color-background-light: #f8f9fa;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typografia */
  --font-family-base: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-family-heading: "Roboto", sans-serif; /* Font pre hlavné nadpisy */
  --font-size-base: 1rem; /* Základná veľkosť písma (typicky 16px) */
  --line-height-base: 1.6;

  /* Odsadenie (Spacing) */
  --spacing-xs: 0.25rem;  /* 4px */
  --spacing-sm: 0.5rem;   /* 8px */
  --spacing-md: 1rem;     /* 16px */
  --spacing-lg: 1.5rem;   /* 24px */
  --spacing-xl: 2.5rem;   /* 40px */

  /* Iné */
  --border-radius-default: 0.375rem; /* 6px */
  --box-shadow-default: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition-default: 0.3s ease;
}


/* --- 2. BASE & RESET STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-default);
  background-color: var(--color-background);
  overflow-x: hidden;
}


/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  color: var(--color-text-default);
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem;      line-height: 1.2; } /* 48px */
h2 { font-size: 2.25rem;   line-height: 1.3; } /* 36px */
h3 { font-size: 1.75rem;   line-height: 1.4; } /* 28px */
h4 { font-size: 1.375rem;  line-height: 1.4; } /* 22px */
h5 { font-size: 1.125rem;  line-height: 1.5; } /* 18px */
h6 { font-size: 1rem;      line-height: 1.5; } /* 16px */

p {
  margin-bottom: var(--spacing-md);
}

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

a:hover {
  color: var(--color-primary-darker);
  text-decoration: underline;
}


/* --- 4. RESPONSIVE STYLES --- */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }  /* 36px */
  h2 { font-size: 1.75rem; }  /* 28px */
  h3 { font-size: 1.5rem; }    /* 24px */
}

 /* --- 5. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: var(--border-radius-default);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: var(--transition-default);
  cursor: pointer;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-default);
  text-decoration: none;
}


.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-darker);
  border-color: var(--color-primary-darker);
  text-decoration: none;
}


.btn-secondary {
  background-color: var(--color-white);
  border-color: #ddd;
  color: var(--color-text-default);
}

.btn-secondary:hover {
  background-color: var(--color-background-light);
  border-color: #bbb;
}

/* --- Ikona v tlačidle --- */
.btn i {
  transition: transform 0.2s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 90px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  color: #ccc;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.subtitle-label {
  color: #c00;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}


.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 20px;
  font-weight: 400;
  color: #ddd;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  background-color: #c00;
  color: white;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #a00;
}

.hero-btn.btn-primary {
  background-color: #b91c1c;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-btn.btn-primary:hover {
  background-color: #a4161a;
  transform: translateY(-1px);
}


.hero-btn.btn-secondary {
  background-color: white;
  color: #444;
  border: 2px solid #ccc;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-btn.btn-secondary:hover {
  background-color: #f0f0f0;
  color: black;
  border-color: #999;
}

.hero-buttons {
  display: flex;
  gap: 20px; 
}

.scroll-down-modern {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c00;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 3;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

.scroll-down-modern:hover {
  background-color: #990000; /* tmavšia červená */
  transform: translateX(-50%) scale(1.05);
}

.scroll-down-modern svg {
  animation: bounceDown 1.6s infinite;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  position: relative;
  z-index: 1;
}

.profile-img.overlapped {
  margin-left: -12px;
  z-index: 0;
}



/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #c5e8ef;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay:0px !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 997;
  background: transparent;
  transition: all 0.4s ease;
}

.header-inner {
  background: rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  padding: 20px 40px;
  border-left: 4px solid #c10c1a;
  border-radius: 4px;
  transition: all 0.4s ease;
  width: calc(100% - 40px);
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  position: relative;
  padding: 0 15px;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar .active {
  color: #c10c1a;
}


.navbar .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(154, 0, 0, 0.3);
  padding: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.navbar .dropdown:hover ul {
  display: block;
}

/*--------------------------------------------------------------
# Header scroll
--------------------------------------------------------------*/

.header.scrolled {
  top: 10px;
}

.header.scrolled .header-inner {
  background: #c10c1a;
  color: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

.header.scrolled .navbar .dropdown ul {
  background: #a50b15;
}

.header.scrolled .navbar .dropdown ul a:hover {
  color: #ffffff;
  background: #c10c1a;
}

.header.scrolled .navbar .dropdown-mega {
  background: #a50b15;
}

.header.scrolled .navbar .dropdown-mega .text strong {
  color: #ffffff;
}

.header.scrolled .navbar .dropdown-mega .text p {
  color: rgb(255, 255, 255);
}

.header.scrolled .navbar .dropdown-mega a:hover {
  background: #c10c1a;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 50px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .scrolled .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 50px);
    margin: 0;
    padding: 30px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 0, 0, 0.49);
    color: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 10px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/* === Mega Dropdown s obrázkom a popisom === */
.navbar .dropdown-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  max-width: auto;
  z-index: 100;
  flex-direction: column;
  gap: 15px;
  border-radius: 8px;
}

.navbar .dropdown:hover .dropdown-mega {
  display: flex;
}

.navbar .dropdown-mega li {
  display: flex;
  width: 100%;
}

.navbar .dropdown-mega a {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.navbar .dropdown-mega a:hover {
  background: #f7f7f7;
}

.navbar .dropdown-mega img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px; /* optické vyrovnanie s nadpisom */
}

.navbar .dropdown-mega .text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.navbar .dropdown-mega .text strong {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.2;
}

.navbar .dropdown-mega .text p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.desktop-only {
  display: none !important;
}

.mobile-only {
  display: block;
  padding: 10px 20px;
}

.mobile-only li a {
  color: #ffffff;
  display: block;
  padding: 8px 0;
}

/* Desktop breakpoint */
@media (min-width: 1280px) {
  .desktop-only {
    display: flex !important;
  }

  .mobile-only {
    display: none !important;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    display: flex;
    flex-direction: column;
  }


  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #9a0000;
  }

  .navbar .dropdown ul {
    display: none;
    position: static;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown ul.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: rgba(255, 255, 255, 0.2);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Insurance Section
--------------------------------------------------------------*/
.custom-insurance .subtitle {
  color: #b03030;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card .text-overlay h2 {
color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card .text-overlay p {
  font-size: 15px;
  line-height: 1.4;
}


.cards {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card.image-card {
  position: relative;
}

.card.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card .text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  transition: background-color 0.4s ease;
}

.card:hover .text-overlay {
  background-color: rgba(176, 48, 48, 0.85);
}


.card .cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 10px;
  color: white;
}

.card::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: #b03030;
  z-index: 1;
  transition: bottom 0.4s ease;
}

.card:hover::before {
  bottom: 0;
}

.card:hover img {
  transform: scale(1.05);
}

.card:hover .text-overlay {
  color: white;
}

.card:hover .cta {
  color: white;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.card:hover .arrow {
  transform: translateX(4px);
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.insurance-section {
  background-color: #fff;
}

.insurance-section .section-subtitle {
  color: #c10c1a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.insurance-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

.insurance-section .section-paragraph {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 30px;
}

.insurance-section .btn-custom-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #c10c1a;
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 2px solid #c10c1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.insurance-section .btn-custom-red .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.insurance-section .btn-custom-red:hover {
  background-color: #a50b15;
  border-color: #a50b15;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insurance-section .btn-custom-red:hover .arrow-icon {
  transform: translateX(4px);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list li::before {
  content: '>';
  color: #c10c1a;
  font-weight: bold;
  font-size: 18px;
  margin-right: 15px;
  line-height: 1;
}

@media (max-width: 991px) {
  .insurance-section .section-title {
    font-size: 36px;
  }
}
/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
  position: relative;
}

.section-title-partners {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}


.swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.swiper-button-prev,
.swiper-button-next {
  color: #c40000;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #c40000;
  color: #fff;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative;
  bottom: auto;
}

.partner img {
  width: 100%;
  max-width: 220px;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
  margin: 0 auto;
}

.partner img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


.section-title h2 {
  color: #222;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.partner-logo {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partners-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.section-title-partners {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.partners-grid .partner-logo {
  max-height: 260px;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  display: block;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  padding: 40px 20px;
}

.partner-logo {
  max-height: 200px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .partner-logo {
    max-height: 40px;
  }
}


@media (max-width: 768px) {
  .partner img {
    max-width: 100px;
  }
}

.partner-logo {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
/*--------------------------------------------------------------
# Scroll divider
--------------------------------------------------------------*/

.scroll-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px 0; /* medzery nad a pod */
}

.scroll-divider .scroll-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.scroll-divider .scroll-icon:hover {
  background: #f5f5f5;
}

.scroll-divider .arrow.down {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #b03030; /* červená šipka */
}

.scroll-divider hr {
  width: 100%;
  max-width: 1200px;
  border: none;
  border-top: 1px solid #ddd;
  margin-top: 50px;
}


/*--------------------------------------------------------------
# Kariera Section
--------------------------------------------------------------*/
.career-section {
  background-color: #f7fafa;
  padding: 125px 0;
  transition: padding 0.3s ease;
}

.career-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: 30px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.career-content {
  flex: 1;
}

.career-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.career-content h2 {
  color: var(--color-text-default);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.career-button {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .career-section {
    padding: 60px 0;
  }
  .career-box {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px 20px;
  }
  .career-content h2 {
    font-size: 20px;
  }
  .career-button {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
#  Services Section
--------------------------------------------------------------*/
.services-list a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-left: 4px solid transparent;
}

.services-list a.active {
  color: #d80027;
  border-left: 4px solid #d80027;
  background-color: #f8f8f8;
}

.services-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

ul#service-list {
  margin-top: 20px;
  padding-left: 20px;
}

ul#service-list li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.btn {
  display: inline-block;
  background-color: #d80027;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  background-color: #a0001b;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about h2.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.about .section-description {
  font-size: 16px;
  color: #555;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.about .features {
  gap: 20px;
}

.about .feature-item {
  margin-bottom: 40px;
}

.about .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: background-color 0.3s, transform 0.3s;
}

.about .icon-box i {
  font-size: 32px;
  color: #d82227; 
}

.about .feature-item:hover .icon-box {
  background-color: #d82227;
  transform: translateY(-5px);
}

.about .feature-item:hover .icon-box i {
  color: #fff;
}

.about .feature-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/*--------------------------------------------------------------
# Poistenie Section
--------------------------------------------------------------*/
.specific-insurance {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.specific-insurance h2 {
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 11px;
  color: #1c1c1c;
}

.accordion {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  background-color: transparent;
}

.accordion-item:last-of-type {
  border-bottom: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button.custom-accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #1c1c1c;
  font-size: 18px;
  flex: 1;
  transition: color 0.3s;
  background-color: transparent;
  border: none;
  padding: 20px 0;
  width: 100%;
  text-align: left;
  box-shadow: none;
  outline: none;
}

.accordion-button.custom-accordion-button:not(.collapsed) {
  color: #d82227;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button.custom-accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-button.custom-accordion-button:hover {
  color: #d82227;
}

.accordion-button.custom-accordion-button .number {
  font-size: 18px;
  font-weight: 600;
  color: #999;
  flex: 0 0 40px;
}

.accordion-button.custom-accordion-button span:nth-of-type(2) {
  flex: 1;
}

.accordion-button.custom-accordion-button .arrow {
  background-color: #d82227;
  color: #fff;
  font-size: 18px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  flex-shrink: 0;
  margin-left: 10px;
  transform: rotate(0deg);
}

.accordion-button.custom-accordion-button:not(.collapsed) .arrow {
  transform: rotate(90deg);
}

.accordion-button.custom-accordion-button:hover .arrow {
  background-color: #a31a1f;
}

.accordion-button.custom-accordion-button::after {
  display: none;
}

.accordion-body.article-content {
  padding: 20px 0 20px 40px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.accordion-body.article-content .article-header {
  margin-bottom: 20px;
}

.accordion-body.article-content .pre-firmy {
  font-size: 14px;
  color: #d82227;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.accordion-body.article-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.accordion-body.article-content h4 {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin-bottom: 20px;
}

.accordion-body.article-content .bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.accordion-body.article-content .bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  border-bottom: none;
  display: list-item;
  align-items: flex-start;
  justify-content: flex-start;
}

.accordion-body.article-content .bullet-list li::before {
  content: '\2022';
  color: #d82227;
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
}

.accordion-body.article-content .contact-button-wrapper {
  margin-top: 30px;
}

.accordion-body.article-content .contact-button {
  background-color: #d82227;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-body.article-content .contact-button:hover {
  background-color: #a31a1f;
  color: #fff;
}

.accordion-body.article-content .contact-button .arrow-white {
  font-size: 20px;
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: var(--color-primary);
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.partner-logo {
  max-height: 100px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  z-index: 2;
  text-align: left;
  padding: 0 15px;
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  font-size: 56px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #c10c1a;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}

.carousel-item.active .hero h1::after {
  animation: draw-line 0.8s ease-out 0.7s forwards;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
  padding-bottom: 15px;
  max-width: 700px;
  text-align: left;
}
.btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c10c1a;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  overflow: hidden;
}

.btn-get-started .arrow-icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-get-started:hover {
  background: #a50b15;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-get-started:hover .arrow-icon {
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 16px;
  }
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-item h1,
.carousel-item p,
.carousel-item .btn-get-started {
  visibility: hidden;
}

.carousel-item.active h1,
.carousel-item.active p,
.carousel-item.active .btn-get-started {
  visibility: visible;
}

.animate__animated {
  --animate-duration: 1.4s;
}

.animate__fadeInUp {
  --animate-delay: 0.4s;
}
/* SEKCIA VEDENIE SPOLOČNOSTI - ÚPRAVY PRE IKONY NAMIESTO FOTO */
.vedenie-spolocnosti .person-icon-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 3px solid #e6223e;
}

.vedenie-spolocnosti .person-icon-wrapper:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.vedenie-spolocnosti .person-main-icon {
  font-size: 5rem;
  color: #ccc;
}

.vedenie-spolocnosti .person-social-links {
  margin-top: 10px;
}

.vedenie-spolocnosti .social-icon-visible {
  display: inline-block;
  font-size: 1.8rem;
  color: #e6223e;
  transition: color 0.3s ease;
}

.vedenie-spolocnosti .social-icon-visible:hover {
  color: darken(#e6223e, 15%);
}

.vedenie-spolocnosti .person-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: #333;
}

.vedenie-spolocnosti .person-position {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

@media (max-width: 767.98px) {
  .vedenie-spolocnosti .person-icon-wrapper {
    width: 120px;
    height: 120px;
  }
  .vedenie-spolocnosti .person-main-icon {
    font-size: 4rem;
  }
  .vedenie-spolocnosti .social-icon-visible {
    font-size: 1.5rem;
  }
}
/* =====================
   KONTAKTNÉ INFORMÁCIE
   ===================== */
.contact-info {
  background-color: #ffffff; /* Biela farba pozadia */
  color: #333; /* Predvolená farba textu */
}

.contact-info .contact-column-styled {
  padding: 15px;
}

.contact-info .contact-heading-styled {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

.contact-info .contact-text-styled {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.contact-info .map-link-styled,
.contact-info .contact-phone-styled,
.contact-info .contact-email-styled {
  font-size: 1rem;
  color: #e6223e; /* Červená farba, ako na screenshote (použi premennú, ak máš) */
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.contact-info .map-link-styled:hover,
.contact-info .contact-phone-styled:hover,
.contact-info .contact-email-styled:hover {
  color: darken(#e6223e, 15%); /* Jemne tmavšia pri hover */
  text-decoration: underline;
}

.contact-info .contact-time-styled {
  font-size: 1rem;
  color: #555;
  display: block;
  margin-top: 5px;
}

.contact-info .linkedin-box-styled {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 20px;
}

.contact-info .linkedin-icon-link-styled {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid #e6223e;
  border-radius: 50%;
  margin-right: 15px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-info .linkedin-icon-link-styled:hover {
  background-color: #e6223e;
  border-color: #e6223e;
}

.contact-info .linkedin-icon-link-styled .fab {
  font-size: 2rem;
  color: #e6223e;
  transition: color 0.3s ease;
}

.contact-info .linkedin-icon-link-styled:hover .fab {
  color: #ffffff;
}

.contact-info .linkedin-text-styled {
  font-size: 1.1rem;
  color: #555;
}

.contact-info .contact-divider-styled {
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

/* RESPONZÍVNE ÚPRAVY */
@media (max-width: 767.98px) {
  .contact-info .contact-column-styled {
    text-align: center;
  }
  .contact-info .linkedin-box-styled {
    flex-direction: column;
    margin-top: 20px;
    padding-left: 0;
  }
  .contact-info .linkedin-icon-link-styled {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* NAŠE POBOČKY */
.nase-pobocky {
  background-color: #f8f8f8;
  color: #333;
}

.nase-pobocky .accordion-item {
  border: none;
  margin-bottom: 10px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.nase-pobocky .accordion-header {
  background-color: #ffffff;
}

.nase-pobocky .accordion-button {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  padding: 1.2rem 1.5rem;
  background-color: #ffffff;
  border-radius: 4px !important;
  transition: background-color 0.2s ease;
}

.nase-pobocky .accordion-button:not(.collapsed) {
  color: #333;
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.nase-pobocky .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.nase-pobocky .pobocka-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e6223e;
  margin-right: 15px;
  width: 40px;
  flex-shrink: 0;
}

.nase-pobocky .accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6223e'%3e%3cpath d='M8 15A7 7 0 0 1 1 8a7 7 0 0 1 7-7zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e") !important;
  background-size: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.nase-pobocky .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e6223e'%3e%3cpath d='M8 15A7 7 0 0 1 1 8a7 7 0 0 1 7-7zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e") !important;
  transform: rotate(0deg);
}

.nase-pobocky .pobocka-content {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.nase-pobocky .pobocka-content p {
  margin-bottom: 5px;
}

.nase-pobocky .pobocka-content .map-link-accordion {
  color: #e6223e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.nase-pobocky .pobocka-content .map-link-accordion:hover {
  color: darken(#e6223e, 15%);
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .nase-pobocky .accordion-button {
    font-size: 1.1rem;
    padding: 1rem;
  }
  .nase-pobocky .pobocka-number {
    font-size: 1.3rem;
    margin-right: 10px;
    width: 30px;
  }
  .nase-pobocky .accordion-button:after {
    background-size: 1.2rem;
  }
}

/* SEKCIA DÔLEŽITÉ KONTAKTY A ODDELENIA */
.dolezite-kontakty {
  background-color: #ffffff;
  color: var(--text-color-dark);
}

.dolezite-kontakty .section-top-label {

}

.dolezite-kontakty .section-main-heading {

}

.dolezite-kontakty .person-contact-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.dolezite-kontakty .person-contact-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dolezite-kontakty .contact-person-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.dolezite-kontakty .person-info .person-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.dolezite-kontakty .person-info .person-position {
  font-size: 0.9rem;
  color: #666;
  margin-top: -3px;
}

.dolezite-kontakty .person-info .contact-email-link {
  font-size: 0.95rem;
  color: #e6223e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dolezite-kontakty .person-info .contact-email-link:hover {
  color: darken(#e6223e, 15%);
  text-decoration: underline;
}

.dolezite-kontakty .department-card {
  background-color: #f8f8f8;
  border-left: 4px solid #e6223e;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dolezite-kontakty .department-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.dolezite-kontakty .department-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.dolezite-kontakty .department-contact-item {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.dolezite-kontakty .department-contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dolezite-kontakty .department-contact-item a:hover {
  color: #e6223e;
}

.dolezite-kontakty .department-hours {
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

@media (max-width: 767.98px) {
  .dolezite-kontakty .person-contact-card {
    flex-direction: column;
    text-align: center;
  }
  .dolezite-kontakty .contact-person-photo {
    margin-right: 0 !important;
    margin-bottom: 15px;
  }
  .dolezite-kontakty .department-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(168, 3, 3, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}