@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Inter:wght@400;700&display=swap");
::-moz-placeholder {
  font-family: "Forum", cursive;
}
::placeholder, .libraryCard__reader-title, .libraryCard__legend, .coffeeShop__price, .coffeeShop__title-menu, .favorites__staff, .welcome__text, .header__title, .title {
  font-family: "Forum", cursive;
}

.footer__span, .footer__time, .footer__address, .libraryCard__btn, .libraryCard__reader-text, .libraryCard__btn-sub, .libraryCard__form-title, .contacts__phone-number, .contacts__bold-text, .coffeeShop__menu, .coffeeShop__text, .favorites__btn, .favorites__description, .favorites__autor, .favorites__book, .favorites__season, .favorites__text, .about__text, .header__nav {
  font-family: "Inter", sans-serif;
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background: black;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  background: #FFF;
}
@media (max-width: 1024px) {
  .container {
    width: 100%;
  }
}

.title {
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-align: center;
}

.stripe {
  width: 50px;
  height: 1px;
  margin: 20px auto 0;
  background-color: #0C0C0E;
}

::-moz-placeholder {
  font-family: "Forum", cursive;
}

::placeholder, .libraryCard__reader-title, .libraryCard__legend, .coffeeShop__price, .coffeeShop__title-menu, .favorites__staff, .welcome__text, .header__title, .title {
  font-family: "Forum", cursive;
}

.footer__span, .footer__time, .footer__address, .libraryCard__btn, .libraryCard__reader-text, .libraryCard__btn-sub, .libraryCard__form-title, .contacts__phone-number, .contacts__bold-text, .coffeeShop__menu, .coffeeShop__text, .favorites__btn, .favorites__description, .favorites__autor, .favorites__book, .favorites__season, .favorites__text, .about__text, .header__nav {
  font-family: "Inter", sans-serif;
}

.header {
  background: #0C0C0E;
}
.header__container {
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__title {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 0.6px;
  color: #FFF;
  margin: 0;
}
.header__nav {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
}
@media (max-width: 1024px) {
  .header__nav {
    width: 332px;
    height: 570px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #0C0C0E;
    padding-top: 100px;
    transform: translateY(-100%);
    transition: 0.5s all linear;
    z-index: 1;
    text-align: center;
  }
}
.header__nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
@media (max-width: 1024px) {
  .header__nav-list {
    flex-direction: column;
  }
}
.header__nav-icon-block {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__icon-profile {
  width: 28px;
  height: 28px;
  z-index: 2;
}
.header a {
  text-decoration: none;
  color: #FFF;
  cursor: pointer;
}
.header a:hover {
  color: #BB945F;
  transition: 0.5s;
}
.header__burger {
  display: none;
  width: 45px;
  height: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .header__burger {
    display: block;
    cursor: pointer;
    z-index: 2;
  }
}
.header .burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  transition: 0.3s all linear;
}
.header .burger__line_first {
  top: 0;
}
.header .burger__line_second, .header .burger__line_third {
  top: 50%;
  transform: translateY(-50%);
}
.header .burger__line_fourth {
  bottom: 0;
}
.header__nav-active {
  transform: translateX(0);
  position: absolute;
}

.burger_active .burger__line_first, .burger_active .burger__line_fourth {
  opacity: 0;
}

.burger_active .burger__line_second {
  transform: translateY(-50%) rotate(45deg);
}

.burger_active .burger__line_third {
  transform: translateY(-50%) rotate(-45deg);
}

.welcome__img-block {
  position: relative;
}
.welcome__img {
  width: 100%;
  height: 600px;
}
.welcome__img-text {
  position: absolute;
  top: 220px;
  width: 600px;
  padding: 35px 40px;
  background: #0C0C0E;
}
.welcome__text {
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFF;
  text-align: center;
  margin: 0;
}

.about {
  margin-top: 18px;
}
.about__text {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .about__text {
    max-width: 728px;
    margin: 40px auto 0 auto;
  }
}
.about__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__slider-img {
  display: flex;
  gap: 25px;
  margin: 18px 0 35px 0;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .about__slider-img {
    gap: 58px;
  }
}
.about__btn-wrapper {
  display: flex;
}
.about__slider-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  background-color: transparent;
}
.about__slider-btn::after {
  content: "";
  background-color: black;
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
}
.about__first-btn::after {
  background-color: #BB945F;
}
.about__slider-btn:hover {
  background-color: lightgrey;
}
.about__last-btn {
  display: none;
}
@media (max-width: 1024px) {
  .about__last-btn {
    display: flex;
  }
}
.about__slider-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .about__slider-arrow {
    display: flex;
    align-items: center;
    padding-top: 41px;
  }
}

.slider_img1 img, .slider_img2 img, .slider_img3 img {
  width: 100%;
}

