/*============ REFERENCES =============*/
/** Colors **/
/** Fonts **/
@font-face {
  font-family: 'PlayfairDisplay-Regular';
  src: url("../fonts/PlayfairDisplay-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PlayfairDisplay-Bold';
  src: url("../fonts/PlayfairDisplay-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Pro';
  src: url("../fonts/Gotham-Pro.ttf");
  font-weight: normal;
  font-style: normal;
}

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

html, body {
  min-width: 320px;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

input {
  outline: none;
  border: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}


@media (min-width: 1200px){
	main {
		padding: 40px 0 0 0;
	}
}

.t-bold {
  font-weight: 800;
}

.mk-page {
  overflow: hidden;
  position: relative;
}

.mk-page_active:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (min-width: 1200px) {
  .mk-container {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/** MK-Header **/
.mk-header {
  position: relative;
  margin: 0 20px;
  padding: 24px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #000000;
}

@media (min-width: 1200px) {
  .mk-header {
    width: 47%;
    position: absolute;
    border-bottom: none;
  }
}

@media (min-width: 1440px) {
  .mk-header {
    width: 30%;
  }
}

.mk-header__toggler {
  width: 20px;
  height: 20px;
  background: url("../img/menu-icon.png") center no-repeat;
  background-size: contain;
  outline: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .mk-header__toggler {
    width: 40px;
  }
}

.mk-header .mk-star {
  display: none;
}

@media (min-width: 1200px) {
  .mk-header .mk-star {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -0px;
    top: -70px;
    display: block;
    background: url("../img/star.png") center no-repeat;
    background-size: contain;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
}

@media (min-width: 1440px) {
  .mk-header .mk-star {
    right: -200px;
  }
}

@media (min-width: 1920px) {
  .mk-header .mk-star {
    right: -130px;
  }
}

.mk-header__dropdown-wrapper {
  padding: 20px 0;
  position: absolute;
  display: block;
  width: 100vw;
  text-align: center;
  top: -2000px;
  left: -2000px;
  z-index: 1000;
  background: url("../img/menu-circle-bck.png") bottom no-repeat;
  background-size: cover;
  -webkit-transition: .6s ease-in-out;
  -o-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

@media (min-width: 768px) {
  .mk-header__dropdown-wrapper {
    padding: 0 50px 240px 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    background-position: -150px -20px;
    z-index: 100;
  }
}

@media (min-width: 1200px) {
  .mk-header__dropdown-wrapper {
    padding: 60px 150px 300px 180px;
    z-index: 100;
    top: -2000px;
    left: -2000px;
    background-position: -200px 0;
  }
}

@media (min-width: 1440px) {
  .mk-header__dropdown-wrapper {
    padding: 60px 150px 200px 180px;
    background-size: contain;
    background-position: 0px 0;
    top: -2000px;
    left: -2000px;
  }
}

@media (min-width: 1920px) {
  .mk-header__dropdown-wrapper {
    padding: 60px 250px 200px 280px;
    background-position: 0px 0;
    top: -2000px;
    left: -2000px;
  }
}

.mk-header__dropdown-wrapper_active {
  display: block;
  top: 0;
  left: -20px;
}

@media (min-width: 768px) {
  .mk-header__dropdown-wrapper_active {
    padding: 0 50px 240px 80px;
    top: 0;
    left: -20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    background-position: -150px -20px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-header__dropdown-wrapper_active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 150px 300px 180px;
    z-index: 100;
    top: -40px;
    left: -150px;
    background-position: -200px 0;
  }
}

@media (min-width: 768px) and (min-width: 1440px) {
  .mk-header__dropdown-wrapper_active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 150px 200px 180px;
    background-size: contain;
    background-position: 0px 0;
    left: -230px;
  }
}

@media (min-width: 768px) and (min-width: 1920px) {
  .mk-header__dropdown-wrapper_active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 60px 250px 200px 280px;
    background-position: 0px 0;
    left: -450px;
  }
}

@media (min-width: 768px) {
  .mk-header__dropdown {
    width: 45%;
  }
}

@media (min-width: 1220px) {
  .mk-header__dropdown {
    width: 30%;
  }
}

@media (min-width: 1920px) {
  .mk-header__dropdown {
    width: 20%;
  }
}

.mk-header__dropdown-item {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

@media (min-width: 768px) {
  .mk-header__dropdown-item {
    width: 45%;
    text-align: left;
  }
}

.mk-header__dropdown-item a {
  position: relative;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .mk-header__dropdown-item a {
    font-size: 2.25rem;
    line-height: 2.9375rem;
    font-style: italic;
  }
}

@media (min-width: 1200px) {
  .mk-header__dropdown-item a:after {
    content: '';
    display: block;
    position: absolute;
    width: 0%;
    height: 2px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .mk-header__dropdown-item a:hover:after {
    width: 100%;
    background: #FFFFFF;
    -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
  }
}

.mk-header__dropdown-close {
  position: relative;
  z-index: 100;
}

@media (min-width: 768px) {
  .mk-header__dropdown-close {
    position: absolute;
    top: 374px;
    right: 180px;
  }
}

@media (min-width: 1024px) {
  .mk-header__dropdown-close {
    right: 380px;
  }
}

@media (min-width: 1220px) {
  .mk-header__dropdown-close {
    top: 400px;
    right: 450px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
  }
  .mk-header__dropdown-close button {
    cursor: pointer;
  }
  .mk-header__dropdown-close:hover {
    -webkit-transform: rotate(60deg) scale(1.3);
        -ms-transform: rotate(60deg) scale(1.3);
            transform: rotate(60deg) scale(1.3);
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
}

@media (min-width: 1440px) {
  .mk-header__dropdown-close {
    left: 700px;
  }
}

@media (min-width: 1920px) {
  .mk-header__dropdown-close {
    left: 200px;
  }
}

.mk-header__dropdown-close button {
  width: 80px;
  height: 80px;
  background: url("../img/close.png") center no-repeat;
  background-size: contain;
  border: none;
  outline: none;
}

.mk-header__logo img {
  display: block;
  margin: 0 auto;
  width: 60%;
}

@media (min-width: 1200px) {
  .mk-header__logo img {
    width: 180px;
  }
}

.mk-header__search-btn {
  width: 20px;
  height: 20px;
  background: url("../img/serach-icon.png") center no-repeat;
  background-size: contain;
  outline: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .mk-header__search-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 100px;
  }
}

@media (min-width: 1200px) {
  .mk-header__search-btn_active {
    right: 100px;
    left: auto;
  }
}

@media (min-width: 1440px) {
  .mk-header__search-btn_active {
    right: 80px;
  }
}

.mk-header__search-input {
  display: none;
  position: absolute;
  left: 50%;
  top: 10px;
  padding: 10px 0;
  width: 70%;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  background: #FFFFFF;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.mk-header__search-input input {
  width: 100%;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .mk-header__search-input {
    width: 90%;
  }
}

@media (min-width: 1200px) {
  .mk-header__search-input {
    padding: 5px 0;
    width: 70%;
    top: 100px;
    left: 0;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.mk-header__search-input_active {
  display: block;
}

/** MK-Main-Screen **/
@media (min-width: 768px) {
  .mk-main-screen__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__wrapper {
    -webkit-box-pack: normal;
    -webkit-justify-content: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}

@media (min-width: 768px) {
  .mk-main-screen__slider {
    width: 45%;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__slider {
    position: relative;
    left: 20px;
    width: 50%;
    height: 600px;
  }
  .mk-main-screen__slider .swiper-container {
    height: 600px;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__slider {
    left: 50px;
  }
}

@media (min-width: 1440px) {
  .mk-main-screen__slider {
    width: 800px;
    margin: 0 -200px 0 0;
  }
}

@media (min-width: 1920px) {
  .mk-main-screen__slider {
    width: 1000px;
    margin: 0 -400px 0 0;
  }
}

.mk-main-screen__slider-inner {
  display: none;
}

@media (min-width: 1200px) {
  .mk-main-screen__slider-inner {
    padding: 20px 10px 50px 30px;
    width: 370px;
    display: block;
    bottom: 0;
    position: absolute;
    z-index: 2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 0 30px 0 0;
  }
}

.mk-main-screen__slider-next {
  display: none;
}

.mk-main-screen__slider-next_hidden {
 display: none !important;
}

.mk-main-screen__slider-prev_active {
 display: block !important;
}

@media (min-width: 1200px) {
  .mk-main-screen__slider-next {
    width: 54px;
    height: 54px;
    display: block;
    top: 84%;
    left: 57%;
    background: url("../img/slider-arrow.png") center no-repeat;
    background-size: contain;
    outline: none;
  }
  .mk-main-screen__slider-next:after {
    display: none;
  }

  .mk-main-screen__slider-prev {
    width: 54px;
    height: 54px;
    display: none;
    top: 84%;
    left: 57%;
    background: url("../img/slider-arrow.png") center no-repeat;
    background-size: contain;
    outline: none;
    transform: rotate(-180deg)
  }
  .mk-main-screen__slider-prev:after {
    display: none;
  }
}

@media (min-width: 1440px) {
  .mk-main-screen__slider-next {
    left: 42%;
  }

  .mk-main-screen__slider-prev {
	left: 42%;
  }
}

@media (min-width: 1920px) {
  .mk-main-screen__slider-next {
    left: 34%;
  }

  .mk-main-screen__slider-prev {
	left: 34%;
  }
}

.mk-main-screen__slider-title {
  font-size: 2.25rem;
  line-height: 3.125rem;
  font-family: sans-serif;
  font-style: italic;
  font-weight: 400;
}

.mk-main-screen__slider-text {
  margin: 20px 0;
  font-size: 0.8125rem;
  line-height: 1.25rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
}

.mk-main-screen__slider-num {
  display: none;
}

@media (min-width: 1200px) {
  .mk-main-screen__slider-num {
    display: block;
    position: absolute;
    left: 20px;
    top: 10px;
    z-index: 1;
  }
  .mk-main-screen__slider-num span {
    font-size: 2.625rem;
    line-height: 3.125rem;
    font-family: sans-serif;
    font-style: italic;
  }
  .mk-main-screen__slider-num .num-active {
    color: #FFFFFF;
  }
  .mk-main-screen__slider-num .num-dash, .mk-main-screen__slider-num .num-length {
    color: #FFFFFF;
    opacity: .5;
  }
}

.mk-main-screen__active-slide {
  display: none;
}

@media (min-width: 1200px) {
  .mk-main-screen__active-slide {
    display: block;
  }
  .mk-main-screen__active-slide span {
    position: absolute;
    bottom: 14px;
    left: 50%;
    color: #FFFFFF;
    font-size: 2.5rem;
    line-height: 3.125rem;
    font-style: italic;
    font-family: sans-serif;
    z-index: 1;
    opacity: 0.5;
  }
}

@media (min-width: 1200px) and (min-width: 1440px) {
  .mk-main-screen__active-slide span {
    left: 38%;
  }
}

@media (min-width: 1200px) and (min-width: 1920px) {
  .mk-main-screen__active-slide span {
    left: 30%;
  }
}

@media (min-width: 768px) {
  .mk-main-screen__block {
    width: 45%;
  }
}

.mk-main-screen__slide-img {
  width: 100%;
  height: 200px;
  padding: 20px;
}

@media (min-width: 425px) {
  .mk-main-screen__slide-img {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .mk-main-screen__slide-img {
    padding: 20px 0;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__slide-img {
    width: 600px;
    height: 600px;
    padding: 0;
  }
}

@media (min-width: 1300px) {
  .mk-main-screen__slide-img {
    width: 630px;
    height: 600px;
    padding: 0;
  }
}

@media (min-width: 1440px) {
  .mk-main-screen__slide-img {
    width: 800px;
  }
}

@media (min-width: 1920px) {
  .mk-main-screen__slide-img {
    width: 1000px;
  }
}

.mk-main-screen__slide-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}

@media (min-width: 425px) {
  .mk-main-screen__slide-img img {
    height: 350px;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__slide-img img {
    width: 600px;
    height: 600px;
  }
}

@media (min-width: 1300px) {
  .mk-main-screen__slide-img img {
    width: 630px;
    height: 600px;
    padding: 0;
  }
}

@media (min-width: 1440px) {
  .mk-main-screen__slide-img img {
    width: 800px;
  }
}

@media (min-width: 1920px) {
  .mk-main-screen__slide-img img {
    width: 1000px;
  }
}

.mk-main-screen__header {
  padding: 50px 20px 20px 20px;
  color: #3f3f3f;
}

@media (min-width: 1200px) {
  .mk-main-screen__header {
    padding: 180px 75px 20px 00px;
  }
}

.mk-main-screen__header-title {
  font-size: 1.625rem;
  line-height: 2.49938rem;
  text-align: right;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
}

@media (min-width: 425px) {
  .mk-main-screen__header-title {
    padding: 0 0 0 100px;
    font-size: 2rem;
    line-height: 2.8125rem;
  }
}

@media (min-width: 768px) {
  .mk-main-screen__header-title {
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__header-title {
    font-size: 3rem;
    line-height: 4.375rem;
  }
}

.mk-main-screen__subtitle {
  padding: 20px 0 0 0;
  text-align: right;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
}

@media (min-width: 768px) {
  .mk-main-screen__subtitle {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__subtitle {
    margin: 40px 0 0 0;
    font-size: 1.375rem;
    line-height: 2.0625rem;
  }
}

.mk-main-screen__nav {
  position: relative;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media (min-width: 425px) {
  .mk-main-screen__nav {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media (min-width: 768px) {
  .mk-main-screen__nav {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__nav {
    padding: 20px 70px;
  }
}

.mk-main-screen__nav:after {
  content: '';
  display: block;
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: -180px;
  left: -30px;
  opacity: 0.25;
  background: url("../img/circle-logo.png") center no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .mk-main-screen__nav:after {
    width: 120px;
    height: 120px;
    bottom: 60px;
    left: -80px;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__nav:after {
    display: none;
  }
}

.mk-main-screen__nav .sound-star {
  display: none;
}

@media (min-width: 1200px) {
  .mk-main-screen__nav .sound-star {
    display: block;
    position: absolute;
    left: -140px;
    top: 0px;
    width: 150px;
    height: 150px;
    background-size: contain;
    border: none;
  }
  .mk-main-screen__nav .sound-star:hover .sound-music {
    opacity: 0;
    left: 0;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
  .mk-main-screen__nav .sound-star:hover > .sound-play, .mk-main-screen__nav .sound-star:hover .sound-pause {
    opacity: 1;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
}

.mk-main-screen__nav .sound-music {
  position: absolute;
  top: 60px;
  left: 35px;
  opacity: 1;
  -webkit-transition: .3s ease-in-out .1s;
  -o-transition: .3s ease-in-out .1s;
  transition: .3s ease-in-out .1s;
}

.mk-main-screen__nav .sound-play {
  position: absolute;
  top: 60px;
  left: 40px;
}

.mk-main-screen__nav .sound-pause {
  position: absolute;
  top: 60px;
  left: 40px;
}

.mk-main-screen__nav .sound-play, .mk-main-screen__nav .sound-pause {
  opacity: 0;
  -webkit-transition: .3s ease-in-out .1s;
  -o-transition: .3s ease-in-out .1s;
  transition: .3s ease-in-out .1s;
}

.mk-main-screen__nav .sound-pause {
  display: none;
}

.mk-main-screen__nav .sound-circle {
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: -1;
  -webkit-transition: .3s ease-in-out .3s;
  -o-transition: .3s ease-in-out .3s;
  transition: .3s ease-in-out .3s;
}

.mk-main-screen__nav .sound-circle_active {
  -webkit-animation: rotation 8s infinite linear;
          animation: rotation 8s infinite linear;
}

.mk-main-screen__nav a {
  display: block;
  width: 120px;
  height: 120px;
  text-align: center;
  font-size: 1.75rem;
  line-height: 6.875rem;
  color: #3f3f3f;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (min-width: 768px) {
  .mk-main-screen__nav a {
    margin: 0 0 0 30px;
    width: 80px;
    height: 80px;
    font-size: 1.125rem;
    line-height: 4.625rem;
  }
}

@media (min-width: 1200px) {
  .mk-main-screen__nav a {
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 5.625rem;
  }
}

.mk-main-screen__nav a:hover {
  color: #FFFFFF;
  background: #3f3f3f;
}

.mk-main-screen__pagination {
  padding: 20px 0 0 0;
  width: 100%;
  z-index: 1;
}

@media (min-width: 768px) {
  .mk-main-screen__pagination {
    width: 47%;
  }
}

.mk-main-screen__pagination .swiper-pagination-bullet {
  margin: 0 10px;
  background: rgba(63, 63, 63, 0.25);
}

.mk-main-screen__pagination .swiper-pagination-bullet-active {
  background: #3f3f3f;
}

.swiper-pagination-progressbar {
  width: 40%;
  bottom: 35px;
  left: 30px;
  height: 2px !important;
  padding: 1px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 100;
}

@media (min-width: 1440px) {
  .swiper-pagination-progressbar {
    width: 30%;
  }
}

@media (min-width: 1920px) {
  .swiper-pagination-progressbar {
    width: 24%;
  }
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 1.5px;
  background: #FFFFFF;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/** MK-Services **/
.mk-services {
  margin: 120px 0 0 0;
}

.mk-services__block {
  margin: 0 0 120px 0;
}

@media (min-width: 768px) {
  .mk-services__block {
    margin: 0 0 80px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (min-width: 768px) {
  .mk-services__block-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .mk-services__block-reverse .mk-services__title {
    padding: 0;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-services__block-reverse .mk-services__title {
    padding: 0 40px 0 0;
  }
}

@media (min-width: 768px) {
  .mk-services__block-reverse .mk-services__subtitle {
    padding: 20px 0 20px 60px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-services__block-reverse .mk-services__subtitle {
    padding: 40px 40px 0px 60px;
  }
}

@media (min-width: 768px) {
  .mk-services__block-reverse .mk-services__link {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .mk-services__block-reverse .mk-services__link-text {
    margin: 0 20px 0 0;
  }
}

@media (min-width: 768px) {
  .mk-services__content {
    width: 45%;
  }
}

.mk-services__img {
  margin: 0 auto;
  width: 100%;
  height: 200px;
  padding: 20px;
}

@media (min-width: 425px) {
  .mk-services__img {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .mk-services__img {
    width: 45%;
    margin: 0;
    padding: 20px 0;
  }
}

@media (min-width: 1200px) {
  .mk-services__img {
    width: 690px;
    height: 460px;
  }
}

.mk-services__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}

@media (min-width: 425px) {
  .mk-services__img img {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .mk-services__img img {
    height: 270px;
  }
}

@media (min-width: 1200px) {
  .mk-services__img img {
    width: 690px;
    height: 460px;
  }
}

.mk-services__header {
  padding: 40px 20px;
}

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

.mk-services__title {
  font-size: 1.875rem;
  line-height: 2.34375rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
}

@media (min-width: 768px) {
  .mk-services__title {
    padding: 0 70px 0 0;
  }
}

@media (min-width: 1200px) {
  .mk-services__title {
    padding: 0 0 0 40px;
    font-size: 3rem;
    line-height: 4.375rem;
  }
}

.mk-services__subtitle {
  padding: 20px 0 0 0;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
}

@media (min-width: 768px) {
  .mk-services__subtitle {
    padding: 20px 100px 0 0;
  }
}

@media (min-width: 1200px) {
  .mk-services__subtitle {
    padding: 40px 60px 0 40px;
    font-size: 1.375rem;
    line-height: 2.0625rem;
  }
}

.mk-services__link {
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (min-width: 425px) {
  .mk-services__link {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 768px) {
  .mk-services__link {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media (min-width: 1200px) {
  .mk-services__link {
    padding: 20px 60px;
  }
}

.mk-services__svg-wrapper svg {
  width: 80px;
  height: 80px;
}

@media (min-width: 768px) {
  .mk-services__svg-wrapper svg {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1200px) {
  .mk-services__svg-wrapper svg {
    width: 120px;
    height: 120px;
  }
}

.mk-services__link-text {
  max-width: 140px;
  font-size: 1.375rem;
  line-height: 1.8125rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 400;
  color: #3f3f3f;
}

@media (min-width: 425px) {
  .mk-services__link-text {
    margin: 0 0 0 30px;
  }
}

.mk-services__svg-active {
  display: none;
}

/** MK-Roadmap**/
.mk-roadmap {
  position: relative;
  padding: 0 0 70px 0;
}

@media (min-width: 768px) {
  .mk-roadmap:before {
    content: '';
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    top: -80px;
    left: -30px;
    background: url("../img/keramika-logo.png") center no-repeat;
    background-size: contain;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-roadmap:before {
    left: 50px;
  }
}

@media (min-width: 768px) and (min-width: 1440px) {
  .mk-roadmap:before {
    width: 250px;
    height: 250px;
    left: 50px;
  }
}

@media (min-width: 768px) and (min-width: 1920px) {
  .mk-roadmap:before {
    width: 250px;
    height: 250px;
    left: 250px;
  }
}

@media (min-width: 1200px) {
  .mk-roadmap {
    padding: 60px 0 120px 0;
  }
}

.mk-roadmap__link {
  display: inline-block;
  text-align: center;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  color: #3f3f3f;
  font-weight: 800;
}

@media (min-width: 768px) {
  .mk-roadmap__link {
    margin: 0 20px;
  }
}

.mk-roadmap__wrapper {
  padding: 0 20px;
}

@media (min-width: 425px) {
  .mk-roadmap__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media (min-width: 768px) {
  .mk-roadmap__wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .mk-roadmap__wrapper a {
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  .mk-roadmap__wrapper a:hover {
    background: #3f3f3f;
    color: #FFFFFF;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
}

.mk-shop {
  padding: 35px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  line-height: 1.75rem;
  width: 160px;
  height: 160px;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  float: right;
}

@media (min-width: 1200px) {
  .mk-shop {
    padding: 50px 10px;
    width: 200px;
    height: 200px;
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}

.mk-portfolio {
  padding: 55px 20px;
  font-size: 1.5rem;
  line-height: 2.1875rem;
  width: 200px;
  height: 200px;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .mk-portfolio {
    padding: 40px 20px;
    width: 160px;
    height: 160px;
    font-size: 1.125rem;
    line-height: 2.1875rem;
  }
}

@media (min-width: 1200px) {
  .mk-portfolio {
    padding: 60px 40px;
    width: 200px;
    height: 200px;
    font-size: 1.375rem;
    line-height: 1.75rem;
  }
}

/** MK-Footer **/
.mk-footer {
  position: relative;
  padding: 40px 0 15px 0;
  background: #F5F5F5;
}

@media (min-width: 768px) {
  .mk-footer {
    padding: 40px 0 0 0;
  }
}

.mk-footer:after {
  content: '';
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  top: -70px;
  right: -30px;
  opacity: 1;
  background: url("../img/circle-logo.png") center no-repeat;
  background-size: contain;
}

@media (min-width: 1200px) {
  .mk-footer:after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .mk-footer__nav {
    width: 30%;
  }
}

.mk-footer__block {
  margin: 0 0 40px 0;
  text-align: center;
  color: #3f3f3f;
}

@media (min-width: 1200px) {
  .mk-footer__block {
    text-align: left;
  }
}

.mk-footer__block-title {
  position: relative;
  margin: 0 0 30px 0;
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
}

@media (min-width: 1200px) {
  .mk-footer__block-title {
    margin: 0 0 20px 0;
    font-size: 2rem;
    line-height: 2.625rem;
  }
}

.mk-footer__block-title:after {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 1px;
  background: #3f3f3f;
  top: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

@media (min-width: 1200px) {
  .mk-footer__block-title:after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .mk-footer__block-item {
    margin: 0 0 0 18px;
    list-style: disc;
  }
}

.mk-footer__block-item p {
  padding: 10px 0;
  font-size: 0.875rem;
  line-height: 0.8125rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
}

.mk-footer__block-item a {
  color: #3f3f3f;
}

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

@media (min-width: 1200px) {
  .mk-footer__instagram {
    width: 720px;
    position: absolute;
    top: 46px;
    right: 0;
    left: 46%;
  }
}

.mk-footer__instagram a {
  display: inline-block;
  position: relative;
  left: -20px;
  font-size: 1.625rem;
  line-height: 2.125rem;
  color: #3f3f3f;
  font-family: 'PlayfairDisplay-Regular' !important;
}

@media (min-width: 1200px) {
  .mk-footer__instagram a {
    font-size: 2rem;
    line-height: 2.625rem;
    text-align: left;
    width: 100%;
  }
}

.mk-footer__instagram a:after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 14px;
  right: -30px;
  background: url("../img/instagram-logo.png") center no-repeat;
  background-size: contain;
}

@media (min-width: 1200px) {
  .mk-footer__instagram a:after {
    left: 34%;
  }
}

.mk-footer__instagram-wrapper {
  display: none;
}

@media (min-width: 1200px) {
  .mk-footer__instagram-wrapper {
    padding: 30px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 130px 130px 130px 125px;
    gap: 10px 10px;
    grid-template-areas: "insta---1 insta---3 insta---6 insta---8"  "insta---1 insta---4 insta---6 insta---9"  "insta---2 insta---4 insta---7 insta---9"  "insta---2 insta---5 insta---7 insta---10";
  }
  .mk-footer__instagram-wrapper a:after {
    display: none;
  }
  .mk-footer__instagram-wrapper a img {
    padding: 0;
    width: 170px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mk-footer__copyright {
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 20px 0;
  text-align: center;
  font-family: "Gotham-Pro", "Arial", sans-serif;
}

@media (min-width: 1200px) {
  .mk-footer__copyright {
    padding: 0 0 30px 0;
    text-align: left;
  }
}

.conf {
  display: inline-block;
  padding: 0 0 10px 0;
  text-decoration: underline;
  color: #3f3f3f;
}

.insta---1 {
  height: 260px;
  grid-area: insta---1;
}

.insta---2 {
  height: 260px;
  grid-area: insta---2;
}

.insta---3 {
  height: 125px;
  grid-area: insta---3;
}

.insta---4 {
  height: 260px;
  grid-area: insta---4;
}

.insta---5 {
  height: 125px;
  grid-area: insta---5;
}

.insta---6 {
  grid-area: insta---6;
}

.insta---7 {
  grid-area: insta---7;
}

.insta---8 {
  grid-area: insta---8;
}

.insta---9 {
  grid-area: insta---9;
}

.insta---10 {
  grid-area: insta---10;
}

#buttonToTop {
  display: none;
}

@media (min-width: 1220px) {
  #buttonToTop {
    display: inline-block;
    background: url("../img/totop-icon.png") center no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
}

#buttonToTop::after {
  content: "";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#buttonToTop:hover {
  cursor: pointer;
}

#buttonToTop.show {
  opacity: 1;
  visibility: visible;
}

/** DESIGN BATHROOM PAGE **/
@media (min-width: 768px) {
  .mk-design-bathroom__content {
    width: 44%;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__content {
    width: 35%;
    position: relative;
    top: 150px;
    right: -120px;
  }
}

.mk-design-bathroom__header {
  padding: 20px;
}

@media (min-width: 768px) {
  .mk-design-bathroom__header {
    padding: 20px 0;
  }
}

.mk-design-bathroom__header h2 {
  font-size: 1.875rem;
  line-height: 2.3125rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  text-align: right;
  font-weight: 200;
}

@media (min-width: 768px) {
  .mk-design-bathroom__header h2 {
    font-size: 2.25rem;
    line-height: 2.8125rem;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__header h2 {
    font-size: 3.125rem;
    line-height: 3.875rem;
  }
}

.mk-design-bathroom__subtitle {
  padding: 20px;
}

@media (min-width: 768px) {
  .mk-design-bathroom__subtitle {
    padding: 20px 0 0 20px;
  }
}

.mk-design-bathroom__subtitle p {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
  text-align: right;
}

@media (min-width: 768px) {
  .mk-design-bathroom__subtitle p {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__subtitle p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}

.mk-design-bathroom__action {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.mk-design-bathroom__action .sound-star {
  display: none;
}

@media (min-width: 768px) {
  .mk-design-bathroom__action {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__action {
    margin: 40px 0 0 0;
    position: relative;
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (min-width: 1200px) and (min-width: 425px) {
  .mk-design-bathroom__action {
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media (min-width: 1200px) and (min-width: 768px) {
  .mk-design-bathroom__action {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 1200px) and (min-width: 1200px) {
  .mk-design-bathroom__action {
    padding: 20px 0px;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__action:after {
    content: '';
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -180px;
    left: -30px;
    opacity: 0.25;
    background: url("../img/circle-logo.png") center no-repeat;
    background-size: contain;
  }
}

@media (min-width: 1200px) and (min-width: 768px) {
  .mk-design-bathroom__action:after {
    width: 120px;
    height: 120px;
    bottom: 60px;
    left: -80px;
  }
}

@media (min-width: 1200px) and (min-width: 1200px) {
  .mk-design-bathroom__action:after {
    display: none;
  }
}

@media (min-width: 1200px) and (min-width: 1200px) {
  .mk-design-bathroom__action .sound-star {
    display: block;
    position: absolute;
    left: -120px;
    top: -150px;
    width: 100px;
    height: 100px;
    background-size: contain;
    border: none;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@media (min-width: 1200px) and (min-width: 1200px) and (min-width: 1440px) {
  .mk-design-bathroom__action .sound-star {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    left: -140px;
  }
}

@media (min-width: 1200px) and (min-width: 1200px) {
  .mk-design-bathroom__action .sound-star:hover .sound-music {
    opacity: 0;
    left: 0;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
  .mk-design-bathroom__action .sound-star:hover > .sound-play, .mk-design-bathroom__action .sound-star:hover .sound-pause {
    opacity: 1;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__action .sound-music {
    position: absolute;
    top: 60px;
    left: 35px;
    opacity: 1;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
  .mk-design-bathroom__action .sound-play {
    position: absolute;
    top: 60px;
    left: 40px;
  }
  .mk-design-bathroom__action .sound-pause {
    position: absolute;
    top: 60px;
    left: 40px;
  }
  .mk-design-bathroom__action .sound-play, .mk-design-bathroom__action .sound-pause {
    opacity: 0;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
  .mk-design-bathroom__action .sound-pause {
    display: none;
  }
  .mk-design-bathroom__action .sound-circle {
    position: absolute;
    top: -20px;
    left: -40px;
    z-index: -1;
    -webkit-transition: .3s ease-in-out .3s;
    -o-transition: .3s ease-in-out .3s;
    transition: .3s ease-in-out .3s;
  }
  .mk-design-bathroom__action .sound-circle_active {
    -webkit-animation: rotation 8s infinite linear;
            animation: rotation 8s infinite linear;
  }
}

.mk-design-bathroom__action a {
  display: block;
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 1.75rem;
  line-height: 4.875rem;
  color: #3f3f3f;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.mk-design-bathroom__action a:first-child {
  line-height: 74px;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

@media (min-width: 768px) {
  .mk-design-bathroom__action a:first-child {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__action a:first-child {
    width: 120px;
    height: 120px;
    font-size: 1.625rem;
    line-height: 7.125rem;
  }
}

.mk-design-bathroom__action a:last-child {
  width: 120px;
  height: 120px;
}

@media (min-width: 768px) {
  .mk-design-bathroom__action a:last-child {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__action a:last-child {
    width: 120px;
    height: 120px;
    font-size: 1.625rem;
    line-height: 7.125rem;
  }
}

@media (min-width: 768px) {
  .mk-design-bathroom__action a {
    margin: 0 0 0 30px;
    width: 80px;
    height: 80px;
    font-size: 1.125rem;
    line-height: 4.625rem;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__action a {
    width: 120px;
    height: 120px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 7.125rem;
  }
}

.mk-design-bathroom__action a:hover {
  color: #FFFFFF;
  background: #3f3f3f;
}

.mk-design-bathroom__item {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all .3s ease-in-out;
}

.mk-design-bathroom__item:before {
  opacity: 0;
    -webkit-animation: fadeOut 1s;
    animation: fadeOut 1s;
}

.mk-design-bathroom__item:hover:before {
	content: "";
    position: absolute;
    display: block;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: all .3s ease-in-out;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
	opacity: 1;
}

.mk-design-bathroom__item:hover:after {
  opacity: 1;
  transition: opacity .3s ease-in-out;
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}


@-webkit-keyframes fadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}
@keyframes fadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}


.mk-design-bathroom__item:after {
  content: '';
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  top: 50%;
  opacity: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("../img/eye-design-card.svg") center no-repeat;
  background-size: contain;
}

.mk-design-bathroom__item:nth-child(1):after {
  width: 69px;
  height: 69px;
}

.mk-design-bathroom__item:nth-child(3) img {
  height: 150px;
}

@media (min-width: 1200px) {
  .mk-design-bathroom__item {
    height: 300px;
  }
  .mk-design-bathroom__item:nth-child(1) img {
    width: 100%;
    height: 450px;
  }
}

.mk-design-bathroom__item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .mk-design-bathroom__item img {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__item img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__item img {
    width: 180px;
  }
}

@media (min-width: 768px) {
  .mk-design-bathroom__nav {
    width: 46%;
  }
}

.mk-design-bathroom__nav-header {
  position: relative;
  padding: 80px 0 20px 0;
}

@media (min-width: 768px) {
  .mk-design-bathroom__nav-header {
    padding: 250px 20px 20px 0;
  }
}

.mk-design-bathroom__nav-header h3 {
  font-size: 1.875rem;
  line-height: 2.5rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
  text-align: center;
}

@media (min-width: 768px) {
  .mk-design-bathroom__nav-header h3 {
    padding: 80px 0 20px 20px;
    text-align: right;
  }
}

.mk-design-bathroom__nav-list {
  position: relative;
}

@media (min-width: 768px) {
  .mk-design-bathroom__nav-list {
    padding: 0 0 60px 0;
  }
}

@media (min-width: 1200px) {
  .mk-design-bathroom__nav-list {
    padding: 0 0 120px 0;
    margin: 0 0 185px 0;
  }
}

@media (min-width: 768px) {
  .mk-design-bathroom__bottom-nav {
    display: none;
  }
}

.mk-design-bathroom__nav-item {
  padding: 10px 0;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .mk-design-bathroom__nav-item {
    padding: 10px 20px 10px 0;
    text-align: right;
  }
}

.mk-design-bathroom__nav-item a {
  display: inline-block;
  padding: 10px 0;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #000000;
  border-bottom: 1px solid transparent;
}

.mk-design-bathroom__nav-item a:hover {
  display: inline-block;
  padding: 10px 0;
  border-bottom: 1px solid #3f3f3f;
}

.mk-design-bathroom__item-hover {
  display: none;
}

@media (min-width: 1200px) {
  .mk-design-bathroom__item-hover {
    display: block;
    position: absolute;
    width: 280px;
    height: 310px;
    top: 430px;
    right: 220px;
  }
  .mk-design-bathroom__item-hover img {
    width: 280px;
    height: 310px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.design-grid-container {
  padding: 0 5px;
  width: 100%;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: 150px 150px;
  grid-template-rows: repeat(7, 150px);
  gap: 8px 10px;
  grid-template-areas: "design-card-1 design-card-1"  "design-card-1 design-card-1"  "design-card-2 design-card-3"  "design-card-2 design-card-4" "design-card-5 design-card-4" "design-card-5 design-card-6" ". design-card-6";
}

@media (min-width: 768px) {
  .design-grid-container {
    width: 390px;
    position: absolute;
    top: 100px;
    right: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(5, 150px);
    gap: 10px 10px;
    grid-template-areas: "design-card-1 design-card-1 design-card-1" "design-card-1 design-card-1 design-card-1"  "design-card-2 design-card-3 design-card-4"  "design-card-2 design-card-6 design-card-4" "design-card-5 design-card-6 ." "design-card-5 . .";
  }
}

@media (min-width: 1024px) {
  .design-grid-container {
    right: 100px;
  }
}

@media (min-width: 1200px) {
  .design-grid-container {
    grid-template-rows: repeat(5, 150px);
    top: 0;
    left: 55%;
  }
}

.design-card-1 {
  grid-area: design-card-1;
}

@media (min-width: 1200px) {
  .design-card-1 {
    height: 450px;
  }
}

.design-card-2 {
  grid-area: design-card-2;
}

@media (min-width: 1200px) {
  .design-card-2 {
    margin: 140px 0 0 0;
  }
}

.design-card-3 {
  grid-area: design-card-3;
}

@media (min-width: 1200px) {
  .design-card-3 {
    height: 150px;
    margin: 140px 0 0 0;
  }
}

.design-card-4 {
  grid-area: design-card-4;
}

@media (min-width: 1200px) {
  .design-card-4 {
    margin: 140px 0 0 0;
  }
}

.design-card-5 {
  grid-area: design-card-5;
}

@media (min-width: 1200px) {
  .design-card-5 {
    margin: 140px 0 0 0;
  }
}

.design-card-6 {
  grid-area: design-card-6;
}

@media (min-width: 1200px) {
  .design-card-6 {
    margin: 140px 0 0 0;
  }
}

.modal {
  top: -1000px;
  display: none;
  opacity: 0;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  z-index: 10;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal {
    padding: 50px;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .modal {
    width: 1024px;
    left: 50%;
    height: 650px;
    overflow: visible;
    -webkit-transform: translate(-50%, 10%);
        -ms-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
  }
}

.modal.active {
  top: 0;
  display: block;
  position: fixed;
  opacity: 1;
}

.modal-header {
  padding: 10px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-header .title {
  position: relative;
  top: 20px;
  font-size: 1.375rem;
  line-height: 1.6875rem;
  font-style: italic;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
}

.modal-header .title span {
  font-size: 1.875rem;
  line-height: 2.3125rem;
}

.modal-header .close-button {
  background: transparent;
  border: none;
  outline: unset;
  font-size: 2em;
  cursor: pointer;
}

.modal-body {
  padding: 10px;
  text-align: justify;
}

@media (min-width: 768px) {
  .modal-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.bathroom-slide {
  height: 300px;
}

#overlay {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

button[data-modal-target="#modal"] {
  background-color: #00b7c2;
  color: #e5e5e5;
  border: none;
  outline: none;
  padding: 20px 40px;
  font-size: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

button[data-modal-target="#modal"]:active {
  background-color: #00b7c2;
  -webkit-box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.2), inset -1px -1px 10px rgba(255, 255, 255, 0.4);
          box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.2), inset -1px -1px 10px rgba(255, 255, 255, 0.4);
  border: 1px solid #fff;
}

.modal-lightbox {
  top: 0;
  opacity: 0;
  display: none;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  z-index: 100;
  background-color: transparent;
  width: 100%;
  height: 100vh;
  border: 1px solid #000;
}

@media (min-width: 1200px) {
  .modal-lightbox {
    width: 1024px;
    border: none;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    z-index: 1000;
  }
}

.modal-lightbox.active {
  position: fixed;
  display: block;
  opacity: 1;
}

.modal-header-lightbox {
  padding: 10px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-header-lightbox button {
  position: relative;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.modal-header-lightbox button svg path {
  stroke: #FFFFFF;
}

@media (min-width: 1200px) {
  .modal-header-lightbox {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .modal-header-lightbox button {
    top: 38px;
    right: 70px;
    position: relative;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }
  .modal-header-lightbox button svg path {
    stroke: #FFFFFF;
  }
}

.modal-header-lightbox .title {
  font-size: 1.2em;
  font-weight: 700;
}

.modal-header-lightbox .close-button {
  background: transparent;
  border: none;
  outline: unset;
  font-size: 2em;
  cursor: pointer;
}

.modal-slider {
  position: relative;
  width: 320px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .modal-slider {
    width: 260px;
    margin: 0;
  }
}

.modal-content {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .modal-content {
    width: 100%;
    height: 400px;
    padding: 10px 0;
    overflow-y: scroll;
  }
}

.modal-block {
  width: 320px;
  margin: 0 auto 30px auto;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
}

@media (min-width: 768px) {
  .modal-block {
    margin: 0 30px;
    width: 80%;
  }
}

.modal-block:last-child {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .modal-block:last-child {
    margin: 0 30px;
  }
}

@media (min-width: 768px) {
  .modal-block-body__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.modal-block__header h5 {
  padding: 12px 0;
  font-family: "Gotham-Pro", "Arial", sans-serif;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .modal-block__header h5 {
    padding: 10px 0;
  }
}

.modal-block__body p {
  font-family: "Gotham-Pro", "Arial", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 200;
}

.modal-block__body p span {
  font-weight: 600;
}

.modal-block__action {
  padding: 30px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  .modal-block__action {
    padding: 25px 0;
  }
}

.modal-block__action a {
  padding: 16px 26px;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
  color: #3f3f3f;
  border: 1px solid #3f3f3f;
  border-radius: 30px;
}

@media (min-width: 768px) {
  .modal-block__action a {
    padding: 12px 17px;
  }
}

.modal-body-lightbox {
  padding: 10px;
  text-align: justify;
}

.bathroom-slide {
  height: 300px;
}

#overlay-lightbox {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}

#overlay-lightbox.active {
  z-index: 90;
  opacity: 1;
  pointer-events: all;
}

button[data-modal-target="#modal-lightbox"] {
  background-color: #00b7c2;
  color: #e5e5e5;
  border: none;
  outline: none;
  padding: 20px 40px;
  font-size: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

button[data-modal-target="#modal-lightbox"]:active {
  background-color: #00b7c2;
  -webkit-box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.2), inset -1px -1px 10px rgba(255, 255, 255, 0.4);
          box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.2), inset -1px -1px 10px rgba(255, 255, 255, 0.4);
  border: 1px solid #fff;
}

.modal-body-lightboox {
  width: 100%;
}

.modal-body-lightboox .swiper-button-prev {
  display: none;
}

.modal-body-lightboox .swiper-button-next {
  display: none;
}

@media (min-width: 768px) {
  .modal-body-lightboox {
    width: 680px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .modal-body-lightboox {
    width: 680px;
    margin: 0 auto;
  }
  .modal-body-lightboox .swiper-button-prev {
    display: block;
    color: black;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    font-size: 12px;
    outline: none;
  }
  .modal-body-lightboox .swiper-button-prev:after {
    content: '';
    width: 54px;
    height: 54px;
    position: absolute;
    display: block;
    background: url("../img/slider-arrow-upper.png") center no-repeat;
    background-size: contain;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .modal-body-lightboox .swiper-button-next {
    color: black;
    display: block;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    font-size: 12px;
    outline: none;
  }
  .modal-body-lightboox .swiper-button-next:after {
    content: '';
    width: 54px;
    height: 54px;
    position: absolute;
    display: block;
    background: url("../img/slider-arrow-upper.png") center no-repeat;
    background-size: contain;
  }
}

.mk-design-card-slider {
  padding: 20px 0;
}

.mk-design-card-slider .swiper-slide {
  height: 250px;
}

.mk-design-card-slider .swiper-slide img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .mk-design-card-slider .swiper-slide img {
    width: 260px;
  }
}

.mk-design-card-slider .swiper-pagination-bullet {
  width: 90px;
  height: 90px;
  opacity: 1;
}

@media (min-width: 768px) {
  .mk-design-card-slider .swiper-pagination-bullet {
    width: 78px;
    height: 78px;
  }
}

.mk-design-card-slider .swiper-pagination-bullet img {
  width: 90px;
  height: 90px;
}

@media (min-width: 768px) {
  .mk-design-card-slider .swiper-pagination-bullet img {
    width: 78px;
    height: 78px;
  }
}

.mk-design-card-slider-lightbox {
  position: relative;
}

.mk-design-card-slider-lightbox .swiper-slide {
  width: 100%;
  height: 360px;
}

.mk-design-card-slider-lightbox .swiper-slide img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .mk-design-card-slider-lightbox .swiper-slide {
    width: 680px;
    height: 680px;
  }
  .mk-design-card-slider-lightbox .swiper-slide img {
    width: 680px;
    height: 680px;
  }
}

@media (min-width: 1200px) {
  .mk-design-card-slider-lightbox .swiper-slide {
    width: 680px;
    height: 680px;
  }
  .mk-design-card-slider-lightbox .swiper-slide img {
    height: 250px;
  }
}

@media (min-width: 1200px) and (min-width: 1200px) {
  .mk-design-card-slider-lightbox .swiper-slide img {
    width: 680px;
    height: 680px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mk-design-card-slider-lightbox .swiper-pagination-bullet {
  width: 90px;
  height: 90px;
  background: none;
}

.mk-design-card-slider-lightbox .swiper-pagination-bullet img {
  width: 90px;
  height: 90px;
}

.mk-design-card-slider__nav {
  position: absolute;
  width: 55%;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-family: "Gotham-Pro", "Arial", sans-serif;
  color: #3f3f3f;
}

@media (min-width: 768px) {
  .mk-design-card-slider__nav {
    bottom: 10px;
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}

.mk-design-card-slider__nav .swiper-button-prev {
  color: #3f3f3f;
  outline: none;
}

.mk-design-card-slider__nav .swiper-button-prev:after {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  left: -80px;
  content: '';
  background: url("../img/cart-slider-arrow.svg") center no-repeat;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.mk-design-card-slider__nav .swiper-button-next {
  color: #3f3f3f;
  outline: none;
}

.mk-design-card-slider__nav .swiper-button-next:after {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  right: -80px;
  content: '';
  background: url("../img/cart-slider-arrow.svg") center no-repeat;
}

.thumblist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: justify;
          justify-content: flex-start;
}

.thumblist .swiper-pagination-bullet {
  background: none;
  margin: 4px;
}

.thumblist-item {
  width: 96px;
  height: 96px;
}

.thumblist-item img {
  width: 96px;
  height: 96px;
}

.thumblist-lightbox {
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thumblist-lightbox .swiper-pagination-bullet {
  margin: 0 10px;
}

@media (min-width: 1200px) {
  .thumblist-lightbox {
    padding: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .thumblist-lightbox .swiper-pagination-bullet {
    margin: 0 10px;
  }
}

/** CHOOSE DESIGN PAGE **/
.choose-disign-page .mk-star {
  display: none;
}

@media (min-width: 1200px) {
  .choose-disign-page .mk-header {
    width: 1140px;
  }
  .choose-disign-page .mk-header .mk-header__search-btn_active {
    right: 250px;
  }
}

.choose-disign-page .sound-star {
  display: none;
}

@media (min-width: 1200px) {
  .choose-disign-page .sound-star {
    width: 100px;
    height: 100px;
    right: 0;
    top: -20px;
    display: block;
    position: absolute;
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
  .choose-disign-page .sound-star:hover .sound-music {
    opacity: 0;
    left: 0;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
  .choose-disign-page .sound-star:hover > .sound-play, .choose-disign-page .sound-star:hover .sound-pause {
    opacity: 1;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: .3s ease-in-out .1s;
    -o-transition: .3s ease-in-out .1s;
    transition: .3s ease-in-out .1s;
  }
}

.choose-disign-page .sound-star .sound-music {
  position: absolute;
  top: 60px;
  left: 35px;
  opacity: 1;
  -webkit-transition: .3s ease-in-out .1s;
  -o-transition: .3s ease-in-out .1s;
  transition: .3s ease-in-out .1s;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.choose-disign-page .sound-star .sound-play {
  position: absolute;
  top: 60px;
  left: 40px;
}

.choose-disign-page .sound-star .sound-pause {
  position: absolute;
  top: 60px;
  left: 40px;
}

.choose-disign-page .sound-star .sound-play, .choose-disign-page .sound-star .sound-pause {
  opacity: 0;
  -webkit-transition: .3s ease-in-out .1s;
  -o-transition: .3s ease-in-out .1s;
  transition: .3s ease-in-out .1s;
}

.choose-disign-page .sound-star .sound-pause {
  display: none;
}

.choose-disign-page .sound-star .sound-circle {
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: -1;
  -webkit-transition: .3s ease-in-out .3s;
  -o-transition: .3s ease-in-out .3s;
  transition: .3s ease-in-out .3s;
}

.choose-disign-page .sound-star .sound-circle_active {
  -webkit-animation: rotation 8s infinite linear;
          animation: rotation 8s infinite linear;
}

.choose-disign-page .mk-design-bathroom__bottom-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 40px 0;
}

@media (min-width: 1200px) {
  .mk-choose-section {
    padding: 140px 0 0px;
  }
}

.mk-choose-section__header {
  padding: 30px 0;
}

.mk-choose-section__header h3 {
  font-size: 1.75rem;
  line-height: 2.3125rem;
  color: #3f3f3f;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
  text-align: center;
}

.mk-choose-section__body {
  padding: 0 20px;
}

.mk-choose-section__body a {
  color: #3f3f3f;
}

@media (min-width: 768px) {
  .mk-choose-section__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.mk-choose-section__block {
  position: relative;
  margin: 0 0 40px 0;
}

@media (min-width: 425px) {
  .mk-choose-section__block {
    max-width: 290px;
    margin: 0 auto 40px auto;
  }
}

@media (min-width: 768px) {
  .mk-choose-section__block {
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .mk-choose-section__block {
    width: 370px;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .mk-choose-section__block {
    width: 270px;
    margin: 0 auto 20px auto;
  }
}

.mk-choose-section__block img {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mk-choose-section__block-inner {
  padding: 15px 20px;
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.5);
}

.mk-choose-section__block-inner h4 {
  font-size: 1.125rem;
  line-height: 1.3125rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
}

/** ABOUT PAGE **/
.mk-about {
  overflow: hidden;
}

@media (min-width: 768px) {
  .mk-about__wrapper {
    padding: 40px 0 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (min-width: 1200px) {
  .mk-about__wrapper {
    padding: 200px 0 100px 0;
  }
}

.mk-about__content {
  max-width: 425px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mk-about__content {
    width: 45%;
    max-width: 100%;
    margin: 0;
  }
}

.mk-about__gallery {
  display: none;
}

@media (min-width: 768px) {
  .mk-about__gallery {
    display: grid;
    width: 45%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 100px);
    gap: 0px 0px;
    grid-template-areas: ". about-grid-1 . ." "about-grid-2 about-grid-2 about-grid-3 about-grid-3" "about-grid-2 about-grid-2 about-grid-3 about-grid-3" "about-grid-2 about-grid-2 about-grid-3 about-grid-3" "about-grid-2 about-grid-2 about-grid-4 .";
  }
  .mk-about__gallery .about-grid-1 {
    width: 115px;
    height: 90px;
    grid-area: about-grid-1;
    margin: 5px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-1 {
    width: 230px;
    height: 172px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-1 img {
    width: 115px;
    height: 90px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-1 img {
    width: 230px;
    height: 172px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-2 {
    grid-area: about-grid-2;
    height: 254px;
    margin: 5px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-2 {
    height: 428px;
    position: relative;
    top: 80px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-2 img {
    height: 254px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-2 img {
    height: 428px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-3 {
    position: relative;
    top: -60px;
    grid-area: about-grid-3;
    height: 190px;
    margin: 5px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-3 {
    height: 314px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-3 img {
    height: 190px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-3 img {
    height: 314px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-4 {
    position: relative;
    top: -60px;
    grid-area: about-grid-4;
    width: 91px;
    height: 75px;
    margin: 5px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-4 {
    width: 183px;
    height: 151px;
  }
}

@media (min-width: 768px) {
  .mk-about__gallery .about-grid-4 img {
    height: 75px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .mk-about__gallery .about-grid-4 img {
    width: 183px;
    height: 151px;
  }
}

.mk-about__gallery-img img {
  width: 100%;
}

.mk-about__header {
  padding: 30px 0 50px 0;
}

.mk-about__header h3 {
  font-size: 1.875rem;
  line-height: 2.3125rem;
  color: #3f3f3f;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
  text-align: center;
}

@media (min-width: 768px) {
  .mk-about__header h3 {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .mk-about__header h3 {
    font-size: 3.5rem;
    line-height: 4.375rem;
  }
}

.mk-about__body {
  padding: 0 40px;
}

@media (min-width: 768px) {
  .mk-about__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 0 0 40px;
  }
}

.mk-about__body p {
  font-family: "Gotham-Pro", "Arial", sans-serif;
  color: #3f3f3f;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

@media (min-width: 768px) {
  .mk-about__body p {
    text-align: right;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    max-width: 280px;
  }
}

@media (min-width: 1200px) {
  .mk-about__body p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    max-width: 320px;
  }
}

.mk-about-line {
  padding: 40px 0 100px 0;
}

.mk-about-line img {
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/** 404 PAGE **/
.mk-404 {
  overflow: hidden;
}

.mk-404 .mk-design-bathroom__action {
  padding: 60px 0 120px 0;
  margin: 0 auto;
  max-width: 290px;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (min-width: 1200px) {
  .mk-404 .mk-design-bathroom__action {
    width: 100%;
    margin: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .mk-404__wrapper {
    padding: 40px 0 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

@media (min-width: 1200px) {
  .mk-404__wrapper {
    padding: 200px 0 100px 0;
  }
}

.mk-404__content {
  max-width: 425px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mk-404__content {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .mk-404__content {
    width: 45%;
  }
}

.mk-404__header {
  padding: 30px 0 50px 0;
}

.mk-404__header svg {
  margin: 0 auto;
  display: block;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.mk-404__body {
  padding: 0 40px;
}

@media (min-width: 768px) {
  .mk-404__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 0 0 40px;
  }
}

.mk-404__body p {
  font-family: "Gotham-Pro", "Arial", sans-serif;
  color: #3f3f3f;
  max-width: 220px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.125rem;
}

@media (min-width: 768px) {
  .mk-404__body p {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    max-width: 280px;
  }
}

@media (min-width: 1200px) {
  .mk-404__body p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    max-width: 320px;
    text-align: center;
  }
}

.mk-about-line {
  padding: 40px 0 100px 0;
}

.mk-about-line img {
  width: 100%;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

/** CONTACTS PAGE **/
@media (min-width: 768px) {
  .mk-contacts .mk-design-bathroom__action {
    padding: 40px 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 1200px) {
  .mk-contacts .mk-design-bathroom__action {
    padding: 80px 0;
    position: relative;
  }
  .mk-contacts .mk-design-bathroom__action:after {
    content: '';
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    top: -120px;
    left: 280px;
    background: url(../img/keramika-logo.png) center no-repeat;
    background-size: contain;
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .mk-contacts__content {
    padding: 150px 0 0 0;
    position: relative;
    z-index: -1;
  }
  .mk-contacts__content:after {
    content: '';
    display: block;
    position: absolute;
    width: 70px;
    height: 1px;
    left: 50%;
    bottom: 20px;
    background: #3f3f3f;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.mk-contacts__header {
  padding: 30px 0 0 0;
}

.mk-contacts__header h3 {
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.3125rem;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
}

@media (min-width: 1200px) {
  .mk-contacts__header h3 {
    font-size: 3.5rem;
    line-height: 4.375rem;
  }
}

@media (min-width: 768px) {
  .mk-contacts__block-wrapper {
    padding: 50px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
}

.mk-contacts__block h5 {
  margin: 30px 0;
  font-family: "PlayfairDisplay-Regular", "Times New Roman", serif;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.625rem;
  text-align: center;
}

.mk-contacts__block-middle {
  margin: 50px 0;
}

@media (min-width: 768px) {
  .mk-contacts__block-middle {
    margin: 0;
  }
}

.mk-contacts__text p {
  margin: 12px 0;
  font-size: 0.75rem;
  line-height: 0.6875rem;
  font-family: "Gotham-Pro", "Arial", sans-serif;
  text-align: center;
}

.mk-contacts__map {
  padding: 30px 0 0 0;
}

@media (min-width: 992px){
	.calc_item.pack, .calc_item.square { max-width: 100% !important; flex: 0 0 79%;}
}


@media (min-width: 1220px){
	.calc_item.pack, .calc_item.square { max-width: 50% !important; flex: 0 0 50%;}
}


@media (min-width: 992px){

	.category-list .category-item .category-item-title {
		height: 70px;
        font-size: 14px;
	}
}

@media (min-width: 1220px){

	.category-list .category-item .category-item-title {
		height: 70px;
        font-size: 16px;
	}
}
.btn_search {
    font-size: 0;
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
    width: 45px !important;
    height: 45px;
    cursor: pointer;
    background-color: transparent;
    background-image: url(/bitrix/templates/floor/img/icons/search-icon.svg);
    background-size: 17px;
    background-position: 97%;
    background-repeat: no-repeat;
    opacity: 0.5;
}