@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Bebas+Neue&family=El+Messiri:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=El+Messiri:wght@400;500;600;700&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap");
@import "section-filter.css";
@import "section-list.css";
@import "section-cart.css";
@import "section-text.css";
@import "section-textselect.css";
@import "section-payment.css";
@import "modal-buy.css";
@import "section-pay.css";
header.header {
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  position: relative;
}
header.header .header__inner {
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 800px) {
  header.header .header__inner {
    flex-direction: column;
    gap: 80px;
    padding: 30px 0;
    height: inherit;
  }
}
header.header .header__logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
header.header .header__logo img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}
header.header .header__logo span {
  color: #000;
  font-family: "Philosopher", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
header.header .header__list {
  display: flex;
  gap: 40px;
  font-family: "Rubik", sans-serif;
}
@media (max-width: 800px) {
  header.header .header__list {
    flex-wrap: wrap;
  }
}
header.header .header__item {
  position: relative;
  cursor: pointer;
}
header.header .header__item:hover::after {
  opacity: 1;
}
header.header .header__item::after {
  opacity: 0;
  transition: all 0.5s;
  content: "";
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: rgb(44, 173, 224);
  position: absolute;
  bottom: -10px;
  left: 0;
}
header.header .header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
header.header .header__right a {
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  min-height: 80vh;
  background: url("/sources/bg.jpg");
  background-size: cover;
  padding-bottom: 90px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 30px;
}
.container.flex {
  display: flex;
  gap: 20px;
  align-items: start;
}
@media (max-width: 800px) {
  .container.flex {
    flex-direction: column;
  }
}

.down-footer {
  font-family: "Rubik", sans-serif;
  background: #4278af;
  color: white;
  padding: 20px;
  font-size: 13px;
  text-align: center;
  opacity: 0.78;
  word-break: keep-all;
}

footer.footer {
  padding: 50px 0;
  background: #4278af;
  color: white;
  position: relative;
  z-index: 2;
}
footer.footer .footer__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  footer.footer .footer__flex {
    flex-direction: column;
  }
}
footer.footer .footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Rubik", sans-serif;
}
footer.footer .footer__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer.footer .footer__right a {
  font-family: Play;
  color: white !important;
}
footer.footer .footer__right__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer.footer .footer__right__col .footer__right__col__col {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
footer.footer .footer__right__mr {
  width: 300px;
  height: 100px;
}
footer.footer .footer__right__mr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.none {
  display: none !important;
}

.template {
  display: none !important;
}

.modal-auth {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}
.modal-auth .auth__title {
  font-size: 25px;
  font-family: Play;
}
.modal-auth .auth__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-auth .auth__button {
  font-size: 25px;
  color: white;
  background-color: #4278af;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: Play;
  max-width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  color: inherit;
}/*# sourceMappingURL=style.css.map */