@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');

body {
  background-color:#f5f9ff;
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* GENERAL */
.ptb {
  display: grid;
  place-content: center;
  margin-bottom: 40px;
}
svg {
  width: calc(100px * 3);
  height: calc(100px * 3);

}

/* ELEMENTS POSITIONS */
#building_bottom,
#window_01,
#window_02,
#door {
  transform: translateY(20px);
  z-index: 1;
}

#building_top,
#balcony_01,
#balcony_02,
#balcony_03,
#balcony_04,
#balcony_05,
#balcony_06 {
  transform: translateY(56px);
  z-index: -1;
}

#small_tree,
#big_tree {
  transform: translateY(28px);
}

/* ELEMENTS ANIMATIONS */
#building_bottom {
  -webkit-animation: buildingBottom 1s ease-out forwards;
          animation: buildingBottom 1s ease-out forwards;
}

#window_01,
#window_02,
#door {
  -webkit-animation: buildingBottom 1s 0.1s ease-in forwards;
          animation: buildingBottom 1s 0.1s ease-in forwards;
}

#building_top {
  -webkit-animation: buildingTop 1s 1.2s ease-out forwards;
          animation: buildingTop 1s 1.2s ease-out forwards;
}

#balcony_01,
#balcony_02,
#balcony_03 {
  -webkit-animation: buildingTop 1s 1.4s ease-out forwards;
          animation: buildingTop 1s 1.4s ease-out forwards;
}

#balcony_04,
#balcony_05,
#balcony_06 {
  -webkit-animation: buildingTop 1s 1.6s ease-out forwards;
          animation: buildingTop 1s 1.6s ease-out forwards;
}

#small_tree,
#big_tree {
  -webkit-animation: trees 1s 2s ease-out forwards;
          animation: trees 1s 2s ease-out forwards;
}

#cloud_left {
  transform: translateX(-11px);
  -webkit-animation: cloudLeft 20s 2s linear infinite;
          animation: cloudLeft 20s 2s linear infinite;
}

#cloud_right {
  transform: translateX(72px);
  -webkit-animation: cloudRight 15s 2s linear infinite;
          animation: cloudRight 15s 2s linear infinite;
}

/* ANIMATIONS */
@-webkit-keyframes buildingBottom {
  0%    { transform: translateY(20px) }
  100%  { transform: translateY(0) }
}
@keyframes buildingBottom {
  0%    { transform: translateY(20px) }
  100%  { transform: translateY(0) }
}

@-webkit-keyframes buildingTop {
  0%    { transform: translateY(56px); }
  100%  { transform: translateY(0); }
}

@keyframes buildingTop {
  0%    { transform: translateY(56px); }
  100%  { transform: translateY(0); }
}

@-webkit-keyframes trees {
  0%    { transform: translateY(28px); }
  100%  { transform: translateY(0); }
}

@keyframes trees {
  0%    { transform: translateY(28px); }
  100%  { transform: translateY(0); }
}

@-webkit-keyframes cloudLeft {
    0%    { transform: translateX(-11px); }
  100%    { transform: translateX(100px); }
}

@keyframes cloudLeft {
    0%    { transform: translateX(-11px); }
  100%    { transform: translateX(100px); }
}

@-webkit-keyframes cloudRight {
    0%    { transform: translateX(72px); }
  100%    { transform: translateX(-100px); }
}

