@charset "UTF-8";
/*
 Theme Name: mediartTheme
 Theme URI:  https://mediart.pl/
 Author:     Krystian
 Version:    1.0.0
 Text Domain: mediartTheme
*/
/*! Settings !*/
*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-feature-settings: normal;
  font-variation-settings: normal;
  tab-size: 4;
}

p {
  margin: 0;
  padding: 0;
}

a,
a:focus,
a:hover,
a:active {
  outline: none;
  text-decoration: none;
  color: #000;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
}

/* Odstępy na podstronach */
.site-main {
  padding: clamp(20px, 5vw, 80px);
}

/* linki na treściach wordpressowych */

.post-content p{
  margin-bottom:15px;
}
.post-content img{
  margin: 30px 0 10px 0;
  max-width:700px;
}

/* Klasa do czarnego obrysu, białe wypełnienie */
.text-outline {
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
}

/*  Desktop  */
.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
}

.site-header__inner {
  width: 100%;
  max-width: 1500px;
  height: 100px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__logo {
  flex-shrink: 0;
  z-index: 2;
}

.site-header__logo-link {
  display: flex;
  width: fit-content;
  align-items: center;
  text-decoration: none;
  color: #111111;
}

.site-header__logo-image {
  display: block;
  width: clamp(150px, 15vw, 250px);
  max-height: 75px;
  object-fit: contain;
}

.site-header__desktop-nav {
  display: block;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.desktop-menu a {
  display: block;
  padding: 15px 0;
  color: #111111;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.desktop-menu a:hover,
.desktop-menu .current-menu-item > a,
.desktop-menu .current-menu-ancestor > a {
  font-weight: 700;
}

.desktop-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  min-width: 230px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.desktop-menu li:hover > .sub-menu,
.desktop-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-menu .sub-menu li {
  width: 100%;
}

.desktop-menu .sub-menu a {
  padding: 11px 20px;
  font-size: 12px;
  white-space: nowrap;
}

.mobile-menu-button {
  position: relative;
  z-index: 1002;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
}

.mobile-menu-button__line {
  position: absolute;
  left: 8px;
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 0.35s ease,
    transform 0.35s ease,
    opacity 0.25s ease;
}

.mobile-menu-button__line:nth-child(1) {
  top: 15px;
}

.mobile-menu-button__line:nth-child(2) {
  top: 24px;
}

.mobile-menu-button__line:nth-child(3) {
  top: 33px;
}

.mobile-menu-button.is-active .mobile-menu-button__line:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.mobile-menu-button.is-active .mobile-menu-button__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-button.is-active .mobile-menu-button__line:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1001;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  transition:
    max-height 0.55s ease,
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.45s ease;
}

.mobile-menu.is-open {
  max-height: calc(80vh - 70px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__nav {
  max-height: calc(80vh - 70px);
  padding: 25px 30px 40px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu__list,
.mobile-menu__list .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__list > li {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu__list > li:last-child {
  border-bottom: 0;
}

.mobile-menu__list a {
  position: relative;
  display: block;
  padding: 18px 35px 18px 10px;
  color: var(--main-color);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.mobile-menu__list a:hover {
  padding-left: 16px;
}

.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current-menu-ancestor > a {
  color: var(--main-color);
}

.mobile-menu__list .current-menu-item > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--main-color);
  transform: translate(-100%, -50%);
}

.mobile-menu__list .menu-item-has-children > a::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.mobile-menu__list .sub-menu {
  padding: 0 0 10px 20px;
}

.mobile-menu__list .sub-menu li {
  border: 0;
}

.mobile-menu__list .sub-menu a {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023px) {
  .site-header__inner {
    height: 70px;
    padding: 0 20px;
    justify-content: space-between;
  }

  .site-header__logo-image {
    width: auto;
    max-width: 180px;
    max-height: 52px;
  }

  .site-header__desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    padding: 0 15px;
  }

  .site-header__logo-image {
    max-width: 155px;
  }

  .mobile-menu__nav {
    padding: 25px 20px 35px;
  }

  .mobile-menu__list a {
    font-size: 12px;
    letter-spacing: 0.24em;
  }
} 
.padding{
  padding-top: 100px;
}

.baner {
  position: relative;
  width: 100%;
  height: 90vh;
  max-height: 1400px;
  overflow: hidden;
  background: #1c1c1c;
}

.baner-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.baner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition:
    opacity 1s ease,
    visibility 1s ease,
    transform 6s ease;
}

.baner-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.baner-slide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-height: 800px) {
  .baner-slide__image {
    object-position: center 30%;
  }
}

@media (max-height: 650px) {
  .baner-slide__image {
    object-position: center 15%;
  }
}

.baner--noimg {
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.6)
    );
}

.baner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding:50px 10vw 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 40%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0) 70%
  );
}

.baner-text {
	display:flex;
	flex-direction:column;
	gap:25px;
  position: relative;
  z-index: 3;
  max-width: 650px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
}

