:root {
  --font-main: 'Gotham', sans-serif;
  --font-heading: 'Mirage', sans-serif;
  --font-3: 'Engravers', sans-serif;
  --font-4: 'Saol', sans-serif;
  --color-main: #F4F2EE;
  --color-text: #535353;
  --color-black: black;
  --color-white: white;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book_new.woff2") format("woff2"), url("../fonts/Gotham-Book_new.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Light.woff2") format("woff2"), url("../fonts/Gotham-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham-medium.woff2") format("woff2"), url("../fonts/gotham-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  display: swap;
}

@font-face {
  font-family: "Mirage";
  src: url("../fonts/made-mirage-regular.woff2") format("woff2"), url("../fonts/made-mirage-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  display: swap;
}

@font-face {
  font-family: "Engravers";
  src: url("../fonts/Engravers-Gothic-BT.woff2") format("woff2"), url("../fonts/Engravers-Gothic-BT.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  display: swap;
}

@font-face {
  font-family: "Saol";
  src: url("../fonts/SaolDisplay-LightItalic.woff2") format("woff2"), url("../fonts/SaolDisplay-LightItalic.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  display: swap;
}

.btn,
#login-form.modal input[type=submit].btn {
  display: inline-block;
  cursor: pointer;
  background-color: #8B9290;
  color: #fff;
  padding: 0.6rem 2rem;
  font-family: var(--font-3);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border: none;
}

.btn:hover,
#login-form.modal input[type=submit].btn:hover {
  text-decoration: none;
  background-color: black;
  color: white;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.btn-outline-white {
  border: 1px solid white;
  background-color: transparent;
}

.btn-outline-white:hover {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

.btn-outline-black,
#login-form.modal input[type=submit].btn,
.register-button {
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  color: #000;
  background-color: transparent;
}

.btn-outline-black:hover,
#login-form.modal input[type=submit].btn:hover,
.register-button:hover {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

.btn-sm {
  padding: 0.12rem 2.8rem;
}

.btn-white {
  color: #fff;
  border-color: #fff;
}

.btn-black,
#login-form.modal input[type=submit].btn {
  color: #fff;
  background-color: #000;
}

.btn-link {
  color: #000;
}

.btn-lg {
  font-size: 20px;
  padding: 0.8rem 2.4rem;
}

a.btn {
  text-decoration: none;
}

input.btn:-moz-read-only, #login-form.modal input[type=submit].btn:-moz-read-only {
  background-color: inherit;
  color: inherit;
}

input.btn:read-only,
#login-form.modal input[type=submit].btn:read-only {
  background-color: inherit;
  color: inherit;
}

input.btn-outline-black:-moz-read-only:hover, #login-form.modal input[type=submit].btn:-moz-read-only:hover, input.register-button:-moz-read-only:hover {
  background-color: #000;
  color: #fff;
}

input.btn-outline-black:read-only:hover,
#login-form.modal input[type=submit].btn:read-only:hover,
input.register-button:read-only:hover {
  background-color: #000;
  color: #fff;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body:not(.wp-admin) {
  margin: 0;
}

body:not(.wp-admin),
.acf-block-preview {
  color: black;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  margin-top: 0;
  margin-bottom: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 15px;
}

::-moz-selection {
  background: black;
  color: white;
}

::selection {
  background: black;
  color: white;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.min-h-screen-60 {
  min-height: 60vh;
}

.overflow-hidden {
  overflow: hidden;
}

.image-desktop {
  display: none;
}

.image-mobile {
  display: block;
}

form .wpcf7-not-valid {
  border-bottom-color: red;
}

form .wpcf7-not-valid-tip {
  display: none;
}

form .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bg-blue {
  background-color: aqua;
}

.bg-main {
  background-color: #8B9290;
}

.bg-light-grey {
  background-color: #F2F1EE;
}

.bg-pampas {
  background-color: #F4F2EE;
}

.register-button {
  color: black !important;
  letter-spacing: 2px;
}

.register-button:hover {
  background-color: black !important;
  color: white !important;
}

form#loginform input {
  padding: 6px 12px;
}

.font-Gotham,
.font-Gotham-Book {
  font-family: var(--font-main);
  font-weight: 400;
}

.font-Gotham-Medium {
  font-family: var(--font-main);
  font-weight: 500;
}

.font-Engravers {
  font-family: var(--font-3);
  font-weight: 400;
}

.font-Mirage {
  font-family: var(--font-heading);
  font-weight: 400;
}

.font-Saol,
.font-Saol-Display {
  font-family: var(--font-4);
  font-weight: 300;
}

.mini-sessions__text,
.form-label,
.text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}

.mini-sessions__text a,
.form-label a,
.text a {
  color: inherit;
}

.mini-sessions__text b,
.mini-sessions__text strong,
.form-label b,
.form-label strong,
.text b,
.text strong {
  font-weight: 500;
}

.mini-sessions__text ol,
.mini-sessions__text ul,
.form-label ol,
.form-label ul,
.text ol,
.text ul {
  padding-left: 16px;
}

.mini-sessions__text h1,
.mini-sessions__text h2,
.mini-sessions__text h3,
.mini-sessions__text h4,
.mini-sessions__text h5,
.mini-sessions__text h6,
.form-label h1,
.form-label h2,
.form-label h3,
.form-label h4,
.form-label h5,
.form-label h6,
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  font-size: 14px;
  font-weight: 500;
}

.mini-sessions__text p + h1,
.mini-sessions__text p + h2,
.mini-sessions__text p + h3,
.mini-sessions__text p + h4,
.mini-sessions__text p + h5,
.mini-sessions__text p + h6,
.form-label p + h1,
.form-label p + h2,
.form-label p + h3,
.form-label p + h4,
.form-label p + h5,
.form-label p + h6,
.text p + h1,
.text p + h2,
.text p + h3,
.text p + h4,
.text p + h5,
.text p + h6 {
  margin-top: 2em;
}

.text-2,
.text-3 {
  font-family: var(--font-4);
  line-height: 1.4;
  font-weight: 300;
}

.text-2 {
  font-size: 18px;
}

.text-3 {
  font-size: 16px;
}

