*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent: #a50c5f;
  --accent-dark: #652037;
  --accent-bright: #ff229b;
  --bg-lightest: #fff9f6;
  --bg-light: #fff0e9;
  --bg-medium: #ffe5e5;
  --bg-dark: #ff97b0;
  --border: #ffcdeb;
  --gray: #585858;
  --black: #111111;
  --title: "Merriweather", serif;
  --text: "Montserrat", sans-serif;
}

html,
body {
    min-height: 100vh;
}
body {
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  position: relative; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header,
section,
footer {
  max-width: 2540px;
  width: 100%;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--bg-light);
}
h1 {
  font-family: var(--title);
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 16px;
}
p {
  margin-bottom: 8px;
  line-height: 1.5;
}
a {
  color: var(--accent);
  text-decoration: none;
  transform: color 800ms easy;
  -webkit-transform: color 800ms easy;
  -moz-transform: color 800ms easy;
  -ms-transform: color 800ms easy;
  -o-transform: color 800ms easy;
}
a:hover {
  color: var(--accent-bright);
  transform: color 800ms easy;
  -webkit-transform: color 800ms easy;
  -moz-transform: color 800ms easy;
  -ms-transform: color 800ms easy;
  -o-transform: color 800ms easy;
}
.list {  
  margin-left: 8px;
}
.list li {
  list-style-type: none;   
  margin-top: 4px;    
  margin-bottom: 4px;  
  margin-left: 10px;
}
.list li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: var(--bg-dark);
  margin-top: 0;
  margin-right: 8px;
  margin-bottom: 3px;
}
ol li {  
  margin-bottom: 6px;  
  margin-left: 30px;
  list-style-color: var(--bg-dark);
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
.bg-glass {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(24px);
  border-radius: 20px;
}
.bg-ico {
  display: block;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px dotted var(--bg-dark);
  backdrop-filter: blur(10px);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(40px);
}
.header__container {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  margin-right: 20px;
}
.logo__img {
  display: block;
  width: 44px;
  height: 44px;
  margin-right: 8px;
}
.logo__link {
  display: block;
  font-family: var(--text);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--accent-dark);
  margin-top: 1px;
}
.logo__text {
  display: block;
  font-family: var(--title);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
  position: relative;
  flex-shrink: 0;
}
.logo__text::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--bg-dark);
  position: absolute;
  bottom: 8px;
  z-index: -1;
  opacity: 0.6;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-nav__link {
  display: block;
  /*font-family: var(--title);*/
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  margin-left: 30px;
}

.header__btn-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  background-color: var(--accent);
  margin-bottom: 4px;
}
.main {
  background-image: url(../img/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  padding-top: 130px;
  padding-bottom: 140px;
}
.main__container {
  display: flex;
  justify-content: space-between;
}
.main-menu {
  padding: 24px 40px;
  margin-right: 3%;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.04);
}
.menu__link {
  display: flex;
  align-items: center;
  font-family: var(--title);
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding: 20px 0;
  white-space: nowrap;
  transition: transform 800ms ease;
  -webkit-transition: transform 800ms ease;
  -moz-transition: transform 800ms ease;
  -ms-transition: transform 800ms ease;
  -o-transition: transform 800ms ease;
}
.menu__link:last-child {
  border-bottom: 0;
}
.menu__ico {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  padding: 6px;
  object-fit: contain;
  margin-right: 12px;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}

.menu__link:hover .menu__ico {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  border-color: var(--accent-bright);
}
.main-menu__content {
  padding: 24px 40px;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.04);
}
.main::after,
.gifts::after {
  content: "";
  display: block;
  width: 100%;
  height: 106px;
  background-image: url(../img/border-1.svg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1px;
  z-index: 0;
  white-space: nowrap;
}
.costumes {
  padding-top: 20px;
  padding-bottom: 140px;
  position: relative;
}
.section__heading {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
}
.section-title {
  display: flex;
  align-items: center;
  width: calc(25% - 15px);
  flex-shrink: 0;
  font-family: var(--title);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--accent);
  margin-right: 30px;
}
.section-title__ico {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 6px;
  object-fit: contain;
  margin-right: 12px;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}