@keyframes cloudRight {
    0%    { transform: translateX(72px); }
  100%    { transform: translateX(-100px); }
}
/* GENERAL */
h1 {
  text-align: center;
  place-content: center;
  color: #04487d;
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: "Roboto Condensed", serif;
  font-weight: 900;
  font-size: 2rem;
    --shadow: 
    -.5rem -.5rem 1rem hsl(0 0% 100% / .75),
    .5rem .5rem 1rem hsl(0 0% 50% / .5);
  text-shadow: var(--shadow);
}
h2 {
  text-align: center;
  color: #04487d;
  margin-bottom: 20px;
  font-family: "Roboto Condensed", serif;
  font-weight: 500;
  font-size: 1.8rem;
    --shadow: 
    -.5rem -.5rem 1rem hsl(0 0% 100% / .75),
    .5rem .5rem 1rem hsl(0 0% 50% / .5);
  text-shadow: var(--shadow);
}
.box_1, .box_2, .box_3, .box_4, .box_5 {
  width: min(75rem, 84%);
  padding: 20px;
  border: 3px solid #097087;
  border-radius: 1rem;
  display: grid;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(min(38rem, 100%), 1fr));
    --shadow: 
    -.5rem -.5rem 1rem hsl(0 0% 100% / .75),
    .5rem .5rem 1rem hsl(0 0% 50% / .5);
  text-shadow: var(--shadow);
  background: #fcf8ed;
  --shadow: 
    -.5rem -.5rem 1rem hsl(0 0% 100% / .75),
    .5rem .5rem 1rem hsl(0 0% 50% / .5);
  box-shadow: var(--shadow);
}
button.neumorphic {
  container-type: inline-size;
  aspect-ratio: 1/1;
  border: 7px solid #04487d;
  border-radius: 1rem;
  color: #1976bd;
  background: #f7efc3;
  display: grid;
  place-content: center;
  gap: 1rem;
  font-family: "Roboto Condensed", serif;
  font-weight: 400;
  --shadow: 
    -.5rem -.5rem 1rem hsl(0 0% 100% / .75),
    .5rem .5rem 1rem hsl(0 0% 50% / .5);
  box-shadow: var(--shadow);
  outline: none;  
  transition: all 0.1s;
  
  &:hover, &:focus-visible {
    color: #a62919;
    scale: 1.1
  }
  &:active {
    box-shadow:
      var(--shadow),
      inset .5rem .5rem 1rem hsl(0 0% 50% / .5),
      inset -.5rem -.5rem 1rem hsl(0 0% 100% / .75);
    color: hsl(10 80% 50%);
    > i { font-size: 28cqi};
    > span { font-size: 13cqi};
  }

  >i {
    font-size: 31cqi;
  }
  > span {
  
    font-size: 10cqi;
  }
}
.buttons { 
  display: grid;
  width: min(75rem, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 30%), 3fr));
  gap: 2rem;
}
.vartist,
.termin {
  text-align: center;
  text-decoration: none;
  color: #183418;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  place-content: center;
}
.button_1,
.button_2,
.tel_Viber,
.tel_tg,
.tel_wta,
.button_17 {
  display: block;
  background: #fff;
  border: 4px solid #12a16a;
  border-radius: 50px;
  width: 240px;
  height: 40px;
  margin-inline: auto;
  margin-top: 10px;
  margin-bottom: 40px;
  place-content: center;
  text-align: center;
  text-decoration: none;
  color: #183418;
  font-style: normal;
  font-size: 21px;
  box-shadow: 0px 28px 29px -19px rgba(0, 0, 0, 1);
  background-image: -webkit-linear-gradient(top, #fff, #f4fcf3);
  background-image: linear-gradient(top, #fff, #f4f1ee);
}

.button_1:hover {
  background-image: -webkit-linear-gradient(top, #fff, #e2e2e2);
  background-image: linear-gradient(top, #fff, #f4f1ee);
}
.button_2:hover {
  background-image: -webkit-linear-gradient(top, #fff, #e2e2e2);
  background-image: linear-gradient(top, #fff, #f4f1ee);
}
.price {
  background: #fff;
  border: 4px solid #5b8f0d;
  border-radius: 12px;
  width: 170px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: center;#111c00
  text-decoration: none;
  color: #183418;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  place-content: center;
  display: block;
  box-shadow: 0px 28px 29px -19px rgba(0, 0, 0, 1);
  background-image: -webkit-linear-gradient(top, #fff, #f4fcf3);
  background-image: linear-gradient(top, #fff, #f4f1ee);
}

.price1 {
  background: #fff;
  border: 4px solid #5b8f0d;
  border-radius: 12px;
  width: 150px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: center;
  text-decoration: none;
  color: #183418;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  place-content: center;
  display: block;
  box-shadow: 0px 28px 29px -19px rgba(0, 0, 0, 1);
  background-image: -webkit-linear-gradient(top, #fff, #f4fcf3);
  background-image: linear-gradient(top, #fff, #f4f1ee);
}
p {
  color: #111c00;
  font-style: normal;
  font-weight: normal;
  font-size: 26px;
  place-content: center;
  display: block;
   text-indent: 1em;
}
.qrcodetel-mecard {
  border: 4px solid #12a16a;
  border-radius: 50px;
  margin-left: 50%;
  margin-top: 170px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  padding-right: 2px;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 10px;
   box-shadow: 0px 28px 29px -19px rgba(0, 0, 0, 1)
}
svg {
  width: 100%;
  height: 100%;
}