* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
*:focus-visible {
  outline: 0.8em solid rgba(52, 251, 62, 0.5);
}

html {
  font-family: Arial, Helvetica, sans-serif;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wrapper {
  overflow: clip;
  position: relative;
}

.row {
  zoom: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row:before,
.row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

/***** REUSABLE *****/
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: max-content;
  background-color: transparent;
  z-index: 999;
}
.sticky {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: max-content;
  background-color: #000000ef;
  box-shadow: 0 1rem 3rem #00000032;
}

.btn-mobile-nav {
  display: block;
  border: transparent;
  background-color: transparent;
  margin-right: 1rem;
  padding: 0.5rem;
  z-index: 9999;
}
@media (min-width: 48em) {
  .btn-mobile-nav {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
  }
}
@media (min-width: 75em) {
  .btn-mobile-nav {
    margin-right: 0;
  }
}

.logo img {
  width: 50%;
}
@media (min-width: 27em) {
  .logo img {
    width: 60%;
  }
}
@media (min-width: 35em) {
  .logo img {
    width: 100%;
  }
}
@media (min-width: 75em) {
  .logo img {
    margin-left: 0;
  }
}

.nav {
  position: fixed;
  background-color: #ffffffe3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  font-size: 1rem;
  transition: all 0.5s;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  visibility: hidden;
  z-index: 999;
  list-style: none;
}
@media (min-width: 48em) {
  .nav {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    flex-basis: auto;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    height: auto;
    gap: 0rem;
    background-color: transparent;
  }
}
@media (min-width: 53em) {
  .nav {
    margin-right: 1rem;
    gap: 0.6rem;
  }
}
@media (min-width: 55em) {
  .nav {
    gap: 1rem;
  }
}
@media (min-width: 64em) {
  .nav {
    margin-right: 2rem;
    gap: 2rem;
  }
}
@media (min-width: 75em) {
  .nav {
    margin-right: 0;
    gap: 2rem;
  }
}

.nav .active {
  border-bottom: 0.125rem #000 solid;
}
@media (min-width: 48em) {
  .nav .active {
    border-bottom: 0.125rem #fff solid;
  }
}

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  padding: 0.8rem 1rem 0.25rem 1rem;
  text-transform: uppercase;
  font-weight: bolder;
  border-bottom: 0.125rem #ffffff00 solid;
  width: max-content;
}
@media (min-width: 48em) {
  .nav a:link,
  .nav a:visited {
    color: #fff;
    padding: 1rem 0.5rem 0.25rem 0.5rem;
  }
  .nav a:hover,
  .nav a:active {
    border-bottom: 0.125rem #ffffff solid;
    transition: 0.5s;
  }
  .nav .coat:link,
  .nav .coat:visited {
    color: #fff;
    background-color: #ffffff00;
    border-radius: 2rem;
    padding: 1rem;
    border: 0.25rem #fff solid;
  }
  .nav .coat:hover,
  .nav .coat:active {
    color: #000;
    background-color: #fff;
    transition: 0.5s;
    border: #000;
    border: 0.25rem #fff solid;
  }
  .nav .active.coat {
    color: #000;
    background-color: #fff;
    border: 0.25rem #fff solid;
  }
}
@media (min-width: 64em) {
  .nav a {
    padding: 1rem;
  }
}

.nav a.reverse {
  color: #000;
}
@media (min-width: 48em) {
  .nav a.reverse:link,
  .nav a.reverse:visited {
    color: #000;
  }
  .nav a.reverse:hover,
  .nav a.reverse:active {
    border-bottom: 0.125rem #000 solid;
  }
  .nav .coat.reverse:link,
  .nav .coat.reverse:visited {
    color: #fff;
    background-color: #000000;
    border-radius: 2rem;
    padding: 1rem;
    border: 0.25rem #000000 solid;
  }
  .nav .coat:hover,
  .nav .coat:active {
    color: #000;
    background-color: #fff;
    transition: 0.5s;
    border: #000;
    border: 0.25rem #fff solid;
  }
  .nav .active.coat {
    color: #000;
    background-color: #fff;
    border: 0.25rem #fff solid;
  }
}

