* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica";
  src: url("./font/Helvetica.ttf");
  src: local("Helvetica"), local("Helvetica"), url("./font/Helvetica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "DaysOne";
  src: url("./font/DaysOne.ttf");
  src: local("DaysOne"), local("DaysOne"), url("./font/DaysOne.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "DaysOne", sans-serif;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.footer {
  position: relative;
  overflow: hidden;
  margin-top: 33px;
  padding-bottom: 23px;
}
.footer__logo {
  display: flex;
  align-self: center;
  width: 190px;
  height: 70px;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__content {
  position: relative;
  z-index: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  border-radius: 20px;
  background: #1D3E61;
}
@media (max-width: 575px) {
  .footer__content {
    padding: 13px;
  }
}
.footer__text {
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  font-family: "Helvetica", sans-serif;
}
.footer__text a {
  color: #43B6DD;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  font-family: "Helvetica", sans-serif;
}
.footer__links {
  border-top: 1px solid #FFF;
  padding-top: 21px;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.footer__links a, .footer__links span {
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  text-underline-offset: 4px;
  font-family: "Helvetica", sans-serif;
}
@media (max-width: 575px) {
  .footer__links {
    margin-top: 15px;
    gap: 10px;
    justify-content: flex-start;
  }
}

.cookie {
  position: fixed;
  bottom: 40px;
  z-index: 10;
  width: 100%;
  padding: 15px;
}
.cookie.remove-cookie {
  display: none;
}
.cookie__container {
  max-width: 1110px;
  display: flex;
  margin: 0 auto;
  gap: 14px;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 575px) {
  .cookie__container {
    flex-direction: column;
    padding: 15px;
  }
}
.cookie__content {
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 575px) {
  .cookie__content {
    display: inline;
    align-items: flex-start;
  }
}
.cookie__img {
  float: left;
}
@media (max-width: 575px) {
  .cookie__img {
    shape-outside: circle(50%);
    margin: 10px;
    width: 34px;
    height: 34px;
  }
  .cookie__img img {
    width: 100%;
    height: 100%;
  }
}
.cookie__text {
  max-width: 757px;
  width: 100%;
  color: #000;
  font-size: 15px;
  line-height: 17px;
}
.cookie__btn {
  max-width: 300px;
}
@media (max-width: 575px) {
  .cookie__btn {
    width: 100%;
    text-align: center;
  }
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}
.overlay.active-overlay {
  display: block;
}

.modal {
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 625px;
}
@media (max-width: 768px) {
  .modal {
    transform: translate(0, -50%);
    left: 0;
    width: auto;
  }
}
.modal.active-modal {
  display: block;
}
.modal__content {
  padding: 30px;
  overflow: hidden;
  position: relative;
  top: -20px;
  margin: 0 auto;
  max-width: 635px;
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
@media (max-width: 768px) {
  .modal__content {
    gap: 10px;
    padding: 15px;
  }
}
.modal__title {
  color: #141414;
  text-align: center;
  font-size: 30px;
  line-height: 27px;
}
@media (max-width: 768px) {
  .modal__title {
    padding: 10px;
  }
}
.modal__input-block {
  padding: 20px;
  max-width: 445px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__input-block label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.modal__input {
  position: relative;
  width: 100%;
  height: 40px;
}
.modal__input svg {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.modal__input input {
  height: 40px;
  width: 100%;
  border-bottom: 1px solid #141414;
  padding: 14px;
  color: #000;
  font-size: 15px;
  line-height: 17px;
}
.modal__send {
  max-width: 445px;
  width: 100%;
  margin: 0 auto;
  padding: 18px 32px;
  border-radius: 30px;
  background: linear-gradient(90deg, #ED57B0 0%, #FC6767 100%);
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .modal__send {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.info {
  padding: 47px 0;
}
.info .faq__title {
  margin-bottom: 10px;
}
.info__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
.info__card {
  max-width: 350px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.15));
}
.info__card span {
  position: relative;
  text-align: center;
  font-size: 11px;
  color: #3A3A3A;
  font-family: "Helvetica", sans-serif;
  font-size: 11px;
  line-height: 14px;
  padding: 9px;
  border-bottom: 1px solid #E0E0E0;
}
.info__card span.title {
  background: #E8F3FF;
  color: #030303;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
}
.info__card span:last-child {
  border-bottom: transparent;
}

.actions {
  margin-top: 20px;
}
.actions__content {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 0px 18px;
  width: 100%;
  gap: 5px;
  border-radius: 20px;
  background: #8CE1FE;
}
@media (max-width: 768px) {
  .actions__content {
    flex-direction: column;
    justify-content: center;
    padding: 12px;
  }
}
.actions__img {
  align-self: flex-start;
  width: 338px;
  min-width: 300px;
  height: 80px;
}
.actions__img img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .actions__img {
    align-self: center;
  }
}
.actions__text {
  max-width: 440px;
  color: #234F7C;
  font-size: 17px;
  line-height: 18px;
}
@media (max-width: 768px) {
  .actions__text {
    text-align: center;
  }
}
.actions__link {
  display: flex;
  gap: 4px;
  align-items: center;
  background: transparent;
  color: #234F7C;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  white-space: nowrap;
}

.btn {
  padding: 18px 32px;
  border-radius: 30px;
  background: #8CE1FE;
  color: #234F7C;
  text-align: center;
  font-size: 18px;
  width: 100%;
}

.header {
  padding-top: 20px;
  overflow: hidden;
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
}
.header__content {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.header__text {
  position: relative;
  z-index: 5;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  padding: 33px 9px;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .header__text {
    padding: 0;
  }
}
@media (max-width: 424px) {
  .header__text {
    position: relative;
    left: 30px;
  }
}
@media (max-width: 360px) {
  .header__text {
    left: 50px;
  }
}
.header__logo {
  width: 108px;
  height: 34px;
}
.header__logo img {
  width: 100%;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .header__logo {
    width: 86px;
    height: 33px;
  }
  .header__logo img {
    height: 33px;
  }
}
.header__title {
  color: #234F7C;
  font-size: 28px;
  line-height: 26px;
}
@media (max-width: 575px) {
  .header__title {
    width: 160%;
  }
}
@media (max-width: 360px) {
  .header__title {
    width: 200%;
  }
}
.header__subtitle {
  font-size: 13px;
  color: #000000;
  font-family: "Helvetica", sans-serif;
}
@media (max-width: 575px) {
  .header__subtitle {
    width: 160%;
  }
}
@media (max-width: 360px) {
  .header__subtitle {
    width: 200%;
  }
}
.header__img {
  align-self: flex-end;
}
@media (max-width: 768px) {
  .header__img {
    max-width: 279px;
    min-width: 279px;
    width: 100%;
    height: 211px;
  }
  .header__img img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .header__img {
    position: relative;
    right: -60px;
  }
}
@media (max-width: 424px) {
  .header__img {
    right: -50px;
  }
}

.catalog {
  position: relative;
  z-index: 3;
}
.catalog__container {
  position: relative;
  z-index: 1;
  padding: 38px 15px;
  display: flex;
  flex-direction: column;
}
.catalog__top {
  display: flex;
  align-self: center;
  padding: 30px 0;
  align-items: center;
  gap: 5px;
  color: #8C8C8C;
  font-size: 21px;
  line-height: 17px;
}
.catalog__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  row-gap: 15px;
  justify-items: center;
}
@media (max-width: 991px) {
  .catalog__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .catalog__content {
    grid-template-columns: 1fr;
  }
}
.catalog__cart-links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.catalog__cart-links a{
  color: #1E1A99;
  text-align: center;
  font-size: 12px;
  text-decoration-line: underline;
  text-underline-offset: 2px;
}
.catalog__cart {
  overflow: hidden;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.25);
}
.catalog__cart-rait {
  display: flex;
  align-items: center;
  color: #141414;
  gap: 3px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.catalog__cart-rait svg.active path {
  fill: #DAB01D;
}
.catalog__cart-content {
  background: #ffffff;
  border-radius: 10px 10px 0px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.catalog__cart-header {
  border-radius: 10px 10px 0px 0px;
  background: #E8F3FF;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalog__cart-description-top {
  padding: 12px 6px;
  text-align: center;
  border-radius: 100px;
  color: #141414;
  font-family: "Helvetica", sans-serif;
  font-size: 15px;
}
.catalog__cart-logo {
  margin-top: 15px;
  max-height: 43px;
  max-width: 167px;
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}
.catalog__cart-logo img {
  height: 43px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__cart-fill {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.catalog__cart-fill img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__cart-info {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media (max-width: 575px) {
  .catalog__cart-info {
    gap: 19px;
  }
}
.catalog__cart-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7px;
}
.catalog__cart-text {
  color: #141414;
  font-size: 14px;
  font-family: "Helvetica", sans-serif;
}
.catalog__cart-text:nth-child(even) {
  font-family: "DaysOne", sans-serif;
}
.catalog__cart-description-bottom {
  color: #595959;
  font-family: "Helvetica", sans-serif;
  font-size: 13px;
  text-align: left;
}
.cart-back-svg {
  top: 80px;
  right: -10px;
  position: absolute;
}

.faq {
  padding: 48px 0px;
}
.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 9;
  width: 100%;
}
.faq__title-content {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.faq__title {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq__title p {
  color: #234F7C;
  text-align: center;
  font-size: 30px;
  line-height: 34px;
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  width: 100%;
}
.faq__block {
  cursor: pointer;
  border-bottom: 2px solid #A6A6A6;
  transition: all 0.5s;
}
.faq__block.active {
  border-color: #8CE1FE;
  transition: all 0.5s;
}
.faq__block.active .faq__block-header .faq__block-title {
  color: #234F7C;
}
.faq__block.active .faq__sun {
  visibility: visible;
  opacity: 1;
}
.faq__block.active .plus__block .plus-block-minus {
  display: block;
}
.faq__block.active .plus__block svg {
  display: none;
}
.faq__block.active .faq__block-info {
  display: block;
}
.faq__block-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 575px) {
  .faq__block-header {
    padding: 10px;
  }
}
.faq__block-title {
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  color: #234F7C;
  font-size: 16px;
}
@media (max-width: 479.98px) {
  .faq__block-title {
    font-size: 14px;
  }
}
.faq__block-info {
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-top: 0;
  display: none;
  transition: all 0.5s;
}
.faq__block-info p, .faq__block-info span {
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #000;
}
.faq__block-info p {
  margin-top: 8px;
}
.faq__block-info ul {
  margin-top: 4px;
}
.faq__block-info ul li {
  list-style: inside;
  margin-top: 4px;
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #000;
}
.faq__block-info span {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq__block-info .faq__block-info-title {
  margin-top: 12px;
  font-size: 13px;
  font-family: "DaysOne", sans-serif;
}
@media (max-width: 575px) {
  .faq__block-info {
    font-size: 11px;
    padding: 10px;
    padding-top: 0;
  }
}
.faq .plus__block {
  transition: 0.3s;
}
.faq .plus__block .plus-block-minus {
  display: none;
  width: 17px;
  height: 3px;
  background-color: #F33F3F;
}
