@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cyan: #84e2d9;
}

body {
  font-family: "Roboto", sans-serif;
}

.bg_cyan {
  background: #84e2d9;
}

.bg_lightBlue {
  background: #f3faff;
}

.fw_500 {
  font-weight: 500;
}

.fs_10 {
  font-size: 10px;
}

.fs_14 {
  font-size: 14px;
}

.font_roboto_slab {
  font-family: "Roboto Slab", serif;
}

.txt_stroke {
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #00000066;
  stroke: #00000066;
}

.btn_green,
.btn_green:hover {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--bs-white);
  background: #56b75e;
  font-weight: bold;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

#banner {
  min-height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/banner.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

.service_box img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 0.7;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.service_box a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}


.txt_dark {
  color: #444445;
}

.txt_blue {
  color: #00658B;
}

.txt_red {
  color: #EC0E0E;
}