.section-title:hover .section-title__ico {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  border-color: var(--accent-bright);
}
.cards__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.cards__box-3 {
  width: calc(33.3% - 30px);
  padding: 22px;
  margin: 15px;
}
.cards__box-4 {
  width: calc(25% - 30px);
  padding: 18px;
  margin: 15px;
  display: block;
}
.cards__box-2 {
  width: calc(50% - 30px);
  padding: 22px;
  margin: 15px;
}
.cards__title {
  display: block;
  max-width: 290px;
}
.cards__title span {
  position: relative;
}
.cards__title span::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: var(--bg-dark);
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
  opacity: 0.4;
}
.cards__title-ico {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 10px;
  object-fit: contain;
  margin-right: 12px;
}
h2 {
  font-family: var(--title);
  font-style: normal;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.cards__list {
  margin-bottom: 12px;
}
.card {
  display: flex;
  padding: 16px 0 4px;
  border-bottom: 2px dashed var(--border);
  min-width: 240px;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}
.card:first-child {
  border-top: 2px dashed var(--border);
}
.card:hover {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
  -moz-transform: scale(1.02, 1.02);
  -ms-transform: scale(1.02, 1.02);
  -o-transform: scale(1.02, 1.02);
  border-bottom: 2px solid var(--bg-medium);
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 0.03);
}
.card:hover .card__subtitle  {
  color: var(--accent-bright);
  transform: color 800ms easy;
  -webkit-transform: color 800ms easy;
  -moz-transform: color 800ms easy;
  -ms-transform: color 800ms easy;
  -o-transform: color 800ms easy;
}
.card:first-child:hover{
  border-top: 2px solid var(--bg-medium);
}
.card-info {
  overflow: hidden;
  width: 100%;
  height: 85px;
}
.card-img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  object-fit: contain;
  object-position: center;
  background-color: #fff;
  margin: 3px 12px 12px 0;
}
h3 {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  width: 100%;
  margin-bottom: 4px;
  justify-content: space-between;
  align-items: center;
}
.card__subtitle::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow-right-min.svg);
  margin-left: 14px;
  margin-top: -2px;
  flex-shrink: 0;
}
.card__text {
  color: var(--black);
  font-size: 0.9rem;
  padding-right: 24px;
  display: block;
}
.costumes-cards__link {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
}
.costumes-cards__link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow-right.svg);
  margin-left: 10px;
  margin-bottom: -1px;
}
.costumes::after {
  content: "";
  display: block;
  width: 100%;
  height: 106px;
  background-image: url(../img/border-2.svg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--bg-medium);
  position: absolute;
  bottom: -1px;
  z-index: 1;
}
.gifts {
  background-color: var(--bg-medium);
  position: relative;
  padding-top: 40px;
  padding-bottom: 170px;
}
.gifts-cards__wrapper {
  position: relative;
}
.gifts-cards__wrapper::before {
  content: "";
  display: block;
  width: 600px;
  height: 340px;
  background-image: url(../img/gift-boxes.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--bg-medium);
  position: absolute;
  right: 20px;
  bottom: -40px;
}
.cards__title-flex {
  display: flex;
  align-items: center;
  max-width: 100%;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}

