@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 {
  position:relative;
  max-height:100%;
  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 {
  position:relative;
  margin: clamp(20px, 5vw, 80px);
}

/* linki na treściach wordpressowych */
.entry-content{
	position:relative;
}
.entry-content p a {
  color: var(--main-color);
  z-index:1;
}
.text-outline {
  text-shadow:
    2px 2px 4px #1c80b9, -2px -2px 4px #1c80b9,
	-2px 2px 4px #1c80b9, 2px -2px 4px #1c80b9;
}

/*  Desktop  */
.header-main {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 50px;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 50px;
  align-items: center;
  height: 80px;
}

.site-logo {
  width: clamp(150px, 15vw, 600px);
  z-index: 1010;
}

.logo-link {
  display: flex;
}

.logo-link > img {
  object-fit: contain;
}

.telefon-link, 
.email-link,
.email a{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
  font-size: 16px;
  gap: 8px;
  transition: color 0.3s ease;
}

.telefon-link:hover, 
.email-link:hover,
.email a:hover{
  color: var(--main-color);
}

.telefon-ikona {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.telefon-ikona svg {
  width: 100%;
  height: 100%;
  display: block;
}

.telefon-numer {
  display: inline-block;
}

.menu-ico {
  color: var(--main-color);
  transition: color 0.3s ease;
  display: inline-block;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.menu-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.socials-footer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.socials-ico {
  transition: color 0.3s ease;
  width: 24px;
  height: 24px;
  color: #000000;
  flex-shrink: 0;
}

.socials-ico:active,
.socials-ico:focus,
.socials-ico:hover {
  color: var(--main-color);
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.site-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

.menu-overlay__inner {
  display: flex;
  max-width: 1500px;
  width: 100%;
}

.menu-overlay__nav {
  flex: 0.7;
}

.menu-overlay__nav .menu--vertical {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: right;
}

.menu--vertical .menu-item-has-children > a::after {
  content: "▾";
  display: inline-block;
  font-size: clamp(19px, 1.5vw, 25px);
  transition: transform 0.2s;
}

.menu--vertical .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}

.menu-overlay__nav .menu--vertical li {
  margin-top: 2vw;
}

.menu-overlay__nav .menu--vertical a {
  color: #fff;
  font-size: clamp(19px, 1.5vw, 25px);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.menu-overlay__nav .menu--vertical a:hover,
.menu-overlay__nav .menu--vertical .current-menu-item > a {
  color: var(--main-color, #77b63c);
}

.menu--vertical .sub-menu {
  display: none;
  list-style: none;
  font-size: clamp(19px, 1.5vw, 25px);
}

.menu--vertical .menu-item-has-children.open > .sub-menu {
  display: block;
}

.menu-overlay__info {
  flex: 1;
  font-size: 16px!important;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.menu-info__item {
  margin-bottom: 1.25rem;
  font-size: 16px!important;
  line-height: 1.4;
}

.menu-info__item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.menu-info__item a:hover {
  color: var(--main-color, #77b63c);
}

.menu-overlay__info hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 1.5rem 0;
}

.socials {
  align-self: flex-start;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.socials-ico {
  display: inline-flex;
  width: 30px;
  height: 30px;
  line-height: 0;
  color: #fff;
  flex-shrink: 0;
  transition: color .3s ease;
}
.socials-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.socials-ico-first:focus,
.socials-ico-first:active,
.socials-ico-first:hover,
.socials-ico-first {
  display: inline-flex;
  width: 30px;
  height: 30px;
  line-height: 0;
  color: var(--main-color);
  flex-shrink: 0;
  transition: color .3s ease;
}
.socials-ico-first svg {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-info__item {
  font-size: clamp(18px, 1.5vw, 30px);
}

@media (max-width: 802px) {
  .menu-overlay__inner {
    flex-direction: column;
    text-align: center;
  }
  .menu-overlay__info {
    display: none;
  }
}
.baner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.baner.noimg{
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.baner_ico_container{
  position:relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.baner_ico{
  width:clamp(156px, 25vw, 500px);
}
.baner_ico_container h1{
  font-size: clamp( 25px, 4vw, 80px);
  color:#00528f;
  text-wrap: nowrap;
}
.baner p {
  font-weight:200;
  margin-top: 20px;
  text-align: center;
  max-width: clamp(234px, 40vw, 750px);
  font-size: clamp(14px, 2vw, 40px);
}
@media (min-width:1400px){
	.baner_ico{
	  width:clamp(156px, 20vw, 500px);
	}
	.baner_ico_container h1{
	  font-size: clamp( 25px, 3vw, 80px);
	}
	.baner p{
	  max-width: clamp(234px, 27vw, 750px);
	  font-size: clamp(14px, 1.3vw, 40px);
	}
}
.baner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10vw;
}

.baner-text {
  color: white;
  text-align: right;
  font-size: 20px;
  max-width: 650px;
}

.baner-text h1 {
  font-size: 60px;
  line-height: 1.2;
  padding-bottom: 20px;
}

.baner-text .green {
  color: var(--main-color);
}

/* ============  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;
    align-items: flex-start;
    height: auto;
  }
  .telefon-link,
  .email a {
    font-size: 15px;
  }
  .telefon-ikona {
    width: 18px;
    height: 18px;
  }
  .menu-ico {
    width: 40px;
    height: 40px;
  }
  .socials {
    flex-direction: column;
    gap: 16px;
    padding-top: 0;
  }
  .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 {
    height: 50vh;
  }
  .baner-overlay {
    justify-content: center;
    padding: 0 6vw;
  }
  .baner-text {
    text-align: right;
    max-width: 90%;
    font-size: 16px;
  }
  .baner-text h1 {
    font-size: 34px;
    padding-bottom: 12px;
  }
}
/*=== Sekcja A ===*/
.a-section {
  position:relative;
  background: #fff;
  margin-top: 30px;
}

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

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

/* === TABLET === */
@media (max-width: 1000px) {
  .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: 820px) {
  .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;
  }
}
.c-section {
  position: relative;
  background: transparent;
  margin-top: 200px;
}
.c-section-content-background{
  position:absolute;
  overflow: hidden;
  z-index:-1;
  top:12%;
  right:6%;
  aspect-ratio: 1/1;
  max-width: 300px;
  opacity: 8%;
}

.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: 820px) {
  .c-section {
    margin-top: 50px;
  }
  .c-content {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }
  .c-section-content-background{
	top:72%;
	right:40%;
	max-width:200px;
  }
  .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 {
  position:relative;
  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 {
  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;
  height:400px;
  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: 3rem;
}

.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;
  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: 820px) {
  .f-section {
    margin-top: 50px;
  }
  .f-container {
    padding: 0 20px;
    gap: 30px;
  }
  .f-container-up{
	flex-direction:column;
	align-items:center;
  }
  .f-container-up-left h3 {
    font-size: 28px;
  }
  .f-container-up-right-title,
  .f-container-up-right-desc{
	text-align:center
  }
  .f-container-up-right-title {
    font-size: 20px;
  }
  .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 > h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.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 {
  flex: 0 0 calc(33.333% - 20px);
  height: 100%;
  width: calc(33.333% - 20px);
  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: 820px) {
  .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;
  }
}
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 290px;
  background-color: rgb(37, 37, 37);
}

.footer-container-inner {
  width: 90%;
  display: flex;
  height: 200px;
  justify-content: space-between;
}

.footer-container-inner > div {
  height: 100px;
}

.footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100% !important;
  width: 50%;
}

.footer-logo-a {
  height: auto;
}

.footer-logo > a > img {
  width: 325px;
  height: auto;
}

.footer-info1,
.footer-info2 {
  display: flex;
  flex-direction: column;
  color: white;
  padding-left: 10px;
}

.footer-info1 > div,
.footer-info2 > div {
  height: 150px;
  margin: 10px 0;
}

.footer-info1 > div > a,
.footer-info2 > div > a {
  color: white;
}

.footer-info1 > div > p,
.footer-info2 > div > p {
  margin-bottom: 5px;
}

.footer-nav {
  height: 55px;
  background-color: rgb(37, 37, 37);
  color: rgb(17, 24, 39);
  border-top: 2px solid #808080;
}

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

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

.rodo-pirv > div > a {
  margin-right: 15px;
}

.rodo-pirv > div > a:focus,
.rodo-pirv > div > a:active,
.rodo-pirv > div > a:hover {
  color: var(--main-color);
}

.footer-nav {
  height: auto;
}

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

.footer-nav .footer-menu > li a:hover,
.footer-nav .footer-menu > li a:focus-visible,
.footer-nav .footer-menu > .current-menu-item > a {
  color: var(--main-color);
  outline: none;
}

/* === 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;
  }
  .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;
  }
}
.team {
  position:relative;
  padding: clamp(20px, 3vw, 40px) 0;
  text-align: center;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
}
.team-card {
  position:relative;
  z-index:1;
  width: 350px;
  height: 350px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.arrow{
  margin: auto 0;
}
.arrow svg {
  transform: rotate(180deg);
}
.arrow:last-of-type{
  display: none;
}
.team-card__thumb {
  width: 100%;
  height: 70%;
  overflow: hidden;
}
.team-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
  color: #333;
}
.team-card__name a {
  color: inherit;
  text-decoration: none;
}
.team-card__name a:hover {
  text-decoration: underline;
}

@media(max-width:1200px){
  .team-grid{
	flex-wrap:wrap;
  }
	.arrow{
		display:none;
	}
}

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

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

.template-blog-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.template-blog-link:hover {
  color: var(--main-color);
}

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

.blog-card:hover h3 {
  color: var(--main-color);
}

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

.blog-title {
  margin: 16px 0 8px;
  font-size: 22px;
  color: #000;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

/* ================= 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;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Flex--- */
.offer-flex {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* =========== KAFELKA =========== */
.offer-card {
  background: #f9f9f9;
  border: 2px solid #000;
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

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

.offer-card-link-wrap {
  /* link zajmuje cały kafelek (blok) */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  --link-h: 28px;
  --gap: 10px;
  padding: 2.5rem 1.5rem calc(var(--link-h) + var(--gap));
  color: inherit;
  text-decoration: none;
}

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

/* --- Ikona --- */
.offer-card-icon {
  width: 120px;
  height: 70px;
  object-fit: contain;
}

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

/* --- Link „czytaj więcej” --- */
.offer-card-link {
  text-align: left;
  transform: none;
  left: 31%;
  position: absolute;
  bottom: 10px;
  margin-top: auto; /* dociśnij do dołu */
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

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

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

/* --- Lead (opcjonalny) --- */
.offer-card-lead {
  display: none;
} /* ukryj, jeśli nie chcesz opisu na kafelku */
/* --- Komunikat brak --- */
.no-offers {
  text-align: center;
  color: #777;
  padding: 2rem 0;
}

.contact-content{
  position:relative;
  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 .2s ease-in-out, transform .15s ease-in-out, filter .2s ease-in-out;
}
.wpcf7-submit.btn.btn-light:not([disabled]):hover,
.wpcf7-submit.btn.btn-light:not([disabled]):focus{
  box-shadow:
    0 0 .25rem rgba(0,0,0,.5),
    -.125rem -.125rem 1rem color-mix(in srgb, var(--from) 70%, transparent),
     .125rem  .125rem 1rem color-mix(in srgb, var(--to)   70%, transparent);
}
.wpcf7-submit.btn.btn-light:not([disabled]):active{
  transform: translateY(1px);
  filter: brightness(.96);
}
.wpcf7-submit.btn.btn-light:disabled,
.wpcf7-form.submitting .wpcf7-submit.btn.btn-light{
  opacity:.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;
}

/* Zmienne CSS – łatwa modyfikacja kolorów i stylów */
:root {
  --banner-bg: #c7c4c4;
  --banner-gradient: linear-gradient(135deg, #fff, #fff);
  --banner-text: #000;
  --primary-button-bg: var(--main-color);
  --secondary-button-bg: var(--main-color);
  --button-text: #fff;
  --tab-border: var(--main-color);
  --tab-active: var(--main-color);
  --link-color: var(--main-color);
  --link-hover: var(--main-color);
  --switch-off: #363535;
  --switch-on: var(--main-color);
  --icon-default: #000000;
  --icon-hover: #ffffff;
  --neon-glow: 0 0 10px var(--main-color), 0 0 20px var(--main-color);
}

/* Scoping czcionki Poppins tylko w banerze */
#cookie-banner-content {
  background: var(--banner-gradient);
  color: var(--banner-text);
  max-width: 700px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid var(--primary-button-bg);
  box-shadow: var(--neon-glow);
  position: relative;
  padding: 0;
  max-height: 60vh;
  overflow: hidden;
}

/* Usunięto globalne body { font-family } */
body {
  margin: 0;
}

/* Tło modalne z efektem fadeIn */
#cookie-banner {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Górne zakładki – układ poziomy */
#cookie-tabs {
  display: flex;
  border-bottom: 1px solid var(--tab-border);
  list-style: none;
  margin: 0;
  padding: 0;
}

#cookie-tabs li {
  flex: 0 0 auto;
  padding: 15px 20px;
  cursor: pointer;
  color: var(--banner-text);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

#cookie-tabs li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--tab-active);
  transition: width 0.3s ease;
}

#cookie-tabs li:hover::after,
#cookie-tabs li.active::after {
  width: 100%;
}

#cookie-tabs li.active {
  color: var(--tab-active);
}

/* Sekcje zawartości – slideIn animacja */
.tab-content {
  display: none;
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.4;
  animation: slideIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Zakładka "Zgody" */
.tab-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.tab-content p {
  margin: 10px 0 20px;
}

.consent-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookie-button:hover {
  transform: translateY(-2px);
}

#reject-all-btn,
#customize-btn {
  background-color: var(--primary-button-bg);
  color: var(--button-text);
}

#accept-all-btn,
#accept-selected-btn {
  background-color: var(--secondary-button-bg);
  color: var(--button-text);
}

/* Zakładka "Szczegóły" */
.cookie-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--main-color);
}

.cookie-label {
  margin-right: 10px;
  font-size: 1rem;
}

.static-check {
  font-size: 1.2rem;
  color: var(--tab-active);
  margin-left: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--switch-off);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

.switch input:checked + .slider {
  background-color: var(--switch-on);
}

.switch input:checked + .slider:before {
  transform: translateX(20px);
}

#details-button-container {
  margin-top: 20px;
  text-align: right;
}

/* Zakładka "Informacje" */
.about-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

a.cookie-banner-anchor {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.cookie-banner-anchor:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Floating button "Zmień zgody" – pulsujące kółko z ikoną */
#custom-button {
  position: fixed;
  padding: 15px;
  bottom: 20px;
  left: 20px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-button-bg);
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: pulse 2s infinite;
  box-shadow: 0 0 15px var(--primary-button-bg);
}

