@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
html,
body {
  max-width: 100%;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

p,
ul,
a,
h1,
h2 {
  margin: 0;
  padding: 0;
  color: #000000;
}

a:hover {
  color: unset;
  text-decoration: none;
}

header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
}
header .header-container {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  padding-inline: 1.125rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.0784313725);
}
@media (min-width: 640px) {
  header .header-container {
    padding-inline: 3.125rem;
  }
}
header .header-container .logo-container {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 1.25rem;
}
header .header-container .logo-container h1 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
}
header .header-container img {
  max-width: 7.9375rem;
}
@media (min-width: 640px) {
  header .header-container img {
    max-width: 9.375rem;
  }
}
header .header-container .address {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  header .header-container .address {
    font-size: 0.9375rem;
    line-height: 1.3125rem;
  }
}
header .header-container .address a,
header .header-container .address p {
  color: #fd4d01;
  transition: color 400ms ease-in-out;
}
header .header-container .address a:hover {
  color: #656565;
  transition: color 400ms ease-in-out;
}
header .header-container .menu-container {
  display: flex;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .header-container .menu-container ul.desktop-menu {
  display: none;
  list-style-type: none;
  align-self: center;
}
@media (min-width: 1200px) {
  header .header-container .menu-container ul.desktop-menu {
    display: flex;
  }
}
header .header-container .menu-container ul.desktop-menu li:first-child a {
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
}
header .header-container .menu-container ul.desktop-menu li:last-child a {
  border-top-right-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
}
header .header-container .menu-container ul.desktop-menu a {
  padding: 1.25rem;
  background-color: #fd4d01;
  color: #ffffff;
  font-size: 1rem;
  transition: all 400ms ease-in-out;
}
header .header-container .menu-container ul.desktop-menu a:hover {
  background-color: #656565;
  transition: all 400ms ease-in-out;
}
header .header-container .menu-container ul.mobile-menu {
  list-style-type: none;
}
header .header-container .menu-container ul.mobile-menu li {
  padding-bottom: 0.625rem;
}
header .header-container .menu-container ul.mobile-menu li:last-child {
  padding-bottom: 0;
}
header .header-container .menu-container ul.mobile-menu a {
  color: #fd4d01;
  font-weight: 700;
  font-size: 1rem;
  transition: color 400ms ease-in-out;
}
header .header-container .menu-container ul.mobile-menu a:hover {
  color: #656565;
  transition: color 400ms ease-in-out;
}
header .header-container .menu-container .mobile-only {
  display: block;
}
@media (min-width: 1200px) {
  header .header-container .menu-container .mobile-only {
    display: none;
  }
}
header .header-container .menu-container .hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
header .header-container .menu-container .mobile-menu-container {
  background-color: #ffffff;
}
header .header-container .menu-container .mobile-menu-container .uk-close svg {
  color: #000000;
}
header .header-container .menu-container .uk-offcanvas-overlay {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

section {
  margin-inline: 1.25rem;
  margin-top: -7.5rem;
  padding-top: 7.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  row-gap: 1.25rem;
}
section.start-section {
  padding-top: 15rem;
}
@media (min-width: 960px) {
  section .image-wrapper img {
    max-width: 45vw;
  }
}
section .text-wrapper {
  border-radius: 1.25rem;
  border: 4px solid #fd4d01;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  min-width: 15.625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #dddddd;
  padding: 1.25rem;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.0784313725);
  margin-top: 2rem;
}
@media (min-width: 960px) {
  section .text-wrapper {
    margin-top: 0;
  }
}
section .text-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: #fd4d01 1px 1px 1px;
}
section .text-wrapper ul {
  margin: 1.25rem;
  list-style-type: square;
  font-size: 0.875rem;
}
section .gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.25rem;
}
@media (min-width: 640px) {
  section .gallery-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  section .gallery-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) {
  section .gallery-wrapper {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1600px) {
  section .gallery-wrapper {
    grid-template-columns: repeat(9, 1fr);
  }
}
section .gallery-wrapper a {
  display: flex;
  align-items: center;
}
section .gallery-wrapper a img {
  border: 4px solid #fd4d01;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.0784313725);
  border-radius: 0.3125rem;
  padding: 0.3125rem;
}

footer {
  margin-inline: 1.25rem;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
  border-top: solid 3px #fd4d01;
}
footer p {
  text-align: center;
}
footer a {
  color: #fd4d01;
}

.back-to-top {
  position: fixed;
  display: flex;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #fd4d01;
}
@media (min-width: 960px) {
  .back-to-top {
    right: 2.5rem;
    bottom: 2.5rem;
  }
}
.back-to-top .uk-totop:hover {
  color: #ffffff;
}
.back-to-top a {
  margin: auto;
  color: #ffffff;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fd4d01;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #656565;
}/*# sourceMappingURL=style.css.map */