/*
* Theme name: Vesna
* Author name: Vesna Agency
*/
:root {
  --heading-font-family: "Forum", sans-serif;
  --body-font-family: "Forum", sans-serif;
  --body-color: #F5F1E9;
  --light-blue: #CCDDF9;
  --dark-blue: #021D48;
  --light-brown: #BCB09A;
  --dark-brown: #B78E70;
  --white-1: #F6F1E5;
  --white-2: #FFFAEF;
  --white-40: rgba(255, 250, 239, 0.4);
  --light-green: #D9EFDB;
  --green: #0CBA65;
  --white-st: #FFE6E6;
  --red: #D03631;
}

@font-face {
  font-family: "Forum";
  src:
    url("./assets/fonts/Forum.woff2") format("woff2"),
    url("./assets/fonts/Forum.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mariupol";
  src:
    url("./assets/fonts/Mariupol-Regular.woff") format("woff"),
    url("./assets/fonts/Mariupol-Regular.woff2") format("woff2");
  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;
}
main {
  display: block;
}
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(10.67px + 5.33 * ((100vw - 960px) / 840));
}

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

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(14.66px + 1.34 * ((100vw - 360px) / 33));
  }

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

  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);
  background: var(--body-color);
  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--5 {
  gap: 0.3125rem;
}

.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: 400;
  line-height: 90%;
  letter-spacing: -0.04rem;
}

.heading strong {
  font-weight: 600;
}

.heading-1 {
  font-size: 6.875rem;
  line-height: 90%;
}

.heading-2 {
  font-size: 5.625rem;
  line-height: 85%;
}

.heading-3 {
  font-size: 4.6875rem;
  line-height: 85%;
}

.heading-4 {
  font-size: 1.75rem;
  line-height: 110%;
  letter-spacing: -0.02rem;
}

/* TEXT */
.text {
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  font-size: 1.5rem;
  letter-spacing: -0.02rem;
}

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

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

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

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

