@font-face {
  font-family: 'Jura';
  src: url('fonts/JuraRegular.eot'), url('fonts/JuraRegular.ttf') format('truetype'), url('fonts/JuraRegular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html,
body {
  height: 100%;
}

body {
  width: 100%;
  background-image: url(../images/fon.svg);
  background-size: cover;
  background-position: center center;
  min-height: 100%;

  font-family: 'Jura';
  font-style: normal;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;
  justify-content: space-between;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tablet {
  position: absolute;
  width: 100%;
  height: 96%;
  object-fit: contain;

  z-index: 1;
}

.logo {
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}

.logo img {
  /* width: clamp(20.8125rem, 19.2875rem + 7.625vw, 28.4375rem);
  height: clamp(5.3125rem, 4.925rem + 1.9375vw, 7.25rem); */
  max-width: 100%;
  width: clamp(17.1875rem, 14.7727rem + 12.0739vw, 43.75rem);
}

.buttons {
  width: 100%;
  display: inline-flex;
  gap: 50px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 101;
}

.button {
  position: relative;
  width: 248px;
  height: 63px;
  width: clamp(15.5rem, -0.25rem + 13.125vw, 31.25rem);
  height: clamp(3.9375rem, -0.875rem + 4.0104vw, 8.75rem);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1000;

  font-size: 19px;
  font-size: clamp(1.1875rem, -0.75rem + 1.6146vw, 3.125rem);
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  color: #FFFFFF;

  transition: all 0.3s ease 0s;
}

.button:hover {
  transform: scale(1.05);
  filter: brightness(130%);
}

.button__bot {
  background: linear-gradient(180deg, #C90000 0%, #A70000 100%);
}

.button__mail {
  background: linear-gradient(180deg, #3787FF 0%, #002FA7 100%);
}

.button__contacts {
  background: linear-gradient(180deg, #37FF6F 0%, #00A757 100%);
}

.button__chat {
  background: linear-gradient(180deg, #A737FF 0%, #2B00A7 100%);
}

.apteka {
  margin: 0 auto;
}

.apteka img {
  max-width: 100%;
}

.button__img {
  background-size: cover;
  width: 50%;
}

.button__img_bot {
  width: 42px;
  height: 42px;
  background-image: url(../images/bot.svg);
}

.button__img_mail {
  width: 42px;
  height: 31.73px;
  background-image: url(../images/mail.svg);
}

.button__img_contacts {
  width: 38px;
  height: 38px;
  background-image: url(../images/contacts.svg);
}

.button__img_chat {
  width: 42px;
  height: 32.12px;
  background-image: url(../images/chat.svg);
}

/* @media (max-width: 1023.99px) {
  .wrapper {
    justify-content: space-between;
  } */

@media (max-width: 768px) {
  .button {
    width: 286.9px;
    height: 72.88px;
  }
}

@media (min-width: 1920px) {}

@media (min-width: 3048px) and (max-width: 3840px) {

  .apteka img {
    width: 2000px;
  }
}

@media (min-width: 2048px) {
  .wrapper {
    padding-top: 120px;
  }

  .page {
    gap: 140px;
  }


  .tablet {
    height: 90%;
  }
}