.menu li a {
   color: rgb(255 255 255 / 80%);
   font-weight: 400;
}

.sites-list li a {
   line-height: 100%;
   font-size: 20px;
   color: rgba(217, 217, 217, 0.9);
   font-weight: 500;
   position: relative;
}

.sites-list li a:hover {
    color: #fff;
}

.sites-list li a::before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   border-radius: 32px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   top: 0;
   left: 0;
   backdrop-filter: blur(3px);
   z-index: -1;
   transition: all 0.5s ease;
}

.sites-list li a:hover:before {
   background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.slick-dots {
   bottom: -56px;
}

.slick-dots li {
   width: 22px;
   height: 22px;
   border-radius: 50px;
   background-color: rgba(217, 217, 217, 0.2);
   padding: 0;
   margin: 0 8px;
}

.slick-dots li.slick-active {
   background-color: rgba(217, 217, 217, 0.6);
}

.slick-dots li button:before {
   display: none;
}

.slick-arrow {
   width: 64px;
   height: 64px;
   border-radius: 100px;
   z-index: 9999;
   line-height: 64px;
}

.slick-next {
   right: -100px;
   background: rgba(255, 255, 255, 0.1) url('../img/arrow-right.svg') no-repeat center center !important;
}

.slick-next:before {
   content: '';
   position: absolute;
   background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
   width: 106px;
   height: 106px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: -1;
   opacity: 0.3 !important;
}

.slick-prev {
   display: none;
}

.menu-toggle {
   display: none;
}

.menu-sidebar {
   max-width: 500px;
   width: 100%;
   position: fixed;
   background-color: rgb(255, 255, 255);
   height: 100vh;
   overflow: auto;
   top: 0;
   right: -100%;
   padding: 5px 34px 23px;
   z-index: 9999;
   text-align: center;
   transition: all 0.5s linear;
   display: flex;
   flex-direction: column;
}

.menu-sidebar.active {
   right: 0;
}

.menu-sidebar__logo {
   margin-bottom: 21px;
}

.menu-sidebar__list li a {
   display: block;
   padding: 24px 0;
   color: rgba(56, 86, 163, 0.8);
   font-size: 20px;
}

.menu-sidebar__list li:not(:last-child) {
   margin-bottom: 18px;
}

.menu-sidebar__order {
   margin-top: auto;
}

.menu-sidebar__order p {
   color: rgba(56, 86, 163, 0.8);
   font-size: 16px;
   margin-bottom: 12px;
}

.menu-sidebar__order ul li a {
   display: block;
   width: 220px;
   background: rgba(56, 86, 163, 0.8);
   border-radius: 32px;
   padding: 14px 26px;
   font-size: 20px;
   color: rgba(255, 255, 255, 0.9);
   margin: auto;
}

.menu-sidebar__order ul li:not(:last-child) {
   margin-bottom: 12px;
}

.overlay {
   position: fixed;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   opacity: 0;
   z-index: -1;
}

.overlay.active {
   opacity: 1;
   z-index: 2;
}

/* --------- Header --------- */
.header {
   padding: 37px 0;
   position: relative;
}

.header:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 134px;
   background: url('../img/lights.png') no-repeat center center;
   top: 0;
   left: 0;
   right: 0;
}

.header__container {
   max-width: 1800px;
   padding: 0 62px;
}

.navigation {
   position: relative;
   align-items: center;
}

.navigation__logo {
   margin-right: 60px;
   text-align: center;
}

.navigation__logo span {
   color: rgba(255, 255, 255, 0.6);
   display: block;
   margin-top: 5px;
   font-size: 13px;
}

.navigation__menu li:not(:last-child) {
   margin-right: 25px;
}

.navigation__menu a {
   font-size: 20px;
}

.navigation__order {
   margin-left: auto;
   display: flex;
   align-items: center;
   font-weight: 400;
}

.navigation__order p {
   color: rgba(255, 255, 255, 0.5);
   margin-right: 23px;
   line-height: 200%;
}

.navigation__sites li:not(:last-child) {
   margin-right: 12px;
}

.navigation__sites li a {
   font-size: 18px;
   text-align: center;
   letter-spacing: -0.01em;
   color: rgba(255, 255, 255, 0.9);
   background-color: rgba(255, 255, 255, 0.3);
   border: 1px solid transparent;
   padding: 14px 26px;
   line-height: 100%;
   border-radius: 32px;
   font-weight: 500;
   display: block;
}

