/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1e4356; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #D32F2F; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out (changed to red) */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
--nav-hover-color: #D32F2F; /* Applied to main navmenu links when they are hovered over or active (red) */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
--nav-dropdown-hover-color: #D32F2F; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #111111;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--contrast-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /*font-family: var(--heading-font);*/
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #000000;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  margin-right: 10px;
  font-size: 48px;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

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

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

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero .carousel-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  z-index: 3;
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
  display: block;
}

.hero p {
  width: 80%;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  animation: fadeInDown 1s both 0.2s;
}

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

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: var(--default-color);
  animation: fadeInUp 1s both 0.4s;
  border: 2px solid var(--accent-color);
  text-align: center;
  margin-top: 8px;
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }

  .hero .carousel-container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters 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;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

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

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

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

.portfolio .portfolio-content {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-content .portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

.portfolio .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;
}

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

.portfolio .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);
}

.portfolio .portfolio-content .portfolio-info .preview-link {
  position: absolute;
  /*left: calc(50% - 40px);*/
  /*font-size: 26px;*/
  /*top: calc(50% - 14px);*/
  /*position: absolute;*/
  top: 50%;
  left: 50%;
  /*font-size: 26px;*/
  transform: translate(-50%, -50%);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.portfolio .portfolio-content .portfolio-info .details-link i {
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .details-link span {
  margin-top: 8px;
  /*font-size: 8px;*/
  line-height: 1;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover {
  color: var(--accent-color);
}

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

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

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

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

.team .member .member-img {
  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: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

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

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

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  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;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

/* Mobile: ensure carousel text is bright and readable */
@media (max-width: 767px) {
    #hero .carousel-container,
    #hero .carousel-container h2,
    #hero .carousel-container p,
    #hero .carousel-container .btn-get-started {
        color: var(--contrast-color) !important; /* usually white */
    }

    #hero .carousel-container h2, #hero .carousel-container p {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }
}

#hero, #hero-carousel, #hero .carousel, #hero .carousel-inner, #hero .carousel-item {
    height: 70vh !important;
    min-height: 420px; /* fallback */
}

#hero .carousel-item {
    position: relative;
}

/* Dark transparent overlay on carousel images */
#hero .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* darker transparent filter */
    z-index: 1;
}

#hero .carousel-item img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0;
}

#hero .carousel-container {
    position: absolute;
    /* ensure container doesn't overlap prev/next zones: push it right of controls */
    left: clamp(80px, 6%, 120px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 33.3333%; /* one third */
    max-width: 520px;
    min-width: 260px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* On small screens stack naturally above image */
@media (max-width: 767px) {
    #hero .carousel-container {
        position: relative; /* keep positioned so z-index works */
        left: auto; /* remove left offset */
        margin: 0 auto; /* center horizontally */
        transform: none;
        width: 100%;
        max-width: none;
        min-width: auto;
        padding: 12px;
        align-items: center;
        text-align: center;
        z-index: 6; /* ensure above overlay */
    }
}

@media (max-width: 768px) {
    #hero, #hero-carousel, #hero .carousel-item {
        height: 55vh !important;
    }
}

.map-container {
    width: 100%;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0;
}

.map-content {
    position: relative;
    z-index: 2;
    min-height: 600px;

    display: flex;
    align-items: center;
}

.map-content .row {
    width: 100%;
}

.contact-box {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px;
    border-radius: 4px;
    margin: 40px;
}

#contact {
    padding: 0 !important;
}

.contact-box .bi {
    font-size: 24px;
}

.contact-box a {
    color:  var(--accent-color);
}


.page-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #434343;

    display: flex;
    align-items: center;
}