.text-4,
.text-5,
.text-6,
.artist-info__categories,
.text-7 {
  font-family: var(--font-3);
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-4 {
  font-size: 20px;
}

.text-5 {
  font-size: 16px;
}

.text-6 {
  font-size: 16px;
}

.text-7,
.artist-info__categories {
  font-size: 16px;
}

.text-8 {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.uptitle {
  font-family: var(--font-3);
  letter-spacing: 0.16em;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.text-italic {
  font-family: var(--font-4);
  font-size: 16px;
}

.heading-1,
.heading-2,
.heading-3,
.heading-4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heading-1.text-white,
.heading-2.text-white,
.heading-3.text-white,
.heading-4.text-white {
  color: white;
}

.text-white .heading-1,
.text-white .heading-2,
.text-white .heading-3,
.text-white .heading-4 {
  color: white;
}

.heading-1 {
  font-size: 24px;
}

.heading-2 {
  font-size: 20px;
}

.heading-3 {
  font-size: 18px;
}

.heading-4 {
  font-size: 16px;
}

.bg-black {
  background-color: black;
}

.bg-white {
  background-color: white;
}

.block {
  display: block;
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex-gow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex-no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.content-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.content-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.text-black {
  color: black;
}

.text-white {
  color: white;
}

.underline {
  text-decoration: underline;
}

.no-underline {
  text-decoration: none;
}

.fw-bold {
  font-weight: 700;
}

.fw-normal {
  font-weight: 400;
}

.lh-1 {
  line-height: 1;
}

.lh-1\.2 {
  line-height: 1.2;
}

.lh-1\.5 {
  line-height: 1.5;
}

.lh-1\.6 {
  line-height: 1.6;
}

.w-auto {
  width: auto;
}

.w-1\/12 {
  width: 8.333333%;
}

.w-2\/12 {
  width: 16.666667%;
}

.w-3\/12 {
  width: 25%;
}

.w-4\/12 {
  width: 33.333333%;
}

.w-5\/12 {
  width: 41.666667%;
}

.w-6\/12 {
  width: 50%;
}

.w-7\/12 {
  width: 58.333333%;
}

.w-8\/12 {
  width: 66.666667%;
}

.w-9\/12 {
  width: 75%;
}

.w-10\/12 {
  width: 83.333333%;
}

.w-11\/12 {
  width: 91.666667%;
}

.w-full {
  width: 100%;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.m-0 {
  margin: 0;
}

.min-h-full {
  min-height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.object-none {
  -o-object-fit: none;
     object-fit: none;
}

.p-0 {
  padding: 0;
}

.p-5 {
  padding: 5px;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-auto {
  top: auto;
}

.right-auto {
  right: auto;
}

.bottom-auto {
  bottom: auto;
}

.left-auto {
  left: auto;
}

.resize-none {
  resize: none;
}

.h-auto {
  height: auto;
}

.gap-5 {
  gap: 5px;
}

.gap-20 {
  gap: 20px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.row-gap-20 {
  row-gap: 20px;
}

.column-gap-40 {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.h-full {
  height: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-5 {
  margin-top: 5;
}

.mt-10 {
  margin-top: 10;
}

.mt-15 {
  margin-top: 15;
}

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

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

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

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

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

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

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

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

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

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

.max-w-full {
  max-width: 100%;
}

.max-w-1\/12 {
  max-width: 8.333333%;
}

.max-w-2\/12 {
  max-width: 16.666667%;
}

.max-w-3\/12 {
  max-width: 25%;
}

.max-w-4\/12 {
  max-width: 33.333333%;
}

.max-w-5\/12 {
  max-width: 41.666667%;
}

.max-w-6\/12 {
  max-width: 50%;
}

.max-w-7\/12 {
  max-width: 58.333333%;
}

.max-w-8\/12 {
  max-width: 66.666667%;
}

.max-w-9\/12 {
  max-width: 75%;
}

.max-w-10\/12 {
  max-width: 83.333333%;
}

.max-w-11\/12 {
  max-width: 91.666667%;
}

.no-scroll {
  overflow-y: hidden;
}

.container {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.link-hover-white a,
.link-hover-black a,
.header .sub-menu a {
  position: relative;
}

.link-hover-white a::after,
.link-hover-black a::after,
.header .sub-menu a::after {
  position: absolute;
  content: "";
  width: 0;
  bottom: -5px;
  left: 50%;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 200ms linear;
  transition: width 200ms linear;
}

.link-hover-white a:hover::after,
.link-hover-black a:hover::after,
.header .sub-menu a:hover::after {
  width: 100%;
  -webkit-transition: width 200ms linear;
  transition: width 200ms linear;
}

.link-hover-white a::after {
  background-color: white;
}

.link-hover-black a::after,
.header .sub-menu a::after {
  background-color: black;
}

.link {
  color: inherit;
  text-decoration: none;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 10%;
  border-bottom: 1px solid white;
  position: relative;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__logo img {
  display: block;
  height: 20px;
  width: auto;
}

.header__left {
  margin-right: auto;
  display: none;
}

.header__right {
  margin-left: auto;
}

.header__nav {
  display: none;
}

.header__actions {
  display: none;
}

.header__nav-items {
  -webkit-column-gap: 10%;
     -moz-column-gap: 10%;
          column-gap: 10%;
}

.header .btn {
  border: 1px solid white;
  background-color: transparent;
  text-transform: uppercase;
  color: white;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  font-family: var(--font-3);
  letter-spacing: 0.2em;
  line-height: 1;
  padding-top: 5px;
  padding-bottom: 5px;
}

.header .btn:hover {
  background-color: black;
  border: 1px solid black;
  color: white;
}

.header .menu {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-size: 10px;
  letter-spacing: 0.12rem;
}

.header .menu > .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu-item {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header .sub-menu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  left: 0;
  top: 100%;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 30px 36px;
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.header .sub-menu a {
  position: relative;
  color: black;
  white-space: nowrap;
}

.header .sub-menu a::after {
  position: absolute;
  content: "";
  width: 0;
  bottom: -5px;
  left: 50%;
  height: 1px;
  background-color: black;
  -webkit-transition: width 200ms linear;
  transition: width 200ms linear;
}

.header .sub-menu a:hover::after {
  width: 100%;
  -webkit-transition: width 200ms linear;
  transition: width 200ms linear;
}

.header .sub-menu .menu-item {
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 12px;
}

.header .sub-menu .menu-item-has-children::after {
  display: none;
}

.header .menu > .menu-item-has-children {
  position: relative;
  padding-right: 12px !important;
}

.header .menu > .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/svg/chevron-down-white.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.header .menu-item-has-children:hover > .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.4);
}

.header .logo-white {
  display: block;
}

.header .logo-black {
  display: none;
}

.header__cart {
  display: none;
  position: absolute;
  right: 5px;
}

.header__cart .mkd-cart.active {
  margin-left: 10px;
}

.header__cart .mkd-cart-count {
  color: var(--color-white) !important;
  font-size: 9px;
  line-height: 16px;
  font-family: var(--font-main) !important;
}

.header.header-fixed {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header.header-sticky {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  -webkit-animation: headerSlide 600ms linear;
          animation: headerSlide 600ms linear;
  z-index: 999;
}

.header.header-sticky .header__logo .logo-white {
  display: none;
}

.header.header-sticky .header__logo .logo-black {
  display: block;
}

.header.header-sticky .btn {
  border-color: black;
  color: black;
}

.header.header-sticky .btn:hover {
  background-color: black;
  color: white;
}

.header.header-sticky .menu a {
  color: black;
}

.header.header-sticky .menu-item-has-children::after {
  background-image: url("../images/svg/chevron-down-black.svg");
}

.header.header-sticky .menu-btn {
  border-color: black;
}

.header.header-sticky .menu-btn::after {
  background-color: black;
}

.header_black .header.header-fixed .header__logo .logo-white {
  display: none;
}

.header_black .header.header-fixed .header__logo .logo-black {
  display: block;
}

.header_black .header.header-fixed .btn {
  border-color: black;
  color: black;
}

.header_black .header.header-fixed .btn:hover {
  background-color: black;
  color: white;
}

.header_black .header.header-fixed .menu a {
  color: black;
}

.header_black .header.header-fixed .menu-item-has-children::after {
  background-image: url("../images/svg/chevron-down-black.svg");
}

.header_black .header.header-fixed .menu-btn {
  border-color: black;
}

.header_black .header.header-fixed .menu-btn::after {
  background-color: black;
}

.header_black .header.header-fixed .header__wrap {
  border-color: var(--color-black);
}

.header_black .header.header-fixed.header-sticky .header__wrap {
  border-color: var(--color-white);
}

@-webkit-keyframes headerSlide {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@keyframes headerSlide {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

.footer__logo {
  margin-top: 12px;
}

.footer__logo img {
  display: block;
  height: 60px;
  width: auto;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.footer__menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 28px;
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 5%;
  padding: 12% 10%;
}

.footer__right {
  width: 100%;
  padding: 12% 10% 6%;
}

.footer__menu {
  width: 50%;
}

.footer__socials {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer .menu {
  list-style: none;
  padding: 0;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer .menu a {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
}

.footer__heading {
  margin-bottom: 20px;
}

.footer__text {
  line-height: 1.2;
  font-size: 14px;
}

.footer__form {
  margin-top: 30px;
}

.footer__form br {
  display: none;
}

.footer__form .btn {
  margin-top: 20px;
}

.footer__form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__form p .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.footer__input-grid {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer .socials {
  padding-left: 0;
}

.menu-btn {
  display: block;
  width: 26px;
  height: 16px;
  cursor: pointer;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  position: relative;
}

.menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
}

.mobile-navigation {
  position: fixed;
  left: 100%;
  top: 0;
  opacity: 0;
  width: 100vw;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: all;
  z-index: 999;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.mobile-navigation .menu {
  list-style: none;
  padding: 0;
}

.mobile-navigation .menu a {
  text-decoration: none;
  color: inherit;
}

.mobile-navigation .menu li {
  margin-left: 0;
  display: block;
}

.mobile-navigation .menu .menu-item-has-children {
  position: relative;
}

.mobile-navigation .menu .menu-item-has-children.active::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.mobile-navigation .menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: url("../images/svg/chevron-down-black.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mobile-navigation.active {
  opacity: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.mobile-navigation__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  height: 100%;
  width: 320px;
  padding: 20px 40px 40px 40px;
  background-color: white;
}

.mobile-navigation__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 30px 0;
}

.mobile-navigation__nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 0;
}

.mobile-navigation__nav .sub-menu {
  display: none;
}

.mobile-navigation__nav .sub-menu .menu-item {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mobile-navigation__nav .sub-menu .menu-item a {
  text-transform: none;
}

.mobile-navigation__nav a {
  text-transform: uppercase;
  font-size: 14px;
}

.mobile-navigation__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-navigation__logo img {
  max-width: 60%;
}

.mobile-navigation__actions {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.mobile-navigation__actions .btn {
  font-size: 12px;
}

.mobile-navigation__actions .mkd-cart-count {
  color: var(--color-white) !important;
  font-size: 10px;
}

.mobile-navigation__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.mobile-navigation__contacts {
  font-size: 12px;
}

.mobile-navigation__address {
  margin-bottom: 10px;
}

.mobile-navigation__phone-link {
  text-decoration: none;
}

.mobile-navigation__account {
  margin-bottom: 20px;
}

.mobile-navigation__account .btn {
  font-size: 12px;
}

.mobile-navigation__close {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  top: 22px;
  right: 30px;
  cursor: pointer;
  background-image: url("../images/svg/close-icon.svg");
  background-position: center;
  background-size: contain;
}

.scale-image {
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.scale-image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.6;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.form-input,
.bookly-section #loginform .input,
.form-textarea,
.form-select {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  letter-spacing: 0.16em;
  font-family: var(--font-3);
  background-color: transparent;
  border-radius: 0;
  -webkit-text-fill-color: var(--color-black);
  text-align: left;
}

.form-input::-webkit-date-and-time-value,
.bookly-section #loginform .input::-webkit-date-and-time-value,
.form-textarea::-webkit-date-and-time-value,
.form-select::-webkit-date-and-time-value {
  text-align: left;
}

.form-input::-webkit-datetime-edit,
.bookly-section #loginform .input::-webkit-datetime-edit,
.form-textarea::-webkit-datetime-edit,
.form-select::-webkit-datetime-edit {
  letter-spacing: 0.16em;
  border: none;
  display: inline;
  font: inherit !important;
}

.form-input::-webkit-input-placeholder, .bookly-section #loginform .input::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder, .form-select::-webkit-input-placeholder {
  text-transform: uppercase;
  opacity: 1 !important;
  color: black !important;
  font-family: var(--font-3);
}

.form-input::-moz-placeholder, .bookly-section #loginform .input::-moz-placeholder, .form-textarea::-moz-placeholder, .form-select::-moz-placeholder {
  text-transform: uppercase;
  opacity: 1 !important;
  color: black !important;
  font-family: var(--font-3);
}

.form-input:-ms-input-placeholder, .bookly-section #loginform .input:-ms-input-placeholder, .form-textarea:-ms-input-placeholder, .form-select:-ms-input-placeholder {
  text-transform: uppercase;
  opacity: 1 !important;
  color: black !important;
  font-family: var(--font-3);
}

.form-input::-ms-input-placeholder, .bookly-section #loginform .input::-ms-input-placeholder, .form-textarea::-ms-input-placeholder, .form-select::-ms-input-placeholder {
  text-transform: uppercase;
  opacity: 1 !important;
  color: black !important;
  font-family: var(--font-3);
}

.form-input::placeholder,
.bookly-section #loginform .input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
  text-transform: uppercase;
  opacity: 1 !important;
  color: black !important;
  font-family: var(--font-3);
}

.form-input,
.bookly-section #loginform .input,
.form-select {
  border-bottom: 1px solid var(--color-black);
  padding: 0.5rem 0;
  margin-bottom: 26px;
}

.form-textarea {
  display: block;
  outline: none;
  border: 1px solid var(--color-black);
  padding: 1.5rem;
  resize: none;
  height: 130px;
  margin-bottom: 26px;
}

.form-textarea_border-bottom {
  padding-left: 0;
  padding-right: 0;
  border-top: none;
  border-left: none;
  border-right: none;
}

.form-textarea_size-lg {
  height: 160px;
}

.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.wpcf7-checkbox input {
  visibility: hidden;
  display: none;
}

.wpcf7-checkbox input + .wpcf7-list-item-label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  text-transform: uppercase;
}

.wpcf7-checkbox input + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-black);
}

.wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-black);
}

.form-checkbox {
  visibility: hidden;
  display: none;
}

.form-checkbox + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

.form-checkbox + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-black);
}

.form-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-black);
}

.form-label {
  font-weight: 500;
}

.not-valid {
  border-bottom: solid 2px red !important;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.socials__icon {
  display: block;
  width: 25px;
  height: 25px;
  padding: 4px;
  background-color: black;
  border-radius: 50%;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.divider-sm {
  height: 60px;
}

.divider-md {
  height: 100px;
}

.divider-lg {
  height: 140px;
}

.divider-xl {
  height: 200px;
}

.section-divider {
  padding-top: 60px;
  padding-bottom: 60px;
}

.slick-slider {
  position: relative;
}

.slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  gap: 8px;
}

.slick-dots button {
  display: block;
  width: 8px;
  height: 8px;
  font-size: 0;
  color: transparent;
  background-color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.slick-dots .slick-active button {
  opacity: 1;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.slick-arrow {
  position: absolute;
  width: 20px;
  height: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: transparent;
  background-size: contain;
  background-position: center;
  font-size: 0;
  border: none;
  z-index: 100;
  cursor: pointer;
  background-repeat: no-repeat;
  opacity: 1;
  outline: none;
  margin: 0;
}

.slick-arrow::before,
.slick-arrow::after {
  display: none;
}

.slick-next {
  right: 0;
  background-image: url("../images/svg/slick-next.svg");
}

.slick-prev {
  left: 0;
  background-image: url("../images/svg/slick-prev.svg");
}

.slick-disabled {
  display: none !important;
}

.actions__wrap {
  margin-top: 60px;
}

.tab {
  padding: 20px;
  border-bottom-style: solid;
  border-bottom-width: 0.3px;
  border-bottom-color: rgba(145, 127, 115, 0.2784313725);
}

.tab__heading {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-family: var(--font-main);
  font-weight: 400;
}

.tab__heading::before,
.tab__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-color: black;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.tab__heading::before {
  width: 1px;
  height: 19px;
  -webkit-transform: translate(-9px, -50%);
          transform: translate(-9px, -50%);
}

.tab__heading::after {
  width: 19px;
  height: 1px;
}

.tab.active .tab__heading::before {
  display: none;
}

.tab__text {
  display: none;
  padding-top: 30px;
}

.tab__text ul {
  padding-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.app-loading {
  background-color: #000;
  color: transparent;
  position: relative;
}

.app-loading::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: calc(50% - 14px);
  left: calc(50% - 14px);
  border: 4px solid transparent;
  border-radius: 50%;
  border-top-color: white;
  -webkit-animation: spin 1000ms linear infinite;
          animation: spin 1000ms linear infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.app-loading:hover {
  color: transparent;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 80%;
  z-index: 999999;
  display: none;
}

.overlay.active {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999999;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal.active {
  display: block;
}

.modal__wrap {
  position: relative;
  margin: 8vh auto auto;
  width: 90%;
  max-width: 900px;
  background-color: white;
  padding: 40px;
}

.modal__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal__close {
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/close-modal.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal__heading {
  text-align: center;
}

.modal__actions {
  text-align: center;
}

.modal .form-input {
  width: 100%;
}

.modal .links-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal__link {
  color: var(--color-text);
  text-decoration: none;
}

.modal__link:hover {
  text-decoration: underline;
}

.modal__form {
  margin-top: 40px;
}

.modal__form br {
  display: none;
}

#login-form.modal .modal__wrap {
  max-width: 460px;
}

#login-form.modal .form-input {
  width: 100%;
  letter-spacing: 0.2rem;
}

#login-form.modal input[type=submit].btn {
  font-family: var(--font-3);
  width: 100%;
  background-color: black !important;
  color: white !important;
  letter-spacing: 0.4rem;
}

.filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter__item {
  cursor: pointer;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
}

.filter__item::after {
  position: absolute;
  content: "";
  width: 0;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  background-color: black;
  -webkit-transition: width 200ms linear;
  transition: width 200ms linear;
}

.filter__item.active::after,
.filter__item:hover::after {
  width: 100%;
  -webkit-transition: width 200ms linear;
  transition: width 200ms linear;
}

.dropdown {
  position: relative;
  text-transform: uppercase;
  font-family: var(--font-main);
  color: var(--color-black);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.dropdown__wrap {
  display: none;
  background-color: var(--color-white);
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 4px;
  min-width: 100%;
  border: 1px solid var(--color-black);
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
          box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dropdown__item {
  cursor: pointer;
  padding: 10px 15px;
  border-bottom: 1px solid var(--color-black);
}

.dropdown__value {
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

.dropdown__value::after {
  margin-left: 10px;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/svg/dropdown-icon.svg");
}

.dropdown.active .dropdown__wrap {
  display: block;
  z-index: 3;
}

.dropdown.active .dropdown__value::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.single-slider__image-wrap {
  position: relative;
  padding-bottom: 60%;
}

.single-slider__image {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-grid > * {
  width: 100%;
}

.section__actions {
  margin-top: 40px;
}

.section__heading {
  margin-bottom: 50px;
}

.hero-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
}

.hero-section__wrap {
  height: 100%;
}

.hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.2);
}

.hero-section__content {
  position: relative;
  z-index: 30;
  color: white;
  text-align: center;
  width: 100%;
}

.hero-section__heading {
  color: white;
  margin-bottom: 10px;
}

.hero-section .container {
  max-width: 90%;
}

.hero-section__artist-categories {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero-section__actions {
  margin-top: 40px;
}

.hero-section_sm {
  min-height: 360px;
  height: initial;
}

.hero-section_artist {
  min-height: 70vh;
  height: 70vh;
}

.hero-section_artist .hero-section__content {
  text-align: left;
}

.hero-section_artist .container {
  width: 100%;
  margin-inline: 7%;
}

img.hero-section__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 10;
}

.masonry-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto -20px;
}

.masonry-gallery__item {
  width: 100%;
  margin-bottom: 20px;
}

.masonry-gallery__image {
  display: block;
  width: 100%;
  height: auto;
}

.masonry-gallery__link {
  display: block;
  overflow: hidden;
  height: auto;
}

.instagram-feed__header {
  background-color: #8B9290;
  padding: 10% 5%;
}

.instagram-feed__header-link {
  color: white;
  text-decoration: none;
}

.instagram-feed__demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.instagram-feed__item {
  width: 50%;
  position: relative;
  padding-bottom: 50%;
  display: block;
}

.instagram-feed__item img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.text-center-section__content {
  margin: auto;
  width: 70%;
  max-width: 870px;
}

.text-center-section__content .btn {
  margin-top: 20px;
  display: inline-block;
}

.post-intro {
  overflow: visible;
}

.post-intro__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
}

.post-intro__uptitle {
  margin-bottom: 10px;
}

.post-intro__heading {
  margin-bottom: 0;
}

.post-intro__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.post-intro__item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-intro__item:nth-child(1) {
  width: 100%;
}

.post-intro__item:nth-child(2) {
  z-index: 10;
  width: 100%;
}

.post-intro__item:nth-child(3) {
  padding-top: 5%;
  padding-right: 5%;
}

.clients-section__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.clients-section__item-wrap img {
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.clients-section__item_admin {
  width: 20%;
}

.testimonials-section__wrap {
  padding: 0 10% 50px;
}

.testimonials-section__heading {
  margin-bottom: 60px;
  text-align: left;
}

.testimonials-section__slide {
  padding-inline: 0;
}

.testimonials-section__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonials-section__name {
  margin-top: 20px;
}

.rating-icon {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/svg/rating-icon.svg");
}

.subscribe-section__wrap {
  padding: 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.subscribe-section__heading {
  margin-bottom: 20px;
}

.subscribe-section__text {
  max-width: 420px;
}

.subscribe-section__form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.subscribe-section__form .mc4wp-form-fields {
  gap: 20px;
}

.subscribe-section .wpcf7-form > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
}

.subscribe-section .wpcf7-form br {
  display: none;
}

.subscribe-section .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}

.subscribe-section .wpcf7-form .form-input {
  margin-bottom: 0;
}

.subscribe-section .wpcf7-form .wpcf7-spinner {
  display: none;
}

.subscribe-section .subscribe-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
}

.subscribe-section .form-input {
  margin-bottom: 0;
}

.daylight-studios-section__wrap {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.daylight-studios-section__heading {
  margin-bottom: 40px;
  text-align: center;
}

.daylight-studios-section__slide {
  padding: 0 20px;
}

.daylight-studios-section__slide-item {
  color: inherit;
}

.daylight-studios-section__slide-image {
  position: relative;
  padding-bottom: 114%;
  margin-bottom: 16px;
  overflow: hidden;
}

.daylight-studios-section__slide-image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.daylight-studios-section__actions {
  margin-top: 60px;
}

.daylight-studios-section .slick-slider {
  padding: 0 60px;
}

.daylight-studios-section .slick-arrow {
  top: 44%;
}

.decor-sliders__slide {
  overflow: hidden;
}

.decor-sliders__background img {
  -webkit-filter: blur(6px);
          filter: blur(6px);
}

.decor-sliders__background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 20;
}

.decor-sliders__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 90px;
  padding-left: 10%;
  padding-right: 10%;
}

.decor-sliders__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 60px;
}

.decor-sliders__heading {
  margin-bottom: 5px;
}

.decor-sliders__actions {
  margin-top: 10px;
}

.decor-sliders__left-image {
  position: relative;
  margin-top: 5%;
  padding-bottom: 25%;
  width: 34%;
  display: none;
}

.decor-sliders__right-image {
  width: 60%;
  padding-bottom: 84%;
  position: relative;
}

.decor-sliders__left-image img,
.decor-sliders__right-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.our-community__wrap {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.our-community__left {
  width: 100%;
}

.our-community__left-content {
  max-width: 540px;
}

.our-community__left-actions {
  margin-top: 40px;
}

.our-community__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.our-community__right-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.our-community__right-col .btn {
  margin-bottom: 40px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: inline-block;
}

.our-community__image-big {
  padding-bottom: 138%;
  width: 100%;
}

.our-community__image-small {
  width: 100%;
  padding-bottom: 68%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.room-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.room-info__left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8%;
}

.room-info__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.room-info__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.room-info__footer .btn {
  width: 100%;
  text-align: center;
}

.room-info__right {
  width: 100%;
}

.room-info__image {
  position: relative;
  padding-bottom: 126%;
}

.room-info__image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.room-info__slider {
  width: 100%;
  position: relative;
}

.room-info .slick-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.room-info-section-slider .container {
  padding-left: 10px;
  padding-right: 10px;
}

.other-rooms__heading {
  margin-bottom: 40px;
}

.other-rooms__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.other-rooms__item {
  color: inherit;
  width: calc(50% - 10px);
}

.other-rooms__image {
  position: relative;
  padding-bottom: 114%;
  margin-bottom: 16px;
  overflow: hidden;
}

.other-rooms__image img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.other-rooms__actions {
  margin-top: 60px;
}

.image-text__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.image-text__image {
  width: 100%;
}

.image-text__image-wrap {
  position: relative;
  padding-bottom: 120%;
}

.image-text__image-wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image-text__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.image-text__content .btn {
  margin-top: 5%;
}

.influencer-programs__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.influencer-programs__form {
  margin-top: 60px;
}

.influencer-programs__form br {
  display: none;
}

.influencer-programs__form .form-grid {
  width: auto;
}

.influencer-programs__form .btn {
  padding-left: 4rem;
  padding-right: 4rem;
}

.influencer-programs__heading {
  text-transform: none;
}

.influencer-programs__text h1,
.influencer-programs__text h2,
.influencer-programs__text h3,
.influencer-programs__text h4,
.influencer-programs__text h5,
.influencer-programs__text h6 {
  font-family: var(--font-3);
  font-size: 20px;
  font-weight: 400;
}

.influencer-programs__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  aspect-ratio: 550/590;
}

.call-to-action {
  background-color: #8B9290;
}

.call-to-action__wrap {
  padding: 10% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.call-to-action__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  text-decoration: none;
  text-align: center;
}

.call-to-action__link::after {
  display: inline-block;
  content: "";
  width: 86px;
  height: 12px;
  background-image: url("../images/svg/right-arrow-long.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 200ms linear;
  transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
  transition: transform 200ms linear, -webkit-transform 200ms linear;
}

.call-to-action__link:hover::after {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}

.studio-rates__wrap {
  padding: 0 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4%;
}

.studio-rates__left {
  width: 100%;
  padding-left: 5%;
  margin-bottom: 40px;
}

.studio-rates__left .btn {
  margin-top: 10%;
}

.studio-rates__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 5%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.studio-rates__right p {
  margin-bottom: 12px;
}

.studio-rates__table {
  width: 100%;
  margin-top: 3%;
  margin-bottom: 40px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.google-map {
  height: 490px;
}

.decor-grid {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 40px;
}

.decor-grid__title {
  margin-top: 10px;
  margin-bottom: 6px;
}

.map-section {
  height: 320px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.studio-policy-section__top {
  max-width: 90%;
  margin: auto;
}

.studio-policy-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.studio-policy-section__col {
  width: 100%;
}

.studio-policy-section__col ul,
.studio-policy-section__col ol {
  padding-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.studio-policy-section__line {
  border-top: 1px solid #000;
  margin-top: 30px;
  padding-top: 30px;
}

.studio-space-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.studio-space-section__col {
  width: 100%;
}

.studio-price-text {
  margin-top: 50px;
  margin-bottom: 30px;
}

.studio-price-text__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.studio-price-text__actions {
  margin-top: 30px;
}

.studio-price-table {
  margin-top: 40px;
  margin-bottom: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table__wrap {
  overflow-x: auto;
}

.price-table__heading {
  background-color: #8B9290;
  color: white;
  text-transform: uppercase;
  vertical-align: bottom;
}

.price-table__row {
  border-bottom: 1px solid #000;
}

.price-table .price-table__row:last-child {
  border-bottom: none;
}

.price-table__value {
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}

.price-table__value .large {
  font-size: larger;
}

.price-table__value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 3px;
  bottom: 0;
  background-color: #F2F1EE;
  z-index: -1;
}

.price-table tr {
  vertical-align: middle;
}

.price-table tr td {
  padding: 8px 14px;
}

.price-table tr td:first-child {
  min-width: 190px;
}

.studio-slider__image-wrap {
  height: 300px;
}

.studio-slider__item img {
  display: block;
  height: 100%;
  width: auto;
}

.studio-slider .slick-prev {
  left: 10px;
  background-image: url("../images/svg/slick-prev-white.svg");
}

.studio-slider .slick-next {
  right: 10px;
  background-image: url("../images/svg/slick-next-white.svg");
}

.room-info-section-slider .slick-prev {
  left: -24px;
}

.room-info-section-slider .slick-next {
  right: -24px;
}

.information-cards__heading {
  margin-bottom: 20px;
}

.information-cards__grid {
  gap: 50px;
}

.information-cards__item {
  width: 100%;
}

.information-cards__item:hover .information-cards__action {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.information-cards__link {
  color: inherit;
  text-decoration: none;
}

.information-cards__image {
  position: relative;
  padding-bottom: 120%;
  margin-bottom: 20px;
  background-color: rgba(23, 23, 23, 0.368627451);
}

.information-cards__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.information-cards__action {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  padding: 30px;
  background-color: rgba(23, 23, 23, 0.368627451);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.section-heading {
  margin-bottom: 40px;
}

.studio-information__col {
  width: 100%;
}

.studio-information__image {
  max-width: 400px;
  margin: auto;
}

.studio-information__content {
  max-width: 500px;
}

.studio-information__actions {
  margin-top: 40px;
}

.studio-information__actions .btn {
  width: 100%;
  text-align: center;
}

.decor__grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.decor__item {
  width: 100%;
}

.decor__image {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 10px;
  background-color: #000;
}

.decor__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.decor__link {
  color: inherit;
  text-decoration: none;
}

.decor__heading {
  margin-bottom: 0;
}

.blog-posts__wrap {
  gap: 40px;
}

.blog-posts__link {
  text-decoration: none;
  color: inherit;
}

.blog-posts__content {
  padding: 24px;
}

.blog-posts__image {
  position: relative;
  padding-bottom: 66%;
  height: 100%;
}

.blog-posts__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.blog-posts__date {
  margin-top: 24px;
}

.blog-posts__image-wrap {
  width: 100%;
}

.text-8.blog-posts__date {
  font-size: 12px;
}

.must-reads__item {
  width: 100%;
}

.must-reads__image {
  position: relative;
  padding-bottom: 135%;
  margin-bottom: 20px;
  background-color: #000;
}

.must-reads__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.text-6.must-reads__text {
  font-size: 12px;
}

.faq-section__heading {
  width: 100%;
}

.faq-section__tabs {
  width: 100%;
}

.faq-section__tabs .tab:first-child {
  border-top-style: solid;
  border-top-width: 0.3px;
  border-top-color: rgba(145, 127, 115, 0.2784313725);
}

.decor-section__actions {
  text-align: center;
  margin-top: 60px;
}

.split-section {
  overflow: hidden;
}

.split-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.split-section__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15% 0;
  text-decoration: none;
}

.split-section__item {
  width: 74%;
  margin-inline: auto;
}

.split-section__body {
  position: relative;
}

.split-section__background {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 536/713;
}

.split-section__image {
  position: absolute;
  display: block;
  width: 71.5%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 2;
  aspect-ratio: 382/509;
}

.split-section__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  z-index: 3;
}

.split-section__gallery-image {
  position: absolute;
  height: auto;
  display: block;
}

.split-section__gallery-image[data-number="1"] {
  top: 8.5%;
  left: -15%;
  width: 41%;
  z-index: 11;
}

.split-section__gallery-image[data-number="2"] {
  top: -7%;
  right: -8%;
  width: 15%;
  z-index: 12;
  width: 33%;
}

.split-section__gallery-image[data-number="3"] {
  z-index: 13;
  left: -12%;
  bottom: 4%;
  width: 34%;
}

.split-section__gallery-image[data-number="4"] {
  z-index: 14;
  right: -14%;
  bottom: 4%;
  width: 43%;
}

.split-section__link:nth-child(2n) .split-section__logo {
  top: 50%;
}

.split-section__link:nth-child(2n) .split-section__gallery-image[data-number="1"] {
  top: -7%;
  left: -13%;
  width: 33%;
  z-index: 11;
}

.split-section__link:nth-child(2n) .split-section__gallery-image[data-number="2"] {
  top: 4%;
  right: -12%;
  width: 15%;
  z-index: 12;
  width: 54%;
}

.split-section__link:nth-child(2n) .split-section__gallery-image[data-number="3"] {
  z-index: 13;
  left: -14%;
  bottom: 7%;
  width: 40%;
}

.split-section__link:nth-child(2n) .split-section__gallery-image[data-number="4"] {
  z-index: 14;
  right: -21%;
  bottom: 6%;
  width: 33%;
}

.split-section__text {
  font-size: clamp(16px, 0.95rem + 0.25vw, 21px);
  line-height: 1.2;
  text-align: center;
  margin: 30px auto 0;
  text-decoration: none;
  font-family: var(--font-4);
}

body.hide-header-footer .header,
body.hide-header-footer .footer,
body.hide-header-footer .instagram-section {
  display: none;
}

.bookly-section #loginform {
  max-width: 420px;
}

.bookly-section #loginform .input {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid black;
  margin-top: 5px;
}

.bookly-section #loginform .button {
  font-family: var(--font-3);
  width: 100%;
  background-color: black !important;
  color: white !important;
}

.read-more-text__content > * {
  display: none;
}

.read-more-text__content p:nth-child(1),
.read-more-text__content p:nth-child(2) {
  display: block;
}

.read-more-text__content.show-all > * {
  display: block;
}

.photographers-filter__heading {
  margin-bottom: 50px;
}

.photographers-filter__categories {
  margin-bottom: 50px;
}

.photographers-filter__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 40px;
  margin-left: -5px;
  margin-right: -5px;
}

.photographers-filter__item {
  width: 50%;
  padding-inline: 5px;
}

.photographers-filter__item-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.photographers-filter__item-badge {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url("../images/mini-session-badge-2.png");
}

.photographers-filter__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.photographers-filter__item-heading {
  display: block;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--color--text);
  text-decoration: none;
  line-height: 1.2;
  font-size: 12px;
}

.photographers__section-heading {
  margin-bottom: 50px;
}

.photographers__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 40px;
  margin-left: -5px;
  margin-right: -5px;
}

.photographers__item {
  width: 50%;
  padding-inline: 5px;
}

.photographers__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.photographers__heading {
  display: block;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--color--text);
  text-decoration: none;
  line-height: 1.2;
  font-size: 12px;
}

