@charset "UTF-8";
/*Шрифты*/
/* font-family: 'Poppins', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  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: inherit;
}

/*========================= defoult ================================*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #e67e22;
  border-radius: 5rem;
}

body {
  height: 100%;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}

body._lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2.8rem;
  border-radius: 5rem;
  border-top-left-radius: 0;
  cursor: pointer;
  background: none;
  color: #130f40;
  font-size: 1.7rem;
  overflow: hidden;
  z-index: 0;
  position: relative;
  border: 0.2rem solid #130f40;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #130f40;
  z-index: -1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-clip-path: circle(0% at 0% 5%);
          clip-path: circle(0% at 0% 5%);
}

.btn:hover::before {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
}

.btn:hover {
  color: #fff;
}

section {
  padding: 5rem 10%;
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    opacity: 0;
  }
}

@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
    opacity: 0;
  }
}

.heading {
  padding-bottom: 2rem;
  text-align: center;
  font-size: 3.5rem;
  color: #130f40;
  font-weight: bold;
}

.heading span {
  color: #e67e22;
}

::-moz-selection {
  background: #e67e22;
  color: #fff;
}

::selection {
  background: #e67e22;
  color: #fff;
}

/* ======================== Header =============================== */
.header {
  background: #fff;
  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: 2rem 9%;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  -webkit-transform: translateY(-10rem);
          transform: translateY(-10rem);
}

.header.active {
  -webkit-transform: translateY(0rem);
          transform: translateY(0rem);
}

.logo a {
  font-size: 2.5rem;
  color: #130f40;
  font-weight: bolder;
}

.logo i {
  color: #e67e22;
}

.header__menu {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.header__menu:hover {
  color: #e67e22;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1rem;
  font-size: 1.7rem;
  color: #666;
}

.menu__item {
  margin: 0 1rem;
  font-size: 1.7rem;
}

.menu__item a {
  color: #666;
}

.menu__item a:hover {
  color: #e67e22;
}

.header__icons a,
.header__icons div {
  font-size: 2.5rem;
  margin-left: 1.5rem;
  color: #130f40;
  cursor: pointer;
}

.header__icons a:hover,
.header__icons div:hover {
  color: #e67e22;
}

.burger {
  display: none;
}

.login-form {
  position: absolute;
  top: 115%;
  right: 2rem;
  width: 35rem;
  border-radius: 1rem;
  background: #fff;
  -webkit-box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: none;
}

.login-form.active {
  display: block;
  -webkit-animation: fadeIn 0.4s linear;
          animation: fadeIn 0.4s linear;
}

.login-form h3 {
  color: #130f40;
  font-size: 2.5rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
}

.login-form__box {
  width: 100%;
  border-bottom: 0.2rem solid #130f40;
  border-width: 0.1rem;
  padding: 1.5rem 0;
  font-size: 1.6rem;
  color: #130f40;
  text-transform: none;
  margin: 1rem 0;
}

.login-form__remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.login-form__remember label {
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.login-form__btn {
  width: 100%;
  text-align: center;
  margin: 1.5rem;
}

.login-form__btn:hover {
  background: #130f40;
}

.login-form__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}

.login-form__links a {
  font-size: 1.4rem;
  color: #130f40;
  color: #e67e22;
}

.login-form__links a:hover {
  color: #130f40;
  text-decoration: underline;
}

/* ======================== Main =============================== */
.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/* ======================== Home =============================== */
.home {
  min-height: 100vh;
  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;
  background: url("../image/home_bg_img.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.home__content {
  width: 50rem;
}

.home__content h3 {
  font-size: 6rem;
  color: #fff;
  padding-bottom: 1rem;
  font-weight: bold;
}

.home__content h3 span {
  color: #e67e22;
}

.home__btn {
  color: #fff;
  border-color: #fff;
}

.home__btn:hover {
  color: #130f40;
}

.home__btn::before {
  background: #fff;
}

.main__image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12rem;
}

/* ======================== about =============================== */
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.about__image img {
  width: 100%;
}

.about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.about__content h3 {
  color: #130f40;
  font-size: 4rem;
  font-weight: bold;
}

.about__content h3 span {
  color: #e67e22;
}

.about__content p {
  font-size: 1.6rem;
  color: #666;
  padding: 1rem 0;
  line-height: 2;
}

.food {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.food__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.food__image img {
  width: 100%;
}

.food__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
  text-align: center;
  padding: 2rem;
}

.food__content h3 {
  color: #130f40;
  font-size: 3.5rem;
  font-weight: bold;
}

.food__content h3 span {
  color: #e67e22;
}

.food__content p {
  font-size: 1.6rem;
  color: #666;
  padding: 1rem 0;
  line-height: 2;
}

.food__amount {
  color: #130f40;
  font-size: 2.5rem;
  padding: 0.5rem 0;
}

.amount__image {
  height: 15rem;
  margin-top: 1rem;
}

.amount__image:hover {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

/* ======================== shop =============================== */
.shop__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(36rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(36rem, 1fr));
  gap: 3rem;
}

.shop__card {
  position: relative;
  overflow: hidden;
}

.shop__card:hover .shop__icons {
  -webkit-transform: translateX(0rem);
          transform: translateX(0rem);
}

.shop__icons {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 10;
  text-align: center;
  -webkit-transform: translateX(10rem);
          transform: translateX(10rem);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.shop__icons a {
  display: block;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  font-size: 2.2rem;
  margin-top: 1rem;
  background: #fff;
  color: #130f40;
  border-radius: 1rem;
}

.shop__icons a:hover {
  color: #fff;
  background: #e67e22;
  -webkit-transform: translateX(0rem);
          transform: translateX(0rem);
}

.shop__image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.shop__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.shop__content {
  padding: 1rem 0;
  text-align: center;
}

.shop__content h3 {
  font-size: 2.2rem;
  color: #130f40;
  padding-bottom: 0.5rem;
}

.shop__amount {
  font-size: 2rem;
  color: #e67e22;
}

/* ======================== services =============================== */
.services__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(36rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(36rem, 1fr));
  gap: 3rem;
}

.services__card {
  background: #eee;
  padding: 3rem;
  text-align: center;
  border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
}

.services__card:nth-child(even) {
  border-radius: 79% 21% 81% 19% / 58% 93% 7% 42%;
}

.services__card:hover {
  border-radius: 1rem;
}

.services__card i {
  height: 6.5rem;
  width: 6.5rem;
  line-height: 6.5rem;
  font-size: 3rem;
  color: #fff;
  background: #e67e22;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.services__card h3 {
  font-size: 2.2rem;
  color: #130f40;
  padding: 1rem 0;
  font-weight: bold;
}

/* ======================== plan =============================== */
.plan__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.plan__item {
  position: relative;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  background: #eee;
}

.plan__btn {
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  background: #fff;
}

.plan__title {
  text-align: center;
  color: #e67e22;
  font-size: 2rem;
  font-weight: bold;
}

.plan__day {
  text-align: center;
  color: #130f40;
  font-size: 3.5rem;
  font-weight: bold;
}

.plan__icon {
  text-align: center;
  color: #e67e22;
  font-size: 5rem;
  padding: 2rem 0;
}

.plan__list {
  margin: 1rem 0;
}

.plan__list p {
  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;
  font-size: 1.4rem;
  color: #666;
  padding: 1rem;
}

.plan__list span {
  color: #e67e22;
}

.plan__amount {
  color: #130f40;
  font-size: 3.5rem;
  font-weight: bold;
}

.plan__amount span {
  font-size: 3rem;
}

/* ======================== contact =============================== */
.contact {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}

.contact__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
}