.navigation__sites li a:hover {
   background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* --------- Hero --------- */
.hero {
   background: url(../img/hero-bg.png) no-repeat center -40px;
   padding-bottom: 241px;
   position: relative;
   z-index: 2;
}

.hero-slider {
   max-width: 1280px;
   margin: auto;
}

.hero-slider__wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-radius: 16px;
   background: url('../img/slider-bg.png') no-repeat center top;
   background-size: 100% 100%;
   margin-top: 146px;
   min-height: 282px;
   position: relative;
}

.hero-slider__left {
   padding: 30px 40px 30px;
   position: relative;
   z-index: 2;
}

.hero-slider__left h1 {
   font-family: 'Magnolia Script';
   font-weight: 400;
   font-size: 48px;
   letter-spacing: 0.01em;
   text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
   color: rgba(255, 255, 255, 0.9);
   line-height: 141%;
   margin-bottom: 17px;
}

.hero-slider__left>p {
   font-size: 17px;
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 41px;
   line-height: 150%;
}

.hero-slider__bottom {
   display: flex;
   align-items: center;
}

.hero-slider__category {
   opacity: 0.7;
   width: 160px;
   margin-right: 15px;
}

.hero-slider__category img {
   width: 100%;
}

.hero-slider__desc {
   font-size: 22px;
   color: rgba(255, 255, 255, 0.4);
   line-height: 136%;
   font-weight: 600;
}

.hero-slider__right {
   max-width: 400px;
   width: 100%;
}

.hero-slider__right img {
   position: absolute;
   right: 0;
   bottom: 0;
   display: block;
}

.slick-slide {
   outline: none;
}

/* --------- Products --------- */
.products {
   z-index: 1;
}

.products__head {
   display: flex;
   align-items: center;
   margin-bottom: 72px;
}

.products__title {
   font-family: 'Magnolia Script';
   font-weight: 400;
   color: rgba(255, 255, 255, 0.9);
   margin-right: 18px;
}

.products__text {
   font-size: 20px;
   line-height: 220%;
   color: rgba(255, 255, 255, 0.8);
   font-weight: 300;
}

.products-slider {
   margin-bottom: 72px;
}

.products-slider__wrapper {
   width: 240px;
   text-align: center;
   margin: 0 5px;
}

.products-slider__image {
   position: relative;
   width: 100%;
   height: 140px;
   z-index: 1;
   margin-bottom: 27px;
   display: block;
}

.products-slider__image:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background: url('../img/substrate.png') no-repeat center center;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: -1;
}

.products-slider__image img.img-hover {
   position: absolute;
   left: 0;
   top: 0;
   opacity: 0;
}

.products-slider__image:hover .img-hover {
   opacity: 1;
}

.products-slider__wrapper .img-hover, .products-slider__image:hover .default {
   opacity: 0;
}

.products-slider__image img {
   width: 100%;
   height: 100%;
   cursor: pointer;
   object-fit: contain;
   -webkit-transition: opacity 0.5s ease-in-out;
   -moz-transition: opacity 0.5s ease-in-out;
   -o-transition: opacity 0.5s ease-in-out;
   transition: opacity 0.5s ease-in-out;
}

.products-slider__title {
   font-weight: 500;
   line-height: 133%;
   margin-bottom: 4px;
}

.products-slider__title a {
    color: #fff;
}

.products-slider__size p {
   color: rgba(255, 255, 255, 0.5);
   font-weight: 500;
}

.products-catalog {
   align-items: center;
}

.products-catalog__text {
   font-size: 20px;
   color: rgba(255, 255, 255, 0.8);
   position: relative;
   padding-right: 120px;
   font-weight: 300;
   margin-right: 20px;
}

.products-catalog__text:after {
   content: '';
   position: absolute;
   width: 63px;
   height: 12px;
   top: 50%;
   transform: translateY(-50%);
   right: 0;
   background: url('../img/open-arrow.svg') no-repeat center top;
}

.products-catalog__links {
   margin-left: auto;
   max-width: 880px;
   width: 100%;
   justify-content: flex-end;
}

.products-catalog__links li {
   max-width: 280px;
   width: 33%;
}

.products-catalog__links li:not(:last-child) {
   margin-right: 21px;
}

.products-catalog__links li a {
   padding: 22px 0;
   display: block;
   text-align: center;
}

.products:not(:last-child) {
    padding-bottom: 106px;
    position: relative;
}