body.home .baner-text {
  text-align: center;
}

.baner-text h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  line-height: 1.2;
}



.baner-text p {
  margin: 0;
  line-height: 1.6;
}

.baner-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.baner-arrow:hover,
.baner-arrow:focus-visible {
  border-color: white;
  background: white;
  color: #000000;
}

.baner-arrow--prev {
  left: 30px;
}

.baner-arrow--next {
  right: 30px;
}

.baner-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateX(-50%);
}

.baner-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background-color 0.3s ease;
}

.baner-dot.is-active {
  width: 30px;
  border-radius: 10px;
  background: white;
}

.baner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

body.home .baner-buttons {
  justify-content: center;
}

.baner-button {
  display: inline-flex;
  min-width: 155px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid #2ac159;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.baner-button--primary {
  background: transparent;
  color: #ffffff;
}

.baner-button--primary:hover {
  background: transparent;
  color: #ffffff;
}

.baner-button--secondary {
  background: #2ac159;
  color: #ffffff;
}

.baner-button:hover {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 781px) {
  .baner-buttons,
  body.home .baner-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }

  .baner-button {
    min-width: 135px;
    min-height: 46px;
    padding: 11px 18px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .baner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .baner-button {
    width: 210px;
  }
}

@media (max-width: 991px) {

  .baner-overlay {
    padding: 0 8vw;
    justify-content: center;
	background: rgba(0, 0, 0, 0.82);
  }

  .baner-text {
    max-width: 520px;
    font-size: 18px;
	gap:5px;
  }

  .baner-text h1 {
    padding-bottom: 16px;
    font-size: 48px;
  }

  .baner-arrow {
    width: 46px;
    height: 46px;
    font-size: 32px;
  }

  .baner-arrow--prev {
    left: 20px;
  }

  .baner-arrow--next {
    right: 20px;
  }
}

@media (max-width: 781px) {

  .baner-overlay {
    padding: 0 6vw;
  }

  .baner-text,
  body.home .baner-text {
    max-width: 90%;
    text-align: center;
    font-size: 16px;
  }

  .baner-text h1 {
    padding-bottom: 12px;
    font-size: 34px;
  }

  .baner-arrow {
    top: auto;
    bottom: 20px;
    width: 42px;
    height: 42px;
    font-size: 30px;
    transform: none;
  }

  .baner-arrow--prev {
    left: 20px;
  }

  .baner-arrow--next {
    right: 20px;
  }

  .baner-dots {
    bottom: 35px;
  }
}

