* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

body {
  --black: #000;
  --black-10: rgba(0, 0, 0, 0.1);
  --black-30: rgba(0, 0, 0, 0.3);
  --black-60: rgba(0, 0, 0, 0.6);
  --black-90: rgba(0, 0, 0, 0.9);
  --dark-red: #f20530;
  --light-red: #f20505;
  --blue: #05aff2;
  --l-blue: #57c6f2;
  --white: #fff;
  --white-40: rgba(255, 255, 255, 0.4);
  --bg-color: #fafafb;
  --f-color: #4e4e4e;
  height: 100vh;
  color: var(--f-color);
  background-color: var(--white);
}
body p,
body h1,
body h2 {
  line-height: 150%;
}
body h1,
body h2 {
  margin-bottom: 30px;
}
body h3 {
  margin-bottom: 20px;
}
body h2,
body h3 {
  text-decoration: underline;
  text-decoration-color: var(--dark-red);
}
body p {
  margin-bottom: 15px;
}
body ul {
  list-style-type: none;
}

@media (prefers-color-scheme: dark) {
  body {
    --white: #1a1a1a;
    --black: #fff;
    --bg-color: #484848;
    --f-color: #d2d2d2;
    --black-10: rgba(255, 255, 255, 0.1);
    --black-30: rgba(255, 255, 255, 0.3);
    --black-60: rgba(255, 255, 255, 0.6);
    --black-90: rgba(255, 255, 255, 0.9);
    --white-40: rgba(0, 0, 0, 0.4);
  }
}
.further-down-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  background-color: var(--blue);
  border: none;
  color: var(--black);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 0 0 var(--black-30);
}
.further-down-btn span {
  margin-right: 10px;
}
.further-down-btn svg {
  height: 20px;
}
.further-down-btn:hover {
  box-shadow: 0 0px 5px var(--white-40);
  background-color: var(--l-blue);
}

.section-container {
  max-width: 1000px;
  margin: auto;
}

section {
  padding: 50px 20px;
}

