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

svg {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  display: block;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

::-moz-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

textarea {
  display: block;
}

input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
}

ul,
ol {
  list-style-type: none;
}

picture,
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1.5px solid #333333;
  outline-offset: 0px;
}

html,
body {
  overflow-x: clip;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media (prefers-reduced-motion) {
  html {
    scroll-behavior: none;
  }
}

body {
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
  font-weight: 400;
  font-style: normal;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(0.9rem, 2.0833333333vw, 1rem);
  line-height: 1.4375;
  letter-spacing: 0;
  color: #333232;
  background-color: #fff;
  min-height: 100vh;
}
@supports (min-height: 100svh) {
  body {
    min-height: 100svh;
  }
}

.max-width {
  max-width: 67.25rem;
  width: 100%;
  padding-left: clamp(1rem, 2.6041666667vw, 1.25rem);
  padding-right: clamp(1rem, 2.6041666667vw, 1.25rem);
  margin: 0 auto;
  height: 100%;
}

.text-large {
  font-size: 1.25rem;
}

.text-small {
  font-size: 0.75rem;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-regular {
  font-weight: 400;
}

.text-dark-red {
  color: #8e2525;
}

.text-green {
  color: #35753b;
}

.text-red {
  color: #db1600;
}

.text-blue {
  color: #0000ff;
}

.text-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.link {
  display: inline-block;
  color: #0000ff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 3.125vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity 200ms ease-in-out;
}
.link:hover {
  opacity: 1;
}

.header__logo {
  background-color: #fff;
  padding-block: 1.375rem;
  display: grid;
  place-items: center;
}

.logo {
  position: relative;
}
.logo .font-1 {
  font-family: "Special Elite", cursive;
  font-size: clamp(2rem, 5.2083333333vw, 2.625rem);
  line-height: 1;
}
.logo .font-2 {
  margin: -0.5rem -0.5rem 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Anton", sans-serif;
  border: 2px solid #8e2525;
  border-radius: 1px;
  padding: 0.125rem 0.5rem;
  letter-spacing: 1.5px;
  font-size: 1.125rem;
  color: #8e2525;
  transform-origin: center;
  transform: rotate(-3.5deg);
}

.header__nav {
  background-color: #61574a;
  color: #fff;
  padding: 0.375rem 0;
  text-transform: uppercase;
}

.nav {
  display: none;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 62rem) {
  .nav {
    display: grid;
  }
}

.nav__link {
  padding: 0.3125rem 0;
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.3;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}
.nav__link:hover {
  opacity: 1;
}
.nav__link:not(:last-child) {
  border-right: 1px solid #c3b091;
}

.container {
  position: relative;
}

.container__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/BG.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.2;
}

.footer {
  max-width: 939px;
  text-align: center;
  color: #000;
  font-size: 0.75rem;
  padding-block: clamp(2rem, 5.2083333333vw, 2.5rem) clamp(3rem, 7.8125vw, 4.3125rem);
}
.footer__links {
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}
.footer__links a {
  line-height: 1.05;
  text-decoration: underline;
  padding: 0 0.6rem;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}
.footer__links a:hover {
  opacity: 1;
}
@media (min-width: 48rem) {
  .footer__links a:not(:last-child) {
    border-right: 2px solid #000;
  }
}

.main {
  background-color: #fff;
  padding-block: clamp(2rem, 5.2083333333vw, 2.5rem);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1607843137);
}
@media (min-width: 62.5rem) {
  .main {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 2.25rem;
  }
}

.aside {
  width: 310px;
  min-width: 310px;
  display: none;
}
@media (min-width: 62.5rem) {
  .aside {
    display: block;
  }
}

.aside-navbar h3 {
  text-align: center;
  font: normal normal normal 25px/37px "Anton", sans-serif;
  color: #000;
  letter-spacing: 0.5px;
  margin-bottom: clamp(1.5rem, 3.90625vw, 1.875rem);
}
.aside-navbar nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.aside-navbar nav a {
  color: #000000;
  font: normal normal normal 16px/24px "Roboto Mono", monospace;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}
.aside-navbar nav a img {
  width: 68px;
  height: 68px;
}
.aside-navbar nav a:hover {
  opacity: 1;
}