#rixesbaby::before {
   content: '';
   position: absolute;
   background: radial-gradient(51.42% 798.68% at 73.28% -12.18%, rgba(95, 20, 255, 0.2) 0%, rgba(25, 20, 255, 0) 100%);
   filter: blur(60px);
   max-width: 1766px;
   width: 100%;
   height: 626px;
   left: -119px;
   top: 0;
}

#rixesbaby .products__head {
   position: relative;
}

#rixesbaby .products__head::before {
   content: '';
   position: absolute;
   background: url(../img/section-bg.png) no-repeat top left;
   width: 390px;
   height: 375px;
   left: -50px;
   z-index: -1;
   bottom: -178px;
}

/* --------- Benefits --------- */
.benefits {
   padding: 60px 0 63px;
   background: url('../img/benefits-bg.png') no-repeat center top/cover;
   margin-top: 40px;
}

.benefits-list {
   justify-content: space-between;
   flex-wrap: wrap;
   align-items: center;
   margin-bottom: -66px;
}

.benefits-list__item {
   width: 50%;
   display: flex;
   margin-bottom: 66px;
   padding-left: 50px;
   align-items: center;
}

.benefits-list__icon {
   position: relative;
   width: 95px;
   text-align: center;
   z-index: 1;
}

.benefits-list__icon:before {
   content: '';
   position: absolute;
   width: 260px;
   height: 240px;
   background: url(../img/benefits-cirlce-bg.png) no-repeat center center;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: -1;
   opacity: 0.5;
}

.benefits-list__info {
   margin-left: 30px;
}

.benefits-list__info h4 {
   font-weight: 500;
   line-height: 135%;
   margin-bottom: 15px;
}

.benefits-list__info p {
   max-width: 348px;
   font-size: 18px;
   line-height: 135%;
   font-weight: 300;
}

@media screen and (min-width: 992px) {
   .benefits-list__item:nth-child(2), .benefits-list__item:nth-child(4) {
      justify-content: flex-end;
   }
}

/* --------- Material --------- */
.material {
   padding: 97px 0 67px;
}

.material__head {
   align-items: center;
   margin-bottom: 42px;
}

.material__title {
   line-height: 135%;
   font-weight: 200;
   font-size: 32px;
}

.material__head p {
   font-family: 'Magnolia Script';
   font-weight: 400;
   font-size: 40px;
   margin-left: 16px;
}

.material__wrapper {
   max-width: 1262px;
   background-color: rgba(217, 217, 217, 0.07);
   mix-blend-mode: normal;
   border-radius: 0 64px 64px 0;
   position: relative;
   padding: 51px 0 27px;
   justify-content: space-between;
}

.material__wrapper::before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   left: -100%;
   background-color: inherit;
   top: 0;
   bottom: 0;
}

.material__wrapper ul {
   max-width: 770px;
   width: 100%;
   margin-right: 15px;
}

.material__wrapper ul li {
   font-weight: 300;
   font-size: 22px;
   padding-left: 54px;
   position: relative;
}

.material__wrapper ul li:before {
   content: '';
   position: absolute;
   width: 38.03px;
   height: 44.02px;
   background: url('../img/list-item.svg') no-repeat;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
}

.material__wrapper ul li:not(:last-child) {
   margin-bottom: 45px;
}

.material__video {
   max-width: 275px;
   width: 100%;
   position: relative;
   min-height: 490px;
   padding-bottom: 39%;
   margin-top: -85px;
   margin-right: 27px;
}

.material__image:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 100%;
   background: linear-gradient(0deg, rgba(50, 93, 156, 0.6), rgba(50, 93, 156, 0.6));
   border-radius: 40px;
   top: 0;
   left: 0;
   z-index: 1;
}

.material__image img, .video {
   position: absolute;
   height: 100%;
   width: 100%;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   object-fit: cover;
   border-radius: 40px;
}

.video-play {
   position: absolute;
   width: 190px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: 2;
   border: none;
   background-color: transparent;
   font-size: 18px;
   font-weight: 600;
   color: #FFFFFF;
}

.video-play img {
   margin-bottom: 4px;
   width: 124px;
   height: 124px;
}

/* --------- Footer --------- */
.footer {
   background: url('../img/footer-bg.png') no-repeat center bottom -50px/cover;
}

.footer-wrapper {
   position: relative;
   padding: 78px 0 165px;
}