@media (max-width: 480px) {
  .baner {
    min-height: 460px;
  }

  .baner-text {
    max-width: 100%;
  }

  .baner-text h1 {
    font-size: 30px;
  }

  .baner-arrow {
    display: none;
  }

  .baner-dots {
    bottom: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .baner-slide {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .baner-slide.is-active {
    transform: none;
  }
}

/* ============  TABLET (max-width: 991 px)  ============ */
@media (max-width: 991px) {
  .header-main {
    height: 220px;
  }
  .header-inner {
    padding: 10px 30px;
  }
  .contact-wrapper {
    flex-direction: row;
    gap: 20px;
    height: 80px;
  }
  .telefon-link,
  .email a {
    font-size: 15px;
  }
  .telefon-ikona {
    width: 18px;
    height: 18px;
  }
  .menu-ico {
    height: 40px;
  }
  .baner-overlay {
    padding: 0 8vw;
  }
  .baner-text {
    max-width: 520px;
    font-size: 18px;
  }
  .baner-text h1 {
    font-size: 48px;
    padding-bottom: 16px;
  }
}
/* === MOBILE === */
@media (max-width: 781px) {
  .header-main {
    height: 160px;
  }
  .header-inner {
    padding: 10px 20px;
  }
  .contact-wrapper {
    justify-content: flex-end;
    width: 100%;
  }
  .header-main .telefon,
  .header-main .email,
  .header-main .socials {
    display: none;
  }
  .baner-overlay {
    padding: 0 6vw;
  }
  .baner-text {
    max-width: 90%;
    font-size: 16px;
  }
  .baner-text h1 {
    font-size: 34px;
    padding-bottom: 12px;
  }
}
/*=== Sekcja A ===*/
.a-section {
  background: #fff;
  margin-top: 100px;
}

.a-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.a-text {
  margin-top: -50px;
  width: 35vw;
  max-width: 540px;
  margin-left: 100px;
}

.a-subtitle {
  color: var(--main-color);
  font: 400 30px "Montserrat", sans-serif;
}

.a-title {
  font-size: 30px;
  margin: 5px 0;
  font-weight: 700;
}

.a-description {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  width: 550px;
  max-width: 100%;
  margin-bottom: 30px;
}

.a-button {
  display: flex;
  gap: 10px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 400;
}

.a-button:hover {
  color: #000;
}

.a-round-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
}

.a-button:focus, .a-button:active, .a-button:hover {
  color: #000;
  text-decoration: none;
  border: none;
}

.a-button:hover .a-round-arrow {
  border-color: var(--main-color);
}

.a-button:hover .a-round-arrow svg path {
  fill: var(--main-color);
}

.a-button.baner-btn {
  position: absolute;
  bottom: 150px;
  left: 18.1%;
  transform: translateX(-50%);
}

.a-image-container {
  position: relative;
  width: 50%;
  height: 500px;
  order: 2;
}

.border-a-image {
  position: absolute;
  top: -60px;
  left: -40px;
  width: calc(50vw + 40px - 8px);
  height: 100%;
  border: 1px solid #000;
  border-right: 0;
}

.a-image {
  position: absolute;
  top: -100px;
  left: 0;
  min-width: calc(50vw - 8px);
  min-height: 500px!important;
}

.a-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* === TABLET === */
@media (max-width: 1000px) {
	.a-section {
	  background: #fff;
	  margin-top: 30px;
	}
  .a-content {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .a-text {
    margin-left: 20px;
    text-align: left;
    width: 80%;
    max-width: 640px;
  }
  .a-title {
    font-size: 28px;
  }
  .a-subtitle {
    font-size: 26px;
  }
  .a-description {
    width: 90%;
  }
  .a-image-container {
    width: 100%;
    height: 400px;
    order: 0;
  }
  .border-a-image {
    left: -30px;
    height: 500px;
    width: 106%;
  }
  .a-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
  }
  .a-round-arrow {
    width: 36px;
    height: 36px;
  }
}
/*=== MOBILE ===*/
@media (max-width: 781px) {
  .a-content {
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 20px;
  }
  .a-image-container {
    width: 100%;
    height: auto;
    order: 0;
  }
  .border-a-image {
    display: none;
  }
  .a-image {
    position: relative;
    top: 0;
    left: 0;
    min-height: auto;
    width: 100%;
  }
  .a-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .a-text {
    margin: 0;
    width: 90%;
    max-width: 500px;
    text-align: center;
  }
  .a-title {
    font-size: 24px;
  }
  .a-subtitle {
    font-size: 20px;
  }
  .a-description {
    font-size: 15px;
  }
  .a-button-container {
    display: flex;
    justify-content: center;
  }
  .a-round-arrow {
    width: 32px;
    height: 32px;
  }
}
/*=== Sekcja PT ===*/
.c-section {
  position: relative;
  background: #fff;
  margin-top: 200px;
}

.c-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-text {
  margin-top: -200px;
  margin-right: 100px;
  text-align: right;
  width: 35vw;
  max-width: 540px;
}

.c-subtitle {
  color: var(--main-color);
  font: 400 30px "Montserrat", sans-serif;
}

.c-title {
  font-size: 30px;
  margin: 5px 0 20px;
  font-weight: 700;
}

.c-description {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 30px;
  width: 550px;
  max-width: 100%;
}

.c-button-container {
  display: flex;
  justify-content: flex-end;
}

.c-button {
  display: flex;
  gap: 10px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 400;
}

.c-round-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
}

.c-button:hover {
  color: #000;
}

.c-button:hover .c-round-arrow {
  border-color: var(--main-color);
}

.c-button:hover .c-round-arrow svg path {
  fill: var(--main-color);
}

.c-image-container {
  position: relative;
  width: 50%;
  height: 500px;
  order: 2;
}

.border-c-image {
  position: absolute;
  top: -60px;
  left: 0;
  width: calc(50vw + 40px - 8px);
  height: 100%;
  border: 1px solid #000;
}

.c-image {
  position: absolute;
  top: -100px;
  left: 0;
  min-width: calc(50vw - 8px);
  min-height: 500px;
}

.c-image img {
  width: 100%;
  height: 800px;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* === TABLET === */
@media (max-width: 1000px) {
  .c-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
  }
  .c-text {
    margin-right: 20px;
    text-align: right;
    width: 90%;
    max-width: 640px;
  }
  .c-title {
    font-size: 28px;
  }
  .c-subtitle {
    font-size: 26px;
  }
  .c-description {
    width: 100%;
    margin-right: -10%;
  }
  .c-image-container {
    width: 100%;
    height: 400px;
    order: 0;
  }
  .border-c-image {
    right: -30px;
    height: 500px;
    width: 106%;
  }
  .c-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
  }
  .c-round-arrow {
    width: 36px;
    height: 36px;
  }
}
/* === MOBILE === */
@media (max-width: 781px) {
  .c-section {
    margin-top: 50px;
  }
  .c-content {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }
  .c-image-container {
    width: 100%;
    height: auto;
    order: 0;
  }
  .border-c-image {
    display: none;
  }
  .c-image {
    position: relative;
    top: 0;
    left: 0;
    min-height: auto;
    width: 100%;
  }
  .c-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .c-text {
    margin: 0;
    width: 90%;
    max-width: 500px;
    text-align: center;
  }
  .c-title {
    font-size: 24px;
  }
  .c-subtitle {
    font-size: 20px;
  }
  .c-description {
    font-size: 15px;
  }
  .c-button-container {
    justify-content: center;
  }
  .c-round-arrow {
    width: 32px;
    height: 32px;
  }
}
.f-section {
  background: #f8f8f8;
  margin-top: 200px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 1920px;
  padding: 0 40px;
  align-items: center;
}

