/*@import url(../assets/fonts/Roboto/Roboto-Regular.ttf);*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
  --hue-color: 173;
  /* primary rgba(0, 178, 126, 1) */
  --primary: #00b27e;
  --primary-decent: #367f6a;
  --primary-hover: rgba(0, 178, 125, 0.72);
  --rgb-primary: 0, 186, 184;
  --title-color-999: #999;
  --title-color-666: #666;
  --title-color-333: #333;
  /* Input */
  --input-border-color: #d1d1d1;
  --input-placeholder-color: #d1d1d1;
  --input-focus-color: #00b27e;
  /* yellow */
  --yellow: #ffdc06;
  /* download */
  --download: #666666;
  --download-hover: #919191;
  /* body background */
  --body-bg: #f5f5f5;

  /* Font weight */
  --font-thin: 300;
  --font-medium: 400;
  --font-semi-bold: 700;

  --img-scale: 1.2;

  /* header */
  --fixed-header: 99;
  --header-height: 68px;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

h1 {
  font-weight: 500;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--title-color);
}
.section-title span {
  position: relative;
  white-space: nowrap;
}
.section-title span em {
  font-style: normal;
  position: relative;
  z-index: 1;
}
.section-title span::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0.2em;
  bottom: 0;
  width: 100%;
  height: 68%;
  border-radius: 4px;
  background: #d4edff;
}

.overflow-hidden {
  overflow: hidden;
}

.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (min-width: 576px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    width: 1170px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1560px) {
  .container {
    width: 1440px;
  }
  .section-title {
    font-size: 3rem;
  }
}