.footer-wrapper:before {
   content: '';
   position: absolute;
   width: 100%;
   height: 1px;
   background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
   top: 0;
   left: 0;
   right: 0;
}

.footer-top, .footer-bottom {
   justify-content: space-between;
}

.footer-top {
   margin-bottom: 31px;
}

.footer-top__logotype {
   align-items: center;
   margin-bottom: 40px;
}

.footer-top__sleep {
   width: 200px;
   margin-right: 40px;
}

.footer-top__baby {
   width: 180px;
}

.footer-top__text {
   font-size: 18px;
   margin-bottom: 32px;
}

.footer-top__menu {
   display: flex;
   align-items: center;
}

.footer-top__menu li:not(:last-child) {
   margin-right: 40px;
}

.footer-top__menu li a {
   text-decoration-line: underline;
   color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
   line-height: 210%;
   color: rgba(255, 255, 255, 0.5);
}

.footer-top__right {
   max-width: 682px;
   width: 100%;
}

.footer-top__order {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.footer-top__sites li:not(:last-child) {
   margin-right: 12px;
}

.footer-top__order li a {
   padding: 14px 34px;
   display: block;
}

.footer-top__order p {
   letter-spacing: -0.01em;
   color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__designer {
   align-items: center;
}

.footer-bottom__designer p {
   margin-right: 32px;
}

@media screen and (min-width: 576px) {
   .footer-bottom__copyright br {
      display: none;
   }
}

/* --------- About --------- */
.about {
   padding: 41px 0 64px;
}

.about__wrapper {
   max-width: 725px;
   margin: auto;
}

.information-wrapper h1 {
   margin-bottom: 32px;
   font-weight: 600;
}

.information-wrapper p, .information-wrapper li {
   font-weight: 300;
   font-size: 18px;
   line-height: 150%;
}

.information-wrapper p {
   margin-bottom: 23px;
}

.information-wrapper h3 {
   margin-bottom: 27px;
}

.information-wrapper p a {
   margin-left: 5px;
   text-decoration: underline;
   color: #FFFFFF;
}

.information-wrapper p a:hover {
   text-decoration: none;
}

.information-wrapper li {
   position: relative;
   padding-left: 25px;
}

.information-wrapper li::before {
   content: '';
   position: absolute;
   width: 4px;
   height: 4px;
   background-color: #FFFFFF;
   border-radius: 50px;
   left: 10px;
   top: 12px;
}

.information-wrapper img {
   display: none;
}

/* --------- Material Page --------- */
.material-info {
   padding: 50px 0 64px;
}

.material-info__wrapper {
   max-width: 1110px;
}

.material-info__block, .material-list__item {
   display: flex;
}

.material-info__block:not(:last-child) {
   margin-bottom: 25px;
}

.material-list {
   margin-left: 98px;
}

.material-list__image {
   width: 177px;
}

.material-info__image, .material-list__image {
   margin-right: 70px;
}

.material-info__image {
   width: 277px;
   margin-top: 130px;
}

.material-list__image img, .material-info__image img {
   width: 100%;
}

.material-info__image img {
   border-radius: 24px;
}

.material-list__right, .material-info__body {
   max-width: 752px;
}

.material-list__item {
   align-items: center;
}

.material-list__item p {
   margin-bottom: 0;
}

.material-list__item:not(:last-child) {
   margin-bottom: 30px;
}

/* --------- Product Page --------- */
.breadcrumb {
   margin-bottom: 27px;
   padding: 0;
   margin-top: 0;
}

.breadcrumb a, .breadcrumb li {
   font-size: 20px;
   color: rgb(255 255 255 / 80%);
   font-weight: 400;
}

.breadcrumb li {
   margin-right: 16px;
   position: relative;
}

.breadcrumb li:not(:last-child):after {
   content: '';
   display: inline-block;
   background: url('../img/breadcrumb-arrow.svg') no-repeat;
   width: 5px;
   height: 12px;
   margin-left: 16px;
}

.category-item a {
   font-family: 'Magnolia Script';
   font-size: 26px;
   line-height: 50%;
}

.product-wrapper {
   max-width: 1260px;
   margin: auto;
   align-items: center;
}

.product-gallery {
   max-width: 525px;
   width: 100%;
   margin-right: 62px;
   background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 37.78%, rgba(255, 255, 255, 0) 97.32%);
   border-radius: 36px;
   position: relative;
   padding-top: 56px;
   overflow: hidden;
}

.product-gallery::before {
   content: '';
   position: absolute;
   background: url(../img/product-mask.png) no-repeat top left;
   width: 550.73px;
   height: 530.66px;
   right: -95px;
   z-index: -1;
   top: -45px;
}

.product-gallery__image {
   max-width: 400px;
   height: 310px;
   margin: 0 auto 40px;
   position: relative;
}

.product-gallery__image::before {
   content: '';
   position: absolute;
   width: 516.28px;
   height: 206.99px;
   background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
   opacity: 0.4;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.product-gallery__image::after {
   content: '';
   position: absolute;
   width: 606.69px;
   height: 359.25px;
   background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
   opacity: 0.3;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.product-gallery__image img {
   width: 100%;
   position: relative;
   z-index: 1;
}


.product-fancybox {
   padding: 22px 19px;
   justify-content: center;
   position: relative;
   z-index: 1;
}

.product-fancybox__link {
   width: 142.91px;
   height: 130px;
   display: none;
}

.product-fancybox__link:nth-child(-n+3) {
    display: block;
}

.product-fancybox__link:not(:last-child) {
   margin-right: 30px;
}

.product-fancybox__link:nth-child(3n) {
    margin-right: 0;
}

.product-fancybox__link img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 24px;
}

.product-info__head {
   display: flex;
   align-items: center;
   margin-bottom: 20px;
}

.product-info__head h1 {
   margin-right: 24px;
   line-height: 136%;
}

.product-info__size {
   font-size: 18px;
   font-weight: 400;
   color: rgba(255, 255, 255, 0.5);
   line-height: 150%;
}

.product-info {
   max-width: 370px;
   margin-right: 80px;
}

.product-info__desc p, .product-info__desc ul li {
   font-size: 18px;
   font-weight: 300;
   line-height: 150%;
   color: rgba(255, 255, 255, 0.8);
}

.product-info__desc hr {
    margin: 28px 0 32px;
    opacity: 0.5;
}

.product-info__desc p strong {
   color: rgba(255, 255, 255, 0.6);
   opacity: 0.8;
   font-weight: 600;
}

.product-info__desc ul li:not(:last-child) {
   margin-bottom: 28px;
}

.product-info__desc {
   margin-bottom: 32px;
}

.product-info__rule {
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 64px;
   padding: 15px 12px;
   font-size: 16px;
   line-height: 100%;
   color: rgba(255, 255, 255, 0.9);
   max-width: 300px;
}

.product-info__rule:hover {
   color: #FFFFFF;
}

.product-order {
   width: 210px;
   position: relative;
}

.product-order::before {
   content: '';
   position: absolute;
   width: 705px;
   height: 705px;
   background: radial-gradient(45.82% 45.82% at 50% 54.18%, #3CF3FF 0%, rgba(43, 242, 255, 0) 100%);
   opacity: 0.2;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: -1;
}

.product-order p {
   margin-bottom: 31px;
   font-size: 20px;
   color: rgba(255, 255, 255, 0.7);
}

.product-order__links a, .product-order__links a {
   width: 100%;
   display: block;
}

.product-order__links a {
   padding: 22px 0;
}

.product-order__links li:not(:last-child) {
   margin-bottom: 21px;
}

/* --------- Recommendations --------- */
.recommendations {
   padding: 57px 0 161px;
}

.recommendations__title {
   color: rgba(255, 255, 255, 0.8);
   font-weight: 600;
   margin-bottom: 40px;
}

.recommendations .products-slider {
   margin-bottom: 0;
}


/* --------- Popup --------- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 555;
    height: 100%;
    background: rgba(0, 0, 0, 0.558);
    overflow: auto;
    display: none;
}

.popup-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 36px 38px;
    border-radius: 30px;
    max-width: 847px;
    width: 100%;
    z-index: 1;
    background-color: #ffffff;
    color: #325D9C;
}

.popup-box .close {
    position: absolute;
    background-color: transparent;
    border: none;
    padding: 0;
    top: 45px;
    right: 37px;
    cursor: pointer;
}

.popup-box__wrapper {
    max-width: 700px;
}

.popup-box__wrapper h1 {
    margin-bottom: 32px;
}

.popup-box__wrapper p, .popup-box__wrapper li {
    font-size: 18px;
    line-height: 150%;
    font-weight: 300;
}

.popup-box__wrapper ul {
    margin-left: 20px;
}

.popup-box__wrapper li {
    display: list-item
}