.f-container-up {
  display: flex;
  gap: 40px;
}

.f-container-up-left {
  flex: 1;
}

.f-container-up-right {
  flex: 1;
}

.f-container-up-left h3 {
  max-width:700px;
  margin-top:0;
  font-size: 50px;
  font-weight: 700;
}

.f-container-up-right-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.f-container-up-right-desc {
  margin-top: 20px;
}

.f-container-in {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1470px;
}

.f-container-in-box {
  position: relative;
  min-width: 300px;
  width: 350px;
  border: 2px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 80px);
  color: #000;
  text-decoration: none;
  padding: 5rem;
}

.f-container-in-box:hover,
.f-container-in-box:focus {
  border-color: var(--main-color);
  color: var(--main-color);
}

.f-container-in-box-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.f-container-in-box-title {
  max-height: 30px;
  overflow: visible;
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.f-container-in-box-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}

.f-container-in-box-oferta {
  display: flex;
  gap: 10px;
}

.f-container-in-box-oferta span {
  font-weight: 400;
}

.f-container-in-box-oferta svg path {
  fill: var(--main-color);
}

.f-container-down {
  display: flex;
  justify-content: center;
}

.f-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
}

.f-round-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
}

.f-button:hover .f-round-arrow {
  border-color: var(--main-color);
}

.f-button:hover .f-round-arrow svg path {
  fill: var(--main-color);
}

/* ———— RESPONSYWNOŚĆ ———— */
@media (max-width: 818px) {
  .f-section {
    margin-top: 50px;
  }
  .f-container {
    padding: 0 20px;
    gap: 30px;
  }
  .f-container-up {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    max-width: 1470px;
  }
  .f-container-up-left h3 {
	text-align:center;
    font-size: 28px;
  }
  .f-container-up-right-title {
    font-size: 20px;
  }
  .f-container-up-right-both {
    padding: 0 18px;
  }
  .f-container-in-box {
    width: calc(100% - 30px);
  }
  .f-container-in-box-img {
    width: 100px;
    height: 100px;
  }
  .f-round-arrow {
    width: 32px;
    height: 32px;
  }
}
.g-section {
  background: #fff;
  margin-top: 50px;
  padding: 0px 40px;
}