header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
  transition: top 0.4s;
}
header .header {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  position: relative;
  box-shadow: 0 5px 7px var(--black-30);
}
header img {
  height: 50px;
  width: auto;
}
header .menu-button {
  color: var(--black);
  padding: 12px 16px;
  font-size: 1.25rem;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .menu-button:hover {
  cursor: pointer;
}
header .menu-button div {
  display: inline-block;
  position: relative;
  background-color: var(--black);
  width: 20px;
  height: 3px;
  border: none;
  border-radius: 3px;
  transform: rotate(0deg);
  transition: background-color 0.3s;
}
header .menu-button div:before, header .menu-button div:after {
  content: "";
  position: absolute;
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-radius: 3px;
  left: 0;
  transform: rotate(0deg);
  transition: transform 0.5s;
}
header .menu-button div:before {
  transform-origin: top left;
  top: -6.5px;
}
header .menu-button div:after {
  transform-origin: bottom left;
  bottom: -6.5px;
}
header .menu-button div.open {
  background-color: transparent;
}
header .menu-button div.open:before {
  transform: rotate(45deg);
}
header .menu-button div.open:after {
  transform: rotate(-45deg);
}
header nav {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: -248px;
  right: -200px;
  background-color: var(--white);
  box-shadow: 0 8px 8px var(--black-60);
  border-bottom-left-radius: 8px;
}
header nav ul li a {
  color: var(--black);
  display: block;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
}
header nav ul li a:visited {
  color: var(--black);
}
header nav ul li a:hover {
  background-color: var(--bg-color);
}
header nav ul li:not(:last-child) {
  border-bottom: 1px solid var(--black-10);
}
header nav.nav-shown {
  visibility: visible;
  opacity: 1;
  right: 0;
}
header.header-scrolled {
  top: -100px;
}

.back-up-top {
  position: sticky;
  bottom: -60px;
  margin-bottom: 25px;
  left: 80vw;
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  border: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.back-up-top svg {
  height: 35px;
}
.back-up-top.visible {
  bottom: 20px;
}
.back-up-top span {
  display: none;
}

footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: var(--black-60);
  color: var(--white);
  padding: 25px 10px;
  font-size: 12px;
}
footer p {
  margin: 0;
}
footer ul {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
footer ul a {
  color: var(--white);
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 16px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.8);
}
.image-modal:not(.is-open) {
  opacity: 0 !important;
  visibility: hidden !important;
}
.image-modal .dialog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
}
.image-modal button.close {
  padding: 6px 12px;
  align-self: flex-end;
  background: var(--blue);
  color: black;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.image-modal button.close svg {
  width: 20px;
  height: 20px;
}
.image-modal .img-container {
  height: 75vh;
  max-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
.image-modal img {
  height: 100%;
  width: auto;
}
.image-modal .modal-buttons-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.switch-buttons,
.image-preview-slider-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.switch-buttons button,
.image-preview-slider-buttons button {
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  display: flex;
  gap: 6px;
  align-items: center;
  background-color: var(--blue);
  color: black;
  cursor: pointer;
}
.switch-buttons button:disabled,
.image-preview-slider-buttons button:disabled {
  cursor: not-allowed;
  color: #747474;
}
.switch-buttons button svg,
.image-preview-slider-buttons button svg {
  width: 20px;
  height: 20px;
}
.switch-buttons button.prev-img svg, .switch-buttons button.prev-btn svg,
.image-preview-slider-buttons button.prev-img svg,
.image-preview-slider-buttons button.prev-btn svg {
  transform: rotate(90deg);
}
.switch-buttons button.next-img svg, .switch-buttons button.next-btn svg,
.image-preview-slider-buttons button.next-img svg,
.image-preview-slider-buttons button.next-btn svg {
  transform: rotate(-90deg);
}

@media screen and (min-width: 480px) {
  .back-up-top {
    left: 85vw;
  }
}
@media screen and (min-width: 768px) {
  section {
    padding: 80px 50px;
  }
  .back-up-top {
    left: 75vw;
    width: 190px;
    font-size: 16px;
  }
  .back-up-top span {
    display: block;
  }
  footer ul {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  body h2 {
    font-size: 1.75rem;
  }
  body h3 {
    font-size: 1.75rem;
  }
  body p {
    font-size: 1.125rem;
  }
  footer {
    flex-direction: row;
    justify-content: space-evenly;
  }
  footer p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  header .header img {
    height: 65px;
  }
  .back-up-top {
    left: 80%;
  }
}
@media (prefers-color-scheme: dark) {
  header .header,
  header nav {
    box-shadow: none;
    border-bottom: 1px solid var(--black-60);
  }
  header nav {
    border-left: 1px solid var(--black-60);
    bottom: -250px;
  }
}
.hero {
  background-image: url("/src/img/background-mobile-darker.jpg");
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 7px var(--black-30);
}
.hero .hero-opacity {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0;
  transition: opacity 1s;
}
.hero .hero-opacity.op-applied {
  opacity: 0.85;
}
.hero .hero-text {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1020px;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s 1s;
}
.hero .hero-text.loaded {
  opacity: 1;
}
.hero h1 {
  font-size: 2rem;
}
.hero p {
  font-size: 1.25rem;
}

@supports (background-image: url("/src/img/background-mobile-darker.webp")) {
  .hero {
    background-image: url("/src/img/background-mobile-darker.webp");
  }
}
@media (prefers-color-scheme: dark) {
  .hero {
    box-shadow: none;
    border-bottom: 1px solid var(--black-60);
  }
}
@media screen and (min-width: 1024px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p {
    font-size: 1.5rem;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

body {
  --black: #000;
  --black-10: rgba(0, 0, 0, 0.1);
  --black-30: rgba(0, 0, 0, 0.3);
  --black-60: rgba(0, 0, 0, 0.6);
  --black-90: rgba(0, 0, 0, 0.9);
  --dark-red: #f20530;
  --light-red: #f20505;
  --blue: #05aff2;
  --l-blue: #57c6f2;
  --white: #fff;
  --white-40: rgba(255, 255, 255, 0.4);
  --bg-color: #fafafb;
  --f-color: #4e4e4e;
  height: 100vh;
  color: var(--f-color);
  background-color: var(--white);
}
body p,
body h1,
body h2 {
  line-height: 150%;
}
body h1,
body h2 {
  margin-bottom: 30px;
}
body h3 {
  margin-bottom: 20px;
}
body h2,
body h3 {
  text-decoration: underline;
  text-decoration-color: var(--dark-red);
}
body p {
  margin-bottom: 15px;
}
body ul {
  list-style-type: none;
}

@media (prefers-color-scheme: dark) {
  body {
    --white: #1a1a1a;
    --black: #fff;
    --bg-color: #484848;
    --f-color: #d2d2d2;
    --black-10: rgba(255, 255, 255, 0.1);
    --black-30: rgba(255, 255, 255, 0.3);
    --black-60: rgba(255, 255, 255, 0.6);
    --black-90: rgba(255, 255, 255, 0.9);
    --white-40: rgba(0, 0, 0, 0.4);
  }
}
.further-down-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  background-color: var(--blue);
  border: none;
  color: var(--black);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 0 0 var(--black-30);
}
.further-down-btn span {
  margin-right: 10px;
}
.further-down-btn svg {
  height: 20px;
}
.further-down-btn:hover {
  box-shadow: 0 0px 5px var(--white-40);
  background-color: var(--l-blue);
}

.section-container {
  max-width: 1000px;
  margin: auto;
}

section {
  padding: 50px 20px;
}

header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
  transition: top 0.4s;
}
header .header {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  position: relative;
  box-shadow: 0 5px 7px var(--black-30);
}
header img {
  height: 50px;
  width: auto;
}
header .menu-button {
  color: var(--black);
  padding: 12px 16px;
  font-size: 1.25rem;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .menu-button:hover {
  cursor: pointer;
}
header .menu-button div {
  display: inline-block;
  position: relative;
  background-color: var(--black);
  width: 20px;
  height: 3px;
  border: none;
  border-radius: 3px;
  transform: rotate(0deg);
  transition: background-color 0.3s;
}
header .menu-button div:before, header .menu-button div:after {
  content: "";
  position: absolute;
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-radius: 3px;
  left: 0;
  transform: rotate(0deg);
  transition: transform 0.5s;
}
header .menu-button div:before {
  transform-origin: top left;
  top: -6.5px;
}
header .menu-button div:after {
  transform-origin: bottom left;
  bottom: -6.5px;
}
header .menu-button div.open {
  background-color: transparent;
}
header .menu-button div.open:before {
  transform: rotate(45deg);
}
header .menu-button div.open:after {
  transform: rotate(-45deg);
}
header nav {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: -248px;
  right: -200px;
  background-color: var(--white);
  box-shadow: 0 8px 8px var(--black-60);
  border-bottom-left-radius: 8px;
}
header nav ul li a {
  color: var(--black);
  display: block;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
}
header nav ul li a:visited {
  color: var(--black);
}
header nav ul li a:hover {
  background-color: var(--bg-color);
}
header nav ul li:not(:last-child) {
  border-bottom: 1px solid var(--black-10);
}
header nav.nav-shown {
  visibility: visible;
  opacity: 1;
  right: 0;
}
header.header-scrolled {
  top: -100px;
}

.back-up-top {
  position: sticky;
  bottom: -60px;
  margin-bottom: 25px;
  left: 80vw;
  width: 50px;
  height: 50px;
  background-color: var(--blue);
  border: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.back-up-top svg {
  height: 35px;
}
.back-up-top.visible {
  bottom: 20px;
}
.back-up-top span {
  display: none;
}

footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: var(--black-60);
  color: var(--white);
  padding: 25px 10px;
  font-size: 12px;
}
footer p {
  margin: 0;
}
footer ul {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
footer ul a {
  color: var(--white);
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 16px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.8);
}
.image-modal:not(.is-open) {
  opacity: 0 !important;
  visibility: hidden !important;
}
.image-modal .dialog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: 100%;
}
.image-modal button.close {
  padding: 6px 12px;
  align-self: flex-end;
  background: var(--blue);
  color: black;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.image-modal button.close svg {
  width: 20px;
  height: 20px;
}
.image-modal .img-container {
  height: 75vh;
  max-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}
.image-modal img {
  height: 100%;
  width: auto;
}
.image-modal .modal-buttons-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.switch-buttons,
.image-preview-slider-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.switch-buttons button,
.image-preview-slider-buttons button {
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  display: flex;
  gap: 6px;
  align-items: center;
  background-color: var(--blue);
  color: black;
  cursor: pointer;
}
.switch-buttons button:disabled,
.image-preview-slider-buttons button:disabled {
  cursor: not-allowed;
  color: #747474;
}
.switch-buttons button svg,
.image-preview-slider-buttons button svg {
  width: 20px;
  height: 20px;
}
.switch-buttons button.prev-img svg, .switch-buttons button.prev-btn svg,
.image-preview-slider-buttons button.prev-img svg,
.image-preview-slider-buttons button.prev-btn svg {
  transform: rotate(90deg);
}
.switch-buttons button.next-img svg, .switch-buttons button.next-btn svg,
.image-preview-slider-buttons button.next-img svg,
.image-preview-slider-buttons button.next-btn svg {
  transform: rotate(-90deg);
}

@media screen and (min-width: 480px) {
  .back-up-top {
    left: 85vw;
  }
}
@media screen and (min-width: 768px) {
  section {
    padding: 80px 50px;
  }
  .back-up-top {
    left: 75vw;
    width: 190px;
    font-size: 16px;
  }
  .back-up-top span {
    display: block;
  }
  footer ul {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  body h2 {
    font-size: 1.75rem;
  }
  body h3 {
    font-size: 1.75rem;
  }
  body p {
    font-size: 1.125rem;
  }
  footer {
    flex-direction: row;
    justify-content: space-evenly;
  }
  footer p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  header .header img {
    height: 65px;
  }
  .back-up-top {
    left: 80%;
  }
}
@media (prefers-color-scheme: dark) {
  header .header,
  header nav {
    box-shadow: none;
    border-bottom: 1px solid var(--black-60);
  }
  header nav {
    border-left: 1px solid var(--black-60);
    bottom: -250px;
  }
}
#about-us {
  border-bottom: 1px solid var(--black-10);
  background-color: var(--bg-color);
}
#about-us .further-down-btn {
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
#about-us .further-down-btn:hover {
  box-shadow: 0 0px 5px var(--black-60);
}

@media screen and (min-width: 1024px) {
  #about-us .further-down-btn {
    max-width: 220px;
  }
  #about-us .further-down-btn span {
    margin-right: 30px;
  }
}
#services {
  background-color: var(--white);
  border-bottom: 1px solid var(--black-10);
}