@media (max-width: 1024px) {
  .slider_img2, .slider_img3 {
    display: none;
  }
}

.favorites {
  margin-top: 55px;
}
@media (max-width: 1024px) {
  .favorites {
    margin-top: 39px;
  }
}
.favorites__text {
  margin: 40px 0 0 20px;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.favorites__input-block {
  display: flex;
  gap: 21px;
  margin-top: 40px;
  padding-left: 20px;
}
@media (max-width: 1024px) {
  .favorites__input-block {
    gap: 89px;
  }
}
@media (max-width: 760px) {
  .favorites__input-block {
    gap: 50px;
  }
}
.favorites__input {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .favorites__input:last-child {
    gap: 0;
  }
}
.favorites__season {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  width: 155px;
  padding-left: 20px;
  letter-spacing: 0.3px;
}
@media (max-width: 1024px) {
  .favorites__season {
    width: 100%;
  }
}
.favorites__cards-block {
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr;
  row-gap: 40px;
  -moz-column-gap: 200px;
       column-gap: 200px;
  padding-left: 20px;
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .favorites__cards-block {
    -moz-column-gap: 0;
         column-gap: 0;
    justify-items: center;
  }
}
@media (max-width: 1292px) {
  .favorites__cards-block {
    grid-template: 1fr/1fr;
  }
}
@media (max-width: 1024px) {
  .favorites__cards-block {
    padding: 0 129px 0 89px;
  }
}
@media (max-width: 760px) {
  .favorites__cards-block {
    padding: 0 20px;
  }
}
.favorites__cards {
  display: block;
  position: relative;
  width: 550px;
  border: 1px solid #000;
}
.favorites__cards-content {
  padding: 13px 0 12px 20px;
}
.favorites__staff {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: black;
}
.favorites__card-stripe {
  width: 60px;
  height: 1px;
  background-color: #BB945F;
}
.favorites__book {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  margin-top: 20px;
}
.favorites__autor {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
  text-transform: capitalize;
  letter-spacing: 2px;
}
.favorites__description {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  width: 355px;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin-top: 20px;
}
.favorites__btn {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 9px 27px;
  border-radius: 2px;
  border: 1px solid #0C0C0E;
  background-color: #FFF;
  margin-top: 15px;
  cursor: pointer;
}
.favorites__btn:hover {
  background-color: #BB945F;
  border-color: #BB945F;
  transition: 0.5s;
}
.favorites__btn-two {
  margin-top: 55px;
}
.favorites__btn-four {
  margin-top: 95px;
  padding: 9px 25px;
  color: #BB945F;
  border-color: #BB945F;
  cursor: auto;
}
.favorites__btn-four:hover {
  background-color: #FFF;
}
.favorites__card-img {
  position: absolute;
  right: -40px;
  bottom: -1px;
  z-index: 1;
}
.favorites__des-three {
  width: 357px;
}
.favorites__input-radio {
  accent-color: black;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.favorites__input-radio::after {
  content: "";
  width: 27px;
  height: 27px;
  display: block;
  border-radius: 50%;
}
.favorites__label {
  display: flex;
  align-items: center;
}
.favorites__summer {
  padding-left: 19px;
  width: 168px;
}
@media (max-width: 1024px) {
  .favorites__summer {
    width: 100%;
  }
}
.favorites__autumn {
  padding-left: 20px;
}
.favorites__spring {
  width: 152px;
}
@media (max-width: 1024px) {
  .favorites__spring {
    width: 100%;
  }
}

.favorites__input input[type=radio]:checked + label .favorites__season {
  font-weight: 700;
}

.coffeeShop {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .coffeeShop {
    margin-top: 61px;
  }
}
.coffeeShop__block {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 40px 20px;
}
@media (max-width: 1024px) {
  .coffeeShop__block {
    flex-direction: column;
    gap: 40px;
  }
}
.coffeeShop__wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.coffeeShop__text {
  padding: 0 20px;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 1.9px;
  margin: 40px auto;
}
.coffeeShop__title-menu {
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
  color: #BB945F;
}
.coffeeShop__price-menu {
  display: flex;
  align-items: center;
  gap: 59px;
}
.coffeeShop__menu {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
  flex-grow: 1;
}
.coffeeShop__menu-stripe {
  width: 100px;
  height: 1px;
  background-color: #BB945F;
}
.coffeeShop__price {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.coffeeShop__left {
  text-align: end;
}
.coffeeShop__title-left {
  text-align: end;
}
.coffeeShop__tea {
  display: block;
  width: 197px;
  white-space: nowrap;
  flex-grow: 0;
}

.contacts {
  margin-top: 20px;
  padding: 0 20px 40px 20px;
}
.contacts__wrapper-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .contacts__wrapper-content {
    flex-direction: column;
    gap: 100px;
  }
}
.contacts__bold-text {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.contacts__phone-number {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 2px;
  text-transform: capitalize;
}
.contacts__map {
  display: flex;
  justify-content: center;
}
@media (max-width: 760px) {
  .contacts__map img {
    width: 100%;
  }
}
.contacts__phone-number:first-child {
  margin-bottom: 20px;
}
.contacts__phone-number:last-child {
  margin-top: 20px;
}
.contacts__phone-wrapper {
  margin: 40px 0 40px 0;
}
.contacts__link {
  color: inherit;
  text-decoration: none;
}
.contacts__link:hover {
  border-bottom: 1px solid #0C0C0E;
}
.contacts__mail {
  color: inherit;
  text-decoration: none;
}
.contacts__mail:hover {
  border-bottom: 1px solid #0C0C0E;
}

.libraryCard {
  margin-top: 20px;
  padding: 0 20px 42px 20px;
}
.libraryCard__wrapper-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .libraryCard__wrapper-content {
    flex-direction: column;
    align-items: center;
    gap: 21px;
  }
}
.libraryCard__form-title {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: center;
}
.libraryCard__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px 25px 20px;
  border: 3px solid #BB945F;
  width: 600px;
  margin-top: 30px;
}
.libraryCard__fieldset {
  display: flex;
  flex-direction: column;
  border: none;
  background-color: #BB945F;
  padding: 17px 20px 25px 20px;
}
.libraryCard__legend {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 0.6px;
  float: left;
}
.libraryCard__input {
  border-radius: 10px;
  width: 520px;
  height: 66px;
  font-size: 3rem;
  border: none;
}
.libraryCard__input-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}
.libraryCard__btn-sub {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  padding: 10px 40px;
  background-color: #FFF;
  border-radius: 2px;
  border: 1px solid #0C0C0E;
  margin-top: 20px;
}
.libraryCard__btn-sub:hover {
  background-color: #BB945F;
  border-color: #BB945F;
  transition: 0.5s;
}
.libraryCard__reader {
  width: 456px;
}
@media (max-width: 1024px) {
  .libraryCard__reader {
    width: 600px;
  }
}
.libraryCard__reader-title {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-align: right;
}
@media (max-width: 1024px) {
  .libraryCard__reader-title {
    text-align: center;
  }
}
.libraryCard__reader-text {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0.4px;
  text-align: right;
  margin-top: 35px;
}
@media (max-width: 1024px) {
  .libraryCard__reader-text {
    text-align: center;
    margin-top: 42px;
  }
}
.libraryCard__btn-block {
  display: flex;
  gap: 20px;
  justify-content: end;
}
@media (max-width: 1024px) {
  .libraryCard__btn-block {
    justify-content: center;
  }
}
.libraryCard__btn {
  padding: 7px 18px;
  background-color: #FFF;
  letter-spacing: 1px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 35px;
  border-radius: 2px;
  border: 1px solid #0C0C0E;
}
@media (max-width: 1024px) {
  .libraryCard__btn {
    margin-top: 40px;
  }
}
.libraryCard__btn:hover {
  background-color: #BB945F;
  border-color: #BB945F;
  transition: 0.5s;
}
.libraryCard__btn1 {
  padding: 7px 14px;
}