.photographers__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

.explore-rentals__heading {
  margin-bottom: 50px;
}

.explore-rentals__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 40px;
  margin-left: -5px;
  margin-right: -5px;
}

.explore-rentals__item {
  width: 50%;
  padding-inline: 5px;
}

.explore-rentals__item-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.explore-rentals__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.explore-rentals__item-heading {
  display: block;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--color--text);
  text-decoration: none;
  line-height: 1.2;
  font-size: 12px;
}

.photographer-gallery__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
  margin-left: -5px;
  margin-right: -5px;
}

.photographer-gallery__item {
  width: 50%;
  padding-inline: 5px;
}

.photographer-gallery__item-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.photographer-gallery__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.photographer-gallery__item-heading {
  display: block;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--color--text);
  text-decoration: none;
  line-height: 1.2;
  font-size: 12px;
}

.photographer-gallery__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

.landing-service__actions {
  margin-top: 20px;
}

.landing-service__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-bottom: 30px;
}

.landing-service .landing-gallery__grid {
  margin-bottom: 60px;
}

.landing-service .tab {
  padding-left: 0;
}

.landing-service .tab .landing-gallery__grid {
  margin-top: 30px;
  margin-bottom: 30px;
}

.landing-gallery__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 10px;
  margin-left: -5px;
  margin-right: -5px;
}

