html {
  scroll-behavior: smooth;
  font-size: 12px;
}

@media (max-width: 480px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: Merriweather, sans;
  margin: 0;
  padding: 0;
  background-color: #efeadf;
}

@media (max-width: 480px) {
  .header {
    text-align: center;
  }
}

.container {
  max-width: 1280px;
  padding: 2rem;
  margin: auto;
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }
}

.logo {
  width: 500px;
  max-width: 100%;
  display: block;
}

/* @media (max-width: 900px) {
  .logo {
    width: 180px;
  }
}

@media (max-width: 600px) {
  .logo {
    width: 140px;
  }
}

@media (max-width: 400px) {
  .logo {
    width: 110px;
  }
} */

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.logo-short {
  display: block;
  width: 100%;
  height: 16rem;
  background-image: url("../img/kruna.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  background-color: #0c4d63;
  height: 300px;
  border-radius: 8px;
  padding: 20px 60px;
  margin: 4rem 0;
}

.service-title {
  color: #efeadf;
  font-size: 4rem;
  font-weight: 400;
}
.service-img {
  width: 150px;
  height: 150px;
}

@media (max-width: 480px) {
  .service-card {
    padding: 10px;
    height: auto;
    width: auto;
    display: block;
    text-align: center;
  }

  .service-title {
    /* font-size: 2rem;
    font-weight: 300; */
  }

  .service-img {
    /* width: 70px;
    height: 70px; */
    display: none;
  }
}

.section {
  /* margin: 6rem 0; */
}

.section-title {
  font-size: 5rem;
  color: #0c4d63;
}

.section-subtitle {
  font-size: 2.5rem;
  color: #0c4d63;
}

.section-text {
  font-size: 2rem;
  color: #0c4d63;
}

.section-list {
  font-size: 2rem;
  color: #0c4d63;
  list-style: none;
  padding-left: 0;
}

.section-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 0.5rem;
}

.section-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 28px;
  background-image: url("../img/kruna.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive tweak for smaller screens */
@media (max-width: 480px) {
  .section {
    margin: 4rem 0;
    /* border-bottom: 1px solid #0c4d63; */
  }

  .section-title {
    font-size: 4rem;
  }

  .section-text {
    font-size: 1.8rem;
  }
  .section-list li {
    padding-left: 50px;
  }
  .section-list li::before {
    width: 40px;
    height: 26px;
  }
}

.breadcrumbs {
  display: inline-block;
  margin: 2rem 0;
  font-size: 1.8rem;
  color: #0c4d63;
  text-decoration: none;
  border-bottom: #0c4d63 solid 1px;
}
