/*
* Theme name: Vesna
* Author name: Vesna Agency
*/
:root {
  --heading-font-family: "TTHoves Medium";
  --body-font-family: "TTHoves Medium";
  --black: #000;
  --white: #fff;
  --bi-white: #F7F5F3;
  --bi-gray: #8E8A86;
  --bi-black: #292929;
  --bi-blue: #445275;
  --bi-muddy-blue: #ABB1C1;
}

@font-face {
  font-family: "TTHoves Regular";
  src:
    url("./assets/fonts/TTHoves-Regular.woff2") format("woff2"),
    url("./assets/fonts/TTHoves-Regular.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TTHoves Medium";
  src:
    url("./assets/fonts/TTHoves-Medium.woff2") format("woff2"),
    url("./assets/fonts/TTHoves-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src:
    url("./assets/fonts/Manrope-Regular.woff2") format("woff2"),
    url("./assets/fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: var(--bi-white);
}

body.no-main-padding main{
    padding-top: 0 !important;
    margin-top: 0 !important;
}
main {
  display: block;
  margin-top: 9.25rem;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: rgba(0, 0, 0, 0);
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /*reset for mobile browsers */
  font-weight: normal;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
  object-fit: cover;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
  font-size: calc(8px + 8 * ((100vw - 960px) / 960));
}

.container {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section.wrapper {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

section.wrapper--large {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media screen and (max-width: 959px) {
  html {
    font-size: calc(13.09px + 2.91 * ((100vw - 360px) / 80));
  }
  main {
	  margin-top: 7.5rem;
	}

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  section.wrapper,
  section.wrapper--large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

svg path {
  fill: inherit;
  stroke: inherit;
}

body {
  min-width: 360px;
  overflow-x: hidden;
  font-family: var(--body-font-family);
  font-weight: 600;
  font-style: normal;
}

/* HEIGHT & WIDTH */
.h--full {
  height: 100%;
}

.w-full {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .w-full--mobile {
    width: 100%;
  }
}

/* FLEX CLASSES */
.flex {
  display: flex;
}
.flex.flex--row {
  flex-direction: row;
}
.flex.flex--column {
  flex-direction: column;
}
.flex.items--center {
  justify-content: center;
  align-items: center;
}
.flex.align--start {
  align-items: flex-start;
}
.flex.align--center {
  align-items: center;
}
.flex.align--end {
  align-items: flex-end;
}
.flex.justify--start {
  justify-content: flex-start;
}
.flex.justify--center {
  justify-content: center;
}
.flex.justify--end {
  justify-content: flex-end;
}
.flex.justify--between {
  justify-content: space-between;
}
.flex.flex--wrap {
  flex-wrap: wrap;
}
.flex.flex--grow {
  flex-grow: 1;
}

@media screen and (max-width: 959px) {
  .flex.flex--row--mobile {
    flex-direction: row;
  }
  .flex.flex--row-reverse--mobile {
    flex-direction: row-reverse;
  }
  .flex.flex--column--mobile {
    flex-direction: column;
  }
  .flex.items--center--mobile {
    justify-content: center;
    align-items: center;
  }
  .flex.align--start--mobile {
    align-items: flex-start;
  }
  .flex.align--center--mobile {
    align-items: center;
  }
  .flex.align--end--mobile {
    align-items: flex-end;
  }
  .flex.justify--start--mobile {
    justify-content: flex-start;
  }
  .flex.justify--center--mobile {
    justify-content: center;
  }
  .flex.justify--end--mobile {
    justify-content: flex-end;
  }
  .flex.justify--between--mobile {
    justify-content: space-between;
  }
  .flex.wrap--mobile {
    flex-wrap: wrap;
  }
  .flex.nowrap--mobile {
    flex-wrap: nowrap;
  }
}

/* SPACING */
.gap--4 {
  gap: 4px;
}

.gap--8 {
  gap: 0.5rem;
}

.gap--12 {
  gap: 0.75rem;
}

.gap--16 {
  gap: 1rem;
}

.gap--20 {
  gap: 1.25rem;
}

.gap--32 {
  gap: 2rem;
}

.gap--40 {
  gap: 2.5px;
}

.gap--48 {
  gap: 3rem;
}

.gap--64 {
  gap: 4rem;
}

@media screen and (max-width: 959px) {
  .gap--4--m {
    gap: 4px;
  }

  .gap--8--m {
    gap: 0.5rem;
  }

  .gap--12--m {
    gap: 0.75rem;
  }

  .gap--16--m {
    gap: 1rem;
  }

  .gap--20--m {
    gap: 1.25rem;
  }

  .gap--32--m {
    gap: 2rem;
  }

  .gap--40--m {
    gap: 2.5rem;
  }

  .gap--48--m {
    gap: 3rem;
  }

  .gap--64--m {
    gap: 4rem;
  }
}

/*MARGIN*/
.mb--8 {
  margin-bottom: 0.5rem;
}

.mb--20 {
  margin-bottom: 1.25rem;
}

.mb--24 {
  margin-bottom: 24px;
}

.mb--32 {
  margin-bottom: 2rem;
}

.mb--36 {
  margin-bottom: 2.25rem;
}

.mb--40 {
  margin-bottom: 40px;
}

.mb--48 {
  margin-bottom: 3rem;
}

.mb--64 {
  margin-bottom: 64px;
}

.mt--40 {
  margin-top: 40px;
}

/* --- MARGINS --- */
/* Top */
.mt--8 {
  margin-top: 0.5rem;
}
.mt--16 {
  margin-top: 1rem;
}
.mt--24 {
  margin-top: 1.5rem;
}
.mt--32 {
  margin-top: 2rem;
}
.mt--40 {
  margin-top: 2.5rem;
}
.mt--48 {
  margin-top: 3rem;
}
.mt--64 {
  margin-top: 4rem;
}

/* Bottom */
.mb--8 {
  margin-bottom: 0.5rem;
}
.mb--16 {
  margin-bottom: 1rem;
}
.mb--24 {
  margin-bottom: 1.5rem;
}
.mb--32 {
  margin-bottom: 2rem;
}
.mb--40 {
  margin-bottom: 2.5rem;
}
.mb--48 {
  margin-bottom: 3rem;
}
.mb--64 {
  margin-bottom: 4rem;
}

/* Left */
.ml--8 {
  margin-left: 0.5rem;
}
.ml--16 {
  margin-left: 1rem;
}
.ml--24 {
  margin-left: 1.5rem;
}
.ml--32 {
  margin-left: 2rem;
}

/* Right */
.mr--8 {
  margin-right: 0.5rem;
}
.mr--16 {
  margin-right: 1rem;
}
.mr--24 {
  margin-right: 1.5rem;
}
.mr--32 {
  margin-right: 2rem;
}

/* --- PADDINGS --- */
/* All sides */
.p--16 {
  padding: 1rem;
}
.p--24 {
  padding: 1.5rem;
}
.p--32 {
  padding: 2rem;
}
.p--48 {
  padding: 3rem;
}

/* Top & Bottom (Vertical) */
.py--16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py--24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py--32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py--48 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py--64 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Left & Right (Horizontal) */
.px--16 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px--24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px--32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* --- MOBILE ADAPTIVE (max-width: 959px) --- */
@media screen and (max-width: 959px) {
  /* Margins Mobile */
  .mt--0--m {
    margin-top: 0 !important;
  }
  .mt--16--m {
    margin-top: 1rem;
  }
  .mt--24--m {
    margin-top: 1.5rem;
  }
  .mt--32--m {
    margin-top: 2rem;
  }

  .mb--16--m {
    margin-bottom: 1rem;
  }
  .mb--24--m {
    margin-bottom: 1.5rem;
  }
  .mb--32--m {
    margin-bottom: 2rem;
  }

  /* Paddings Mobile */
  .p--16--m {
    padding: 1rem;
  }
  .p--24--m {
    padding: 1.5rem;
  }

  .py--24--m {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .py--32--m {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .px--16--m {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* HEADINGS */
.heading {
  font-family: var(--heading-font-family);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.05em;
}

.heading-1 {
  font-size: 7.5rem;
  line-height: 110%;
  letter-spacing: -0.06em;
}

.heading-2 {
  font-size: 6rem;
}

.heading-3 {
  font-size: 4.5rem;
}

.heading-4 {
  font-size: 4rem;
}

.heading-5 {
  font-size: 3.25rem;
  line-height: 100%;
}

.heading-6 {
  font-size: 2.5rem;
}

.heading-7 {
  font-size: 2rem;
}
/* TEXT */
.text {
  font-family: var(--body-font-family);
  font-style: normal;
  font-size: 1.5rem;
}

.text.text--small {
  font-size: 1.25rem;
}

.text--center {
  text-align: center;
}

@media screen and (max-width: 959px) {
  .heading-1,
  .heading-1--mobile {
    font-size: 3rem;
  }

  .heading-2,
  .heading-2--mobile {
    font-size: 2.5rem;
  }

  .heading-3,
  .heading-3--mobile {
    font-size: 2.5rem;
  }

  .heading-5,
  .heading-5--mobile {
    font-size: 1.25rem;
  }

  .heading-6,
  .heading-6--mobile {
    font-size: 1.125rem;
  }

  .heading-7,
  .heading-7--mobile {
    font-size: 1.125rem;
  }
  
  .text{
    font-size: 1.125rem;
  }

  .text.text--large {
    font-size: 1.125rem;
  }

  .text.text--medium {
    font-size: 1rem;
  }

  .text.text--small {
    font-size: 0.875rem;
  }
}

/* COLORS */
.color--white {
  color: var(--white);
}
.color--black {
  color: var(--black);
}
.color--black-80 {
  color: var(--black-80);
}
.color--black-40 {
  color: var(--black-40);
}
.color--black-30 {
  color: var(--black-30);
}

/* BORDER RADIUS */
.br--20 {
  border-radius: 1.25rem;
}
.br--24 {
  border-radius: 1.5rem;
}
.br--32 {
  border-radius: 2rem;
}
@media screen and (max-width: 959px) {
  .br--16--m {
    border-radius: 1rem;
  }
  .br--20--m {
    border-radius: 1.25rem;
  }
  .br--24--m {
    border-radius: 1.5rem;
  }
  .br--32--m {
    border-radius: 2rem;
  }
}

/* BUTTON */
.btn {
  /* GENERAL STYLES FOR ALL BUTTONS */
}

.btn.btn--primary {
  /* STYLES FOR SPECIFIC BUTTON STYLE*/
}

/* ICON */
.icon {
  display: flex;
  width: 4.5rem;
  height: 4.5rem;
  justify-content: center;
  align-items: center;
  background-color: var(--light-green);
  border-radius: 100%;
  flex-shrink: 0;
}

.icon img,
.icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

@media screen and (max-width: 959px) {
  .icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .icon img,
  .icon svg {
    width: 1.203125rem;
    height: 1.203125rem;
  }

  .icon.icon--large {
    width: 4rem;
    height: 4rem;
  }

  .icon.icon--large img,
  .icon.icon--large svg {
    width: 2rem;
    height: 2rem;
  }
}

/* MEDIA */
.media {
  position: relative;
  overflow: hidden;
}

.media img,
.media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORM */
form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

form .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 0.5rem;
}
/*
form input:not([type="submit"]):not([type="button"]) {
  border-radius: 900px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  width: 100%;

  color: rgba(255, 255, 255, 1);
  font-family: var(--body-font-family);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.01125rem;
}
*/
form .form__terms {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

form .form__terms a {
  font-weight: 700;
  color: var(--white);
}

@media screen and (max-width: 959px) {
  form .form__bottom p {
    width: 100%;
    text-align: center;
  }

  form .form__bottom input[type="submit"] {
    width: 100%;
  }
}

.wpcf7 {
  position: relative;
}

.wpcf7 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  color: white;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}

.wpcf7 form.invalid input:not([type="submit"]):not([type="button"]) {
  border-color: #ff0000;
}

section .wpcf7 form.sent .wpcf7-response-output {
  margin-left: 0px;
  margin-right: 0px;
  background-color: var(--green);
  border-color: var(--green);
  border-radius: 1rem;
  padding: 1rem;
}
.btn-circle {
    position: absolute;
    left: -8%; 
    top: 50%;
    transform: translateY(-50%) rotate(-6deg);
    width: 12.5rem;
    height: 12.5rem;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    font-size: 1.5rem;
    line-height: 120%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s ease 0.2s;
}
.btn-circle:hover{
  background: var(--bi-blue);
  color: var(--bi-white);
}


/* HEADER */
.header {
  position: fixed;
  top: 1.5rem;
  left: 0px;
  width: 100%;
  z-index: 5000;
  color: var(--bi-black);
}

.header .header__content {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.3125rem 0.3125rem 0.3125rem 0.9375rem;
  height: 4.375rem;
}

.header .header__menu{
  display: none;
}
.header__buttons{
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0.3125rem;
}
.header__buttons .header__burger-btn{
    font-size: 1.25rem;
    background: transparent;
    border: none;
    color: var(--bi-black);
    border-bottom: 1px solid var(--bi-black);
}
.header .header__content img{
  object-fit: contain;
}
.header .header__menu a {
  position: relative;
  color: var(--bi-black);
  text-decoration: none;
  padding: 0.2rem 0;
  display: inline-block;
}

.header .header__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; 
  background-color: var(--bi-black);
  transition: width 0.3s ease-in-out;
}

.header .header__menu a:hover::after {
  width: 100%;
}
@media screen and (max-width: 960px) {
	.header .header__content {
	  padding: 0.3125rem 1.5625rem 0.3125rem 1.5625rem;
	}
}
@media screen and (min-width: 960px) {
  .header {
    top: 1.5rem;
    padding: 0px 1.5rem;
  }
  .header .header__cart-btn {
    display: flex;
  }
  .header .header__menu {
    display: flex;
    padding: 0px;
    flex-direction: row;
    list-style: none;
    gap: 3.125rem;
    flex: 1;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    
    position: absolute;
  }
  .header__logo{
    flex: 0 0 auto;
  }
  .header .header__menu a {
    text-decoration: none;
    color: var(--bi-black);
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 120%;
    font-family: "Manrope";
    font-weight: 600;
	  transition: all .3s linear;
  }
	.header .header__menu a:hover,
	.header .header__menu a:focus{
		color: var(--light-brown);
	}
  .header .header__actions {
    gap: 1.14rem;
  }
  .header .header__menu .sub-menu a {
    color: var(--color-main-blue);
  }
  .header .header__content {
    padding: 0.3125rem 2.25rem 0.3125rem 2.25rem;
    height: 6.25rem;
  }
  .header .header__buttons .button-action{
    text-decoration: none;
    color: var(--bi-blue);
    border-bottom: 1px solid color-mix(in srgb, var(--bi-blue), transparent 60%);
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 120%;
    font-family: "Manrope";
  }
  .header .header__menu > li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header .header__menu li.menu-item-has-children .sub-menu {
    position: absolute;
    top: calc(100% + 1.75rem);
    left: -1.5625rem;
    background-color: #fff;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 1.5625rem;
    width: 21.5625rem;

    transform: translateY(50%);
    opacity: 0;
    z-index: -100;
    visibility: hidden;

    transition: all 0.3s linear;
  }

  .header .header__menu li.menu-item-has-children .sub-menu a {
    transition: all 0.3s linear;
  }

  .header .header__menu li.menu-item-has-children .sub-menu a:hover {
    color: var(--grey-text);
    opacity: 0.8;
  }

  .header .header__menu li.menu-item-has-children.show .sub-menu {
    transform: translateY(0%);
    opacity: 1;
    z-index: 0;
    visibility: visible;
  }
  
  .header .btn-burger{
      padding: 1.125rem 1.5625rem;
      gap: 0.625rem;
      font-size: 1.25rem;
  }
  
  .header .header__profile-btn,
   .header .header__cart-btn{
      width: 4.0625rem;
      height: 4.0625rem;
    }
    
    .header .header__profile-btn svg,
    .header .header__cart-btn svg{
        width: auto;
      height: 1.5625rem;
    }
    
    .header .btn-burger.header__burger-btn-open{
        width: 21.625rem;
    }
}

.burger-menu.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bi-white);
  z-index: 4999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.burger-menu.popup.show {
  opacity: 1;
  visibility: visible;
}

.burger-menu .popup__body {
  width: 100%;
  height: 80svh;
  padding: 1.25rem 1.25rem 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  background: #fff;
}
.burger-menu .popup__container{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
	padding-bottom: 1.5625rem;
	
	padding-top: 7.5rem;
	height: 100%;
}


.burger__content {
  flex-grow: 1;
}

.burger__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

.burger__menu li a {
  font-size: 2rem;
  font-weight: 500;
  color: var(--bi-black, #000000);
  text-decoration: none;
  display: inline-block;
}

.burger__menu .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.burger__menu .sub-menu {
  list-style: none;
  padding: 0;
  overflow: hidden;
  height: 0;
}

.burger__action-btn {
  font-size: 1.6rem;
  font-family: "Manrope";
  color: var(--bi-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(68,82,117,0.4);
  padding-bottom: 0.25rem;
  display: inline-block;
  text-align: center;
}
.header__close-wrapper {
    display: none !important;
}

body.noscroll .header__burger-btn {
    display: none !important;
}

body.noscroll .header__close-wrapper {
    display: inline-block !important;
}

.header__close-btn {
    background: transparent;
    border: none;
    font-family: inherit;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    padding: 0;
    font-size: 1.25rem;
    color: var(--bi-black);
    border-bottom: 1px solid var(--bi-black);
}
body.noscroll {
  overflow: hidden;
}
/* FOOTER */
.footer {
    background-color: var(--bi-gray);
    padding: 3.75rem 3.75rem 3.75rem 5.625rem;
    color: var(--bi-white);
}

.footer-left{
  min-width: 31.25rem;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    gap: 10rem;
}

.footer-right {
  display: flex;
  gap: 8.625rem;
  padding-bottom: 6.25rem;
}
.footer-block-right{
  width: 100%;
  justify-content: space-between;
}
.footer-label {
    font-family: "Manrope";
    text-transform: none;
    opacity: 0.5;
    margin-bottom: 1.25rem;
}
.footer-label.contact{
  margin-bottom: 0;
}
.footer-heading{
	line-height: 83%
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-link {
  color: var(--bi-white);
  text-decoration: none;
  font-family: "Manrope";
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 0.9375rem;
}

.social-box {
    width: 4.375rem;
    height: 4.375rem;
    background-color: rgba(247, 245, 243, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    color: #F7F5F3;
    transition: background 0.3s;
}

.footer-bottom {
    border-top: 1px solid rgba(247, 245, 243, 0.4);
    padding-top: 1.25rem;
}

.footer-copyright {
    color: var(--bi-white);
    opacity: 0.6;
    margin: 0;
    
    font-family: "Manrope";
}


@media (max-width: 959px) {
  .footer {
    padding: 2.5rem 1.5625rem 1.5625rem 1.5625rem;
  }
	.footer {
    position: relative; /* Обов'язково для position: absolute у псевдоелемента */
	}

	.footer::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0; 
		width: 100%;
		height: 17.1875rem; 
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
		pointer-events: none;
		z-index: 1;
		background-image: url('data:image/svg+xml,<svg viewBox="0 0 440 313" preserveAspectRatio="none" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M-40 294.604L115.5 145.604L210.5 222.104L451 19.104" stroke="%23F7F5F3" stroke-opacity="0.05" stroke-width="50"/></svg>');
	}
  .footer-left{
    min-width: 5rem;
  }
  .footer-left .footer-heading br{
    display: none;
  }
  .footer-contacts {
    gap: 0.625rem;
  }
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.875rem;
  }
  .footer-heading {
    font-size: 2.5rem;
  }
  .footer-heading br{
    display: none;
  }
  .footer-right {
    flex-direction: column;
    gap: 1.875rem;
    padding-bottom: 3.75rem;
  }
  .footer-bottom {
    border-bottom: 1px solid rgba(247, 245, 243, 0.4);
    padding-bottom: 1.25rem;
    border-top: none;
  }
  .footer-dev{
    text-decoration: underline;
    color: var(--bi-white);
    padding-top: 1.25rem;
  }
  .social-icons {
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .hide-desktop {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .hide-mobile {
    display: none;
  }
}
.header.header--blur .header__content{
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(0.5rem);
}
.header.header--blur .header__menu a{
	color: var(--white);
}
.header.header--blur .header__buttons .button-action {
    color: var(--white);
    border-bottom: 1px solid color-mix(in srgb, var(--white), transparent 60%);
}

.header.header--blur .header__buttons .header__burger-btn{
    color: var(--white);
    border-bottom: 1px solid var(--white);
}
body:has(.burger-menu.popup.show) .header.header--blur .header__logo {
    filter: brightness(0) !important;
}
.header.header--blur .header__logo {
    filter: invert(1);
    filter: invert(1) brightness(2);
}

.header__lang-menu-item {
    display: inline-flex;
    align-items: center;
}

.header__lang-dropdown {
    position: relative;
}

.header__lang-current {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    color: var(--bi-black);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 120%;
    font-family: "Manrope";
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}
.header.header--blur .header__lang-current{
	color: var(--white);
}
.header.header--blur .header__lang-current svg{
	stroke: var(--white);
}
.header.header--blur .header__lang-list li a {
    color: var(--bi-black);
}
.header__lang-current:hover {
    opacity: 0.8;
}

.header__lang-current svg {
    stroke: var(--bi-black);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.header__lang-list {
    position: absolute;
    top: calc(100% + 15px); 
    right: 50%;
    transform: translateX(50%) translateY(10px);
    margin: 0;
    padding: 0.5rem 0.5rem;
    list-style: none;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0.5rem);
    border-radius: 4px;
    min-width: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.header__lang-list li a {
    display: block;
    position: relative;
    padding: 8px 16px;
    color: var(--bi-black);
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.3s ease;
}

.header__lang-list li.current-lang {
    display: none;
}
.header .header__lang-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; 
  background-color: var(--bi-black);
  transition: width 0.3s ease-in-out;
}

.header .header__lang-list a:hover::after {
  width: 100%;
}
.burger__menu .header__lang-current{
    font-size: 2rem;
    font-weight: 600;
    color: var(--bi-black, #000000);
}
.burger__menu .header__lang-current svg {
    width: 1rem;
    height: 0.5rem;
}

.header__lang-dropdown.is-active .header__lang-list {
    display: block;
    opacity: 1;
    visibility: visible;
}
@media (min-width: 769px) {
    .header__lang-dropdown:hover .header__lang-list {
        opacity: 1;
        visibility: visible;
        transform: translateX(50%) translateY(0);
    }
    .header__lang-dropdown:hover .lang-arrow {
        transform: rotate(180deg);
    }
}
