/*
Theme Name: citykidz
Theme URI: http://example.com
Author: CityKidz Eindhoven
Description: Custom theme for CityKidz Eindhoven website
Version: 1.0
*/
/** CSS RESET START **/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  font-family: var(--font-body);
  word-spacing: 2px;
  line-height: 1.5;
  min-width: 320px;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
/** CSS RESET END **/
/** GLOBAL UTILITIES - START **/
.section-padding {
  padding: 120px 20px 120px 20px;
}
.container-default {
  padding: 20px;
}
.main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
}
.main-title_margin {
  margin-bottom: 30px;
}
.subtitle {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-orange);
    margin-bottom: 8px;
}
.subtitle__black {
    color: #000;
}
.text_margin-bottom {
  margin-bottom: 20px;
}
.text_center {
  text-align: center;
}
.text_italic {
  font-style: italic;
}
.text_bold {
  font-weight: bold;
}
.btn {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-weight: 400;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
.btn:hover {
  background-color: var(--color-orange);
}
.bullet-list {
  list-style: inherit;
  padding-left: 16px;
}
/** BACKGROUNDS **/
.multi-color-background {
  background-color: var(--color-light-orange);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 205, 0, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(0, 153, 255, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(90, 200, 90, 0.07) 0%, transparent 45%);
}
.green-bg {
  background-color: var(--color-green);
}
.red-bg {
  background-color: var(--color-red);
}
.orange-bg {
  background-color: var(--color-orange);
}
/** FLEX LAYOUT HELPERS **/
.flex-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.flex-row > div {
  flex: 1 1 100%;
}
.flex-row img {
  width: 100%;
  height: auto;
  display: block;
}
.flex-row_reverse {
  flex-direction: column-reverse;
}
/** GLOBAL UTILITIES - END **/
@media (min-width: 768px) {
  .section-padding {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (min-width: 1025px) {
  .container-default {
    padding: 20px 15%;
  }
  .section-padding {
    padding-left: 15%;
    padding-right: 15%;
  }
  .flex-row {
    flex-direction: row;
    gap: 40px;
  }
  .flex-row > div {
    flex: 1 1 50%;
  }
  .flex-row_reverse {
    flex-direction: row-reverse;
  }
}