.page-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
            radial-gradient(
                    ellipse at center,
                    rgba(0,0,0,0) 22%,
                    rgba(0,0,0,.18) 36%,
                    rgba(0,0,0,.55) 58%,
                    rgba(0,0,0,.88) 100%
            ),
            linear-gradient(
                    90deg,
                    rgba(0,0,0,1) 0%,
                    rgba(0,0,0,.95) 28%,
                    rgba(0,0,0,.55) 45%,
                    rgba(0,0,0,.55) 55%,
                    rgba(0,0,0,.95) 72%,
                    rgba(0,0,0,1) 100%
            );
    z-index: 1;
}

@media (max-width: 768px) {

    .page-banner-overlay {

        background:
                linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
                radial-gradient(
                        ellipse at center,
                        rgba(0,0,0,0) 18%,
                        rgba(0,0,0,.20) 35%,
                        rgba(0,0,0,.55) 60%,
                        rgba(0,0,0,.82) 100%
                ),
                linear-gradient(
                        90deg,
                        rgba(0,0,0,.95) 0%,
                        rgba(0,0,0,.70) 18%,
                        rgba(0,0,0,.22) 38%,
                        rgba(0,0,0,.22) 62%,
                        rgba(0,0,0,.70) 82%,
                        rgba(0,0,0,.95) 100%
                );

    }

}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.training-content {
    /*width: 500px;*/
    margin: 0 auto;
    text-align: left;
}

.portfolio .portfolio-content .portfolio-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 15px 20px;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    font-size: 18px;
    font-weight: 600;
}

.portfolio-desc-blok {
    height: 120px;
    overflow: hidden;
}

.portfolio-desc {
    line-height: 24px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;

    overflow: hidden;
}

.section-min-height {
    min-height: 700px;
}

/*.logo-size{*/
/*  height: 200px;*/
/*}*/

.content-image {
    height: 200px;
    object-fit: contain;
    display: block;
}

.red-marker {
    font-size: 32px;
    color: #dc3545;
    padding-right: 8px;
}

.training-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.training-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

.training-age {
    display: inline-block;
    background: #e6453a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
    margin-bottom: 18px;
}

.training-title {
    font-size: 36px;
    font-weight: 700;
    color: #182433;
    margin-bottom: 14px;
}

.training-title-line,
.training-schedule-line {
    width: 60px;
    height: 4px;
    background: #e6453a;
    border-radius: 10px;
    margin-bottom: 25px;
}

.training-card p {
    color: #59636f;
    line-height: 1.8;
}


/* BENEFITS */

.training-benefits {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid #eee;
}

.training-benefit {
    display: flex;
    align-items: center;
    gap: 18px;
}

.training-benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: rgba(230, 69, 58, 0.1);
    color: #e6453a;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;
}

.training-benefit h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #182433;
    margin-bottom: 5px;
}

.training-benefit p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}


/* SCHEDULE */

.training-schedule {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.training-schedule h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #182433;
}

.training-schedule-line {
    margin-top: 12px;
}

.training-schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    align-items: center;

    padding: 15px 20px;

    border: 1px solid #eee;
    border-radius: 8px;

    margin-bottom: 8px;

    transition: all 0.2s ease;
}

.training-schedule-row:hover {
    border-color: #e6453a;
    transform: translateY(-1px);
}

.schedule-day,
.schedule-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.schedule-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;

    background: #e6453a;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-info i {
    font-size: 25px;
    color: #e6453a;
}


/* MOBILE */

@media (max-width: 767px) {

    .training-image {
        height: 280px;
    }

    .training-title {
        font-size: 28px;
    }

    .training-schedule-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}

/*****galery */

.gallery-section {
    padding: 60px 0 80px;
    background: #fff;
}


/* FILTER */

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 0;
    margin: 0 0 40px;

    list-style: none;
}

.gallery-filters li {
    min-width: 115px;

    padding: 10px 25px;

    border: 1px solid #ddd;
    border-radius: 50px;

    color: #182433;

    font-size: 15px;
    font-weight: 600;
    text-align: center;

    cursor: pointer;

    transition: all 0.25s ease;
}