.contact__image img {
  width: 100%;
}

.contact__box,
textarea {
  width: 100%;
  border-width: 0.1rem;
  font-size: 1.6rem;
  text-transform: none;
  color: #130f40;
  padding: 1rem 0;
  margin: 1rem 0;
  background: #eee;
  border-radius: 0.5rem;
}

.contact__form {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40rem;
          flex: 1 1 40rem;
  padding: 2rem 7%;
}

.contact__form h3 {
  font-size: 3rem;
  padding-bottom: 1rem;
  color: #130f40;
}

.contact__btn {
  width: 100%;
  text-align: center;
}

.contact__btn:hover {
  background: #130f40;
}

textarea {
  height: 15rem;
  resize: none;
}

/* ======================== Footer =============================== */
.footer {
  position: relative;
  background: url("../image/footer_background.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 10rem;
  padding-bottom: 2rem;
}

.footer img {
  position: absolute;
  top: -0.1rem;
  left: 0;
  height: 10rem;
  width: 100%;
}

.footer__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__share a {
  color: #fff;
  border-color: #fff;
}

.footer__share a:hover {
  color: #130f40;
}

.footer__share a::before {
  background: #fff;
}

.footer__share i {
  padding-right: 0.5rem;
}

.footer__credit {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  padding: 1rem 1rem;
  margin-top: 1rem;
}

.footer__credit span {
  color: #e67e22;
}

/* ======================== media queries =============================== */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 2rem;
  }
  section {
    padding: 5rem 2rem;
  }
  .home {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-position: right;
  }
  .home__content {
    text-align: center;
    padding-bottom: 5rem;
  }
  .home__content h3 {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .burger {
    display: inline-block;
  }
  .header__menu {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header__menu.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu__item {
    margin: 2rem;
    font-size: 2rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .login-form {
    width: 90%;
  }
}
