html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  max-width: 2000px;
  font-size: 24px;
  font-family: Helvetica, Arial, sans-serif;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

h1 {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

strong {
  font-weight: 700;
}

.button {
  --bg-color: #00548c;
  display: inline-block;
  background-color: var(--bg-color);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  font-size: 24px;
  transition: background-color 0.3s ease;
}
.button:hover {
  filter: brightness(0.9);
}
@media (max-width: 768px) {
  .button {
    font-size: 16px;
    padding: 0.75rem 1.5rem;
  }
}

header {
  position: relative;
}
@media (max-width: 74rem) {
  header {
    min-height: 18rem;
  }
}
header h1 {
  margin: 0;
}
header img {
  display: block;
  box-sizing: border-box;
}
header .waves {
  position: relative;
  margin-bottom: 10rem;
  background-color: #78BE20;
}
header .waves ::before {
  content: "";
  position: absolute;
  background-image: url("../img/header_waves_Cut_Version.webp");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 10rem;
  transform: translateY(100%);
}
header img.circle,
header img.logo {
  width: 18rem;
}
header img.circle {
  position: absolute;
  bottom: 0;
  right: 6rem;
  transform: translateY(100%);
  aspect-ratio: 1/1;
}
@media (max-width: 1400px) {
  header img.circle {
    width: 10rem;
  }
}
@media (max-width: 1200px) {
  header img.circle {
    width: 8rem;
  }
}
@media (max-width: 768px) {
  header img.circle {
    display: none;
  }
}
header .header-text {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 2rem 10vw;
  position: relative;
}
header .header-text a {
  flex-shrink: 0;
}
header .header-text > div {
  flex: 1;
  max-width: 800px;
}
@media (max-width: 992px) {
  header .header-text {
    flex-direction: column;
    gap: 1.5rem;
  }
}
header #contact-button {
  position: absolute;
  top: 1rem;
  right: 2rem;
}

section {
  background-color: #ffffff;
  padding: 2rem 10vw;
  margin-bottom: 0rem;
}
@media (max-width: 50rem) {
  section {
    padding: 0 1rem;
  }
}
section .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
section .service-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
section .service-item img {
  width: 125px;
  height: 125px;
  flex-shrink: 0;
  object-fit: contain;
}
@media (max-width: 992px) {
  section .service-item img {
    width: 75px;
  }
}
section .service-item .service-content {
  flex: 1;
}
section .service-item .service-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 24px;
}
@media (max-width: 768px) {
  section .service-item .service-content h2 {
    font-size: 20px;
  }
}
section .service-item .service-content p {
  margin: 0;
  line-height: 1.6;
}
section .service-item .info {
  flex: 1;
}
section .service-item .info p {
  margin: 0;
  line-height: 1.6;
}
section .footnote {
  font-size: 0.75rem;
  text-align: right;
  margin-top: 1rem;
  font-style: italic;
}

footer {
  font-size: 16px;
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 2rem 10vw;
  box-sizing: border-box;
  background-color: #b3cce1;
  margin-top: 10rem;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background-image: url("../img/footerBg_Cut_Version.png");
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: translateY(-99%);
}
footer a {
  color: #000000;
  text-decoration: none;
}
footer .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15rem;
  align-items: start;
  max-width: 2000px;
  margin: auto 0;
}
@media (max-width: 1024px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}
footer .sanvartis-section {
  text-align: left;
}
footer .sanvartis-section .sanvartis-logo {
  height: 60px;
  margin-bottom: 1rem;
}
footer .sanvartis-section .sanvartis-text {
  color: #00548c;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}
footer .footer-menu {
  margin-top: 2rem;
}
footer .footer-menu a:last-child {
  margin: auto 2rem;
}
@media (max-width: 374px) {
  footer .footer-menu {
    display: inline-grid;
  }
  footer .footer-menu a:last-child {
    margin: 15px 0 0 0;
  }
}
footer .krystal-section {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: flex-start;
  flex-direction: column;
}
@media (max-width: 768px) {
  footer .krystal-section {
    align-items: center;
  }
}
footer .krystal-section .krystal-logo {
  height: 40px;
}
footer .krystal-section .copyright p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

.centerContent {
  padding: 2rem 10vw;
}

.bold {
  font-weight: 500;
}

.margin-1 {
  margin-top: 1rem;
}

.margin-2 {
  margin-top: 2rem;
}

.margin-3 {
  margin-top: 3rem;
}

.green {
  color: #78BE20;
}

.purple {
  color: #565294;
}

.orange {
  color: #e95931;
}

.yellow {
  color: #f7a944;
}

strong,
.strong {
  font-weight: 700;
}

.blue {
  color: #00548c;
}

.lightblue {
  color: #a6c5da;
}

.green-bg {
  background-color: #78BE20;
}

.purple-bg {
  background-color: #565294;
}

.orange-bg {
  background-color: #e95931;
}

.yellow-bg {
  background-color: #f7a944;
}

.blue-bg {
  background-color: #00548c;
}

.lightblue-bg {
  background-color: #a6c5da;
}

.cropped {
  width: 100%;
  height: auto;
  max-height: clamp(250px, 50vh, 500px);
  object-fit: cover;
  object-position: 0 40%;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .cropped {
    max-height: 290px;
  }
}

.greenwaveBg {
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 2rem 10vw;
  position: relative;
  background-color: #78BE20;
}
.greenwaveBg img.circle {
  width: 18rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 10rem;
  right: 6rem;
}
@media (max-width: 74rem) {
  .greenwaveBg img.circle {
    top: 3rem;
  }
}
@media (max-width: 50rem) {
  .greenwaveBg {
    padding: 0 1rem;
  }
}

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