.nav-open .nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(0);
}
.nav-open .icon-mobile-nav[name="close"] {
  display: block;
}
.nav-open .icon-mobile-nav[name="menu"] {
  display: none;
}
.icon-mobile-nav[name="close"] {
  display: none;
}

.heading-main h2 {
  margin: 6rem 0 3rem 0;
  font-size: 1.7em;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}
@media (min-width: 27em) {
  .heading-main h2 {
    font-size: 2rem;
  }
}
@media (min-width: 35em) {
  .heading-main h2 {
    margin: 10rem 0 5rem 0;
    font-size: 2.2rem;
  }
}
@media (min-width: 48em) {
  .heading-main h2 {
    font-size: 2.5rem;
  }
}

.bold-text {
  font-weight: bold;
}
article p:not(:last-child) {
  margin-bottom: 1rem;
}

/* animation */
@media (min-width: 48em) {
  .hidden {
    opacity: 0;
    transition: all 0.6s;
    transform: translateY(30%);
  }

  .show {
    opacity: 1;
    transition: 0.6s;
    transform: translateY(0);
  }

  .hidden:nth-child(2) {
    transition-delay: 100ms;
  }

  .hidden:nth-child(3) {
    transition-delay: 200ms;
  }

  .hidden-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s;
  }

  .show-left {
    opacity: 1;
    transition: 1s;
    transform: translateX(0);
  }

  .hidden-right {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s;
  }

  .show-right {
    opacity: 1;
    transition: 1s;
    transform: translateX(0);
  }
}

/***** ÚVOD *****/
/* opening-photo */
.main-photo {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../img/main-photo.avif");
  background-size: cover;
  background-position: right center;
  /* object-fit: cover; */
  /* object-position: right center; */
  /* background-attachment: fixed; */
  height: 100vh;
}
@media (min-width: 40em) {
  .main-photo {
    background-size: cover;
    background-position: top;
    /* object-fit: cover; */
    /* object-position: right center; */
    /* background-attachment: fixed; */
    height: 100vh;
  }
}

.main-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  top: 30%;
  margin-right: 1rem;
}
@media (min-width: 35em) {
  .main-text {
    width: 70%;
  }
}
@media (min-width: 48em) {
  .main-text {
    margin-left: 2rem;
    width: 50%;
  }
}
@media (min-width: 75em) {
  .main-text {
    margin-left: 0;
  }
}

.intro-text {
  color: #fff;
  font-weight: bold;
  align-self: flex-start;
  font-size: 1rem;
  text-transform: uppercase;
}
@media (min-width: 27em) {
  .intro-text {
    font-size: 1.2rem;
  }
}

.main-text .introduction {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  align-self: flex-start;
  text-transform: uppercase;
}
@media (min-width: 27em) {
  .main-text .introduction {
    font-size: 2rem;
  }
}
@media (min-width: 35em) {
  .main-text .introduction {
    font-size: 2.2rem;
  }
}
@media (min-width: 48em) {
  .main-text .introduction {
    font-size: 2.5rem;
  }
}
@media (min-width: 64em) {
  .main-text .introduction {
    font-size: 3rem;
  }
}

.main-text .cta {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
  font-weight: bold;
  background-color: #fff;
  border: 0.25rem #fff solid;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 2rem;
  margin-top: 2rem;
  text-transform: uppercase;
  align-self: center;
}
@media (min-width: 27em) {
  .main-text .cta {
    align-self: flex-start;
    padding: 1.2rem;
  }
}
@media (min-width: 48em) {
  .main-text .cta {
    color: #fff;
    background-color: transparent;
  }
  .main-text .cta:link,
  .main-text .cta:visited {
    color: #fff;
    background-color: transparent;
  }
  .main-text .cta:hover,
  .main-text .cta:active {
    color: #000;
    background-color: #ffffff;
    transition: 0.5s;
  }
}

