/*========== BASE ==========*/
*,
::before,
::after {
   box-sizing: border-box;
}


body {
   font-family: var(--body-font);
   font-size: var(--normal-font-size);
   line-height: 26px;
}

h1,
h2,
h3,
ul,
p {
   margin: 0;
}


ul {
   padding: 0;
   list-style: none;
}

a {
   text-decoration: none;
}

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

/*========== CLASS CSS ==========*/
.section-title,
.section-title-center {
   font-size: var(--h2-font-size);
   color: var(--title-color);
   text-align: center;
   margin-bottom: var(--mb-3);
}