.g-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.g-container > span {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.g-logos {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: nowrap;
  will-change: transform;
}

.g-logo {
  width: clamp(110px, 18vw, 220px);
  max-height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(85%);
}

.g-logo:hover {
  filter: none;
}

@keyframes scroll {
  to {
    transform: translateX(var(--moveX));
  }
}
.h-section {
  background: #fff;
  margin-top: 200px;
}

.h-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.h-text {
  margin-top: -200px;
  margin-right: 100px;
  text-align: right;
}

.h-subtitle {
  color: var(--main-color);
  font: 400 30px "Montserrat", sans-serif;
}

.h-title {
  font-size: 30px;
  font-weight: 700;
  margin: 5px 0 20px;
}

.h-description {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  width: 500px;
}

.h-image-container {
  position: relative;
  width: 50%;
  height: 500px;
}

.border-h-image {
  position: absolute;
  top: -60px;
  left: 0;
  width: calc(50vw + 40px - 8px);
  height: 100%;
  border: 1px solid #000;
}

.h-gallery-track {
  position: absolute;
  top: -100px;
  left: 0;
  display: flex;
  gap: 30px;
  overflow: hidden;
  height: 500px;
}

.h-slide-img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.border-h-image {
  z-index: 1;
}

.h-gallery-track {
  z-index: 1;
}

.h-gallery-btn {
  position: absolute;
  top: calc(100% - 100px);
  width: 150px;
  height: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.h-prev {
  left: 38%;
  transform: translateX(-120%);
}

.h-next {
  left: 62%;
  transform: translateX(120%);
}

.h-next svg {
  transform: rotate(180deg);
}

.h-gallery-btn,
.h-gallery-btn:hover,
.h-gallery-btn:focus,
.h-gallery-btn:active {
  background: transparent !important;
  box-shadow: none !important;
  border: none;
}

/*=== TABLETY  ===*/
@media (max-width: 1299px) {
  .h-content {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .h-text {
    margin: 0;
    width: 70%;
    text-align: center;
  }
  .h-title {
    font-size: 28px;
  }
  .h-subtitle {
    font-size: 26px;
  }
  .h-description {
    width: 90%;
    margin: 0 auto;
  }
  .h-image-container {
    width: 100%;
    height: 400px;
    top: 70px;
  }
  .border-h-image {
    border: none;
    border: 1px solid #000;
    width: 100%;
    top: -40px;
  }
  .h-gallery-track {
    top: -80px;
    gap: 20px;
    height: 400px;
  }
  .h-slide-img {
    flex: 0 0 calc(30% - 10px);
  }
  .h-gallery-btn {
    top: calc(100% - 80px);
    width: 100px;
  }
  .h-prev {
    left: 35%;
    transform: translateX(-160%);
  }
  .h-next {
    left: 50%;
    transform: translateX(160%);
  }
}
/* ===  SMARTFONY === */
@media (max-width: 781px) {
  .h-section {
    margin-top: 100px;
  }
  .h-content {
    gap: 5px;
  }
  .h-text {
    width: 70%;
  }
  .h-title {
    font-size: 24px;
  }
  .h-subtitle {
    font-size: 20px;
  }
  .h-description {
    font-size: 15px;
    width: 100%;
  }
  .h-image-container {
    height: 300px;
    margin-top: 100px;
  }
  .border-h-image {
    display: none;
  }
  .h-gallery-track {
    gap: 5px;
    height: 300px;
  }
  .h-slide-img {
    flex: 50% 0 0;
  }
  .h-gallery-btn {
    width: 72px;
    height: 36px;
    top: calc(100% - 56px);
  }
  .h-prev, .h-next {
    left: 45%;
  }
}
/* Sekcja bloga na stronie startowej */
.homepage-blog {
  /* odstępy sekcji */
  padding: 6rem 2rem;
}

.homepage-blog__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.homepage-blog__header {
  text-align: center;
  margin-bottom: 3rem;
}

.homepage-blog__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: #111827; /* ciemny tekst */
}

.homepage-blog__subtitle {
  font-size: 16px;
  color: #6B7280; /* szary opis */
  margin: 0;
}

.homepage-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 48px;
}

.homepage-blog__card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.homepage-blog__card:hover h3 {
  color: var(--main-color);
}

.homepage-blog__thumb img {
  width: 100%;
  height: clamp(300px, 50vh, 350px);
  object-fit: cover;
}

.homepage-blog__card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 1rem 0 0.75rem;
}

.homepage-blog__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563; /* trochę jaśniejszy szary */
  margin: 0;
}

.homepage-blog__cta {
  text-align: center;
  margin-top: 3rem;
}

.homepage-blog__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #bebebe;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: background 0.25s ease, color 0.25s ease;
}

.homepage-blog__btn:hover {
  background: var(--main-color); /* twoja zmienna lub zapasowy zielony */
  color: #fff;
}

.homepage-blog__btn-icon {
  display: inline-block;
  line-height: 0;
}

@media (max-width: 370px) {
  .homepage-blog {
    padding: 6rem 0;
  }
  .homepage-blog__card-title,
  .homepage-blog__excerpt {
    padding: 0 2rem;
  }
}
.site-footer {
  background: #181818;
  color: #fff;
  padding: 55px 20px 0px;
}

.site-footer__inner {
  max-width: 1250px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__logo {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 28px;
}

.site-footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 190px;
}

.site-footer__logo svg path,
.site-footer__logo svg polygon,
.site-footer__logo svg rect,
.site-footer__logo svg circle {
  fill: #fff;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
}