.banner {
  margin-top: 0.75rem;
  margin-bottom: clamp(1.5rem, 3.90625vw, 1.875rem);
  background-image: url("../img/LUS_2004_BANER.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  width: 100%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1882352941);
  border: 1px solid #aeaeae;
  font-family: "Poppins", sans-serif;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.banner .text {
  color: #393939;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
}
.banner .text span:last-child {
  font-size: 1.25rem;
}
.banner .badge {
  background-color: #34b491;
  color: #fff;
  border-radius: 100vmax;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.25rem auto 0;
  padding: 0.25rem 1.5rem;
}
.banner .btn {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #db1600;
  color: #fff;
  border-radius: 100vmax;
  border: 1px solid #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  gap: 0.75rem;
  transition: background-color 300ms ease;
}
.banner .btn:hover {
  background-color: #8e2525;
}
.banner .btn img {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
}

.figure {
  max-width: 684px;
  margin-inline: auto;
}
.figure img {
  width: 100%;
  height: auto;
}
.figure figcaption {
  text-align: center;
  background-color: #cec4b5;
  text-align: center;
  padding: 0.625rem;
  font-size: 14px;
  font-weight: 500;
}

.h2 {
  color: #8e2525;
  font: normal normal normal 26px/52px "Anton", sans-serif;
}

.section-1 h1 {
  font: normal normal normal 40px/52px "Anton", sans-serif;
  margin-bottom: 1.25rem;
}
.section-1 p:not(.text-large) {
  margin-top: 1.25rem;
}
.section-1 p.text-large {
  font-family: "Oswald", sans-serif;
  margin: clamp(1.5rem, 3.90625vw, 1.875rem) 0;
}
.section-1 p.text-large + p {
  margin-top: 0;
}
.section-1 .letter {
  margin-top: 1.25rem;
  background: url("../img/letter-bg.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 1.25rem 0.625rem 1.25rem 2.5rem;
}
.section-1 .letter p:first-child {
  margin-top: 0;
}

.section-2 {
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}
.section-2 p {
  margin-top: 1.25rem;
}
.section-2 .figure {
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}

.section-3 {
  margin-top: 1.25rem;
}
.section-3 p {
  margin-top: 1.25rem;
}

.section-4 {
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}
.section-4 > p {
  margin-top: 1.25rem;
}
.section-4 p + .testimonial {
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}

.testimonial {
  margin-top: 1.25rem;
  font-family: "Poppins", sans-serif;
  border: 1px solid #cec4b5;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 1.25rem;
}
.testimonial h3 {
  margin: 1.25rem 0 0.625rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6041666667vw, 1.5rem);
}
.testimonial > p {
  line-height: 1.625;
}

.testimonial__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 0.625rem;
}
@media (min-width: 500px) {
  .testimonial__header {
    flex-direction: row;
    align-items: center;
  }
}
.testimonial__header > img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
}
.testimonial__header p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: 700;
}
.testimonial__header p img {
  width: 130px;
  height: 22px;
}

.testimonial__header img {
  width: 68px;
  height: 68px;
}

.section-5 {
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}
.section-5 ul {
  margin-top: 1.25rem;
  font: normal normal normal 16px/24px "Special Elite", cursive;
  color: #35753b;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-5 .link {
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}

.quote {
  position: relative;
  margin: calc(clamp(1.5rem, 3.90625vw, 1.875rem) * 2.25) 0 clamp(1.5rem, 3.90625vw, 1.875rem);
  background-image: url("../img/erik_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10px;
  outline: 2px solid #8e2525;
  outline-offset: -10px;
}
@media (min-width: 600px) {
  .quote {
    outline: none;
  }
}
.quote img {
  display: block;
  margin: 0 auto;
  width: 203px;
  height: auto;
  transform: translateY(10px);
}
@media (min-width: 600px) {
  .quote img {
    display: block;
    position: absolute;
    bottom: -9px;
    right: -10px;
    transform: translateY(0);
  }
}
.quote div {
  width: 100%;
  padding: 1rem;
}
@media (min-width: 600px) {
  .quote div {
    width: calc(100% - 103px);
    border: 2px solid #8e2525;
  }
}
.quote div p {
  font: normal normal normal 16px/24px "Special Elite", cursive;
  font-weight: 600;
  padding-right: 0px;
}
@media (min-width: 600px) {
  .quote div p {
    padding-right: 70px;
  }
}

.comments {
  background-color: #fff;
  margin-top: 2.5rem;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1607843137);
  padding-block: 2.5rem;
}
.comments h2 {
  font: normal normal normal 26px/52px "Anton", sans-serif;
  margin-bottom: 1.25rem;
}
.comments .link {
  margin-top: 2.5rem;
}

.comments__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comment {
  padding: 0.625rem 0;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.comment .text-large {
  margin-bottom: 0.625rem;
  line-height: 1.2;
}
.comment:not(:last-child) {
  border-bottom: 2px solid #cec4b5;
}
.comment img {
  width: 79px;
  height: 79px;
  min-width: 79px;
  min-height: 79px;
}

.summary {
  background-color: #fff;
  padding-block: 2.5rem;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1607843137);
}

.summary__content {
  max-width: 684px;
  margin-inline: auto;
  text-align: center;
}
.summary__content h1 {
  font: normal normal normal 42px/52px "Anton", sans-serif;
}
.summary__content .text-large {
  font: normal normal bold 20px/30px "Oswald", sans-serif;
  margin-top: clamp(1.5rem, 3.90625vw, 1.875rem);
}
.summary__content p:not(.text-large) {
  margin-top: 1.25rem;
}

.btn-phone,
.phone-link {
  width: 100%;
  max-width: 660px;
  margin: 1.25rem auto 0;
  min-height: 68px;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  border: 3px solid #4d0d0d;
}
.btn-phone.hidden,
.phone-link.hidden {
  display: none;
}

.btn-phone {
  font: normal normal bold 36px/45px "Oswald", sans-serif;
  background-color: #8e2525;
  color: #fff;
  transition: background-color 300ms ease-out;
}
.btn-phone:hover {
  background-color: #4d0d0d;
}

.phone-link {
  color: #35753b;
  font: normal normal bold 36px/53px "Oswald", sans-serif;
}
@media (min-width: 600px) {
  .phone-link {
    font: normal normal bold 50px/52px "Oswald", sans-serif;
  }
}/*# sourceMappingURL=styles.css.map */