::-moz-placeholder {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 0.6px;
  color: #8E8E8E;
  padding: 8px 20px;
}

::placeholder {
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 0.6px;
  color: #8E8E8E;
  padding: 8px 20px;
}

.footer {
  padding: 20px 20px 44px 20px;
  display: flex;
  flex-direction: column;
  background-color: #0C0C0E;
}
.footer__address-soc-time-block {
  display: flex;
  justify-content: space-between;
}
.footer__address {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
}
.footer__address-link {
  text-decoration: none;
  color: #FFF;
}
.footer__address-link:hover {
  color: #BB945F;
  transition: 0.5s;
}
.footer__social-icon {
  display: flex;
  gap: 15px;
  list-style: none;
  margin-top: 18px;
}
.footer__time-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__time {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  text-align: right;
  color: #FFF;
}
.footer__stripe {
  width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-top: 28px;
}
.footer__school-name-link {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
}
.footer__span {
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 2px;
  color: #FFF;
  width: 33.3333333333%;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer__span {
    width: 146px;
  }
}
@media (max-width: 1024px) {
  .footer__rsschool {
    width: 301px;
    margin-right: 53px;
  }
}
.footer__span:first-child {
  text-align: start;
}
.footer__span:last-child {
  text-align: end;
}
.footer__link {
  color: #FFF;
  text-decoration: none;
}
.footer__link:hover {
  border-bottom: 1px solid #FFF;
}
.footer__social {
  cursor: pointer;
}

svg:hover #instagram,
svg:hover #facebook,
svg:hover #twitter {
  fill: #BB945F;
  transition: 0.5s;
}/*# sourceMappingURL=style.css.map */