.gallery-filters li:hover {
    color: #e6453a;
    border-color: #e6453a;
}

.gallery-filters li.filter-active {
    color: #fff;
    background: #e6453a;
    border-color: #e6453a;
}


/* CARD */

.gallery-card {
    height: 100%;

    background: #fff;

    border: 1px solid #eee;
    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* IMAGE */

.gallery-card-image {
    position: relative;

    display: block;

    height: 265px;

    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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


/* DATE */

.gallery-date {
    position: absolute;

    left: 16px;
    bottom: 0;

    padding: 7px 17px;

    background: #e6453a;
    color: #fff;

    border-radius: 6px 6px 0 0;

    font-size: 12px;
    font-weight: 700;
}


/* BODY */

.gallery-card-body {
    display: flex;
    flex-direction: column;

    min-height: 210px;

    padding: 22px;
}

.gallery-card-title {
    margin: 0 0 12px;

    color: #182433;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.gallery-card-description {
    margin-bottom: 22px;

    color: #59636f;

    font-size: 14px;
    line-height: 1.65;
}


/* LINK */

.gallery-card-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    width: fit-content;

    margin-top: auto;

    padding: 9px 16px;

    border: 1px solid #ddd;
    border-radius: 6px;

    color: #e6453a;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;
}

.gallery-card-link i {
    transition: transform 0.25s ease;
}

.gallery-card-link:hover {
    color: #fff;

    background: #e6453a;
    border-color: #e6453a;
}

.gallery-card-link:hover i {
    transform: translateX(4px);
}


/* TABLET */

@media (max-width: 991px) {

    .gallery-card-image {
        height: 240px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .gallery-section {
        padding: 40px 0 60px;
    }

    .gallery-filters {
        gap: 6px;

        margin-bottom: 30px;
    }

    .gallery-filters li {
        min-width: auto;

        padding: 8px 18px;

        font-size: 14px;
    }

    .gallery-card-image {
        height: 230px;
    }

    .gallery-card-body {
        min-height: auto;

        padding: 20px;
    }

}

.gallery-hidden-images {
    display: none;
}

/* GLIGHTBOX TITLE */

.glightbox-clean .gslide-title {
    margin: 0 0 12px;

    color: #182433;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}


/* GLIGHTBOX DESCRIPTION */

.glightbox-clean .gslide-desc {
    margin: 0;

    color: #59636f;

    font-size: 14px;
    line-height: 1.65;
}

/* HEADER */

.faq-header {
    max-width: 800px;
    margin: 0 auto 45px;
}

.faq-label {
    display: block;

    margin-bottom: 12px;

    color: #e6453a;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.faq-header h2 {
    margin: 0;

    color: #182433;

    font-size: 38px;
    font-weight: 700;
}

.faq-title-line {
    width: 55px;
    height: 3px;

    margin: 20px auto;

    background: #e6453a;

    border-radius: 10px;
}

.faq-header p {
    margin: 0;

    color: #7a828b;

    font-size: 15px;
}


/* ACCORDION */

.faq-accordion {
    max-width: 1050px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 8px;

    overflow: hidden;

    margin-bottom: 8px;

    background: #fff;

    transition: border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(230, 69, 58, 0.2);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}


/* BUTTON */

.faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 17px 20px;

    background: #fff;
    color: #182433;

    font-size: 17px;
    font-weight: 700;

    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(230, 69, 58, 0.04);
    color: #182433;
}

.faq-accordion .accordion-button:focus {
    border: 0;
    box-shadow: none;
}


/* REMOVE BOOTSTRAP ARROW */

.faq-accordion .accordion-button::after {
    width: 16px;
    height: 16px;

    margin-left: auto;

    background-image: none;

    border-right: 2px solid #e6453a;
    border-bottom: 2px solid #e6453a;

    transform: rotate(45deg);

    transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(225deg);
}


/* RED ICON */

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    min-width: 36px;

    border-radius: 50%;

    background: #e6453a;
    color: #fff;

    font-size: 16px;
}


/* BODY */

.faq-accordion .accordion-body {
    padding: 0 75px 22px;

    background: rgba(230, 69, 58, 0.04);

    color: #59636f;

    font-size: 15px;
    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 767px) {

    .faq-section {
        padding: 45px 0 65px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h2 {
        font-size: 29px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-accordion .accordion-button {
        gap: 14px;

        padding: 15px;

        font-size: 15px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .faq-accordion .accordion-body {
        padding: 0 62px 20px;

        font-size: 14px;
    }

}

.baby-judo-section {
    padding: 60px 0 90px;
    background: #fff;
}


/* HEADER */

.baby-judo-header {
    max-width: 850px;
    margin: 0 auto 55px;
}

.baby-judo-header h1 {
    margin: 0;

    color: #182433;

    font-size: 38px;
    font-weight: 700;
}

.baby-judo-title-line,
.baby-judo-line {
    width: 55px;
    height: 3px;

    background: #e6453a;

    border-radius: 10px;
}

.baby-judo-title-line {
    margin: 20px auto;
}

.baby-judo-header p {
    margin: 0;

    color: #59636f;

    font-size: 15px;
    line-height: 1.7;
}


/* ROW */

.baby-judo-row {
    max-width: 1200px;

    margin: 0 auto 40px;

    border: 1px solid #eee;
    border-radius: 14px;

    overflow: hidden;

    background: #fff;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    transition: transform 0.3s ease,
    box-shadow 0.3s ease;
}

.baby-judo-row:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* IMAGE */

.baby-judo-image {
    width: 100%;
    height: 100%;
    min-height: 390px;

    overflow: hidden;
}

.baby-judo-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.baby-judo-row:hover .baby-judo-image img {
    transform: scale(1.04);
}


/* CONTENT */

.baby-judo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;

    padding: 50px;
}

.baby-judo-content-intro {
    font-size: 17px;
}

.baby-judo-content-intro img{
    max-width: 150px;
    height: auto;
}

.baby-judo-content h2 {
    margin: 0;

    color: #182433;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.baby-judo-line {
    margin: 18px 0 25px;
}

.baby-judo-content p {
    margin-bottom: 18px;

    color: #59636f;

    font-size: 15px;
    line-height: 1.8;
}


/* PRICE */

.baby-judo-price {
    display: flex;
    align-items: stretch;

    margin: 10px 0 25px;

    padding: 20px;

    background: rgba(230, 69, 58, 0.05);

    border-radius: 10px;
}

.baby-judo-price-item {
    flex: 1;

    text-align: center;
}

.baby-judo-price-item span {
    display: block;

    margin-bottom: 8px;

    color: #59636f;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
}

.baby-judo-price-item strong {
    display: inline-block;

    color: #e6453a;

    font-size: 30px;
    font-weight: 700;
}

.baby-judo-price-item small {
    color: #59636f;

    font-size: 13px;
}

.baby-judo-price-divider {
    width: 1px;

    margin: 0 25px;

    background: rgba(230, 69, 58, 0.2);
}


/* TABLET */

@media (max-width: 991px) {

    .baby-judo-row {
        max-width: 700px;

        margin-bottom: 30px;
    }

    .baby-judo-image {
        height: 380px;
        min-height: auto;
    }

    .baby-judo-content {
        padding: 40px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .baby-judo-section {
        padding: 45px 0 65px;
    }

    .baby-judo-header {
        margin-bottom: 35px;
    }

    .baby-judo-header h1 {
        font-size: 30px;
    }

    .baby-judo-row {
        margin-bottom: 25px;

        border-radius: 10px;
    }

    .baby-judo-image {
        height: 260px;
    }

    .baby-judo-content {
        padding: 28px 22px;
    }

    .baby-judo-content h2 {
        font-size: 24px;
    }

    .baby-judo-content p {
        font-size: 14px;
    }

    .baby-judo-price {
        flex-direction: column;

        gap: 20px;
    }

    .baby-judo-price-divider {
        width: 100%;
        height: 1px;

        margin: 0;
    }

}

.baby-judo-video {
    width: 100%;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
}

.baby-judo-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
}

@media (max-width: 991px) {
    .baby-judo-video,
    .baby-judo-video iframe {
        height: 380px;
        min-height: 380px;
    }
}

@media (max-width: 575px) {
    .baby-judo-video,
    .baby-judo-video iframe {
        height: 260px;
        min-height: 260px;
    }
}

.donate-section {
    padding: 60px 0 90px;

    background: #fff;
}


/* INTRO */

.donate-intro {
    display: flex;
    align-items: center;
    gap: 45px;

    max-width: 1150px;

    margin: 0 auto 45px;
}

.donate-intro-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 150px;
    height: 150px;
    min-width: 150px;

    border-radius: 50%;

    background: rgba(230, 69, 58, 0.08);

    color: #e6453a;
}

.donate-intro-icon i {
    font-size: 85px;
}

.donate-intro-icon span {
    position: absolute;

    font-size: 24px;
    font-weight: 700;
}

.donate-intro-content p {
    margin-bottom: 20px;

    color: #59636f;

    font-size: 16px;
    line-height: 1.8;
}

.donate-intro-content p:last-child {
    margin-bottom: 0;
}

.donate-intro-content .donate-lead {
    color: #182433;

    font-size: 18px;
    font-weight: 600;
}


/* PROCEDURE */

.donate-procedure {
    display: flex;
    align-items: center;

    max-width: 1150px;

    margin: 0 auto 45px;
    padding: 30px 45px;

    border: 1px solid rgba(230, 69, 58, 0.15);
    border-radius: 12px;

    background: rgba(230, 69, 58, 0.035);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.donate-procedure-info {
    display: flex;
    align-items: center;
    gap: 25px;

    min-width: 380px;
}

.donate-procedure-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;
    min-width: 55px;

    border-radius: 50%;

    background: #e6453a;
    color: #fff;

    font-size: 28px;
}

.donate-procedure-info h2 {
    margin: 0 0 7px;

    color: #182433;

    font-size: 18px;
    font-weight: 700;

    text-transform: uppercase;
}

.donate-procedure-info p {
    margin: 0;

    color: #59636f;

    font-size: 15px;
}

.donate-procedure-divider {
    width: 1px;
    height: 70px;

    margin: 0 45px;

    background: #d9dde1;
}


/* LINK */

.donate-procedure-link {
    display: flex;
    align-items: center;
    gap: 22px;

    flex: 1;

    color: #e6453a;

    text-decoration: none;

    transition: color 0.25s ease;
}

.donate-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;
    min-width: 55px;

    border-radius: 50%;

    background: rgba(230, 69, 58, 0.1);

    font-size: 28px;
}

.donate-link-text {
    flex: 1;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.donate-external-icon {
    font-size: 22px;

    transition: transform 0.25s ease;
}

.donate-procedure-link:hover {
    color: #c9362d;
}

.donate-procedure-link:hover .donate-external-icon {
    transform: translate(3px, -3px);
}


/* THANKS */

.donate-thanks {
    position: relative;

    max-width: 1150px;

    margin: 0 auto;
    padding: 55px 40px 35px;

    border: 1px solid rgba(230, 69, 58, 0.15);
    border-radius: 12px;

    background: rgba(230, 69, 58, 0.035);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

    text-align: center;
}

.donate-thanks-icon {
    position: absolute;

    top: 0;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #fff;
    color: #e6453a;

    font-size: 28px;

    transform: translate(-50%, -50%);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.donate-thanks h2 {
    margin: 0 0 12px;

    color: #182433;

    font-size: 27px;
    font-weight: 700;

    text-transform: uppercase;
}

.donate-thanks p {
    max-width: 650px;

    margin: 0 auto;

    color: #59636f;

    font-size: 15px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 991px) {

    .donate-intro {
        gap: 30px;
    }

    .donate-intro-icon {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }

    .donate-intro-icon i {
        font-size: 70px;
    }

    .donate-procedure {
        padding: 30px;
    }

    .donate-procedure-info {
        min-width: 300px;
    }

    .donate-procedure-divider {
        margin: 0 30px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .donate-section {
        padding: 45px 0 65px;
    }

    .donate-intro {
        flex-direction: column;

        gap: 25px;

        margin-bottom: 35px;

        text-align: center;
    }

    .donate-intro-icon {
        width: 110px;
        height: 110px;
        min-width: 110px;
    }

    .donate-intro-icon i {
        font-size: 65px;
    }

    .donate-intro-icon span {
        font-size: 20px;
    }

    .donate-intro-content .donate-lead {
        font-size: 17px;
    }

    .donate-intro-content p {
        font-size: 14px;
    }


    /* PROCEDURE */
    .donate-procedure {
        flex-direction: column;
        align-items: stretch;

        gap: 25px;

        margin-bottom: 45px;
        padding: 25px;
    }

    .donate-procedure-info {
        min-width: 0;
    }

    .donate-procedure-divider {
        width: 100%;
        height: 1px;

        margin: 0;
    }

    .donate-procedure-link {
        gap: 15px;
    }

    .donate-link-text {
        font-size: 14px;
    }

    .donate-external-icon {
        font-size: 18px;
    }


    /* THANKS */
    .donate-thanks {
        padding: 55px 25px 30px;
    }

    .donate-thanks h2 {
        font-size: 24px;
    }

    .donate-thanks p {
        font-size: 14px;
    }

}

.baby-judo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;

    padding: 13px 25px;

    background: #e6453a;
    color: #fff;

    border: 2px solid #e6453a;
    border-radius: 6px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.baby-judo-btn:hover {
    background: #c9362d;
    color: #fff;

    border-color: #c9362d;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(230, 69, 58, 0.25);
}

.baby-judo-btn i {
    transition: transform 0.25s ease;
}

.baby-judo-btn:hover i {
    transform: translateX(4px);
}

.baby-judo-faq-accordion {
    padding: 50px;
}


/*******/
.hero-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

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

    filter: brightness(.55);
}

/* Tmavé boky */

.hero-image::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, .95) 0%,
            rgba(0, 0, 0, .75) 18%,
            rgba(0, 0, 0, .15) 42%,
            rgba(0, 0, 0, .15) 58%,
            rgba(0, 0, 0, .75) 82%,
            rgba(0, 0, 0, .95) 100%
    );

    z-index: 1;
}

/* Vineta okolo stredu */

.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0) 22%,
            rgba(0, 0, 0, .18) 36%,
            rgba(0, 0, 0, .55) 58%,
            rgba(0, 0, 0, .88) 100%
    );

    z-index: 2;
}

.hero-content {
    position: absolute;

    left: 80px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 3;

    color: #fff;

    max-width: 500px;
}

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #e6453a;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0;

    font-size: 64px;
    font-weight: 800;

    line-height: 1;
}

.hero-line {
    width: 65px;
    height: 4px;

    margin: 22px 0;

    background: #e6453a;

    border-radius: 20px;
}

.breadcrumbs {
    font-size: 18px;

    color: rgba(255, 255, 255, .75);
}

.breadcrumbs span {
    color: #e6453a;
}

.partners {
    padding: 80px 0;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 170px;

    padding: 30px;

    background: #fff;

    border: 1px solid #ececec;
    border-radius: 12px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,.05);

    transition: .3s;
}

.partner-card:hover {
    transform: translateY(-6px);

    border-color: rgba(230,69,58,.25);

    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.partner-card img {
    max-width: 170px;
    max-height: 90px;

    width: auto;
    height: auto;

    transition: .3s;
}

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