/* about-help */
.type-of-help {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  text-align: center;
  row-gap: 3rem;
}
@media (min-width: 27em) {
  .type-of-help {
    margin: 0 3rem;
  }
}
@media (min-width: 37em) {
  .type-of-help {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    margin: 0;
    column-gap: 1rem;
  }
}
@media (min-width: 48em) {
  .type-of-help {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
@media (min-width: 64em) {
  .type-of-help {
    column-gap: 2rem;
  }
}

.type-of-help h3 {
  text-transform: uppercase;
}
.type-of-help img {
  max-width: 100%;
}
.help-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 0.25rem #000 solid;
  border-radius: 3rem;
  padding: 1rem;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}

@media (min-width: 48em) {
  .help-box.one:hover {
    color: #376231;
    border: 0.25rem #376231 solid;
    transform: translateY(-1rem);
    box-shadow: 0 1.3rem 2rem #37623120;
  }
  .help-box.two:hover {
    color: #ae0000;
    border: 0.25rem #ae0000 solid;
    transform: translateY(-1rem);
    box-shadow: 0 1.3rem 2rem #ae00001a;
  }
  .help-box.last:hover {
    color: #6e4c08;
    border: 0.25rem #6e4c08 solid;
    transform: translateY(-1rem);
    box-shadow: 0 1.3rem 2rem #6e4c081f;
  }
}

@media (min-width: 37em) {
  .last {
    grid-column: span 2;
    align-self: center;
    margin: 0 9.5rem;
  }
}
@media (min-width: 48em) {
  .last {
    grid-column: 3;
    align-self: auto;
    margin: 0;
  }
}

/* about-me */
.about .article {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin: 5rem 0;
}
@media (min-width: 55em) {
  .about .article {
    flex-direction: row;
    margin: 10rem 0 10rem 0;
  }
}

.about h3 {
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}
@media (min-width: 27em) {
  .about h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 64em) {
  .about h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.about .text {
  font-size: 1rem;
  text-align: left;
  line-height: 1.5;
}

.about img {
  width: 100%;
  height: 100%;
  box-shadow: 0 1.3rem 2rem #00000038;
}
@media (min-width: 55em) {
  .about img {
    width: 40%;
  }
}

/* why-me */
.why-me {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.756),
      rgba(0, 0, 0, 0.756)
    ),
    url("../img/why-me.avif");
  background-size: cover;
  background-position: center;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  color: #fff;
}
@media (min-width: 48em) {
  .why-me {
    padding-bottom: 8rem;
    background-attachment: fixed;
  }
}
.why-me h2 {
  color: #fff;
}
.why-me .text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media (min-width: 64em) {
  .why-me .text {
    font-size: 1.2rem;
  }
}

.why-me-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  border: 0.25rem #fff solid;
  border-radius: 3rem;
  padding: 1rem;
  font-size: 0.8rem;
}
@media (min-width: 27em) {
  .why-me-box {
    font-size: 0.8rem;
  }
}
@media (min-width: 57em) {
  .why-me-box {
    font-size: 0.9rem;
  }
}
@media (min-width: 64em) {
  .why-me-box {
    font-size: 1rem;
  }
}

@media (min-width: 37em) {
  .last {
    grid-column: span 2;
    align-self: center;
    margin: 0 9.5rem;
  }
}
@media (min-width: 48em) {
  .last {
    grid-column: 3;
    align-self: auto;
    margin: 0;
  }
}

.why-me-box img {
  max-width: 50%;
}
@media (min-width: 48em) {
  .why-me-box img {
    width: 100%;
  }
}

.box-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