.site-footer__contact p,
.site-footer__export {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.site-footer__export {
  margin-top: 0px;
}

.site-footer i {
  margin-right: 7px;
  font-size: 25px;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__separator {
  margin: 0 7px;
}

@media (max-width: 900px) {
  .site-footer__contact p,
  .site-footer__export {
    font-size: 20px;
  }

  .site-footer i {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 0px 0px;
  }

  .site-footer__logo {
    max-width: 420px;
    margin-bottom: 25px;
  }

  .site-footer__contact {
    gap: 24px;
  }

  .site-footer__contact p,
  .site-footer__export {
    font-size: 17px;
    line-height: 1.6;
  }

  .site-footer__separator {
    display: block;
    height: 4px;
    overflow: hidden;
    visibility: hidden;
  }
  .socials{
    flex-direction: column!important;
    gap:4px!important;
    margin-top:24px!important;
    margin-bottom: 20px !important;
  }
}
.svg>*{
  width:20px;
  height:20px;
}
.svg2>*{
  width:30px;
  height:30px;
}

.rodo-pirv {
  padding-right: clamp(50px, 5vw, 150px);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 55px;
  background-color: #000000;
  padding-left: clamp(50px, 5vw, 150px);
}

.rodo-pirv > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.rodo-pirv > div > p,
.rodo-pirv > div > a {
  font-size: 14px;
  color: #FFFFFF;
  height: fit-content;
  font-weight: 400;
}

.footer-nav {
  height: auto;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav .footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  align-items: center;
  height: 100%;
  min-height: 60px;
  gap: clamp(12px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding-right: clamp(50px, 5vw, 150px);
}

.footer-nav .footer-menu > li a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

/* === TABLETY === */
@media (max-width: 991px) {
  .footer-container {
    height: auto;
    min-height: 500px;
    align-items: flex-start;
    padding: 40px 0;
  }
  .footer-container-inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
    width: 95%;
    height: auto;
  }
  .footer-logo {
    width: 100%;
    justify-content: center;
    order: -1;
  }
  .footer-logo > a > img {
    width: 260px;
  }
  .footer-info1,
  .footer-info2 {
    width: 50%;
    min-width: 280px;
    align-items: center;
    text-align: center;
  }
  .footer-info1 > div,
  .footer-info2 > div {
    height: auto;
    margin: 20px 0;
  }
  .footer-nav {
    padding: 12px 0;
  }
  .rodo-pirv {
    justify-content: center;
    padding-left: 0;
    gap: 40px;
  }
}
/*=== TELEFONY ===*/
@media (max-width: 590px) {
  .footer-container {
    padding: 50px 0 30px;
  }
  .footer-container-inner {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .footer-container-inner > div {
    height: auto;
  }
  .footer-logo > a > img {
    width: 200px;
    margin-bottom: 30px;
  }
  .footer-info1,
  .footer-info2 {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-info1 p:first-child,
  .footer-info2 p:first-child {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .footer-info1 a,
  .footer-info2 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }
  .socials-footer {
    flex-direction: row;
    justify-content: center;
  }
	.socials-ico{
		width:30px;
		height:30px;
	}
  .footer-nav {
    display: none;
  }
  .rodo-pirv {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
    padding: 20px 0;
  }
  .rodo-pirv > a {
    padding-top: 0;
    font-size: 13px;
  }
}
.footer-addresses {
  display: flex;
  flex-direction: column;
}

.footer-addresses-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-address:nth-child(3) {
  grid-column: 1 / -1;
}

@media (max-width: 590px) {
  .footer-addresses-list {
    grid-template-columns: 1fr;
  }

  .footer-address:nth-child(3) {
    grid-column: auto;
  }
}

.footer-address {
  height: auto !important;
  margin: 0 !important;
}

.footer-info-title {
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-address-title {
  margin-bottom: 4px;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-address-content {
  margin: 0;
  line-height: 1.5;
}

.footer-socials-wrapper {
  height: auto !important;
  margin-top: 25px !important;
}

.team {
  padding: clamp(20px, 3vw, 40px) 0;
  text-align: center;
}

.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  align-items: center;
}

.team-card {
  padding: 10px;
  width: auto;
  height: 350px;
  border-radius: 12px;
  border: 1px solid #000;
  overflow: hidden;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.team-card__thumb {
  height: 100%;
  overflow: hidden;
}

.team-card__thumb img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 8px;
}

.team-card__name {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

/*=== Blog Site ===*/
.blog-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


.template-blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card {
  background: #fff;
  padding: 10px;
}

.blog-thumbnail img {
  width: 100%;
  height: clamp(300px, 50vh, 350px);
  object-fit: cover;
  display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .blog-container {
    padding: 1.5rem 1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .blog-card {
    padding: 12px;
  }

  .blog-thumbnail img {
    height: 220px;
  }

  .blog-title {
    font-size: 18px;
    margin: 12px 0 6px;
  }

  .blog-excerpt {
    font-size: 14px;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 380px) {
  .blog-thumbnail img {
    height: 180px;
  }
}

/* PAGINATION (the_posts_pagination) */
.navigation.pagination {
  margin-top: 32px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.navigation.pagination a:hover {
  border-color: var(--main-color);
  color: var(--main-color);
  transform: translateY(-1px);
}

.navigation.pagination .current {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.navigation.pagination .dots {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 6px;
  height: auto;
}

.navigation.pagination .prev,
.navigation.pagination .next {
  padding: 0 18px;
}

.navigation.pagination a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--main-color) 35%, transparent);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .navigation.pagination {
    margin-top: 22px;
  }

  .navigation.pagination a,
  .navigation.pagination span {
    height: 40px;
    min-width: 40px;
    padding: 0 12px;
  }
}


/* ================= Oferta landing v2 ================= */
.offer-landing {
  padding: 4rem 0;
}

.offer-landing .container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 1rem;
}

.offer-intro {
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Flex--- */
.offer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 1470px;
}

/* =========== KAFELKA =========== */
.offer-card {
  background: #ffffff;
  border: 2px solid black;
  width: 350px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: 400ms background;
}

.offer-card:hover {
  border: 2px solid var(--main-color);
}

.offer-card:hover h2 {
  color: var(--main-color);
}

.offer-card-link-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20% 5% 0% 5%;
  color: inherit;
  text-decoration: none;
}

.offer-card-body {
  height: 65%;
}

.offer-card-icon {
  width: auto;
  height: 100px;
  object-fit: contain;
}

/* --- Tytuł --- */
.offer-card-title {
  margin: 2rem 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.offer-card-link {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
  text-align: center;
}

.offer-card:focus .offer-card-link,
.offer-card:active .offer-card-link,
.offer-card:hover .offer-card-link {
  color: #000000;
}

.offer-card-link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  fill: none;
  stroke: currentColor;
}

/* --- Komunikat brak --- */
.no-offers {
  text-align: center;
  color: #777;
  padding: 2rem 0;
}

.contact-content {
  background-color: #ffffff;
}

.contact {
  width: fit-content;
  margin: 0 auto;
  padding-inline: 50px;
}

.contact input[type=text],
.contact input[type=email],
.contact input[type=tel],
.contact textarea {
  width: 100%;
  border-bottom: 2px solid #6e6e6e;
  padding: 20px 15px;
  outline: none;
  border: none;
  margin: 5px 0;
  border-bottom: 2px solid #555;
  font-family: "Roboto", sans-serif;
}

.contact-title {
  text-align: center;
  margin: 0;
  padding: 40px 0;
  font-size: clamp(25px, 3vw, 40px);
}

.two-cols {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
}

.policy {
  width: 100%;
  padding: 20px 0;
  margin: 5px 0;
}

.policy label::after {
  content: " *";
  color: #e74c3c;
}

.wpcf7-list-item-label > a {
  color: var(--main-color);
}

.wpcf7-submit.btn {
  margin: 0 auto;
}

.wpcf7-submit.btn.btn-light {
  --c: var(--main-color, #0098D4);
  --from: color-mix(in srgb, var(--c) 92%, white);
  --to: color-mix(in srgb, var(--c) 80%, black);
  background: var(--c);
  background-image: linear-gradient(to bottom right, var(--from), var(--to));
  border: 0;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 10px auto 0;
  padding: 0 1rem;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  outline: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: box-shadow 0.2s ease-in-out, transform 0.15s ease-in-out, filter 0.2s ease-in-out;
}

.wpcf7-submit.btn.btn-light:not([disabled]):hover,
.wpcf7-submit.btn.btn-light:not([disabled]):focus {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5), -0.125rem -0.125rem 1rem color-mix(in srgb, var(--from) 70%, transparent), 0.125rem 0.125rem 1rem color-mix(in srgb, var(--to) 70%, transparent);
}

.wpcf7-submit.btn.btn-light:not([disabled]):active {
  transform: translateY(1px);
  filter: brightness(0.96);
}

.wpcf7-submit.btn.btn-light:disabled,
.wpcf7-form.submitting .wpcf7-submit.btn.btn-light {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-submit.btn.btn-light {
    transition: none;
  }
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0 30px 50px 30px;
  text-align: center;
  border: none;
  color: #DC3232;
}

*::-webkit-scrollbar {
  width: 15px;
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.363);
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

html {
  overflow-y: scroll;
}

@supports (scrollbar-gutter: stable) {
  html {
    overflow-y: auto;
    scrollbar-gutter: stable;
  }
}
.dal {
  max-width: 1000px;
  margin: 0 auto;
}

.dal > h2 {
  text-align: center;
}

.dal > p {
  line-height: 2;
}

.dal_list {
  background: color-mix(in srgb, var(--main-color) 10%, white 90%);
  padding: 2px 15px 15px;
  margin-top: 20px;
}

.dal_list > span > p:not(:first-child) {
  margin-top: 15px;
}

.dal_list_li > p::before {
  content: "✔";
  margin-right: 0.5rem;
  display: inline-block;
  color: var(--main-color);
}

.blocks_wrapper {
  width: 100%;
  padding: 10px 0 50px;
  background: color-mix(in srgb, var(--main-color) 10%, white 90%);
}

.blocks_wrapper > h2 {
  text-align: center;
}

.blocks {
  padding: 0 clamp(10px, 8vw, 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.single_block {
  background: #fff;
  text-align: center;
  min-height: 100px;
  width: 40%;
  padding: 16px;
}

@media (max-width: 800px) {
  .blocks {
    flex-direction: column;
  }
  .single_block {
    width: 90%;
  }
}
.single_block > p:first-child {
  font-size: larger;
  font-weight: bold;
  color: var(--main-color);
}

.single_block > p:last-child {
  display: block;
  margin: revert;
}

.single_li {
  margin: 10px 0;
}

.single_li > p:first-child {
  padding: 10px 0;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1098039216);
  font-size: large;
  font-weight: 500;
  padding-left: 25px;
  background: color-mix(in srgb, var(--main-color) 10%, white 90%);
}

.single_li > p:not(:first-of-type) {
  margin: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.text-photo {
  background: color-mix(in srgb, var(--main-color) 10%, white 90%);
}

.text-photo > h2 {
  text-align: center;
}

.text-photo > div {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.text-photo > div > div:first-child {
  height: auto;
  margin: auto 0;
}

.text-photo > div > div {
  width: 48%;
  margin: auto 0;
}

.text-photo > div > div > h2 {
  margin-top: 0;
}

.text-photo > div > div > p {
  margin: 15px 0;
}

@media (max-width: 1000px) {
  .text-photo > div {
    flex-direction: column !important;
  }
  .text-photo > div > div {
    width: 100%;
  }
  .text-photo > div > div > h2 {
    text-align: center;
  }
}
.blocks_wrapper_inner {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .blocks_wrapper_inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.block_wrapper {
  background: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.block_img {
  flex-shrink: 0;
  width: 70px;
  height: auto;
  padding: 10px;
}

.img_block_icon {
  object-fit: contain;
}

.block_i {
  padding: 10px;
}

.block_i > h2 {
  font-size: large;
}

.block_i > p {
  color: #666666;
}

.text-map {
  background: color-mix(in srgb, var(--main-color) 10%, white 90%);
}

.text-map > div {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap:20px;
}

.text-map > div > div:first-child {
  height: auto;
  margin: auto 0;
}

.text-map > div > div {
  width: 50%;
}

.text-map > div > div > h2 {
  margin-top: 0;
}

.text-map > div > div > p {
  margin: 15px 0;
}

.text-map > div > div > iframe {
  width: -webkit-fill-available;
  height: 400px;
}

@media (max-width: 1000px) {
  .text-map > div {
    flex-direction: column !important;
  }
  .text-map > div > div {
    width: 100%;
  }
  .text-map > div > div > h2 {
    text-align: center;
  }
}
.vid > div > iframe {
  height: clamp(190px, 50vw, 360px);
  max-width: 640px;
  width: -webkit-fill-available;
  display: block;
  margin: auto;
}

.entry-content .wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1400px, calc(100% - 40px));
  margin: 60px auto;
  padding: 0;
}

.entry-content .wp-block-gallery .wp-block-image {
  position: relative;
  width: 100% !important;
  aspect-ratio: 3 / 4;
  margin: 0 !important;
  overflow: hidden;
  background: #f3f3f3;
}

.entry-content .wp-block-gallery .wp-block-image a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.entry-content .wp-block-gallery .wp-block-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: auto !important;
  object-fit: contain;
  object-position: center;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.entry-content .wp-block-gallery .wp-block-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.22),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.entry-content .wp-block-gallery .wp-block-image:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.entry-content .wp-block-gallery .wp-block-image:hover::after {
  opacity: 1;
}

.entry-content .wp-block-gallery figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: none;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

@media (max-width: 1199px) {
  .entry-content .wp-block-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entry-content .wp-block-gallery .wp-block-image {
    height: 320px;
  }
}

@media (max-width: 781px) {
  .entry-content .wp-block-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100% - 30px, 1400px);
    margin: 40px auto;
  }

  .entry-content .wp-block-gallery .wp-block-image {
    height: 280px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .entry-content .wp-block-gallery {
    grid-template-columns: 1fr;
  }

  .entry-content .wp-block-gallery .wp-block-image {
    height: 360px;
  }
}

.hover-new:hover{
  font-weight: 600;
}
.contact-section {
  padding: 60px 20px;
}

.contact-section__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section__title {
  margin: 0 0 35px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
}

.contact-section__row {
  width:fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.contact-section__row:hover {
  text-decoration:underline;
}

.contact-section__row a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.contact-section__row a:hover {
  text-decoration: underline;
}

.contact-section__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-section__icon svg {
  fill: black!important;
}

.contact-section__map {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.contact-section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 16px;
  }

  .contact-section__title {
    margin-bottom: 28px;
    font-size: 32px;
  }

  .contact-section__row {
    font-size: 18px;
  }

  .contact-section__map {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-section__title {
    font-size: 26px;
  }

  .contact-section__row {
    align-items: flex-start;
    font-size: 16px;
  }

  .contact-section__map {
    height: 300px;
  }
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.socials-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: inherit;
  line-height: 0;
}

.socials-ico svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}
.hero-locations {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 25px;
	margin: 10px auto;
	font-size: 24px;
	line-height: 1.3;
}

.hero-locations__separator {
	color: #f9cc15;
}

@media (max-width: 619px) {
	.hero-locations {
		justify-content: center;
		gap: 8px 12px;
		font-size: 18px;
		text-align: center;
	}

	.hero-locations__separator {
		margin: 0 2px;
	}
}

@media (max-width: 405px) {
	.hero-locations {
		display: grid;
		grid-template-columns: 1fr;
		gap: 4px;
		font-size: 17px;
	}

	.hero-locations__separator {
		display: none;
	}
	.hero-locations > span:not(.hero-locations__separator) {
		text-decoration: underline;
		text-decoration-color: #f9cc15;
		text-underline-offset: 6px;
	}
}