@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #F5F5DC;
  --secondary-color: #44525d;
  --lightblue-color: #48A6A7;
  --section-bg-color: #f0f8ff;
  --site-footer-bg-color: #44525d;
  --custom-btn-bg-color: #597081;
  --custom-btn-bg-hover-color: #F5F5DC;
  --dark-color: #000000;
  --p-color: #2A4759;
  --border-color: #e9eaeb;
  --title-color: #27548A;

  --body-font-family: 'Montserrat', sans-serif;

  --h1-font-size: 52px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 16px;
  --btn-font-size: 18px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h2 {
  color: var(--secondary-color);
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  color: var(--primary-color);
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  DIV ANIMATIONS               
-----------------------------------------*/

.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade {
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), visibility 2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: none;
}

/* Animációs irányok */
.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

.animate-top {
  transform: translateY(-50px);
}

.animate-bottom {
  transform: translateY(50px);
}

.animate-fade {
  transform: none;
}

/* Aktivált animáció */
.animate-on-scroll.animate {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

/* Opcionális: késleltetés */
[data-delay] {
  transition-delay: var(--delay);
}

/* 
---------------------------------------------
cookie
--------------------------------------------- 
*/
.cookie-popup {
  position: fixed;
  background: #fff;
  padding: 20px;
  box-shadow: rgba(255, 255, 255, 0.9) 0px 5px 15px;
  z-index: 9999;
  display: none;
  border: 1px solid #44525d;
}

.cookie-popup p {
  color: #44525d;
  font-size: 12px;
  font-weight: 500;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
}

@media (min-width: 768px) {
  .cookie-popup {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    border-radius: 10px;
  }
}

@media (max-width: 767px) {
  .cookie-popup {
    bottom: 0;
    width: 100%;
    border-radius: 0;
  }
}

#cookieAccept {
  background: #44525d;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  padding: 8px 15px;
  margin: 10px auto 0 auto;
  border-radius: 10px;
  display: block;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.section-overlay+.container {
  position: relative;
}

/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.custom-block-wrap:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.custom-block-body {
  padding: 30px;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-block .custom-btn {
  border-radius: 0;
  display: block;
}

/*---------------------------------------
  PROGRESS BAR               
-----------------------------------------*/
.progress {
  background: var(--border-color);
  height: 5px;
}

.progress-bar {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM LIST               
-----------------------------------------*/
.custom-list {
  margin-bottom: 0;
  padding-left: 0;
}

.custom-list-item {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*---------------------------------------
  CUSTOM TEXT BOX               
-----------------------------------------*/
.custom-text-box {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 40px;
}

.custom-text-box-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-text-box-icon {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--h6-font-size);
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  line-height: 30px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  color: var(--custom-btn-bg-color);
  margin-top: 8px;
  padding: 10px 25px !important;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: var(--secondary-color);
  border: 3px solid var(--secondary-color);
  color: var(--white-color) !important;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: var(--secondary-color);
  color: var(--dark-color) !important;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: url('../images/background/beton.png') no-repeat center center fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 9;
  padding-top: 32px;
  padding-bottom: 32px;
}

.navbar-nav {
  align-items: center;
}

.container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  color: #123458;
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand span {
  display: flex !important;
  flex-direction: column;
  line-height: 1.2;
  font-size: 1.8rem;
  font-weight: 700;
  color: #123458;
}

.navbar-brand small {
  color: #123458;
  display: block;
  font-size: 0.65rem !important;
  letter-spacing: 1.5px;
  line-height: normal;
  text-transform: uppercase;
}

.navbar-brand .logo {
  width: 160px !important;
  height: auto;
  display: inline-block;
  margin: 0 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: #123458;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link {
  position: relative;
  padding-bottom: 2px !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(1);
  width: 80%;
  height: 3px;
  background: #000;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--p-color);
}

@media screen and (min-width: 992px) {

  /* --- Shrink effektus CSAK ASZTALIN --- */
  .navbar {
    padding-top: 32px;
    padding-bottom: 32px;
    transition: padding 0.3s cubic-bezier(.4, 0, .2, 1), background 0.3s;
  }

  .logo {
    width: 100px;
    transition: width 0.3s cubic-bezier(.4, 0, .2, 1);
  }

  .navbar.navbar-shrink {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar.navbar-shrink .logo {
    width: 60px;
  }

}

/* --- Toggler gomb (MOBIL) --- */
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
  margin-right: 10px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

@media (max-width: 1549px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 35px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-brand {
    font-size: 1.3rem;
    padding-right: 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .navbar-brand .logo {
    width: 100px !important;
    height: auto;
    margin-right: 0.1rem !important;
    transition: width 0.3s;
  }

  .navbar-brand span {
    font-size: 1.5rem;
    line-height: 1.1;
    display: inline-block;
  }

  .navbar-brand small {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
}


@media (max-width: 1224px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }

  .navbar-nav .nav-link {
    font-size: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-brand {
    font-size: 1rem;
    padding-right: 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .navbar-brand .logo {
    width: 80px !important;
    height: auto;
    margin-right: 0.1rem !important;
    transition: width 0.3s;
  }

  .navbar-brand span {
    font-size: 0.95rem;
    line-height: 1.1;
    display: inline-block;
  }

  .navbar-brand small {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 991.98px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }

  .navbar-brand {
    font-size: 1rem;
    padding-right: 0.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .navbar-brand .logo {
    width: 80px !important;
    height: auto;
    margin-right: 0.1rem !important;
    transition: width 0.3s;
  }

  .navbar-brand span {
    font-size: 0.95rem;
    line-height: 1.1;
    display: inline-block;
  }

  .navbar-brand small {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 22px !important;
    font-size: 18px;
  }
}

@media (max-width: 333px) {
  .container-fluid {
    padding-left: 2px;
    padding-right: 2px;
  }

  .navbar-brand {
    font-size: 0.4rem !important;
    padding-right: 0.1rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .navbar-brand .logo {
    width: 60px !important;
    height: auto;
    margin-right: 0.5rem;
    transition: width 0.3s;
  }

  .navbar-brand span {
    font-size: 0.75rem;
    line-height: 0.8;
    display: inline-block;
  }

  .navbar-brand small {
    font-size: 0.4rem;
    letter-spacing: 0.1px;
  }

  .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 20px !important;
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    height: 65vh;
    overflow-y: auto;
  }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--dark-color);
  padding-top: 15px;
  padding-bottom: 10px;
}

.site-header .row {
  display: flex;
  align-items: center;
  min-height: 50px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: #F5F5DC;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.site-header a:hover {
  color: var(--lightblue-color);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent !important;
  font-size: 1rem;
  border: none !important;
  box-shadow: none !important;
  transition: color 0.3s;
}

.site-header .social-icon-link:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--lightblue-color);
}

@media (max-width: 991px) {
  .site-header {
    display: none;
  }
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/background/hero.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section::after {
  content: "";
  background: linear-gradient(90deg, #bfc2c7 0%, #e6e8eb 50%, #f8f8f8 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.65;
  z-index: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-section .container {
  position: relative;
  min-height: 600px;
  z-index: 2;
}

.hero-section span {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
}

.hero-glass-box-abs {
  position: absolute;
  left: 30px;
  top: -80px;
  z-index: 3;
  max-width: 500px;
  width: 100%;
}

.hero-glass-box {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  padding: 4.5rem;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6vh;
}

.hero-glass-box p {
  font-weight: var(--font-weight-semibold);
}

.hero-logo-abs {
  position: absolute;
  bottom: 100px;
  right: 30px;
  z-index: 3;
}

.hero-logo-img {
  max-width: 460px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-section h1 {
  color: var(--secondary-color);
  font-size: 4em;
}

.hero-section .hero-text {
  text-align: center;
}

.hero-section .about-btn {
  font-size: var(--p-font-size);
}

.hero-section .about-btn:hover {
  border: 2px solid var(--secondary-color);
  color: var(--p-color);
  font-weight: var(--font-weight-semibold);
}

.hero-section a {
  font-weight: 500;
  text-transform: uppercase;
}

/* MOBIL nézet */
@media (max-width: 991px) {
  .hero-section {
    background-attachment: scroll;
    background-position: center center;
  }

  .hero-section .container {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.5rem 1rem;
    gap: 1.5rem;
  }

  .hero-glass-box-abs {
    position: static;
    max-width: 95vw;
    margin-top: -4.5rem;
  }

  .hero-glass-box {
    padding: 1rem 0.4rem !important;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .hero-logo-abs {
    position: static;
    max-width: 300px;
  }

  .hero-logo-img {
    max-width: 70%;
    margin-top: 0.1rem;
    margin: 0 auto;
  }

  .hero-section .text-brown {
    font-size: 0.9em;
    text-align: center;
  }
}

/*---------------------------------------
  PILATES BLOCK              
-----------------------------------------*/
.reformer-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem;
  max-width: 1450px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.reformer-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.reformer-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
  min-width: 220px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 1px solid #44525d;
  overflow: hidden;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#reformer-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  pointer-events: none;
  background: linear-gradient(90deg, #bfc2c7 0%, #e6e8eb 50%, #f8f8f8 100%);
  opacity: 0.45;
  z-index: 2;
}

.reformer-right {
  font-size: 1rem;
  color: #222;
  max-width: 1050px;
  flex: 2;
  min-width: 320px;
}

.reformer-right h2 {
  color: var(--title-color);
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.reformer-right h3 {
  color: var(--title-color);
  font-size: 1.1rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.reformer-right p {
  margin-bottom: 1em;
  line-height: 1.6;
  color: var(--p-color);
  font-weight: var(--font-weight-normal);
  text-align: justify;
}

.modern-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.modern-list li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.5;
}

.modern-list li::before {
  content: '';
  position: absolute;
  left: 0.5em;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background: var(--custom-btn-bg-color);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(40, 92, 49, 0.13);
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 1px solid #44525d;
  overflow: hidden;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.reformer-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #bfc2c7 0%, #e6e8eb 50%, #f8f8f8 100%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 2;
}

.second-row {
  flex-direction: row-reverse;
  margin-top: 30px;
}

/* Reszponzív: egymás alá mobilon */
@media (max-width: 850px) {
  .second-row {
    flex-direction: column;
  }

  .reformer-section {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .reformer-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .reformer-left,
  .reformer-right {
    max-width: 100%;
    min-width: 0;
  }
}

/*---------------------------------------
  DIVIDER HR            
-----------------------------------------*/
.skew-divider {
  width: 100%;
  height: 20px;
  background-color: var(--secondary-color);
  transform-origin: top left;
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: scaleX(0) skewY(3deg);
  transition: opacity 0.6s ease, transform 1.4s ease;
}

/* Felső vonal – balról jobbra felfelé */
.top-divider {
  transform: scaleX(0) skewY(3deg);
  margin-bottom: -45px !important;
  z-index: 3;
}

.top-divider2 {
  transform: scaleX(0) skewY(3deg);
  margin-bottom: 50px;
  margin-top: -110px !important;
  z-index: 3;
}

/* Alsó vonal – balról jobbra lefelé */
.bottom-divider {
  transform: scaleX(0) skewY(-3deg);
  margin-top: -40px;
  z-index: 3;
}

.skew-divider.visible {
  opacity: 1;
  transform: scaleX(1) skewY(3deg);
}

.top-divider.visible {
  transform: scaleX(1) skewY(3deg);
}

.top-divider.visible2 {
  transform: scaleX(1) skewY(3deg);
}

.bottom-divider.visible {
  transform: scaleX(1) skewY(-3deg);
}

@media (max-width: 1620px) {
  .top-divider2 {
    margin-bottom: 30px;
    margin-top: -80px !important;
  }
}

@media (max-width: 1120px) {
  .top-divider2 {
    margin-bottom: 30px;
    margin-top: -55px !important;
  }
}

@media (max-width: 900px) {
  .top-divider2 {
    margin-bottom: 40px;
    margin-top: -45px !important;
  }
}

@media (max-width: 768px) {
  .top-divider2 {
    transform: scaleX(0) skewY(3deg);
    margin-bottom: 40px;
    margin-top: -36px !important;
    z-index: 3;
  }
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #F5F5DC !important;
  background-image: url('../images/background/beton2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0.5rem 5rem 0.5rem !important;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 0, 100% 13%, 100% 100%, 0% 87%);
  overflow: hidden;
}

.main-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 5rem 1rem;
  margin-top: -6rem;
}

.left {
  flex: 0 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left img {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.image-wrapper.large {
  max-width: 400px;
  aspect-ratio: 1 / 1;
  margin: 50px 10px 50px 10px;
}

.right {
  flex: 1 1 350px;
  min-width: 250px;
}

.right h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 1.5em !important;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: 2rem !important;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 35px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  display: inline-block !important;
}

.about-section span {
  font-weight: 700;
  color: #077A7D;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.right p {
  text-align: justify;
  color: var(--dark-color);
  font-weight: var(--font-weight-medium);
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

@media (max-width: 1620px) {
  .about-section {
    clip-path: polygon(0 0, 100% 9%, 100% 100%, 0% 90%);
  }
}

@media (max-width: 1120px) {
  .about-section {
    clip-path: polygon(0 0, 100% 6%, 100% 100%, 0% 96%);
  }
}

@media (max-width: 900px) {
  .about-section {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 97%);
  }

  .main-section .container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .right h2 {
    font-size: 1.5rem;
  }

  .left,
  .right {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #section_3 {
    scroll-margin-top: -40px !important;
  }

  .about-section {
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0% 98%);
    padding-bottom: 2rem !important;
  }

  .about-section span {
    color: #077A7D;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    text-shadow:
      -0.5px -0.5px 0 #000,
      0.5px -0.5px 0 #000,
      -0.5px 0.5px 0 #000,
      0.5px 0.5px 0 #000;
  }

  .left {
    margin-top: -70px !important;
  }

  .image-wrapper.large {
    margin: 0px 5px 0px 5px !important;
  }
}


/*---------------------------------------
  PRICES             
-----------------------------------------*/

.price-section {
  margin-bottom: 50px !important;
  padding: 1rem;
}

.price-section .container {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto !important;
}

.price-section .row h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 1em;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: 6rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 25px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  display: inline-block !important;
}

.price-section .responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  text-align: center;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset !important;
}

.price-section .responsive-table .table-header {
  background-color: #44525d;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-section .responsive-table .table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.price-section .responsive-table .col-2,
.price-section .responsive-table .col-3,
.price-section .responsive-table .col-4 {
  flex-basis: 33.33%;
  text-align: center;
}

/* --- MOBIL NÉZET --- */
@media all and (max-width: 767px) {

  #section_4 {
    scroll-margin-top: 0px !important;
  }

  .table-row .mh {
    display: none !important;
  }

  .price-section h2 {
    font-size: 1.5rem;
  }

  .price-section .responsive-table {
    margin: 0 auto;
  }

  .price-section .responsive-table .table-header {
    display: none;
  }

  .price-section .responsive-table li {
    display: block;
    padding: 2px 5px;
    margin-bottom: 16px;
    text-align: center;
  }

  .price-section .responsive-table .col-2,
  .price-section .responsive-table .col-3,
  .price-section .responsive-table .col-4 {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 0;
    font-size: 1rem;
    word-break: break-word;
    text-align: left;
    justify-content: flex-start;
    white-space: normal;
  }

  .price-section .responsive-table .col-2:before,
  .price-section .responsive-table .col-3:before,
  .price-section .responsive-table .col-4:before {
    content: attr(data-label);
    color: #6C7A89;
    font-weight: 600;
    display: inline-block;
    min-width: 70px;
    width: 38%;
    text-align: right;
    padding-right: 10px;
    flex-shrink: 0;
  }
}

/*---------------------------------------
  FAQ          
-----------------------------------------*/
.faq-section {
  background-color: #F5F5DC !important;
  background-image: url('../images/background/beton2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 10rem !important;
  padding-bottom: 8rem !important;
  margin-top: -4rem !important;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  clip-path: polygon(0 0, 100% 11%, 100% 100%, 0% 89%);
  overflow: hidden;
}

.faq-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1450px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.faq-section h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: -4rem !important;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.faq-section span {
  font-weight: 600;
  font-style: italic;
}

.faq-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  padding: 30px;
  width: 80%;
  max-width: 1100px;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
  font-weight: bold;
  color: var(--title-color);
  text-align: left !important;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #555;
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(0.77, 0, 0.175, 1) !important;
  padding-top: 10px;
  color: var(--secondary-color);
  text-align: left !important;
}

.faq-item.open .faq-answer {
  max-height: 800px;
}

/* Reszponzivitás */
@media (max-width: 600px) {
  .faq-section {
    clip-path: polygon(0 0, 100% 2%, 100% 100%, 0% 98%);
    padding-bottom: 4rem !important;
    margin-top: -3rem !important;
  }

  .faq-section .container {
    margin-top: -5rem !important;
  }

  .faq-container {
    width: 95%;
    padding: 20px;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }
}

/*---------------------------------------
  VOUCHER              
-----------------------------------------*/
.voucher-section .container {
  display: flex;
  flex-wrap: nowrap;
  /* Mindig egy sorban maradjon asztalin */
  justify-content: space-between;
  /* Kép és szöveg között egyenletes tér */
  align-items: flex-start;
  max-width: 1450px;
  margin: 0 auto;
  padding: 50px 20px;
  gap: 40px;
  /* Nagyobb térköz a két elem között */
}

.voucher-section h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 1.5em;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: 4rem !important;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.voucher-section h4 {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.voucher-section p {
  margin-bottom: 1em;
  line-height: 1.6;
  color: var(--p-color);
  font-weight: var(--font-weight-normal);
  text-align: justify;
}

.left-div {
  flex: 0 1 40%;
  max-width: 700px;
  position: relative;
  margin-top: 15vh !important;
}

.left-div img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.right-div {
  flex: 0 1 60%;
  max-width: 1200px;
  padding: 20px;
}

.voucher-section .right-div a {
  color: #000B58;
  font-weight: 500;
}

.voucher-section .right-div a:hover {
  color: #697565;
  font-weight: 500;
}

.voucher-section span {
  font-weight: 600;
}

@media (max-width: 900px) {
  .voucher-section .container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .left-div,
  .right-div {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .left-div {
    margin-top: -5vh !important;
  }

  .right-div {
    margin-top: -14vh !important;
  }

  .left-div img {
    max-width: 500px;
    margin: 0 auto;
  }

  .voucher-section h2 {
    font-size: 1.5rem;
  }
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 1em;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: -4rem !important;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 25px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  display: inline-block !important;
}

.col-lg-8,
.mx-auto {
  text-align: center;
}

.contact-section .lead {
  font-weight: 600;
}

.contact-section .contact-link-text {
  color: var(--dark-color);
  font-weight: 500;
  display: inline-block;
  margin: 0;
  text-align: left;
  font-size: 1rem !important;
  transition: color 0.2s;
}

.contact-section .contact-link-text:hover {
  color: #1877F2;
}

.contact-section .d-flex .bi-telephone,
.bi-envelope,
.bi-geo-alt {
  color: var(--dark-color) !important;
  font-size: 1rem;
}

.contact-section .contact-link {
  color: var(--dark-color);
  font-weight: 500;
  display: inline-block;
  margin: 0;
  text-align: left;
  font-size: 1.5rem !important;
  transition: color 0.2s;
}

.contact-section .contact-link:hover {
  color: #1877F2;
}

.contact-section .contact-linki {
  color: var(--dark-color);
  font-size: 1.5rem !important;
  transition: color 0.2s;
}

.contact-section .contact-linki:hover {
  color: #F77737 !important;
}

.contact-section .ratio {
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

@media (max-width: 991px) {
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .contact-section h2 {
    font-size: 1.5rem;
    margin-top: 0 !important;
    padding: 8px 12px;
  }

  .contact-section .lead {
    text-align: center;
  }

  .contact-section .contact-link-text,
  .contact-section .contact-link,
  .contact-section .contact-linki {
    text-align: center !important;
    display: block;
    margin: 0 auto 8px auto;
  }

  .contact-section .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.3em;
  }

  .contact-section .social-icon {
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }

  .contact-section .col-lg-8,
  .contact-section .col-lg-6,
  .contact-section .col-md-5 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .contact-section .ratio {
    margin-top: 2rem;
  }
}

/*---------------------------------------
  IMPRESSUM             
-----------------------------------------*/
.impressum h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 2em;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: 6rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 25px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  display: inline-block !important;
}

.impressum .lead {
  font-weight: 600;
}

.impressum p {
  font-weight: 500;
}

/*---------------------------------------
  ÁSZF             
-----------------------------------------*/
.aszf .col-md-8 {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  margin-top: 10vh;
  padding: 0px 30px 0px 30px;
}

.aszf h2 {
  color: var(--title-color);
  font-size: 2rem;
  margin-bottom: 2em;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-top: 2rem;
  text-align: center;
  text-transform: uppercase;
  background-color: #F2F2F2;
  padding: 10px 25px;
  border-radius: 15px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.aszf .lead {
  font-weight: 600;
}

.aszf p{
  font-weight: 500;
}

.aszf li{
  font-weight: 500;
}

@media (max-width: 991px) {
  .aszf .col-md-8 {
    padding: 0px 30px 0px 30px;
    max-width: 350px;
  }

  .aszf h2 {
    font-size: 1rem;
  }
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--site-footer-bg-color);
  padding-top: 30px;
  margin-top: 50px;
}

.site-footer .container,
.site-footer .row,
.site-footer [class^="col-"] {
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

.site-footer-title {
  text-align: center !important;
  width: 100%;
  margin-bottom: 1.1rem !important;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  background: none;
  column-count: unset;
  text-align: center;
  letter-spacing: 1.5px;
}

.footer-menu-item {
  display: inline-block;
  margin: 0;
}

.footer-menu-link {
  font-size: var(--p-font-size);
  color: var(--white-color);
  display: inline-block;
  margin: 0;
  padding: 0.2em 0.8em;
  text-align: center;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-menu-link:hover {
  color: #C1CFA1;
}


/* Mobilon egymás alatt jelenjenek meg */
@media (max-width: 600px) {
  .footer-menu {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-menu-link {
    padding: 0.2em 0;
    margin-right: 10px;
  }
}

.site-footer .d-flex {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-align: left;
}

.site-footer .d-flex i {
  margin-right: 0.5em;
  font-size: 1.1em;
}

.site-footer-link {
  color: var(--white-color);
  display: inline-block;
  margin: 0;
  text-align: left;
}

.site-footer-link:hover {
  color: #C1CFA1;
}

.social-icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  text-align: center;
  padding-left: 0;
  margin: 0 auto;
  gap: 0.5rem;
}

.social-icon-item {
  display: inline-block;
  margin: 0 6px;
}

.social-icon-link {
  color: var(--white-color);
  font-size: 1.5rem !important;
  transition: color 0.2s;
}

.social-icon-link:hover {
  color: #1877F2 !important;
}

.social-icon-linki {
  color: var(--white-color);
  font-size: 1.5rem !important;
  transition: color 0.2s;
}

.social-icon-linki:hover {
  color: #F77737 !important;
}

.site-footer-bottom {
  background-color: var(--secondary-color);
  position: relative;
  z-index: 2;
  padding-top: 5px;
  padding-bottom: 15px;
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  text-align: center !important;
  margin: 0 auto;
  width: 100%;
}

.site-footer-bottom a {
  color: var(--white-color);
  transition: color 0.2s;
  font-weight: 600;
}

.site-footer-bottom a:hover {
  color: #DDBB67;
  font-weight: 600;
}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

.footer-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
}

.logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 220px !important;
  width: 100%;
}

/*---------------------------------------
  RESPONSIVE FOOTER               
-----------------------------------------*/
@media (max-width: 991px) {
  .footer-menu {
    column-count: 1;
    display: block;
    text-align: center;
  }

  .footer-menu-link {
    text-align: center;
  }

  .logo {
    max-width: 160px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 40px;
    margin-top: 60px;
  }

  .site-footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-menu {
    margin-bottom: 1rem;
  }

  .logo {
    max-width: 110px;
  }

  .site-footer .d-flex {
    flex-direction: column !important;
    gap: 0.2em;
  }
}

@media (max-width: 575px) {
  .social-icon {
    gap: 0.3rem;
  }
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--site-footer-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 38px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .featured-block {
    min-height: inherit;
  }

  .volunteer-section::after {
    width: 450px;
    height: 450px;
  }

  .volunteer-image {
    width: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 1170px) {
  #hero-slide .carousel-image {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .donate-form {
    padding: 35px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 8px 20px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 5px;
  }

  .hero-section-full-height {
    height: inherit;
  }

  .carousel:hover .carousel-control-next-icon,
  .carousel:hover .carousel-control-prev-icon {
    opacity: 1;
  }

  #hero-slide .carousel-item {
    height: inherit;
  }

  .carousel-control-prev {
    left: 12px;
  }

  .carousel-control-next {
    right: 12px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    opacity: 1;
    width: 60px;
    height: 60px;
  }

  .news-detail-header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .cta-section::before {
    width: 150px;
    height: 150px;
  }

  .cta-section::after {
    bottom: -60px;
    width: 100px;
    height: 100px;
  }

  .cta-section .row {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .volunteer-section::after {
    width: 300px;
    height: 300px;
  }

  .testimonial-section::before {
    width: 150px;
    height: 150px;
  }

  .testimonial-section::after {
    width: 200px;
    height: 200px;
  }

  #testimonial-carousel .carousel-caption {
    padding-top: 0;
  }

  blockquote {
    padding: 70px 30px 30px 30px;
  }

  .about-image {
    width: inherit;
    height: 450px;
  }

  .volunteer-image {
    width: 250px;
    height: 250px;
    margin: 0;
  }

  .custom-text-block {
    padding: 20px 0 0 0;
  }

  .custom-text-box,
  .volunteer-form {
    padding: 30px;
  }

  .counter-number,
  .counter-number-text {
    font-size: var(--h2-font-size);
  }

  .contact-info-wrap {
    padding-top: 0;
  }

  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 580px) {

  .hero-section-full-height,
  #hero-slide .carousel-item,
  .carousel-image {
    min-height: 520px;
  }

  #hero-slide .carousel-caption {
    clip-path: polygon(100% 100%, 100% 100px, 0 100%);
    padding-right: 50px;
    min-width: inherit;
    min-height: inherit;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  #hero-slide .carousel-caption {
    min-width: inherit;
    padding-bottom: 30px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    width: 45px;
    height: 45px;
  }

  .volunteer-image {
    width: 150px;
    height: 150px;
  }

  .volunteer-section::after {
    width: 200px;
    height: 200px;
  }

  .testimonial-section::before {
    top: -50px;
    width: 100px;
    height: 100px;
  }

  .testimonial-section::after {
    bottom: -150px;
    width: 200px;
    height: 200px;
  }

  .social-share .tags-block {
    margin-bottom: 10px;
  }
}

/*---------------------------------------
  404 Error Page               
-----------------------------------------*/

.error-404-section {
  background: #000;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.error-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.error-image-wrapper img {
  max-width: 70vw;
  max-height: 60vh;
  object-fit: cover;
  object-position: center;
  box-shadow: 10px 18px 82px 10px rgba(255, 255, 255, 0.25), 0 1.5px 8px 0 rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #222;
  transition: box-shadow 0.3s;
}

/* Tablet */
@media (max-width: 1024px) {
  .error-image-wrapper img {
    max-width: 90vw;
    max-height: 40vh;
  }
}

/* Mobil */
@media (max-width: 600px) {
  .error-404-section {
    min-height: 60vh;
    padding: 20px 0;
  }

  .error-image-wrapper img {
    max-width: 98vw;
    max-height: 35vh;
    object-fit: cover;
    object-position: center center;
  }
}