@media screen and (max-width: 959px) {
  .heading-1,
  .heading-1--mobile {
    font-size: 2.6875rem;
    line-height: 95%;
  }

  .heading-2,
  .heading-2--mobile {
    font-size: 2.6875rem;
    line-height: 95%;
  }

  .heading-3,
  .heading-3--mobile {
    font-size: 2.375rem;
    line-height: 95%;
  }

  .heading-4,
  .heading-4--mobile {
    font-size: 1.25rem;
    line-height: 110%;
    letter-spacing: -0.02rem;
  }

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

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

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

/* COLORS */
.color--light-blue {
  color: var(--light-blue);
}
.color--dark-blue {
  color: var( --dark-blue);
}
.color--light-brown {
  color: var(--light-brown);
}
.color--dark-brown {
  color: var(--dark-brown);
}
.color--white-1 {
  color: var(--white-1);
}
.color--white-2 {
  color: var(--white-2);
}
.color--white-40 {
  color: var(--white-40);
}
.color--white-st {
  color: var(--white-st);
}
.color--light-green {
  color: var(--light-green);
}
.color--green {
  color: var(--green);
}
.color--red {
  color: var(--red);
}

/* BORDER RADIUS */
.br--5 {
  border-radius: 0.3125rem;
}
.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 {
  padding: 1.9375rem 4.6875rem;
  font-size: 1.25rem;
  font-family: "Mariupol";
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 110%;
  background: var(--light-blue);
  color: var(--dark-blue);
  text-decoration: none;
}
.btn-white {
  padding: 1.9375rem 4.6875rem;
  font-size: 1.25rem;
  font-family: "Mariupol";
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 110%;
  background: var(--white-2);
  color: var(--dark-blue);
  text-decoration: none;
  border-radius: 0.3125rem;
}
.btn-svg{
  padding: 1.5625rem 1.6875rem;
  font-size: 1.25rem;
  font-family: "Mariupol";
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 110%;
  background: var(--light-blue);
  color: var(--dark-blue);
  text-decoration: none;
}
.btn-svg svg{
  stroke: var(--dark-blue);
  fill: var(--dark-blue);
  color: var(--dark-blue);
}

.btn.btn--primary {
  background: transparent;
  border: 2px solid #D7CEBD;
  gap: 1.5rem;
}
.btn.btn--primary svg{
  stroke: var(--dark-blue);
  fill: var(--dark-blue);
  color: var(--dark-blue);
}
@media screen and (max-width: 959px) {
  .btn {
    padding: 1.5625rem 3.875rem;
    font-size: 1.125rem;
    font-family: "Mariupol";
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 110%;
    background: var(--light-blue);
    color: var(--dark-blue);
    text-decoration: none;
  }
  .btn-svg{
    padding: 1.1875rem 1.5625rem;
    font-size: 1.25rem;
    font-family: "Mariupol";
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 110%;
    background: var(--light-blue);
    color: var(--dark-blue);
    text-decoration: none;
  }
  .btn-white {
    padding: 1.5625rem 3.25rem;
    font-size: 1.125rem;
  }
}
/* 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;
}

.swiper-container-block .swiper-container,
.swiper-container-block {
  max-width: 100%;
}
.swiper-container {
  position: relative;
}
.swiper-container div.swiper {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.swiper-container div.swiper .swiper-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.swiper-container div.swiper .swiper-slide {
  flex-shrink: 0;
}
.swiper-container .swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-blue);
    width: 3.875rem;
    height: 3.9375rem;
    border-radius: 0.3125rem;
    z-index: 5;
    cursor: pointer;
  }
  .swiper-button.swiper-button-prev {
    left: 1rem;
  }
  .swiper-button.swiper-button-next {
    right: 1rem;
  }
  .swiper-button svg {
    stroke: var(--white-1);
    fill: none;
    transition: all 0.3s linear;
    cursor: pointer;
  }
@media screen and (min-width: 960px) {
  .swiper-container .swiper-button {
    top: 50%;
    width: 4.6875rem;
    height: 4.6875rem;
  }
  .swiper-button.swiper-button-prev {
    left: -1.71875rem;
  }
  .swiper-button.swiper-button-next {
    right: -1.71875rem;
  }
}
/*Popup*/
.popup {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  min-height: 100vh;
  z-index: -1;

  opacity: 0;
  visibility: hidden;


  transition: all 0.3s linear;
  overflow-y: hidden;
}
.popup.show {
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.popup .popup__container {
  padding: 2.125rem 0rem 3.4375rem;
  flex: 0 0 auto;
  width: 100%;
  height: 100vh;
  background-color: rgba(2, 29, 72, 0.76);
  backdrop-filter: blur(1.25rem);
  overflow-y: auto;
  display: flex;
  align-items: center;
	justify-content: center;
}

.popup .popup__body {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 100%;
  background-color: var(--white-2);
}

.popup .popup__body .popup__table{
	max-width: 100%;
	overflow-x: auto;
}

.popup.popup-small .popup__body{
	width: auto;
	height: auto;
}

.popup .popup__bottom {
  width: 100%;
}
.popup .popup__bottom p {
  opacity: 0.5;
  font-weight: 400;
  line-height: 100%;
}
.popup .popup__close {
	position: relative;
	z-index: 10;
 	cursor: pointer;
	align-self: flex-end;
	margin-bottom: 1.5625rem;
}
.popup .popup__close svg {
  stroke:  var(--dark-blue);
  width: 1.5625rem;
  height: 1.5625rem;
  transition: all 0.3s linear;
}

/* HEADER */

.header {
  position: fixed;
  top: 0.9375rem;
  left: 0px;
  width: 100%;
  z-index: 5000;
  color: var(--dark-blue);
}

.header .header__content {
  border-radius: 0.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.3125rem 0.3125rem 0.3125rem 0.3125rem;
  gap: 0.3125rem;
}

.header .header__menu{
  display: none;
}

.header__buttons{
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0.3125rem;
}

.header .header__profile-btn,
.header .header__card-btn{
  background-color: var(--light-blue);
  width: 4.6875rem;
  border: none;
  transition: all .3s linear;
}
.header .header__profile-btn svg,
.header .header__card-btn svg{
  stroke: var(--dark-blue);
  height: 1.5625rem;
  width: auto;
}

.header .header__profile-btn:hover,
.header .header__profile-btn:focus,
.header .header__card-btn:hover,
.header .header__card-btn:focus{
  box-shadow: 0 0 10px 2px var(--white-1);
}

.header__burger-btn.btn-burger {
  cursor: pointer;
  background-color: var(--dark-blue);
  color: var(--white-2);
  border-radius: 0.3125rem;
  padding: 0;
  font-size: 1rem;
  line-height: 110%;
  border: none;
  gap: 0.625rem;
}
.header__burger-btn.btn-burger svg{
  stroke: var(--white-2);
}

.btn-burger .btn-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.btn-burger:not(.header__burger-btn-open) .btn-burger-close{
    padding: 1.25rem 3.5rem;
    display: none;
}
.btn-burger .btn-burger-open{
  padding: 1.25rem 1.3125rem;
}
.btn-burger .btn-burger-close{
    padding: 1.25rem 3.5rem;
}
.btn-burger.header__burger-btn-open .btn-burger-open{
    display: none;
}
.header .menu_padd{
  background: var(--white-2);
  height: 4.6875rem;
  align-items: center;
  width: 100%;
  
}
.burger-menu.show{
    z-index: 4999;
}
.burger-menu .popup__container{
    display: flex;
	flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
.burger-menu .popup__container::before{
	display: block;
	content: "";
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='14' viewBox='0 0 16 14' fill='none'><path d='M7.06366 0.5C7.44856 -0.166666 8.41081 -0.166667 8.79571 0.5L15.7239 12.5C16.1088 13.1667 15.6277 14 14.8579 14H1.00148C0.231684 14 -0.249442 13.1667 0.135458 12.5L7.06366 0.5Z' fill='white'/></svg>");
  background-repeat: no-repeat;
  background-size: 1rem auto;
  background-position: center;
	width: 50%;
	height: 0.875rem;
}
.burger-menu .popup__body {
    padding: 1.5rem 1.25rem;
    height: auto;
    min-height: auto;
    border-radius: 0.3125rem;
}
  
.burger-menu ul{
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
}
.burger-menu ul li{
    font-size: 1.125rem;
    font-family: "Mariupol";
    margin-bottom: 1.5625rem;
    border-bottom: 1px solid var(--light-brown);
    text-align: center;
    width: fit-content;
}
.burger-menu ul li a{
    color: var(--dark-blue);
    text-decoration: none;
}

@media screen and (max-width: 959px) {
  .header .header__content {
    padding: 0.3125rem 0.3125rem 0.3125rem 0.9375rem;
    gap: 0rem;
    background-color: var(--white-2);
  }
  .header .menu_padd{
    display: none;
  }
   .burger-menu .popup__container{
        padding: 5.5rem 1rem 0px;
    } 
	
	.burger-menu.burger-menu--mobile-bar-opened{
		z-index: 2999
	}
	
	.burger-menu.burger-menu--mobile-bar-opened .popup__container{
		padding: 0 1rem 5.5rem ;
		flex-direction: column-reverse;
	}
	
	.burger-menu.burger-menu--mobile-bar-opened .popup__container::before{
		transform: rotate(180deg);
	}
	
	.burger-menu.burger-menu--mobile-bar-opened ~ .header{
		z-index: 2998;
	}
  .header .header__profile-btn{
    width: 3rem;
  }

}

@media screen and (min-width: 960px) {
  .header {
    top: 1.5625rem;
  }
  .header .header__menu {
    display: flex;
    padding: 0px;
    flex-direction: row;
    list-style: none;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    
    position: absolute;
  }
  .header .header__menu li a{
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 1.25rem;
    font-family: "Mariupol";
    font-weight: 400;
  }
  .header__logo{
    flex: 0 0 auto;
    background-color: var(--white-2);
    padding: 1rem 1.5625rem;
  }
  .header .header__actions {
    gap: 1.14rem;
  }
  .header .header__profile-btn,
  .header .header__card-btn{
    width: 4.6875rem;
    height: 4.6875rem;
  }
}
/* FOOTER */


.footer { 
  position: relative;
  padding: 1.5625rem;
  background: var(--dark-blue);
}

.footer .footer__content {
  background: #FFFAF0;
  padding: 2.8125rem;
  gap: 12.1875rem;
}
.footer .logo_footer{
  margin-right: 21.5rem;
}
.footer .footer__logo_box {
  width: 12.5rem;
  height: 6.25rem;
}
.footer .footer__logo_box img{
  width: 100%;
  height: 100%;
}

.footer .footer__top .footer__label {
  color: var(--white);
}
.footer .footer__top .footer__block {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.footer .footer__top .footer__block .block__content {
  display: flex;
  flex-direction: column;
}
.footer .footer__top .footer__block .block__title,
.footer .footer__top .footer__block .block__content p {
  color: var(--white);
}
.footer .footer__bottom p,
.footer .footer__bottom a {
  color: #F5F1E9;
}

.footer .footer__brend{
  gap: 2.8125rem;
}
.footer .footer__label_options{
  font-family: "Mariupol";
  font-size: 1.5rem;
  font-weight: 400;
}
.footer__label_menu{
  font-size: 1.5rem;
  font-family: "Mariupol";
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 2.1875rem;
}

.footer .footer__menu-columns .footer__menu-column{
  flex-shrink: 0;
  font-size: 1.5rem;
  font-family: "Mariupol";
  color: var(--dark-blue);
  font-weight: 400;
}

.footer__menu-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__menu-column li {
  margin-bottom: 1.5625rem;
}

.footer__social_networks {
  gap: 0.625rem;
}

.footer__social_networks img,
.footer__social_networks a img{
	display: block;
  width: 3rem;
  height: 3rem;
}

.footer .top__left{
 width: 100%;
  gap: 2.8125rem;
}
.footer .menu_blocks{
  gap: 9.4375rem;
}
.footer__menu-column a {
  text-decoration: none; 
  color: var(--dark-blue);
}

.footer svg {
  width: 100%;      
  height: auto;     
  display: block;
}
.footer__bottom{
  margin-top: 4.6875rem;
  font-size: 1.5rem;
  font-family: "Mariupol";
  align-items: center;
}
.footer__bottom .footer__website-designer{
  gap: 1.5625rem;
  text-decoration: none;
  align-items: baseline;
}
.footer__bottom .footer__website-designer .footer_dev{
  gap: 0.625rem;
  font-weight: 400;
  align-items: center;
}
.footer__bottom .footer__website-designer .footer_dev img{
  width: 1.875rem;
  height: 1.875rem;
}
.footer__bottom .footer_text_small{
  font-weight: 400;
  opacity: 40%;

}
.footer__social_networks img {
  transition: all 0.3s ease;
}
@media screen and (max-width: 959px) {
  .footer { 
    padding: 0.9375rem 0.9375rem 2.5rem 0.9375rem;
  }
  .footer .footer__menu-columns{
    width: 100%;
    justify-content: space-between;
  }
	.footer .top__left {
    flex-direction: column;
  }
  .footer .top__left > div{
    width: 100%;
  }
  .footer .logo_footer{
    margin-right: 0;
  }
  .footer__bottom {
    flex-direction: column;
  }
  .footer__bottom .footer__website-designer{
    flex-direction: column;
  }
  .footer .footer__logo_box {
    height: 3.125rem;
    width: 6.25rem;
  }
  .footer__label_menu{
    font-size: 1.125rem;
    margin-bottom: 1.5625rem;
  }

  .footer .footer__menu-columns .footer__menu-column{
    font-size: 1.125rem;
  }
  .footer__menu-column li {
    margin-bottom: 0.9375rem;
  }
  .footer .menu_blocks{
    gap: 2.8125rem;
  }
  .footer .footer__content {
    padding: 1.5625rem 0.9375rem;
    gap: 2.5rem;
  }
  .footer__social_networks a,
	.footer__social_networks a img{
    width: 3.875rem;
    height: 3.875rem;
  }
  .footer .footer__brend{
    flex-direction: column;
    font-size: 1.125rem;
    gap: 0.9375rem;
  }
  .footer__bottom{
    margin-top: 2.5rem;
    font-size: 1.125rem;
    align-items: flex-start;
    gap: 1.5625rem;
  }
  .footer__bottom .mobile_footer_text_small{
    gap: 0.9375rem;
  }
  .footer__bottom .footer_text_small .text_bold{
    font-weight: 500;
    opacity: 100%;
  }
  .footer__bottom .footer__website-designer{
    gap: 0.5625rem;
  }
  .footer__bottom .mobile_des{
    gap: 0.3125rem;
    align-items: center;
  }
}
@media screen and (min-width: 960px) {
    

  .footer .footer__top .footer__label {
    width: 39.625rem;
    margin-left: 3.5rem;
  }
  .footer .footer__top .top__right {
    gap: 1.8125rem;
  }
  .footer .footer__top .footer__block {
    gap: 0.9375rem;
  }
  .footer .footer__top .footer__block .block__content {
    width: 15.5625rem;
    gap: 0.625rem;
  } 
  .footer .top__left{
    width: auto;
    gap: 9.4375rem;
  }
  
  .footer__social_networks a,
	.footer__social_networks a img{
    width: 4.6875rem;
    height: 4.6875rem;
  }
    
}
.social-link {
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.instagram {
  background-image: url('assets/images/instagram.png');
}

.instagram:hover {
    background-image: url('assets/images/instagram-hover.png');
}

.facebook {
  background-image: url('assets/images/facebook.png');
}

.facebook:hover {
    background-image: url('assets/images/facebook-hover.png');
}

.tiktok {
  background-image: url('assets/images/tiktok.png');
}

.tiktok:hover {
    background-image: url('assets/images/tiktok-hover.png');
}
@media screen and (max-width: 960px){
    .mobile-bar{
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-color: #FBF9F4;
        padding: 0.875rem 1rem;
        border-top: 1px solid rgba(211, 209, 203, 0.5);
        
        z-index: 3000;
    }
    
    .mobile-bar .bar__action{
        display: flex;
        flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 0.3125rem;
     color: var(--text-dark);
		text-decoration: none;
    }
    
    .mobile-bar .bar__action svg{
        stroke: var(--dark-blue);
        fill: none;
    }
}

.cart-count {
  position: absolute;
  top: 0.75rem;
  right: 10.8rem;
  background: var(--dark-blue);
  color: #fff;
  border-radius: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  font-size: 0.8125rem;
  font-weight: 400;
  font-family: "Mariupol";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media screen and (min-width: 960px){
    .mobile-bar{
        display: none;
    }
}
@media screen and (min-width: 960px) {
  .hide-desktop {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .hide-mobile {
    display: none;
  }
}
