/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

.none {
  display: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

body {
  font-family: "Advent Pro", sans-serif;
}

.page {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: rgb(20, 16, 36);
  font-family: "Advent Pro", sans-serif;
  background: linear-gradient(to right, rgb(213, 211, 184), rgb(41, 29, 11));
}

.conteiner {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1160px;
}

.element-animation {
  transform: translateY(20px);
  opacity: 0;
}

.element-animation.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateY(0%);
}

.element-animation-left {
  transform: translateX(-50px);
  opacity: 0;
}

.element-animation-left.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateX(0%);
}

.element-animation-right {
  transform: translateX(50px);
  opacity: 0;
}

.element-animation-right.element-show {
  opacity: 1;
  transition: all 1.5s;
  transform: translateY(0%);
}

.conteiner_menu {
  margin: 0 auto;
  padding: 0 60px;
  max-width: 1080px;
}

.header__top {
  width: 100%;
}

.menu {
  margin-top: 87px;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu__left {
  flex-direction: column;
  align-items: end;
  gap: 13px;
}
.menu__left a {
  position: relative;
}
.menu__left a:before {
  content: "";
  position: absolute;
  transition: transform 0.5s;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgb(251, 247, 186);
  transform: scaleX(0);
}
.menu__left a:hover:before {
  transform: scaleX(1);
}
.menu__left a {
  font-size: calc(14px + 16 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(255, 255, 255);
}
.menu__left a:hover {
  color: rgb(251, 247, 186);
}

.menu__right {
  flex-direction: column;
  gap: 13px;
}
.menu__right a {
  position: relative;
}
.menu__right a:before {
  content: "";
  position: absolute;
  transition: transform 0.5s;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgb(251, 247, 186);
  transform: scaleX(0);
}
.menu__right a:hover:before {
  transform: scaleX(1);
}
.menu__right a {
  font-size: calc(14px + 16 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(255, 255, 255);
}
.menu__right a:hover {
  color: rgb(251, 247, 186);
}

.swipers {
  position: relative;
  z-index: 0;
  margin-top: 5px;
}

.logo img {
  position: absolute;
  z-index: 1;
  top: 1px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 420px;
  height: 315px;
}

.content {
  position: absolute;
  z-index: 1;
  top: 420px;
  width: 100%;
  height: 200px;
  background-color: rgba(148, 139, 139, 0.59);
  padding: 60px 3%;
}
.content h1 {
  text-align: center;
  font-family: "Amatic SC", sans-serif;
  font-size: calc(20px + 75 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1;
  color: rgb(251, 247, 186);
}

.text {
  width: 100%;
  height: 80px;
}

.header_btn {
  padding: 17px;
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  border-radius: 5px;
  border: 2px solid black;
  font-size: calc(14px + 21 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1.3;
  color: rgb(255, 253, 253);
  top: 660px;
  right: 138px;
  background-color: rgb(60, 44, 21);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.header_btn:hover {
  text-shadow: 1px 1px 0 white, 2px 2px 0 rgb(253.7945205479, 252.5890410959, 234.2054794521), 3px 3px 0 rgb(252.397260274, 249.7945205479, 210.102739726);
  transform: translate(-3px, -3px);
}

.header_btn:hover {
  border: 3px solid rgb(251, 247, 186);
}

@media (max-width: 1600px) {
  .logo img {
    top: -5px;
  }
  .content {
    top: 320px;
  }
  .header_btn {
    top: 560px;
  }
}
@media (max-width: 1250px) {
  .content {
    top: 280px;
    height: 150px;
    padding: 40px 3%;
  }
  .header_btn {
    top: 460px;
  }
}
@media (max-width: 1000px) {
  .content {
    top: 250px;
    height: 130px;
    padding: 10px 3%;
  }
  .header_btn {
    top: 400px;
  }
}
@media (max-width: 800px) {
  .content {
    top: 200px;
    height: 130px;
    padding: 10px 3%;
  }
  .header_btn {
    top: 350px;
  }
  .logo img {
    top: 1px;
    width: 320px;
    height: auto;
  }
}
@media (max-width: 700px) {
  .content {
    top: 180px;
    height: 100px;
    padding: 10px 3%;
  }
  .header_btn {
    top: 300px;
  }
  .logo img {
    top: 20px;
    width: 300px;
    height: auto;
  }
}
@media (max-width: 660px) {
  .logo img {
    top: 20px;
    width: 250px;
    height: auto;
  }
  .menu {
    margin-top: 50px;
  }
  .content {
    top: 150px;
    height: 90px;
    padding: 10px 3%;
  }
  .header_btn {
    top: 280px;
    text-transform: none;
    padding: 5px;
    right: 50px;
  }
}
@media (max-width: 600px) {
  .logo img {
    top: 20px;
    width: 170px;
  }
  .menu {
    margin-top: 17px;
  }
  .content {
    top: 130px;
    height: 90px;
    padding: 10px 3%;
  }
  .header_btn {
    top: 230px;
    right: 50px;
  }
}
@media (max-width: 500px) {
  .logo img {
    top: 5px;
    width: 140px;
  }
  .menu {
    margin-top: 68px;
  }
  .content {
    top: 150px;
    height: 60px;
  }
  .header_btn {
    top: 220px;
    right: 40px;
  }
}
.conteiner__about {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1420px;
}

.about__block {
  display: grid;
  grid-template-columns: repeat(auto-fill, 260px);
  justify-content: center;
  gap: 80px;
}

.about {
  margin-bottom: 60px;
}
.about h2 {
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: center;
  font-size: calc(18px + 32 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: rgb(251, 247, 186);
}

.block {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  width: 260px;
  height: 380px;
  background-color: #fff;
}

.card__btn {
  padding-top: 10px;
  display: flex;
  justify-content: center;
}

.button-detailed {
  padding: 2px 20px 2px 20px;
  border-radius: 4px;
  transform: scale(1);
  box-shadow: 0 0 5px 5px rgba(34, 60, 80, 0.2);
  transition: box-shadow 0.5s, transform 0.5s;
}

.button-detailed:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px 7px rgba(34, 60, 80, 0.2);
  transition: box-shadow 0.5s, transform 0.5s;
}

.card {
  position: relative;
}

.logo-card {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 90px;
  height: 70px;
}

@media (max-width: 500px) {
  .about__block {
    gap: 40px;
  }
  .about h2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.conteiner_footer {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1820px;
}

.conteiner_footer-menu {
  margin: 0 auto;
  padding: 0 200px;
  max-width: 1400px;
}

.footer {
  margin-top: 50px;
  margin-bottom: 250px;
}

.footer__img {
  position: relative;
  height: 400px;
}

.footer__menu {
  margin-top: -200px;
  justify-content: space-between;
}

.footer__menu-left {
  flex-direction: column;
  align-items: end;
  gap: 13px;
}
.footer__menu-left a {
  position: relative;
}
.footer__menu-left a:before {
  content: "";
  position: absolute;
  transition: transform 0.5s;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgb(251, 247, 186);
  transform: scaleX(0);
}
.footer__menu-left a:hover:before {
  transform: scaleX(1);
}
.footer__menu-left a {
  font-size: calc(14px + 16 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: black;
}
.footer__menu-left a:hover {
  color: rgb(251, 247, 186);
}

.footer__menu-right {
  flex-direction: column;
  gap: 13px;
}
.footer__menu-right a {
  position: relative;
}
.footer__menu-right a:before {
  content: "";
  position: absolute;
  transition: transform 0.5s;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgb(251, 247, 186);
  transform: scaleX(0);
}
.footer__menu-right a:hover:before {
  transform: scaleX(1);
}
.footer__menu-right a {
  font-size: calc(14px + 16 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1;
  color: black;
}
.footer__menu-right a:hover {
  color: rgb(251, 247, 186);
}

@media (max-width: 320px) {
  .footer__img {
    position: relative;
    height: 200px;
  }
  .footer__menu {
    margin-top: -100px;
    justify-content: space-between;
  }
}
@media (max-width: 1000px) {
  .footer__img {
    height: 300px;
  }
  .footer__menu {
    margin-top: -150px;
    padding-left: 150px;
    padding-right: 150px;
  }
}
@media (max-width: 800px) {
  .footer__img {
    height: 200px;
  }
  .footer__menu {
    margin-top: -105px;
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 500px) {
  .footer__menu {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 400px) {
  .footer__menu {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*# sourceMappingURL=index.css.map */
