html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

.align-center {
  align-items: center;
}

.boxed-width {
  margin: 0 auto;
  max-width: 1366px;
  width: 100%;
  padding: 0 2rem;
}

.half-width {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .half-width {
    width: 100%;
  }
}

.grid {
  display: grid;
}

.overflow-hidden {
  overflow: hidden;
}

.grid-cols-2 {
  grid-template-columns: 2fr 2fr;
}

.align-start {
  align-items: flex-start;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flew-row {
  flex-direction: row;
}

@media screen and (max-width: 1024px) {
  .mobile-flex-column {
    flex-direction: column;
  }
}

.full-width {
  width: 100%;
}

.gap-half {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.no-padding {
  padding: 0;
}

.align-right {
  text-align: right;
  margin-left: auto;
}

.padding-x-2 {
  padding: 0 2rem;
}

.padding-x-4 {
  padding: 0 4rem;
}

.padding-y-2 {
  padding: 2rem 0;
}

.padding-y-4 {
  padding: 4rem 0;
}

.padding-top-4 {
  padding: 4rem 0 0 0;
}

html {
  background-image: linear-gradient(to right, #3572e3, #00a9fc, #3572e3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  overflow-x: hidden;
}
html *, html *::before, html *::after {
  box-sizing: border-box;
}
html body {
  /*background-image: linear-gradient(to right, #3572e3, #00a9fc, #3572e3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;*/
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  /*width: 100vw;
  overflow-x: hidden;*/
}
html body section {
  padding: 2rem;
  /*overflow-x: hidden;*/
}
@media screen and (max-width: 1024px) {
  html body section {
    padding: 2rem 1rem;
  }
}
html body main {
  background-image: url("../img/hero_flare.png");
  background-size: contain;
  background-repeat: no-repeat;
}
html body .hero .bg-deco {
  background-image: url("../img/4.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 600px;
  width: 600px;
  position: absolute;
  left: -250px;
  top: 350px;
}
@media screen and (max-width: 1024px) {
  html body .hero .bg-deco {
    background-image: none;
    display: none;
  }
}
html body .hero .hero-content-container a {
  display: block;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  html body .hero .hero-content-container a {
    margin-bottom: 1rem;
  }
}
html body .hero .logo {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .hero .logo {
    max-width: 400px;
    margin: 0 auto;
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  html body .hero .logo {
    max-width: 300px;
    margin: 0 auto;
    width: 300px;
  }
}
html body .hero h1 {
  font-size: 5.6rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  padding: 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 6rem;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .hero h1 {
    font-size: 3.6rem;
    line-height: 4rem;
    padding: 0 0 2rem 0;
  }
}
@media screen and (max-width: 1024px) {
  html body .hero h1 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
html body .hero h1 span {
  display: inline-block;
  background-color: #cba258;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  transform: rotate(-2deg);
}
html body .hero h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  padding: 1rem 0;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .hero h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  html body .hero h2 {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
html body .hero h2 span {
  color: #0d45aa;
}
html body .contest-details {
  /*.bg-deco-2 {
      background-image: url('../img/8.png');
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      bottom: 50px;
      height: 300px;
      width: 100%;
      background-position: right;
      transform: translate(367px, 10px);
      @media screen and (min-width: 1024px) and (max-width: 1366px) {        
          transform: translate(64px, 10px);
      }
      @media screen and (max-width: 1024px) {
          display: none;
      }
  }*/
}
@media screen and (max-width: 1024px) {
  html body .contest-details {
    position: relative;
    top: -60px;
  }
}
html body .contest-details img.present {
  width: 800px;
  margin-top: -20px;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .contest-details img.present {
    width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  html body .contest-details img.present {
    width: 300px;
    margin: 0 auto;
  }
}
html body .contest-details .main-prize {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  background-color: #004aad;
  padding: 1rem;
  border-radius: 20px;
  margin-top: -50px;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .contest-details .main-prize {
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  html body .contest-details .main-prize {
    width: 300px;
    margin: 0 auto;
  }
}
html body .contest-details .main-prize h2 {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .contest-details .main-prize h2 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  html body .contest-details .main-prize h2 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
html body .contest-details .main-prize h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .contest-details .main-prize h3 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  html body .contest-details .main-prize h3 {
    margin-top: 10px;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}
html body .contest-details .secondary-prize {
  width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  html body .contest-details .secondary-prize {
    width: 80%;
    margin: 2rem auto;
  }
}
html body .contest-details .secondary-prize h2 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  html body .contest-details .secondary-prize h2 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}
html body .contest-details .secondary-prize h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1024px) {
  html body .contest-details .secondary-prize h3 {
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
}
html body .contest-details .secondary-prize .secondary-prize__graphic-img {
  width: 200px;
  position: absolute;
  left: -40px;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .contest-details .secondary-prize .secondary-prize__graphic-img {
    width: 140px;
    left: -10px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  html body .contest-details .secondary-prize .secondary-prize__graphic-img {
    position: relative;
    left: 0;
    margin: 1rem auto;
  }
}
html body .contest-details .timeline-container {
  display: flex;
  gap: 1rem;
  margin: 8rem auto 0 auto;
  width: 616px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  html body .contest-details .timeline-container {
    margin-top: 4rem;
    flex-direction: column;
    width: 100%;
    margin: 4rem auto 2rem auto;
    gap: 3rem;
    align-items: center;
  }
}
html body .contest-details .timeline-container .timeline {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #d4ab62;
  padding: 2rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 210px;
  justify-content: center;
}
html body .contest-details .timeline-container .timeline img {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #d4ab62;
  padding: 0.2rem;
  position: absolute;
  top: -30px;
  left: 80px;
}
@media screen and (max-width: 1024px) {
  html body .contest-details .timeline-container .timeline img {
    left: 80px;
  }
}
html body .contest-details .timeline-container .timeline .timeline__text-content {
  color: #0d45aa;
  font-size: 1rem;
  line-height: 1.4rem;
}
html body .contest-details .timeline-container .timeline .timeline__text-content strong {
  font-weight: 600;
}
html body .contest-details iframe {
  border: 10px solid #fff;
  border-radius: 20px;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .contest-details iframe {
    width: 90%;
    height: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  html body .contest-details iframe {
    width: 90% !important;
    height: 100% !important;
    margin: 0 auto;
    display: block;
    min-height: 250px;
  }
}
html body .contest-details .image-container {
  position: relative;
  bottom: -20px;
}
html body .contest-details .video-embed {
  position: relative;
  top: 70px;
}
@media screen and (max-width: 1024px) {
  html body .contest-details .video-embed {
    top: 0;
  }
}
html body .contest-details .video-embed .image-container {
  width: 100%;
  position: relative;
}
html body .contest-details .video-embed .image-container img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  margin: 2rem auto;
}
html body .form-section {
  margin-top: 4rem;
  padding: 0;
}
html body .form-section .container {
  padding: 0 1rem;
}
html body .form-section .half-width h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /*margin-left: -230px;*/
  text-align: center;
}
@media screen and (max-width: 1024px) {
  html body .form-section .half-width h2 {
    font-size: 1.8rem;
    margin-left: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}
html body .form-section .half-width .form-section__steps .form-section__step {
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 300;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .form-section .half-width .form-section__steps .form-section__step {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  html body .form-section .half-width .form-section__steps .form-section__step {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}
html body .form-section .half-width .form-section__steps .form-section__step span {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
html body .form-section .half-width .image-container .absolute-bullshit {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-bottom: -100px;
  transform: translateX(-100px);
}
html body .form-section .half-width .image-container .another-absolute-bullshit {
  position: relative;
  left: -100px;
}
html body .laser-section .half-width {
  width: 100%;
}
html body .laser-section .half-width h2.laser-section-first {
  display: none;
}
@media screen and (max-width: 1024px) {
  html body .laser-section .half-width h2.laser-section-first {
    display: block;
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    margin: 3rem 0 1rem 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
}
html body .laser-section .half-width h2.laser-section-second {
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transform: translate(-110px, -70px);
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  html body .laser-section .half-width h2.laser-section-second {
    font-size: 1.8rem;
    line-height: 2rem;
    transform: translate(-80px, -70px);
  }
}
@media screen and (max-width: 1023px) {
  html body .laser-section .half-width h2.laser-section-second {
    display: none;
  }
}
html body .laser-section .laser-section__graphic-img {
  width: 600px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  html body .laser-section .laser-section__graphic-img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
html body .laser-section__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
}
html body .laser-section__features .feature-item {
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #d4ab62;
  position: relative;
}
html body .laser-section__features .feature-item span {
  font-size: 1rem;
  color: #0d45aa;
  font-weight: 500;
  display: block;
  line-height: 1.4rem;
}
@media screen and (max-width: 1024px) {
  html body .laser-section__features .feature-item span {
    font-size: 1.1rem;
    position: relative;
    text-align: center;
  }
}
html body .laser-section__features .feature-item:nth-of-type(1) {
  width: 200px;
  padding: 1rem;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  html body .laser-section__features .feature-item:nth-of-type(1) {
    margin: 0 auto;
  }
}
html body .laser-section__features .feature-item:nth-of-type(2) {
  width: 240px;
  padding: 1rem 1rem;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  html body .laser-section__features .feature-item:nth-of-type(2) {
    margin: 0 auto;
  }
}
html body .laser-section__features .feature-item:nth-of-type(2) .feature-icon-img-first {
  width: 40px;
  height: 40px;
  position: absolute;
  left: -40px;
  top: 15px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #d4ab62;
  padding: 0.2rem;
}
html body .laser-section__features .feature-item:nth-of-type(3) {
  width: 240px;
  padding: 0.5rem 1rem;
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  html body .laser-section__features .feature-item:nth-of-type(3) {
    margin: 0 auto;
  }
}
html body .laser-section__features .feature-item .feature-icon-img-first {
  width: 40px;
  height: 40px;
  position: absolute;
  left: -40px;
  top: 5px;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #d4ab62;
  padding: 0.2rem;
}
html body .laser-section__features .feature-item .feature-icon-img-second {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -30px;
  right: -30px;
}

p.break-text {
  width: 90%;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  p.break-text {
    width: 85%;
  }
}

img.legyen-kisebb {
  width: 600px;
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  img.legyen-kisebb {
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  img.legyen-kisebb {
    width: 300px;
  }
}

section.advantages {
  padding: 0 2rem;
}
@media screen and (max-width: 1024px) {
  section.advantages {
    padding: 2rem 1rem;
  }
}

.box-container {
  margin: -50px 0;
}

form {
  background: #fff;
  padding: 2rem;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
}
form .form-half-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 1366px) {
  form .form-half-wrapper {
    flex-direction: column;
  }
}
form .form-half-wrapper div {
  display: flex;
  flex-direction: column;
  width: 100%;
}
form label {
  color: #3573e3;
}
form label.form-title {
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8rem;
}
@media screen and (max-width: 1366px) {
  form label.form-title {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
form label.check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 8px;
  line-height: 1.4rem;
}
form label.check input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  border: 1px solid #3573e3;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
  background: none;
}
form label.check input[type=checkbox]:checked {
  background: #3573e3;
  border-color: #3573e3;
}
form label.check input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.5125rem;
  width: 0.1875rem;
  height: 0.5rem;
  border: solid #fff;
  border-width: 0 0.125rem 0.125rem 0;
  transform: rotate(45deg);
}
form input {
  background: #d5e2f9;
  border: none;
  padding: 0.6rem;
  border-radius: 20px;
  color: #3573e3;
}
form textarea {
  background: #d5e2f9;
  border: none;
  padding: 0.6rem;
  border-radius: 20px;
  color: #3573e3;
  resize: vertical;
  min-height: 100px;
  /*width: 95%;*/
}
form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  /*border: 1px solid #3573e3;*/
  border-radius: 50px;
  width: 100%;
  padding: 0.75rem 1rem;
  color: #3573e3;
  background: #d5e2f9;
  cursor: pointer;
}
form select option {
  color: #3573e3;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 0.25rem 0;
}
form select[multiple] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #3573e3;
  border-radius: 50px;
  width: 100%;
  /*min-height: 6rem;*/
  padding: 0.75rem 1rem;
  color: #3573e3;
  background: none;
  cursor: pointer;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
form select[multiple] option {
  background: #d5e2f9;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin: 0.25rem 0;
}
form select[multiple] option:checked {
  background: #3573e3;
  color: #fff;
}

#concerns_other_text, #reasons_other_text {
  margin-top: 1rem;
  flex-direction: column;
  width: 100%;
  display: flex;
}

#decision_help {
  margin-bottom: 1rem;
}

.acceptance-check {
  margin-bottom: 0.6rem;
}

input, textarea, select {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  border-radius: 20px;
  border: none;
  background-color: #0ad2f9;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  margin: 10px auto;
  transition: 0.3s ease-in-out;
}

button:hover {
  background-color: #3573e3;
}

.form-section, .form-section * {
  box-sizing: border-box;
}

.form-section {
  overflow-x: hidden;
}

.form__badge {
  width: 200px;
  right: -100px;
  position: absolute;
  bottom: 50px;
}
@media screen and (max-width: 1366px) {
  .form__badge {
    right: -40px;
    width: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .form__badge {
    display: none;
  }
}

div.form {
  padding-bottom: 8rem;
}
@media screen and (max-width: 1024px) {
  div.form {
    padding-bottom: 2rem;
  }
}

.privacy-check {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.privacy-check a {
  font-weight: 700;
  text-decoration: underline;
}

.error {
  /*color: #ff0033;*/
  color: #cba258;
  font-size: 1rem;
  line-height: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

footer {
  background-color: #0d45aa;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  color: #fff;
  padding: 4rem 2rem;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 4rem 1rem;
  }
}
footer .logo {
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  footer .logo {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  footer .footer-info {
    flex-direction: column;
    padding: 0;
    gap: 1rem;
  }
}
footer .footer-info .w-33 {
  width: 33.3333%;
}
@media screen and (max-width: 1024px) {
  footer .footer-info .w-33 {
    width: 100%;
  }
}
footer .footer-info .w-33 .footer-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  display: block;
}
footer .footer-info p {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin: 0.5rem 0;
}
@media screen and (max-width: 1024px) {
  footer .footer-info p {
    font-size: 1.2rem;
  }
}
footer .footer-info p .hours {
  font-weight: 700;
  letter-spacing: 0.05rem;
}
footer .social-icons {
  margin-top: 1rem;
  gap: 1rem;
  display: flex;
}/*# sourceMappingURL=style.css.map */