.service-card-container {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.service-card-container .service-card {
  padding: 20px;
  border: 1px solid var(--black-30);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: var(--bg-color);
}
.service-card-container .service-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.service-card-container .service-card p {
  margin-bottom: 0;
}

@media screen and (min-width: 480px) {
  .service-card-container .service-card img {
    object-fit: cover;
    width: 100%;
    height: 250px;
  }
  .service-card-container .service-card:nth-child(2) img {
    object-position: bottom;
  }
}
@media screen and (min-width: 768px) {
  .service-card-container {
    gap: 50px;
  }
  .service-card-container .service-card {
    flex-direction: row;
  }
  .service-card-container .service-card img {
    width: 300px;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .service-card-container .service-card {
    flex-direction: row;
  }
  .service-card-container .service-card img {
    width: 400px;
  }
}
#impressions {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--black-10);
}

#impressions {
  padding-right: 0;
}
#impressions .images-container {
  overflow: hidden;
}
#impressions .images {
  display: flex;
  margin-right: 20px;
  transition: transform 0.5s ease-out;
}
#impressions .image-preview-slider-buttons {
  margin-top: 32px;
  margin-right: 20px;
}
#impressions img {
  cursor: pointer;
  width: 300px;
  height: 250px;
  object-fit: cover;
}
#impressions img:not(last-of-type) {
  margin-right: 20px;
}

@media screen and (min-width: 768px) {
  #impressions {
    padding-right: 50px;
  }
  #impressions .images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-right: 0;
  }
  #impressions img {
    width: 100%;
    margin-right: 0;
  }
  #impressions .image-preview-slider-buttons {
    display: none;
  }
}
#contact {
  background-color: var(--white);
  padding-bottom: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}
.contact-list li a {
  text-decoration-color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--f-color);
  transition: color 0.3s;
}
.contact-list li a svg {
  height: 30px;
  color: var(--blue);
  transition: color 0.3s;
}
.contact-list li a:hover {
  text-decoration-color: var(--l-blue);
}
.contact-list li a:hover svg {
  color: var(--l-blue);
}

@media screen and (min-width: 1024px) {
  .contact-list a {
    font-size: 1.125rem;
  }
}

/*# sourceMappingURL=home.css.map */