/***** BEZPEČNOST-PRÁCE *****/
.main-photo.bozp {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../img/bezpecnost-prace.avif");
  background-size: cover;
  background-position: top;
  height: 100vh;
}
.main-text.bozp {
  margin-top: 2rem;
}
.intro-text.bozp {
  font-size: 1rem;
  word-spacing: 0.125rem;
  text-transform: unset;
  margin-top: 0.5rem;
  line-height: 1.3;
}
@media (min-width: 27em) {
  .intro-text.bozp {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}

.main-text.bozp .introduction {
  background: linear-gradient(to right, #387630, #9cff9c);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bozp h2 {
  font-size: 1.5rem;
  text-align: left;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}
@media (min-width: 27em) {
  .bozp h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 64em) {
  .bozp h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1;
  }
}
.help-bozp {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.756),
      rgba(0, 0, 0, 0.756)
    ),
    url("../img/kontrola-inspekce.avif");
  background-size: cover;
  background-position: center;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  color: #fff;
}
@media (min-width: 48em) {
  .help-bozp {
    padding-bottom: 8rem;
    background-attachment: fixed;
  }
}
.help-bozp h2 {
  color: #fff;
  line-height: 1.2;
}
.help-bozp .text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 48em) {
  .help-bozp .text {
    margin: 0 5rem;
  }
}
@media (min-width: 64em) {
  .help-bozp .text {
    font-size: 1.2rem;
  }
}