.landing-gallery__item {
  width: 33.3333333333%;
  padding-inline: 5px;
}

.landing-gallery__grid.cols-3 .landing-gallery__item {
  width: 33.3333333333%;
  padding-inline: 5px;
}

.landing-gallery__grid.cols-4 .landing-gallery__item {
  width: 25%;
  padding-inline: 5px;
}

.landing-gallery__item-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.landing-gallery__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.7;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.landing-gallery__item-image.image-portrait {
  aspect-ratio: 0.7;
}

.landing-gallery__item-image.image-landscape {
  aspect-ratio: 3/2;
}

.landing-gallery__item-heading {
  display: block;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--color--text);
  text-decoration: none;
  line-height: 1.2;
  font-size: 12px;
}

.artist-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.artist-info__image {
  width: 100%;
}

.artist-info__image-wrap {
  position: relative;
  padding-bottom: 130%;
}

.artist-info__image-wrap img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.artist-info__heading {
  margin-bottom: 15px;
}

.artist-info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.artist-info__categories {
  list-style: none;
  text-transform: uppercase;
  padding-left: 0;
  margin: 15px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  letter-spacing: normal;
  line-height: 1.2;
}

.artist-info__contacts {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.artist-info__link {
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
  font-family: var(--font-3);
  line-height: 1.4;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.artist-info__link:hover {
  text-decoration: underline;
}

.artist-info__uptitle {
  margin-bottom: 0;
  font-size: 14px !important;
}

.artist-info__actions {
  margin-top: 30px;
}

.mini-sessions__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 60px;
}

.mini-sessions__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mini-sessions__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

.mini-sessions__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mini-sessions__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mini-sessions__heading {
  display: block;
  font-family: var(--font-3);
  color: var(--color--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  font-size: 16px;
  margin-bottom: 10px;
}

.mini-sessions__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mini-sessions__actions {
  margin-top: 10px;
}

.top-photographers__heading {
  margin-bottom: 50px;
}

.top-photographers__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 40px;
  margin-left: -5px;
  margin-right: -5px;
}

.top-photographers__item {
  width: 50%;
  padding-inline: 5px;
}

.top-photographers__item-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.top-photographers__item-badge {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: url("../images/mini-sessions-badge.png");
}

.top-photographers__item-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top-photographers__item-heading {
  display: block;
  font-family: var(--font-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--color--text);
  text-decoration: none;
  line-height: 1.2;
  font-size: 12px;
}

.search-studio__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.search-studio__col-left {
  background-color: var(--color-main);
  padding-top: 120px;
  padding-left: 7%;
  padding-right: 5%;
  padding-bottom: 60px;
}

.search-studio__col-right {
  padding-top: 60px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 60px;
}

.search-studio__studio-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.search-studio__studio-link {
  color: var(--color-black);
  text-decoration: none;
}

.search-studio__studio-link:hover .search-studio__studio-image {
  opacity: 0.8;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.search-studio__studio-heading {
  margin: 10px 0 0;
}

.search-studio__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 40px;
}

.search-studio__list > * {
  width: calc(50% - 10px);
}

.search-studio__result {
  margin-top: 50px;
  display: none;
}

.search-studio__result-grid {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 30px;
}

.search-studio__result-grid > * {
  width: calc(50% - 10px);
}

.search-studio__result-grid .no-available-results {
  width: 100%;
  text-transform: none;
}

.search-studio__result-grid .search-studio__studio-heading {
  font-size: 15px;
}

.search-studio__result-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.search-studio__result-line {
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--color-black);
}

