@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Be Vietnam Pro", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
html::-webkit-scrollbar {
  width: 0.5rem;
}
html::-webkit-scrollbar-track {
  background: hsl(0, 0%, 100%);
}
html::-webkit-scrollbar-thumb {
  background: hsl(44, 97%, 53%);
}

body {
  min-height: 100vh;
  width: 100%;
  background-color: hsl(0, 0%, 100%);
}

.btn {
  cursor: pointer;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 0%);
  border: none;
  font-family: "Be Vietnam Pro", sans-serif;
}

.detail {
  position: relative;
  max-width: 66.5rem;
  width: 100%;
  border-radius: 2.5rem;
  height: 9rem;
  -webkit-box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.251);
          box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.251);
}
.detail h1 {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  margin: unset;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

p, h1, h2, h3, h4, span {
  color: hsl(0, 0%, 0%);
}

section {
  padding: 5rem 5%;
}

div, a {
  text-decoration: none;
  color: hsl(0, 0%, 0%);
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

main {
  width: 100%;
}

/* HEADER SCSS: START */
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color: hsl(44, 97%, 53%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 8rem;
  height: 7.5rem;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
  z-index: 100000;
}
header.hidden {
  top: -10rem;
}
header.hidden .header__logo svg {
  top: -10rem;
}
header .header__logo {
  position: relative;
  max-width: 14.4rem;
  width: 100%;
}
header .header__logo svg {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 100%;
  height: 14.8rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}
header .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
header .header__menu .close__menu {
  display: none;
  z-index: 10;
}
header .header__menu .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
header .header__menu .menu__list--item {
  display: block;
  position: relative;
  list-style-type: none;
}
header .header__menu .menu__list--item > a {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.6rem;
  font-weight: 600;
  gap: 0.5rem;
  padding: 1rem;
  line-height: 2rem;
  color: hsl(0, 0%, 0%);
}
header .header__menu .menu__list--item > a:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0.2rem;
  width: 50%;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  background: -o-linear-gradient(45deg, hsl(356, 100%, 46%), hsl(356, 100%, 34%)) top left;
  background: linear-gradient(45deg, hsl(356, 100%, 46%), hsl(356, 100%, 34%)) top left;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
header .header__menu .menu__list--item > a:hover::after {
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1) translateX(50%);
      -ms-transform: scaleX(1) translateX(50%);
          transform: scaleX(1) translateX(50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
header .header__menu .menu__list--item > a svg {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
header .header__menu .menu__list--item a.spin svg {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .header__menu .menu__list--item .active:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0.2rem;
  width: 50%;
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  background: -o-linear-gradient(45deg, hsl(356, 100%, 46%), hsl(356, 100%, 34%)) top left;
  background: linear-gradient(45deg, hsl(356, 100%, 46%), hsl(356, 100%, 34%)) top left;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
header .header__menu .menu__list--item.myHover:hover .drop__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .header__menu .menu__list--item.myHover:hover a svg {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .header__menu .menu__list .drop__menu {
  position: absolute;
  display: none;
  opacity: 0;
  width: 25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1rem;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .header__menu .menu__list .drop__menu li {
  -webkit-animation: rotateMenu 600ms ease-in-out forwards;
          animation: rotateMenu 600ms ease-in-out forwards;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  width: 100%;
  display: block;
  list-style-type: none;
}
header .header__menu .menu__list .drop__menu li a {
  padding: 1rem 1.6rem;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.6em;
  font-weight: 600;
  gap: 0.5rem;
  padding: 1rem;
  line-height: 2rem;
  color: hsl(0, 0%, 0%);
  background-color: hsl(44, 97%, 53%);
}
header .header__menu .menu__list .drop__menu li:last-child a {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@-webkit-keyframes rotateMenu {
  0% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  70% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
@keyframes rotateMenu {
  0% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  70% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}
header .header__menu .menu__list .showDropMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .header__menu .menu__list #showDropMenu2 .drop__menu {
  width: 22rem;
}
header .header__menu .menu__btn {
  cursor: pointer;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  background-color: hsl(0, 0%, 100%);
  border: none;
}
header .header__toggle {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

/* HEADER SCSS: END */
/*SCSS POP UP: START*/
#pop-up {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
#pop-up .pop-up-wrapper {
  position: relative;
  max-width: 60%;
  width: 100%;
  padding: 4rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-radius: 2rem;
  background-color: hsl(0, 0%, 100%);
  gap: 2rem;
}
#pop-up .pop-up-wrapper .close__btn {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  padding: unset;
  cursor: pointer;
  font-weight: 600;
  height: 2rem;
  width: 2rem;
  border-radius: unset;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
}
#pop-up .pop-up-wrapper .registrator__img {
  max-width: 45%;
  width: 100%;
}
#pop-up .pop-up-wrapper .registrator__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#pop-up .pop-up-wrapper .registrator__form {
  position: relative;
  max-width: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3.2rem;
  padding: 2.4rem;
  gap: 2.4rem;
  background: hsl(0, 0%, 92%);
  z-index: 2;
}
#pop-up .pop-up-wrapper .registrator__form h2 {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.8rem;
  text-align: center;
}
#pop-up .pop-up-wrapper .registrator__form form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
#pop-up .pop-up-wrapper .registrator__form form .field {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
#pop-up .pop-up-wrapper .registrator__form form .field .label-before, #pop-up .pop-up-wrapper .registrator__form form .field input:focus + label, #pop-up .pop-up-wrapper .registrator__form form .field input:valid + label {
  -webkit-transform: translateY(-1rem);
      -ms-transform: translateY(-1rem);
          transform: translateY(-1rem);
  font-size: 1.2rem;
  font-weight: 400;
}
#pop-up .pop-up-wrapper .registrator__form form .field label {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  color: #BBB;
}
#pop-up .pop-up-wrapper .registrator__form form .field label::before {
  position: absolute;
  content: attr(title);
  top: 0;
  right: -1rem;
  color: hsl(3, 82%, 58%);
}
#pop-up .pop-up-wrapper .registrator__form form .field input {
  width: 100%;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.4rem;
  height: 5.4rem;
  padding: 1rem;
  -webkit-transition: 300ms all;
  -o-transition: 300ms all;
  transition: 300ms all;
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.8rem;
  border: none;
}
#pop-up .pop-up-wrapper .registrator__form form .field input:focus {
  outline: 1px solid hsl(44, 97%, 53%);
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  height: 6rem;
}
#pop-up .pop-up-wrapper .registrator__form form .field input:valid {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  height: 6rem;
}
#pop-up .pop-up-wrapper .registrator__form form .field input:focus + label {
  color: hsl(0, 0%, 73%);
}
#pop-up .pop-up-wrapper .registrator__form form .btn__form {
  padding: 1rem;
  width: 14.3rem;
  height: 4.4rem;
  border-radius: 0.8rem;
  background-color: hsl(44, 97%, 53%);
  font-weight: 700;
  color: hsl(0, 0%, 0%);
}
#pop-up .pop-up-wrapper::before {
  position: absolute;
  content: "";
  height: 15.2rem;
  width: 15.2rem;
  border-radius: 50%;
  background-color: hsl(46, 90%, 62%);
  right: 0;
  bottom: 0;
}
#pop-up .pop-up-wrapper::after {
  position: absolute;
  content: "";
  height: 11.6rem;
  width: 11.6rem;
  border-radius: 50%;
  border: 0.1rem solid hsl(46, 90%, 62%);
  right: 55rem;
  top: 6rem;
}
#pop-up.active {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/*SCSS POP UP: END*/
/* FOOTER SCSS: START*/
footer {
  background-color: hsl(3, 82%, 58%);
  padding: 5rem 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13rem;
}
footer .footer__box {
  max-width: 43%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
footer .footer__box--map {
  width: 100%;
  height: 25rem;
  padding: 1.6rem;
  background-color: hsl(0, 0%, 100%);
  border-radius: 2.4rem;
}
footer .footer__box--map iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer__box span {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  color: hsl(0, 0%, 100%);
}
footer .footer__box--form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.6rem 0 1.8rem;
  gap: 1rem;
}
footer .footer__box--form input {
  width: 30rem;
  padding: 1rem;
  border-radius: 0.8rem 0rem 0rem 0.8rem;
  border: none;
  outline: none;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
footer .footer__box--form input::-webkit-outer-spin-button, footer .footer__box--form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
footer .footer__box--form input::-moz-placeholder {
  color: hsl(0, 0%, 73%);
}
footer .footer__box--form input::-webkit-input-placeholder {
  color: hsl(0, 0%, 73%);
}
footer .footer__box--form input:-ms-input-placeholder {
  color: hsl(0, 0%, 73%);
}
footer .footer__box--form input::-ms-input-placeholder {
  color: hsl(0, 0%, 73%);
}
footer .footer__box--form input::placeholder {
  color: hsl(0, 0%, 73%);
}
footer .footer__box--form button {
  padding: 1rem;
  width: 7.8rem;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0rem 0.8rem 0.8rem 0rem;
  background-color: hsl(44, 97%, 53%);
}
footer .footer__box--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.4rem;
}
footer .footer__box--info img {
  width: 3.2rem;
  height: 3.2rem;
}
footer .footer__box--info p {
  margin-left: 0.4rem;
  width: 60%;
  font-size: 1.6rem;
  line-height: 2rem;
  color: hsl(0, 0%, 100%);
}
footer .footer__box .pin {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer .footer__box--list {
  padding: 1rem 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9rem;
}
footer .footer__box--list li {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  color: hsl(0, 0%, 100%);
}
footer .footer__box--list li a {
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  line-height: 2rem;
}

/* FOOTER SCSS: END */
/* COPYRIGHT SCSS: START*/
.copyright {
  position: relative;
  width: 100%;
  height: 6rem;
  background-color: hsl(44, 97%, 53%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.copyright span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: hsl(0, 0%, 0%);
}
.copyright p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
}
.copyright .icon-social {
  position: absolute;
  right: 15rem;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.copyright .icon-social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 6rem;
  height: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: hsl(0, 0%, 100%);
}
.copyright .icon-social a svg {
  width: 3.7rem;
  height: 3.7rem;
}

/* COPYRIGHT SCSS: END*/
.footer__mobile {
  display: none;
}

@media screen and (max-width: 1440px) {
  .detail {
    max-width: 60.5rem;
    height: 8rem;
  }
  .detail h1 {
    font-size: 3.2rem;
  }
  section {
    padding: 5rem;
  }
  #pop-up .pop-up-wrapper::after {
    right: 38rem;
    top: 2rem;
  }
  footer {
    gap: 10rem;
    padding: 5rem 0;
  }
  footer .footer__box--info span {
    width: 8rem;
  }
  footer .footer__box--info p {
    width: 100%;
  }
}
@media screen and (max-width: 1368px) {
  html {
    font-size: 57.5%;
  }
  header {
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 55%;
  }
  header .header__logo {
    max-width: 12rem;
  }
  header .header__logo svg {
    top: -3rem;
  }
  header .header__menu {
    gap: 1rem;
  }
  header .header__menu .menu__list {
    gap: 1rem;
  }
  section {
    padding: 2rem 3rem;
  }
  #pop-up .pop-up-wrapper {
    max-width: 80%;
  }
  #pop-up .pop-up-wrapper::after {
    top: 2rem;
  }
  footer {
    gap: 5rem;
  }
  footer .footer__box {
    gap: 1rem;
  }
  footer .footer__box span {
    font-size: 1.4rem;
  }
  footer .footer__box--form {
    margin: 1rem 0;
  }
  footer .footer__box--form input {
    padding: 0.8rem;
  }
  footer .footer__box--form .btn {
    font-size: 1.4rem;
  }
  footer .footer__box--info p {
    font-size: 1.4rem;
  }
  footer .footer__box--info img {
    width: 2.5rem;
    height: 2.5rem;
  }
  footer .footer__box--info.hotline span {
    margin-right: 0.5rem;
  }
  footer .footer__box--list li {
    font-size: 1.4rem;
  }
  footer .footer__box--other {
    gap: 3rem;
  }
  footer .footer__box--other a {
    font-size: 1.4rem;
  }
  .copyright {
    height: 5rem;
  }
  .copyright p {
    font-size: 1.4rem;
  }
  .copyright .icon-social {
    right: 14rem;
  }
  .copyright .icon-social a {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 820px) {
  #pop-up .pop-up-wrapper {
    max-width: 90%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  #pop-up .pop-up-wrapper .registration__form {
    max-width: 50%;
    padding: 1rem 2rem;
  }
  .copyright .icon-social {
    right: 5rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 52.5%;
  }
  section {
    padding: 3rem 2rem;
  }
  header {
    height: 5rem;
    padding: 1.5rem 2rem;
  }
  header::before {
    content: "";
    background: rgba(0, 0, 0, 0.65);
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  header.active::before {
    right: 0;
  }
  header.active .header__menu {
    right: 0;
  }
  header .header__logo {
    max-width: 10rem;
    width: 100%;
  }
  header .header__logo svg {
    top: -4.5rem;
    z-index: -1;
    width: 85%;
  }
  header .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  header .header__toggle svg {
    height: 2rem;
  }
  header .header__menu {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    top: 0;
    right: -100%;
    padding: 1rem 0;
    height: 100vh;
    width: 90%;
    background-color: hsl(51, 96%, 89%);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  header .header__menu .close_menu {
    display: block;
  }
  header .header__menu .menu__list {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem;
  }
  header .header__menu .menu__list--item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header__menu .menu__list--item a {
    display: block;
    width: 100%;
    padding: 2rem;
    font-size: 2rem;
  }
  header .header__menu .menu__list--item a::after {
    display: none;
  }
  header .header__menu .menu__list--item a.active {
    background-color: hsl(50, 100%, 81%);
    border-left: 2px solid hsl(44, 97%, 53%);
  }
  header .header__menu .menu__list--item .drop__menu {
    position: relative;
  }
  header .header__menu .menu__list--item .drop__menu li {
    border-radius: unset;
  }
  header .header__menu .menu__list--item .drop__menu li a {
    margin-left: 2rem;
    font-size: 2rem;
    background-color: hsl(51, 96%, 89%);
    padding: 2rem;
  }
  header .header__menu .menu__list .drop__menu {
    position: relative;
    width: 100%;
  }
  header .header__menu .header__btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0rem 7.6rem 0rem 7.8rem;
  }
  header .header__menu .close__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    padding: 1rem 2rem;
  }
  header .header__menu .close__menu span {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: hsl(0, 0%, 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .header__menu .close__menu span svg {
    height: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .copyright {
    display: none !important;
  }
  #library .libraray__desktop {
    display: none !important;
  }
}
@media screen and (max-width: 600px) and (max-width: 450px) {
  html {
    font-size: 50%;
  }
  #pop-up .pop-up-wrapper {
    max-width: 90%;
    background-color: transparent;
  }
  #pop-up .pop-up-wrapper .registrator__form {
    max-width: 100%;
    padding: 2rem;
  }
  #pop-up .pop-up-wrapper .registrator__img {
    display: none;
  }
  #pop-up .pop-up-wrapper::after {
    right: 40rem;
  }
  #pop-up .pop-up-wrapper .close__btn {
    top: 0;
    right: 1.5rem;
    padding: unset;
    border-radius: 50%;
    background-color: hsl(0, 0%, 100%);
  }
  #pop-up .pop-up-wrapper .close__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  footer {
    width: 100%;
    margin-bottom: 6.5rem;
    padding: 1.6rem;
    gap: 3rem;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }
  footer .footer__box {
    max-width: 100%;
  }
  footer .footer__box--map {
    padding: 1.6rem;
    height: 30rem;
  }
  footer .footer__box span {
    font-size: 1.6rem;
  }
  footer .footer__box .footer__box--form {
    gap: 16px;
  }
  footer .footer__box .footer__box--form input {
    width: 40rem;
    font-size: 1.6rem;
    padding: 1.2rem 1rem;
  }
  footer .footer__box .footer__box--form button {
    font-size: 1.6rem;
    width: 9rem;
  }
  footer .footer__box .footer__box--info {
    gap: 1rem;
    padding-right: 5rem;
  }
  footer .footer__box .footer__box--info span {
    font-size: 1.6rem;
    font-weight: 600;
  }
  footer .footer__box .footer__box--info p {
    line-height: 3.3rem;
    font-weight: 400;
    font-size: 1.6rem;
  }
  footer .footer__box .pin span {
    line-height: 3.3rem;
  }
  footer .footer__box .email p {
    margin-left: 1rem;
  }
  .footer__mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 2rem;
    background-color: hsl(44, 97%, 53%);
    z-index: 10000;
  }
  .footer__mobile a {
    text-decoration: none;
    outline: unset;
  }
  .footer__mobile .icon__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  .footer__mobile .icon__link svg {
    width: 2.4rem;
    height: 2.4rem;
  }
  .footer__mobile .icon__link svg path {
    fill: hsl(0, 0%, 100%);
  }
  .footer__mobile .icon__link span {
    color: hsl(0, 0%, 100%);
    font-size: 1.6rem;
    font-weight: 600;
  }
  .footer__mobile .active svg path {
    fill: hsl(0, 0%, 0%);
  }
  .footer__mobile .active span {
    color: hsl(0, 0%, 0%);
  }
}
@media screen and (max-width: 450px) {
  html {
    font-size: 50%;
  }
  #pop-up .pop-up-wrapper {
    max-width: 90%;
    background-color: transparent;
  }
  #pop-up .pop-up-wrapper .registrator__form {
    max-width: 100%;
    padding: 2rem;
  }
  #pop-up .pop-up-wrapper .registrator__img {
    display: none;
  }
  #pop-up .pop-up-wrapper::after {
    right: 40rem;
  }
  #pop-up .pop-up-wrapper .close__btn {
    top: 0;
    right: 1.5rem;
    padding: unset;
    border-radius: 50%;
    background-color: hsl(0, 0%, 100%);
  }
  #pop-up .pop-up-wrapper .close__btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  footer {
    width: 100%;
    margin-bottom: 6.5rem;
    padding: 1.6rem;
    gap: 3rem;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }
  footer .footer__box {
    max-width: 100%;
  }
  footer .footer__box--map {
    padding: 1.6rem;
    height: 30rem;
  }
  footer .footer__box span {
    font-size: 1.6rem;
  }
  footer .footer__box .footer__box--form {
    gap: 16px;
  }
  footer .footer__box .footer__box--form input {
    width: 40rem;
    font-size: 1.6rem;
    padding: 1.2rem 1rem;
  }
  footer .footer__box .footer__box--form button {
    font-size: 1.6rem;
    width: 9rem;
  }
  footer .footer__box .footer__box--info {
    gap: 1rem;
    padding-right: 5rem;
  }
  footer .footer__box .footer__box--info span {
    font-size: 1.6rem;
    font-weight: 600;
  }
  footer .footer__box .footer__box--info p {
    line-height: 3.3rem;
    font-weight: 400;
    font-size: 1.6rem;
  }
  footer .footer__box .pin span {
    line-height: 3.3rem;
  }
  footer .footer__box .email p {
    margin-left: 1rem;
  }
  .footer__mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 2rem;
    background-color: hsl(44, 97%, 53%);
    z-index: 10000;
  }
  .footer__mobile a {
    text-decoration: none;
    outline: unset;
  }
  .footer__mobile .icon__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  .footer__mobile .icon__link svg {
    width: 2.4rem;
    height: 2.4rem;
  }
  .footer__mobile .icon__link svg path {
    fill: hsl(0, 0%, 100%);
  }
  .footer__mobile .icon__link span {
    color: hsl(0, 0%, 100%);
    font-size: 1.6rem;
    font-weight: 600;
  }
  .footer__mobile .active svg path {
    fill: hsl(0, 0%, 0%);
  }
  .footer__mobile .active span {
    color: hsl(0, 0%, 0%);
  }
}
@media screen and (max-width: 375px) {
  #pop-up .pop-up-wrapper {
    width: 90%;
  }
  #pop-up .pop-up-wrapper .registrator__img {
    display: none;
  }
  #pop-up .pop-up-wrapper::before {
    bottom: 0;
  }
  #pop-up .pop-up-wrapper::after {
    top: 0;
    left: 0.5rem;
  }
  #pop-up .pop-up-wrapper .close__btn {
    top: 0rem;
    height: 2.5rem;
    width: 2.5rem;
  }
  #pop-up .pop-up-wrapper .close__btn svg {
    height: 1.5rem;
    width: 1.5rem;
  }
}/*# sourceMappingURL=Global.css.map */