/***** POŽÁRNÍ-OCHRANA *****/
.main-photo.po {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../img/pozarni-ochrana.avif");
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.main-text.po .introduction {
  background: linear-gradient(to right, #b20b0b, #f67777);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about.po img {
  max-width: 100%;
  box-shadow: 0 1.3rem 2rem #00000038;
  align-self: center;
}
@media (min-width: 37em) {
  .about.po img {
    width: 60%;
  }
}
@media (min-width: 55em) {
  .about.po img {
    width: 30%;
  }
}

.help-fire {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("../img/kontrola-hzs.avif");
  background-size: cover;
  background-position: center;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  color: #fff;
}
@media (min-width: 48em) {
  .help-fire {
    padding-bottom: 8rem;
    background-attachment: fixed;
  }
}
.help-fire h2 {
  color: #fff;
  line-height: 1.2;
}
.help-fire .text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 48em) {
  .help-fire .text {
    margin: 0 5rem;
  }
}
@media (min-width: 64em) {
  .help-fire .text {
    font-size: 1.2rem;
  }
}

/***** ŠKOLENÍ *****/
.main-photo.training {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("../img/skoleni.avif");
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.main-text.skoleni .introduction {
  background: linear-gradient(to right, #bd861a, #fac966);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.type-of-training {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 1fr);
  row-gap: 3rem;
  margin-bottom: 5rem;
  justify-items: center;
}
@media (min-width: 38em) {
  .type-of-training {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 38em) {
  .type-of-training {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    margin-bottom: 8rem;
  }
}
@media (min-width: 55em) {
  .type-of-training {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
  }
}

.type-of-training .training {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  padding: 1rem;
  border-radius: 2rem;
  line-height: 1.2;
  width: 17.5rem;
  border: 0.25rem #000 solid;
}

/***** KONTAKT *****/
.contact-page {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .contact-page {
    margin-bottom: 5rem;
  }
}

.contact-page .introduction {
  margin: 3rem 0;
  color: #000;
  text-align: center;
}
@media (min-width: 27em) {
  .contact-page .introduction {
    font-size: 2rem;
  }
}
@media (min-width: 35em) {
  .contact-page .introduction {
    font-size: 2.2rem;
  }
}
@media (min-width: 48em) {
  .contact-page .introduction {
    font-size: 2.5rem;
  }
}
@media (min-width: 64em) {
  .contact-page .introduction {
    font-size: 3rem;
  }
}

.contact-page .text {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 48em) {
  .contact-page .text {
    margin: 0 5rem;
    font-size: 1.3rem;
  }
}

.contact-page h2 {
  margin-top: 2rem;
  color: #000;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 27em) {
  .contact-page h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 48em) {
  .contact-page h2 {
    font-size: 2rem;
  }
}

.contact-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  margin-bottom: 3rem;
  z-index: 1;
  box-shadow: 0 1.3rem 2rem #00000038;
}
@media (min-width: 27em) {
  .contact-container {
    margin: 0 5rem 3rem 5rem;
  }
}
@media (min-width: 37em) {
  .contact-container {
    margin: 0 8rem 3rem 8rem;
  }
}
@media (min-width: 48em) {
  .contact-container {
    position: relative;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    margin: 0 0 10rem 0;
    box-shadow: 0 1.3rem 2rem #00000038;
  }
}

.contact-container .part {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  justify-self: center;
  align-self: center;
  width: 100%;
  height: 100%;
}
.contact-container a {
  text-decoration: none;
  color: #000;
  margin-top: 1rem;
}
.contact-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-container .phone {
  background-color: #f1f1f1;
}
.contact-container .adress {
  background-color: #dfdfdf;
}
.contact-container .email {
  background-color: #f1f1f1;
}

/***** FOOTER *****/
.footer-content {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 3rem;
  border-top: 0.25rem #000 solid;
  margin-bottom: 3rem;
}
@media (min-width: 37em) {
  .footer-content {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    justify-items: flex-end;
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
@media (min-width: 48em) {
  .footer-content {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: space-around;
    margin: 0 0 5rem 0;
    padding-top: 3rem;
  }
}

.footer-logo {
  justify-self: center;
  align-self: flex-end;
}
@media (min-width: 37em) {
  .footer-logo {
    grid-column: span 2;
  }
}
@media (min-width: 48em) {
  .footer-logo {
    align-self: flex-start;
  }
}
.contact-column {
  display: grid;
  grid-template-columns: 1fr 8fr;
  row-gap: 1rem;
  column-gap: 1rem;
}
@media (min-width: 27em) {
  .contact-column {
    margin-left: 2rem;
  }
}
@media (min-width: 37em) {
  .contact-column {
    margin-left: 0rem;
    row-gap: 2rem;
  }
}
@media (min-width: 48em) {
  .contact-column {
    grid-template-columns: 1fr 4fr;
  }
}

.contact-column h3 {
  grid-column: 1/3;
  font-size: 1.2rem;
}
@media (min-width: 48em) {
  .contact-column h3 {
    font-size: 1.5rem;
  }
}

.contact-column .info {
  grid-column: 1/3;
  line-height: 1.5;
}
.contact-column a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  align-self: center;
}
.contact-column img {
  max-width: 100%;
}
.contact-column a,
.contact-column img {
  margin-top: 1rem;
}

.offers-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 27em) {
  .offers-column {
    margin-left: 2rem;
  }
}
@media (min-width: 37em) {
  .offers-column {
    margin-left: 0;
  }
}

.offers-column h3 {
  font-size: 1.2rem;
  padding-left: 0.5rem;
}
@media (min-width: 48em) {
  .offers-column h3 {
    font-size: 1.5rem;
  }
}
.offers-column a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-bottom: 0.125rem #00000000 solid;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  width: max-content;
}
@media (min-width: 48em) {
  .offers-column a:hover {
    border-bottom: 0.125rem #000 solid;
    transition: 0.5s;
  }
}

.copyright {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
.author {
  text-align: center;
  margin: 1rem;
}
@media (min-width: 48em) {
  .author {
    margin-top: 0;
    margin-bottom: 2rem;
    text-align: right;
  }
}
.author a {
  text-decoration: none;
  color: #000;
  padding: 0.5rem;
  font-weight: bold;
}
@media (min-width: 48em) {
  .author a:link,
  .author a:visited {
    color: #00000091;
  }
  .author a:hover,
  .author a:active {
    color: #000;
    transition: 0.5s;
  }
}