.search-studio__right-text {
  margin-bottom: 10px;
  text-transform: none;
}

.search-studio__form-action {
  margin-top: 40px;
}

.contact-form-section__info a {
  text-decoration: none;
}

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

.contact-form-section__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form-section__heading {
  margin-bottom: 20px;
}

.contact-form-section__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 90%;
  aspect-ratio: 430/460;
}

.contact-form-section__main {
  width: 90%;
}

.contacts-slider {
  overflow: hidden;
}

.contacts-slider__slider {
  margin-top: 60px;
  margin-left: -5px;
  margin-right: -5px;
}

.contacts-slider .slick-list {
  overflow: visible;
}

.contacts-slider .slick-arrow {
  width: 30px;
  height: 30px;
  top: auto;
  bottom: 24%;
}

.contacts-slider .slick-prev {
  background-image: url("../images/svg/slick-prev-white.svg");
  left: 0;
}

.contacts-slider .slick-next {
  background-image: url("../images/svg/slick-next-white.svg");
  right: 0;
}

.contacts-slider__slide {
  padding-left: 5px;
  padding-right: 5px;
}

.contacts-slider__heading {
  margin-bottom: 20px;
}

.contacts-slider__text {
  max-width: 720px;
}

.contacts-slider__item-link {
  color: var(--color-black);
  text-decoration: none;
}

