/* BASE
------------------------------------------------- */
html {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *::before, *::after {
    box-sizing: inherit;
}
h1, h2, h3 {
    font-family: var(--font-family-suez);
    font-weight: normal;
    letter-spacing: -0.2px;
    line-height: 1.3;
}
h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 50px;
    margin-right: 0;
    display: block;
    background-image: linear-gradient(263deg, #ff5351, #65379f 52%, #2695c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 {
    font-size: 26px;
    color: #4b326b;
    margin-top: 40px;
    margin-bottom: 20px;
}
h3 {
    font-size: 24px;
    color: #574174;
    margin-top: 30px;
    margin-bottom: 16px;
}
h4 {
    letter-spacing: -0.1px;
    color: #311f48;
    margin-top: 0;
    margin-bottom: 10px;
}
.redTitle {
    font-family: var(--font-family-suez);
    color: #ff5251;
}
.gradient {
    background-image: linear-gradient(263deg, #ff5351, #65379f 52%, #2695c1);
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.orange-link {
    color: var(--color-orange);
    text-decoration: underline;
}
.gray {
    color: #76717d;
}
p {
    font-weight: normal;
    letter-spacing: -0.1px;
}
a { color: var(--color-orange)}
.title { font-size: 27px; }
.text-center { text-align: center; }
.text-start { text-align: start; }
.justify-center { margin-inline: auto; justify-content: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 15px;}
.mb-200 { margin-bottom: 200px }
.my-space { margin-block: 50px }
.mb-space { margin-bottom: 50px }
.py-space { padding-block: 50px }
.pt-space { padding-top: 50px }
.pb-space { padding-bottom: 50px }
.min-height-un { min-height: unset; }
.horizontal-line {
    width: 100%;
    height: 1px;
    background-color: var(--bg-color-beige);
}
.d-none {
    display: none !important;
}
.border-transparent {
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    h1 { font-size: 42px; }
    h2 { font-size: 32px; }
    h3 { font-size: 30px; }
    p { font-size: 19px; }
    .title { font-size: 40px; }
}

@media (min-width: 992px) {
    h1 {
        font-size: 62px;
        margin-top: 70px;
        margin-bottom: 50px;
    }
    h2 { font-size: 38px; }
    h3 {
        font-size: 34px;
        margin-top: 50px;
    }
    .title { font-size: 44px }
    .my-space { margin-block: 100px }
    .mb-space { margin-bottom: 100px }
    .py-space { padding-block: 100px }
    .pt-space { padding-top: 100px }
    .pb-space { padding-bottom: 100px }
}
@media (max-width: 922px) {
    .itemHead, .head { text-align: left }
    .itemHead.center, .head.center { text-align: center }
}