#custom-button:hover {
  transform: translateY(-2px);
}

#custom-button svg {
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary-button-bg);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-button-bg);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary-button-bg);
  }
}
#custom-button svg path {
  fill: var(--icon-default);
  transition: fill 0.3s ease;
}

#custom-button:hover svg path {
  fill: var(--icon-hover);
}

/* Responsywność – dostosowanie do urządzeń mobilnych */
@media (max-width: 700px) {
  #custom-button {
    bottom: 10px;
    left: 10px;
  }
  @keyframes pulse {
    0% {
      transform: scale(0.5);
      box-shadow: 0 0 2px var(--primary-button-bg);
    }
    50% {
      transform: scale(0.6);
      box-shadow: 0 0 6px var(--primary-button-bg);
    }
    100% {
      transform: scale(0.5);
      box-shadow: 0 0 2px var(--primary-button-bg);
    }
  }
  #cookie-banner-content {
    max-width: 90vw;
    width: 90vw;
    max-height: 60vh;
    display: block;
    overflow: hidden;
    font-size: 0.85rem;
  }
  #cookie-tabs li {
    flex: 1;
    padding: 10px;
    font-size: 0.8rem;
  }
  #details-tab {
    max-height: 40vh;
    overflow-y: auto;
    padding: 10px;
    font-size: 0.85rem;
  }
  .cookie-label {
    font-size: 0.8rem;
  }
  .switch {
    width: 30px;
    height: 16px;
    margin-left: -5px;
  }
  .slider:before {
    height: 10px;
    width: 10px;
    left: 3px;
    bottom: 3px;
  }
  .switch input:checked + .slider:before {
    transform: translateX(14px);
  }
}
/* Reguły dla urządzeń desktopowych – przywrócenie scrolla dla zakładki "Szczegóły" */
@media (min-width: 601px) {
  #details-tab {
    max-height: calc(60vh - 50px);
    overflow-y: auto;
  }
}
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.363); 
  background:#ffffff; 
}
body::-webkit-scrollbar-thumb {
  background:var(--main-color);
}
html { overflow-y: scroll; }
@supports (scrollbar-gutter: stable) {
  html {
    overflow-y: auto;
    scrollbar-gutter: stable;
  }
}
.blob-canvas{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.blob{
  position: absolute;
  aspect-ratio: 1/1;
  mix-blend-mode: screen;
}

.blob.b1,
.blob.b4,
.blob.b7,
.blob.b9,
.blob.b12,
.blob.b15,
.blob.b18{
  border-radius: 50%;
  background: #d40074;
  background: linear-gradient(90deg, rgba(212, 0, 116, 1) 0%, rgba(212, 0, 116, 0.37) 88%, rgba(212, 0, 116, 0) 99%);
}
.blob.b2,
.blob.b5,
.blob.b8,
.blob.b10,
.blob.b13,
.blob.b16,
.blob.b19{
  border-radius: 50%;
  background: #0094d4;
  background: linear-gradient(90deg, rgba(0, 148, 212, 1) 0%, rgba(0, 148, 212, 0.37) 88%, rgba(0, 148, 212, 0) 99%);
}
.blob.b3,
.blob.b6,
.blob.b11,
.blob.b14,
.blob.b17,
.blob.b20{
  border-radius: 50%;
  background: #00d68f;
  background: linear-gradient(90deg, rgba(0, 214, 143, 1) 0%, rgba(0, 214, 143, 0.37) 88%, rgba(0, 214, 143, 0) 99%);
}
 .blob.b1{left: 40%; top: -5%; width: 100px;}
 .blob.b2{left: 20%; bottom: 18%; width: 50px;}
 .blob.b3{right: 10%; bottom: -20%; width: 150px;}
 .blob.b4{left: 60%; top: -5%; width: 70px;}
 .blob.b5{left: 5%; bottom: 18%; width: 100px;}
 .blob.b6{right: 2%; bottom: -5%; width: 80px;}
 .blob.b7{right: 20%; top: -20%; width: 50px;}
 .blob.b8{right: 35%; bottom: 15%; width: 150px;}
 .blob.b9{left: -3%; top: -15%; width: 100px;}
 .blob.b10{left: 40%; bottom: -10%; width: 80px;}
 .blob.b11{right: -2%; bottom: -15%; width: 70px;}
 .blob.b12{left: -3%; top: -12%; width: 70px;}
 .blob.b13{right: 50%; bottom: -10%; width: 90px;}
 .blob.b14{right: -2%; bottom: -10%; width: 50px;}
 .blob.b15{right: -10%; top: -10%; width: 8vw;}
 .blob.b16{left: -20%; bottom: 20%; width: 6vw;}
 .blob.b17{right: -20%; bottom: -30%; width: 7vw;}
 .blob.b18{right: 15%; top: 2%; width: 8vw;}
 .blob.b19{left: 10%; bottom: 25%; width: 6vw;}
 .blob.b20{right: 5%; bottom: 10%; width: 7vw;}
@media(max-width:1360px){
	.blob.b1 {left: 40%; top: -5%; width: 50px;}
	.blob.b2{left: 30%; bottom: 18%; width: 40px;}
	.blob.b3{right: 10%; bottom: -20%; width: 80px;}
	.blob.b4{left: 60%; top: -5%; width: 40px;}
	.blob.b5{left: 5%; bottom: 18%; width: 50px;}
	.blob.b6{right: 2%; bottom: -5%; width: 40px;}
	.blob.b7{right: 20%; top: -20%; width: 30px;}
	.blob.b8{right: 35%; bottom: 15%; width: 75px;}
	.blob.b9{left: -3%; top: -2%; width: 100px;}
	.blob.b10{left: 2%; bottom: 10%; width: 80px;}
	.blob.b11{right: -2%; bottom: 0%; width: 70px;}
	.blob.b12{left: -3%; top: -8%; width: 40px;}
	.blob.b13{right: 42%; bottom: 10%; width: 90px;}
	.blob.b14{right: -2%; bottom: 2%; width: 50px;}
}
@media(max-width:1000px){
	.blob.b1{display:none}
	.blob.b2{left: 33%; bottom: 18%; width: 40px;}
	.blob.b3{right: 10%; bottom: -30%; width: 80px;}
	.blob.b4{left: 60%; top: -5%; width: 40px;}
	.blob.b5{left: 5%; bottom: 78%; width: 50px;}
	.blob.b6{right: 2%; bottom: -5%; width: 40px;}
	.blob.b7{right: 20%; top: -30%; width: 30px;}
	.blob.b8{right: 35%; bottom: 15%; width: 75px;}
	.blob.b12{left: 70%; top: 45%; width: 40px;}
	.blob.b13{right: 35%; bottom: 20%; width: 90px;}
	.blob.b14{right: -2%; bottom: 2%; width: 50px;}
	.blob.b15{right: 0%; top: -20%; width: 10vw;}
	.blob.b16{left: -10%; bottom: 30%; width: 8vw;}
	.blob.b17{right: -10%; bottom: -20%; width: 9vw;}
}
@media(max-width:820px){
	.blob.b1 {display:block; left: 90%; top: 85%; width: 50px;}
	.blob.b2{left: 2%; bottom: 30%; width: 40px;}
	.blob.b3{right: 70%; bottom: -10%; width: 60px;}
	.blob.b4{left: 10%; top: 5%; width: 30px;}
	.blob.b5{left: 90%; bottom: 96%; width: 50px;}
	.blob.b6{display:none;}
	.blob.b7{right: 5%; top: 70%; width: 30px;}
	.blob.b8{right: 90%; bottom: 0%; width: 75px;}
	.blob.b9{left: -3%; top: 10%; width: 100px;}
	.blob.b10{left: 2%; bottom: 30%; width: 80px;}
	.blob.b11{right: -2%; bottom: 5%; width: 70px;}
	.blob.b12{left: 15%; top: 10%; width: 20px;}
	.blob.b13{right: 25%; bottom: 70%; width: 25px;}
	.blob.b14{right: 60%; bottom: 50%; width: 18px;}
}
@media(max-width:610px){
	.blob.b1{left: 90%; top: 85%; width: 50px;}
	.blob.b2{left: 2%; bottom: 36%; width: 30px;}
	.blob.b3{right: 70%; bottom: -10%; width: 35px;}
	.blob.b4{left: 10%; top: 5%; width: 30px;}
	.blob.b5{left: 90%; bottom: 96%; width: 50px;}
	.blob.b6{display:none;}
	.blob.b7{right: 5%; top: 70%; width: 30px;}
	.blob.b8{right: 90%; bottom: 0%; width: 75px;}
}
@media(max-width:515px){
	.blob.b1{left: 84%; top: 90%; width: 50px;}
	.blob.b2{left: 2%; bottom: 36%; width: 30px;}
	.blob.b3{right: 70%; bottom: -10%; width: 35px;}
	.blob.b4{left: 40%; top: 5%; width: 30px;}
	.blob.b5{left: 17%; bottom: 88%; width: 50px;}
	.blob.b6{display:none;}
	.blob.b7{right: 5%; top: 60%; width: 30px;}
	.blob.b8{right: 90%; bottom: 0%; width: 75px;}
}

@media (prefers-color-scheme: light){
  .blob{ opacity:.5; mix-blend-mode:multiply; }
}
/*# sourceMappingURL=style.css.map */