.contacts-slider__item-link:hover {
  text-decoration: underline;
}

.contacts-slider__item-text {
  margin-top: 15px;
}

.contacts-slider__item-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-top: 20px;
}

.wp-admin .contacts-slider__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 60px;
}

.wp-admin .contacts-slider__slide {
  width: 25%;
}

.landing-contact-form__text {
  max-width: 600px;
  margin-bottom: 30px;
}

.landing-contact-form .form-input {
  width: 100%;
}

@media (min-width: 576px) {
  .mini-sessions__text,
  .form-label,
  .text {
    font-size: 12px;
  }

  .text-2 {
    font-size: 20px;
  }

  .text-3 {
    font-size: 18px;
  }

  .text-4 {
    font-size: 24px;
  }

  .text-5 {
    font-size: 18px;
  }

  .text-6 {
    font-size: 18px;
  }

  .uptitle {
    font-size: 16px;
  }

  .text-italic {
    font-size: 18px;
  }

  .heading-1 {
    font-size: 32px;
  }

  .heading-2 {
    font-size: 26px;
  }

  .heading-3 {
    font-size: 22px;
  }

  .heading-4 {
    font-size: 18px;
  }

  .container {
    max-width: 540px;
  }

  .header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }

  .mobile-navigation__wrap {
    width: 540px;
    padding-left: 60px;
  }

  .mobile-navigation__nav a {
    font-size: 22px;
  }

  .hero-section__actions {
    margin-top: 60px;
  }

  .hero-section_artist {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .hero-section_artist .container {
    margin: 70px;
  }

  .decor-sliders__item {
    padding-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 5vw;
    padding-left: 0;
  }

  .decor-sliders__content {
    margin-left: 10vw;
    margin-top: 5vw;
    margin-left: 5vw;
  }

  .decor-sliders__right-image {
    width: 40vw;
    margin-right: 9vw;
    padding-bottom: 60vw;
  }

  .our-community__wrap {
    gap: 5%;
    width: 90%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .our-community__left {
    width: 60%;
    padding-left: 5%;
  }

  .other-rooms__wrap {
    -webkit-column-gap: initial;
       -moz-column-gap: initial;
            column-gap: initial;
    row-gap: 50px;
  }

  .other-rooms__item {
    width: calc(50% - 15px);
  }

  .artist-info__contacts {
    font-size: 14px;
  }
}

@media (min-width: 600px) {
  .image-desktop {
    display: block;
  }

  .image-mobile {
    display: none;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .footer__logo img {
    height: 100px;
  }

  .slick-dots {
    bottom: 40px;
    gap: 12px;
  }

  .slick-dots button {
    width: 12px;
    height: 12px;
  }

  .modal__wrap {
    padding: 60px 50px;
  }

  .modal__close {
    top: 30px;
    right: 30px;
  }

  .form-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: -15px;
  }

  .form-grid > * {
    margin-inline: 15px;
    width: 50%;
  }

  .hero-section__artist-categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .hero-section_artist {
    min-height: 40vh;
  }

  .masonry-gallery__item {
    width: 28%;
  }

  .instagram-feed__header {
    padding: 2.2% 5%;
  }

  .instagram-feed__item {
    width: 20%;
    padding-bottom: 20%;
  }

  .testimonials-section__wrap {
    padding: 0 3.5%;
  }

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

  .testimonials-section__slide {
    padding: 0 1%;
  }

  .testimonials-section__slide {
    padding-inline: 30px;
  }

  .subscribe-section .wpcf7-form > p {
    gap: 4%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .other-rooms__item {
    width: 31%;
  }

  .image-text__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10%;
  }

  .image-text__wrap.row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .image-text__image {
    width: 45%;
  }

  .image-text__content {
    width: 45%;
  }

  .influencer-programs__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10%;
  }

  .influencer-programs__main {
    width: 45%;
  }

  .influencer-programs__side {
    width: 45%;
  }

  .call-to-action__wrap {
    padding: 2.2% 5%;
  }

  .call-to-action__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .studio-rates__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .studio-policy-section__col {
    width: 45%;
  }

  .studio-space-section__col {
    width: 40%;
  }

  .studio-price-text__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }

  .studio-price-text__left {
    width: calc(50% - 60px);
  }

  .studio-price-text__right {
    width: 50%;
  }

  .studio-price-text__actions {
    margin-top: 40px;
  }

  .price-table tr td {
    padding: 14px 20px;
  }

  .price-table tr td:first-child {
    min-width: 360px;
  }

  .information-cards__item {
    width: calc(50% - 25px);
  }

  .studio-information__col {
    width: calc(50% - 25px);
  }

  .decor__item {
    width: calc(50% - 25px);
  }

  .must-reads__item {
    width: calc(50% - 25px);
  }

  .photographers-filter__item {
    width: 33.3333333333%;
  }

  .photographers__item {
    width: 25%;
  }

  .photographer-gallery__item {
    width: 33.3333333333%;
  }

  .landing-service__actions {
    margin-top: 30px;
  }

  .landing-service__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }

  .landing-service__left {
    width: calc(50% - 60px);
  }

  .landing-service__right {
    width: 50%;
    margin-top: 30px;
  }

  .landing-gallery__grid {
    row-gap: 20px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .landing-gallery__item {
    padding-inline: 10px;
  }

  .landing-gallery__grid.cols-3 .landing-gallery__item {
    padding-inline: 10px;
  }

  .landing-gallery__grid.cols-4 .landing-gallery__item {
    padding-inline: 10px;
  }

  .artist-info__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10%;
  }

  .artist-info__image {
    width: 40%;
  }

  .artist-info__content {
    width: 45%;
  }

  .mini-sessions__item {
    width: 50%;
    padding-inline: 10px;
  }

  .top-photographers__item {
    width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  .text-2 {
    font-size: 24px;
  }

  .text-3 {
    font-size: 20px;
  }

  .text-4 {
    font-size: 28px;
  }

  .text-5 {
    font-size: 20px;
  }

  .text-6 {
    font-size: 20px;
  }

  .text-7,
  .artist-info__categories {
    font-size: 18px;
  }

  .text-8 {
    font-size: 16px;
  }

  .uptitle {
    font-size: 18px;
  }

  .text-italic {
    font-size: 24px;
  }

  .heading-1 {
    font-size: 48px;
  }

  .heading-2 {
    font-size: 32px;
  }

  .heading-3 {
    font-size: 26px;
  }

  .heading-4 {
    font-size: 22px;
  }

  .container {
    max-width: 960px;
  }

  .header__logo img {
    height: 26px;
  }

  .footer {
    padding: 8% 10%;
  }

  .footer__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .footer__left {
    margin-right: 6%;
    padding: 0;
    gap: 12%;
  }

  .footer__right {
    width: 40%;
    padding: 0;
  }

  .footer .menu {
    gap: 6px;
  }

  .footer__form {
    margin-top: 30px;
  }

  .footer__form p .wpcf7-form-control-wrap:nth-child(1),
  .footer__form p .wpcf7-form-control-wrap:nth-child(3) {
    width: 44%;
    display: inline-block;
  }

  .form-textarea_size-lg {
    height: 200px;
  }

  .section-divider {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .actions__wrap {
    margin-top: 100px;
  }

  .tab {
    padding: 25px 25px 25px 40px;
  }

  .hero-section__actions {
    margin-top: 80px;
  }

  .post-intro__main {
    gap: 40px;
  }

  .post-intro__item:nth-child(1) {
    width: 50%;
    padding-top: 5%;
    padding-right: 10%;
  }

  .post-intro__item:nth-child(2) {
    padding-left: 5%;
    padding-bottom: 5%;
    width: 50%;
  }

  .post-intro__item:nth-child(4) {
    padding-top: 5%;
    padding-left: 10%;
  }

  .clients-section__item-wrap {
    gap: 30px;
  }

  .clients-section__item-wrap img {
    height: 120px;
    width: 120px;
  }

  .subscribe-section__form .mc4wp-form-fields {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 30px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .our-community__wrap {
    gap: 5%;
    width: 90%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .room-info__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .room-info__left {
    padding: 4%;
    width: 50%;
  }

  .room-info__footer .btn {
    width: 360px;
  }

  .room-info__right {
    width: 50%;
  }

  .decor-grid {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    row-gap: 90px;
  }

  .map-section {
    height: 490px;
  }

  .studio-price-text {
    margin-top: 100px;
    margin-bottom: 60px;
  }

  .studio-price-table .studio-price-table {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .studio-slider__image-wrap {
    height: 570px;
  }

  .text-6.must-reads__text {
    font-size: 16px;
  }

  .split-section__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .split-section__link {
    padding: 5% 0;
    width: 50%;
  }

  .split-section__item {
    width: 56%;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 200ms linear;
    transition: 200ms linear;
  }

  .split-section__item:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    -webkit-transition: 200ms linear;
    transition: 200ms linear;
  }

  .landing-service__wrap {
    margin-bottom: 60px;
  }

  .mini-sessions__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .mini-sessions__right {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .btn-lg {
    font-size: 28px;
    padding: 1rem 3rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 30px;
  }

  p {
    margin-bottom: 20px;
  }

  .mini-sessions__text h1,
  .mini-sessions__text h2,
  .mini-sessions__text h3,
  .mini-sessions__text h4,
  .mini-sessions__text h5,
  .mini-sessions__text h6,
  .form-label h1,
  .form-label h2,
  .form-label h3,
  .form-label h4,
  .form-label h5,
  .form-label h6,
  .text h1,
  .text h2,
  .text h3,
  .text h4,
  .text h5,
  .text h6 {
    font-size: 16px;
  }

  .container {
    max-width: 1200px;
  }

  .footer__form {
    max-width: 540px;
  }

  .footer__form .btn {
    padding-left: 2em;
    padding-right: 2em;
  }

  .footer__input-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .footer .mc4wp-form-fields {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }

  .footer .mc4wp-form-fields .form-input:nth-child(1),
  .footer .mc4wp-form-fields .form-input:nth-child(2) {
    width: calc(50% - 25px);
    max-width: 50%;
  }

  .form-input,
  .bookly-section #loginform .input,
  .form-textarea,
  .form-select {
    font-size: 19px;
  }

  .slick-dots {
    bottom: 50px;
  }

  .hero-section_sm {
    min-height: 420px;
  }

  .subscribe-section .subscribe-section__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .room-info__main {
    margin-top: 7%;
  }

  .influencer-programs__text h1,
  .influencer-programs__text h2,
  .influencer-programs__text h3,
  .influencer-programs__text h4,
  .influencer-programs__text h5,
  .influencer-programs__text h6 {
    font-size: 24px;
  }

  .studio-space-section__col {
    width: 30%;
  }

  .studio-slider .slick-prev {
    left: 30px;
  }

  .studio-slider .slick-next {
    right: 30px;
  }

  .studio-slider .slick-arrow {
    width: 52px;
    height: 52px;
  }

  .room-info-section-slider .slick-prev {
    left: -60px;
  }

  .room-info-section-slider .slick-next {
    right: -60px;
  }

  .room-info-section-slider .container {
    padding-left: 0;
    padding-right: 0;
  }

  .information-cards__item {
    width: calc(33.33% - 34px);
  }

  .section-heading {
    margin-bottom: 60px;
  }

  .decor__item {
    width: calc(33.33% - 34px);
  }

  .blog-posts__wrap {
    gap: 70px;
  }

  .blog-posts__wrap .blog-posts__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .blog-posts__content {
    width: 40%;
  }

  .blog-posts__image-wrap {
    width: 60%;
  }

  .text-8.blog-posts__date {
    font-size: 14px;
  }

  .must-reads__item {
    width: calc(33.33% - 34px);
  }

  .faq-section__heading {
    width: calc(40% - 30px);
  }

  .faq-section__tabs {
    width: calc(60% - 30px);
  }

  .decor-section .container {
    max-width: 80%;
  }

  .photographers-filter .container {
    max-width: 80%;
  }

  .photographers-filter__categories .dropdown {
    display: none;
  }

  .photographers-filter__grid {
    row-gap: 60px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .photographers-filter__item {
    padding-inline: 10px;
    width: 25%;
  }

  .photographers-filter__item-badge {
    width: 100px;
    height: 100px;
  }

  .photographers-filter__item-heading {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }

  .photographers .container {
    max-width: 80%;
  }

  .photographers__grid {
    row-gap: 60px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .photographers__item {
    padding-inline: 10px;
    width: 20%;
  }

  .photographers__heading {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }

  .explore-rentals .container {
    max-width: 80%;
  }

  .explore-rentals__grid {
    row-gap: 60px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .explore-rentals__item {
    padding-inline: 10px;
    width: 25%;
  }

  .explore-rentals__item-heading {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }

  .photographer-gallery .container {
    max-width: 80%;
  }

  .photographer-gallery__grid {
    row-gap: 20px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .photographer-gallery__item {
    width: 25%;
    padding-inline: 10px;
  }

  .photographer-gallery__item-heading {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }

  .landing-service .container {
    max-width: 80%;
  }

  .landing-gallery .container {
    max-width: 80%;
  }

  .landing-gallery__item-heading {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }

  .mini-sessions .container {
    max-width: 90%;
  }

  .mini-sessions__grid {
    row-gap: 60px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .mini-sessions__heading {
    font-size: 18px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
  }

  .top-photographers .container {
    max-width: 80%;
  }

  .top-photographers__grid {
    row-gap: 60px;
    margin-left: -10px;
    margin-right: -10px;
  }

  .top-photographers__item {
    padding-inline: 10px;
    width: 25%;
  }

  .top-photographers__item-badge {
    width: 80px;
    height: 80px;
  }

  .top-photographers__item-heading {
    font-size: 16px;
    letter-spacing: 0.2em;
    margin-top: 20px;
  }

  .search-studio__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .search-studio__col-left,
  .search-studio__col-right {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .search-studio__col-left {
    width: 40%;
  }

  .search-studio__col-right {
    width: 60%;
  }

  .search-studio__list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }

  .search-studio__list > * {
    width: calc(33.3333333333% - 20px);
  }

  .search-studio__result-grid > * {
    width: calc(33.3333333333% - 6.6666666667px);
  }

  .contact-form-section .container {
    max-width: 80%;
  }

  .contact-form-section__info {
    font-size: 16px;
  }

  .contact-form-section__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7%;
  }

  .contact-form-section__image {
    width: 50%;
  }

  .contact-form-section__main {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .contacts-slider .slick-arrow {
    bottom: 36%;
  }

  .contacts-slider .slick-prev {
    left: -50px;
  }

  .contacts-slider .slick-next {
    right: -50px;
  }

  .contacts-slider__slide {
    padding-left: 15px;
    padding-right: 15px;
  }

  .landing-contact-form .container {
    max-width: 80%;
  }
}

@media (min-width: 1280px) {
  .header__wrap {
    padding: 2.2% 3.5%;
    border-bottom: none;
  }

  .header__left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: block;
    padding-right: 4%;
  }

  .header__right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 4%;
  }

  .header__nav {
    display: block;
  }

  .header__cart {
    display: block;
  }

  .header.header-sticky .header__wrap {
    padding: 10px 3.5%;
  }

  .menu-btn {
    display: none;
  }

  .mobile-navigation {
    display: none;
  }

  .mobile-navigation.active {
    display: none;
  }

  .section-divider {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero-section__artist-categories {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }

  .hero-section_artist {
    min-height: 100vh;
  }

  .masonry-gallery {
    margin-bottom: -40px;
  }

  .masonry-gallery__item {
    margin-bottom: 40px;
    width: 30%;
  }

  .text-center-section__content {
    width: 60%;
  }

  .testimonials-section__slide {
    padding-inline: 40px;
  }

  .testimonials-section__rating {
    margin-bottom: 40px;
  }

  .testimonials-section__name {
    margin-top: 40px;
  }

  .testimonial__name {
    margin-top: 40px;
  }

  .subscribe-section__wrap {
    padding: 0 10%;
    gap: 3%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .subscribe-section__text {
    width: 30%;
  }

  .decor-sliders__content {
    margin-left: 0;
  }

  .decor-sliders__left-image {
    display: block;
  }

  .decor-sliders__right-image {
    padding-bottom: 35vw;
    width: 26vw;
  }

  .our-community__left {
    width: 40%;
  }

  .our-community__right {
    gap: 10%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .our-community__right-col .btn {
    margin-bottom: 0;
  }

  .our-community__image-big {
    padding-bottom: 58%;
    width: 42%;
  }

  .our-community__image-small {
    margin-bottom: 10%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .image-text-section .container {
    max-width: 70%;
  }

  .studio-rates__wrap {
    padding: 0 6%;
  }

  .studio-rates__left {
    width: 45%;
    margin-bottom: 0;
  }

  .studio-rates__right {
    padding-left: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .studio-rates__table {
    margin-bottom: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .must-reads .container {
    max-width: 70%;
  }

  .landing-service .landing-gallery__grid {
    margin-bottom: 80px;
  }

  .artist-info .container {
    max-width: 60%;
  }
}

@media (min-width: 1380px) {
  .header .menu a {
    font-size: 12px;
  }
}

@media (min-width: 1400px) {
  .mini-sessions__item {
    gap: 30px;
  }

  .contacts-slider .slick-arrow {
    width: 40px;
    height: 40px;
    bottom: 33%;
  }

  .contacts-slider .slick-prev {
    left: -80px;
  }

  .contacts-slider .slick-next {
    right: -80px;
  }
}

@media (min-width: 1480px) {
  .btn,
  #login-form.modal input[type=submit].btn {
    font-size: 21px;
  }

  .btn-lg {
    font-size: 32px;
    padding: 1rem 3rem;
  }

  .mini-sessions__text,
  .form-label,
  .text {
    font-size: 14px;
  }

  .text-2 {
    font-size: 28px;
  }

  .text-3 {
    font-size: 26px;
  }

  .text-4 {
    font-size: 35px;
  }

  .text-5 {
    font-size: 26px;
  }

  .text-6 {
    font-size: 22px;
  }

  .text-7,
  .artist-info__categories {
    font-size: 21px;
  }

  .text-8 {
    font-size: 17px;
  }

  .uptitle {
    font-size: 20px;
  }

  .text-italic {
    font-size: 29px;
  }

  .heading-1 {
    font-size: 64px;
  }

  .heading-2 {
    font-size: 44px;
  }

  .heading-3 {
    font-size: 32px;
  }

  .heading-4 {
    font-size: 24px;
  }

  .header__logo img {
    height: 30px;
  }

  .header__left {
    padding-right: 10%;
  }

  .header__right {
    padding-left: 10%;
  }

  .footer__text {
    font-size: 16px;
  }

  .footer__form {
    margin-top: 40px;
  }

  .form-input,
  .bookly-section #loginform .input,
  .form-textarea,
  .form-select {
    font-size: 21px;
  }

  .hero-section__actions {
    margin-top: 90px;
  }

  .testimonials-section__heading {
    margin-bottom: 80px;
  }

  .testimonials-section__slide {
    padding-inline: 60px;
  }

  .subscribe-section__text {
    width: 40%;
  }

  .daylight-studios-section__heading {
    margin-bottom: 60px;
  }

  .daylight-studios-section__actions {
    margin-top: 80px;
  }

  .other-rooms__heading {
    margin-bottom: 60px;
  }

  .other-rooms__actions {
    margin-top: 80px;
  }

  .studio-rates__wrap {
    padding: 0 12%;
  }

  .studio-price-text__actions {
    margin-top: 50px;
  }
}

@media (min-width: 1600px) {
  .form-textarea_size-lg {
    height: 260px;
  }

  .filter__item {
    font-size: 17px;
  }

  .hero-section_sm {
    min-height: 600px;
  }

  .post-intro__main {
    gap: 60px;
  }

  .influencer-programs__text h1,
  .influencer-programs__text h2,
  .influencer-programs__text h3,
  .influencer-programs__text h4,
  .influencer-programs__text h5,
  .influencer-programs__text h6 {
    font-size: 28px;
  }

  .photographers-filter__heading {
    margin-bottom: 80px;
  }

  .photographers-filter__grid {
    row-gap: 60px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .photographers-filter__item {
    padding-inline: 20px;
  }

  .photographers-filter__item-badge {
    width: 120px;
    height: 120px;
  }

  .photographers__section-heading {
    margin-bottom: 80px;
  }

  .photographers__grid {
    row-gap: 60px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .photographers__item {
    padding-inline: 20px;
  }

  .explore-rentals__heading {
    margin-bottom: 80px;
  }

  .explore-rentals__grid {
    row-gap: 60px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .explore-rentals__item {
    padding-inline: 20px;
  }

  .landing-service .landing-gallery__grid {
    margin-bottom: 100px;
  }

  .mini-sessions__grid {
    row-gap: 75px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .mini-sessions__item {
    padding-inline: 20px;
    gap: 50px;
  }

  .mini-sessions__heading {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .top-photographers__heading {
    margin-bottom: 80px;
  }

  .top-photographers__grid {
    row-gap: 60px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .top-photographers__item {
    padding-inline: 20px;
  }

  .top-photographers__item-badge {
    width: 100px;
    height: 100px;
  }

  .search-studio__col-left,
  .search-studio__col-right {
    padding-top: 220px;
  }

  .contact-form-section__info {
    font-size: 18px;
  }

  .contacts-slider__slider {
    margin-left: -30px;
    margin-right: -30px;
  }

  .contacts-slider .slick-arrow {
    width: 50px;
    height: 50px;
  }

  .contacts-slider .slick-prev {
    left: -20%;
  }

  .contacts-slider .slick-next {
    right: -20%;
  }

  .contacts-slider__slide {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .photographers-filter__categories .filter {
    display: none;
  }
}

@media (max-width: 991px) {
  .footer__right {
    background-color: #8B9290;
    color: white !important;
  }

  .footer__form .btn {
    color: white;
    border-color: white;
  }

  .footer__form .form-input {
    border-color: white;
    color: white;
  }

  .footer__form .form-input::-webkit-input-placeholder {
    color: white !important;
  }

  .footer__form .form-input::-moz-placeholder {
    color: white !important;
  }

  .footer__form .form-input:-ms-input-placeholder {
    color: white !important;
  }

  .footer__form .form-input::-ms-input-placeholder {
    color: white !important;
  }

  .footer__form .form-input::placeholder {
    color: white !important;
  }
}

@media (max-width: 575px) {
  .footer__right {
    padding: 12%;
  }

  .hero-section__content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-section .slick-arrow {
    top: auto;
    bottom: -70px;
  }

  .studio-policy-section__top br {
    display: none;
  }

  .price-table {
    font-size: 9px;
  }

  .faq-section__grid {
    gap: 20px;
  }
}

@media (orientation: landscape) {
  .split-section__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media (orientation: portrait) {
  .split-section__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}