.cards__title-flex:hover .cards__title-ico {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  border-color: var(--accent-bright);
}
.ideas {
  padding-top: 20px;
  padding-bottom: 30px;
  position: relative;
}
.ideas::before {
  content: "";
  display: block;
  width: 775px;
  height: 580px;
  background-image: url(../img/girl.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: -60px;
  bottom: 0;
}
.ideas-cards__wrapper {
  justify-content: flex-end;
  position: relative;
}
.ideas-cards__box {
  border: 2px dashed var(--bg-dark);
}
.balloon {
  position: absolute;
  z-index: -1;
}
.balloon-1 {
  width: 135px;
  height: auto;
  top: 10%;
  right: 31%;
}
.balloon-2 {
  width: 120px;
  height: auto;
  top: 30%;
  right: -1%;
}
.footer {
  background-color: var(--bg-dark);
  padding-top: 25px;
  padding-bottom: 20px;
  flex: 0 0 auto;
}
.footer-container {
  display: flex;
  justify-content: space-between;
}
.footer-col {
  color: var(--gray);
  margin-right: 20px;
  max-width: 340px;
}
.footer-col:last-child {
  margin-right: 0;
}
.footer-col p {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
}
.footer__link {
  display: block;
  margin-left: auto;
  color: var(--accent-dark);
}

/* --------------- Mobile navigation button ----------- */
.mobile-nav-wrapper {
  display: none;
  position: relative;
  width: 100%;
  height: 57px;
  top: 0;
  left: 0; 
  right: 0; 
}
.menu-icon {
  position: fixed;
  left: auto;
  right: 12px;
  top: 13px;
  display: flex;
  z-index: 19;
  width: 30px;
  height: 30px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.menu-icon-line {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}
.menu-icon-line::before,
.menu-icon-line::after {
  position: absolute;
  left: 0;
  right: auto;
  top: -7px;
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  -webkit-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  -moz-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  -ms-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  -o-transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
}
.menu-icon-line::before {
  top: -7px;
}
.menu-icon-line::after {
  position: absolute;
  top: 7px;
}
.menu-icon.menu-icon-active .menu-icon-line {
  background-color: transparent;
  position: fixed;
}
.menu-icon.menu-icon-active .menu-icon-line::before {
  transform: rotate(45deg);
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}
.menu-icon.menu-icon-active .menu-icon-line::after {
  transform: rotate(-45deg);
  top: 0;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  -webkit-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  -moz-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  -ms-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  -o-transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
}
.mobile-nav {
  z-index: 15;
  display: block;
  position: fixed;
  right: -300px;
  top: 0;
  height: 100%;
  width: 300px;
  padding: 106px 25px 50px;
  border-radius: 0;
  transition: transform 0.4s ease-in;
  -webkit-transition: transform 0.4s ease-in;
  -moz-transition: transform 0.4s ease-in;
  -ms-transition: transform 0.4s ease-in;
  -o-transition: transform 0.4s ease-in;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-size: 0.9rem;
}
.mobile-nav--active {
  transform: translateX(-100%);
  box-shadow: 0px 0px 40px rgb(0 0 0 / 0.2);
}

/*------ PAGES ------*/
.page {
  flex: 1 0 auto;
  padding-top: 95px;
  padding-bottom: 30px;
  background-color: #fff;
  margin-bottom: auto;
  background-color: var(--bg-light);
}
.breadcrumbs {
  padding-left: 4px;
  font-size: 0.8rem;
  margin-bottom: 25px;
}

.breadcrumbs img {
  width: 14px;
  height: 14px;
  margin: 2px 4px -2px;
}
.page-content {
  padding: 16px 25px 25px; 
}
.page-header {
  border-bottom: 2px dashed var(--border);
  padding-bottom: 14px;
}
.page-header h1 {
  margin-bottom: 8px;
}
.page-header h3 {
  display: block;
}
.page-body {
  padding-top: 16px;
}
.page-cards__wrapper {
  padding-top: 24px;  
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 24px;  
}
.page-cards__box {
  transition: transform 0.4s ease-in, background-color 0.4s ease-in;
  -webkit-transition: transform 0.4s ease-in, background-color 0.4s ease-in;
  -moz-transition: transform 0.4s ease-in, background-color 0.4s ease-in;
  -ms-transition: transform 0.4s ease-in, background-color 0.4s ease-in;
  -o-transition: transform 0.4s ease-in, background-color 0.4s ease-in;
}
.page-cards__box:hover {
  transform: scale(1.09, 1.09);
  -webkit-transform: scale(1.09, 1.09);
  -moz-transform: scale(1.09, 1.09);
  -ms-transform: scale(1.09, 1.09);
  -o-transform: scale(1.09, 1.09);
  background-color: #fff;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 0.05);
}
.page-cards__box:hover .cards__title {
  color: var(--accent-bright);
}
.page-card {
  display: flex;
  padding: 16px 0 4px;
  border-top: 2px dashed var(--border);
  border-bottom: 2px dashed var(--border);
  min-width: 240px;
}
.card:hover .card__subtitle  {
  color: var(--accent-bright);
}
.page__title {
  display: flex;
  align-items: center;
}
.page__title-ico {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 10px;
  object-fit: contain;
  margin-right: 12px;
}
.article-content {
  background-color: #fff;
  padding: 16px 25px 25px; 
}
.article-body {
  padding-top: 16px;
}
.article-header h1 a {
  display: inline-block;
  position: relative;
}
.article-header h1 a::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: var(--bg-dark);
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
  opacity: 0.4;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}
.article-header h1 a:hover::after {
  background-color: var(--accent-bright);
  opacity: 0.3;
}
.article-img, .article-img__max {
  height: auto;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 30px;
  flex-shrink: 1;
}
.article-img {
  max-width: 500px;  
}

.article-img__max {
  max-width: 800px;
}
.article-text {
  margin-bottom: 20px;  
}
.article-text span {
  font-weight: 600;  
  color: var(--gray);
}
.article h2 {
  margin-top: 20px;
}
.article-introduction {  
  font-size: 0.9rem;
  font-style: italic;
}
.footer-page {
  background-color: var(--bg-medium);
}
.video {
  width: 560px;
  height: 315px;
  margin: 25px 0 20px;
}

.card__link {
  display: block;
  padding: 16px;
  border-bottom: 2px dashed var(--border);
  min-width: 240px;
  transition: all 800ms ease;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 800ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
}
.card__link:first-child {
  border-top: 2px dashed var(--border);
}
.card__link:hover {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  border-bottom: 2px solid var(--bg-medium);
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: 0px 0px 20px rgb(0 0 0 / 0.03);
}
.links-nav a {
margin-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
display: inline-block;
}
.links-body {
  padding-top: 20px;
}
.links-item {
  display: flex;
  margin: 10px 0 30px 100px;
  align-items: center;
}
.links-item span {
  display: contents;
  font-weight: 500;
}
.links-item img {
  margin-left: -100px;
  margin-right: 10px;
  margin: 0 10px 0 -100px;
  display: block;
}















/*------ MEDIA ------*/
@media (min-width: 2200px) {
  .gifts {
    padding-bottom: 200px;
  }
  .main,
  .costumes {
    padding-bottom: 150px;
  }
  .main::after,
  .gifts::after,
  .costumes::after {
    height: 122px;
  }
}

@media (max-width: 1199px) {
  .section-title {
    font-size: 1.3rem;
  }
  .main {
    background-position: left 20% top;
  }
  .cards__box-4 {
    width: calc(33.3% - 30px);
  }
  .gifts-cards__wrapper::before {
    width: 520px;
    height: 300px;
    right: -33px;
    bottom: -7px;
  }
}
@media (max-width: 1000px) {
  .cards__box-3 {
    width: calc(50% - 30px);
  }
  .ideas::before {
    display: none;
  }
  .balloon-1 {
    top: 54%;
    right: 89%;
  }
  .balloon-2 {
    top: -3%;
    right: 2%;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 1.4rem;
  }
  .logo {
    display: flex;
    margin-right: 20px;
  }
  .logo__img {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }
  .logo__link {
    margin-top: -1px;
  }
  .logo__text {
    font-size: 0.85rem;
    line-height: 1.25;
  }
  .logo__text::after {
    height: 3px;
    bottom: 4px;
  }
  .header-nav__link {
    font-size: 0.75rem;
    margin-left: 1.5em;
  }
  .main {
    padding-bottom: 120px;
  }
  .costumes {
    padding-bottom: 100px;
  }
  .main-menu {
    display: none;
  }
  .main::after,
  .gifts::after,
  .costumes::after {
    height: 75px;
  }
  .section__heading {
    flex-direction: column;
  }
  .section-title {
    width: auto;
    margin-bottom: 16px;
  }
  .cards__box-4 {
    width: calc(50% - 30px);
  }
  .gifts-cards__wrapper::before {
    width: 493px;
    height: 276px;
    right: -23px;
    bottom: -230px;
  }
  .footer-container {
    flex-direction: column-reverse;
  }
  .footer-col {
    margin-bottom: 8px;
    max-width: 100%;
  }
  .footer-col p {
    margin-bottom: 2px;
    text-align: center;
  }
}
@media (max-width: 850px) {
  .header-nav {
    display: none;
  }

  .mobile-nav-wrapper {
    display: block;
  }
  .page {
    padding-top: 22px;
  }
  .article-body {
    flex-direction: column;
  }
  .article-img__max {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.3rem;
  }
  .main {
    background-position: left 15% top;
    padding-bottom: 110px;
  }
  .costumes {
    padding-bottom: 80px;
  }
  .main::after,
  .gifts::after,
  .costumes::after {
    height: 60px;
  }
}
@media (max-width: 660px) {
  .cards__box-2,
  .cards__box-3,
  .cards__box-4 {
    width: calc(100% - 30px);
  }
  .cards__title {
    max-width: 100%;
  }
  .balloon-1 {
    top: 0;
    right: -2%;
  }
  .balloon-2 {
    right: auto;
    top: auto;
    left: -2%;
    bottom: 35%;
  }
  .video {
    width: 100%;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 1.2rem;
  }
  .main {
    background-position: left 14% top;
  }
  .gifts-cards__wrapper::before {
    width: 100%;
    left: 0;
    bottom: -194px;
  }
  .bg-ico {
    display: none;
  }
  .article-img {
    max-width: 100%;
  }
}
@media (max-width: 414px) {
  .main {
    padding-top: 100px;
    padding-bottom: 90px;
  }
  .costumes {
    padding-bottom: 70px;
  }
}
@media (max-width: 375px) {
  .gifts-cards__wrapper::before {
    display: none;
  }
  .gifts {
    padding-bottom: 90px;
  }
}
@media (max-width: 360px) {
  .card__text {
    padding-right: 0;
  }
  .card__subtitle::after {
    display: none;
  }
  .section-title__ico {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    padding: 10px;
  }
}
/*
«»
&nbsp;
<ul class="list">
*/