/* Css reset */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
 display: block;
}
body {
 line-height: 1;
 overflow-x: hidden;
}
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;
}



/* ================================================== */
/* GENERAL */

@font-face {
    font-family: "SiteSerifRegular";
    src: url("../../fonts/202402161912/cormorantSC/regular.ttf") format("truetype");
}

@font-face {
    font-family: "SiteLight";
    src: url("../../fonts/202402161912/BentonSans/BentonSansLight.otf") format("truetype");
}

@font-face {
    font-family: "SiteRegular";
    src: url("../../fonts/202402161912/BentonSans/BentonSansRegular.otf") format("truetype");
}

@font-face {
    font-family: "SiteBold";
    src: url("../../fonts/202402161912/BentonSans/BentonSansBold.otf") format("truetype");
}

:root {
    --fffefb: 255, 254, 251; /* Almost white */
    --880402: 136, 4, 2; /* Brand red */
    --f4797a: 244, 121, 122; /* Brand pink */
    --fdf2cc: 253, 242, 204; /* Brand yellow */
    --d4ac55: 212, 172, 85; /* Brand gold */
    --e9e9ed: 233, 233, 237; /* Default grey */
    --f7f5f2: 247, 245, 242; /* Light grey */
    --333: 51, 51, 51; /* Brand black */
}

body {
    background: rgb(var(--fffefb));
    min-height: 100vh;
    width: 100vw;
    font-family: "SiteRegular", "Arial", sans-serif;
    line-height: 20px;
    color: rgb(var(--333));
}

.centerContent {
    max-width: 414px;
    min-width: 414px;
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    height: auto;
    background: transparent;
    padding-bottom: 40px;
}

.xRelCenter {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
   
.yRelCenter {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.xyRelCenter {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

a {
    color: rgb(var(--d4ac55));
}

/* ------------------------------------------------ */
/* Buttons */


.brandBtn {
    line-height: 20px;
    cursor: pointer;
    border-radius: 20px;
    padding-top: 10px;
    padding-bottom: 7px;
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    display: inline-block;
    border: 0;
    font-family: "SiteRegular", "Arial", sans-serif;
    color: #000;
    background: rgb(var(--e9e9ed));
    cursor: pointer;
    box-shadow: rgb(219, 219, 219) -1px 1px 3px 1px;
    font-size: 16px;
}

.brandBtn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--e9e9ed), 0.4);
}

.brandBtn.black {
    background: rgb(var(--333));
    color: rgb(var(--fdf2cc));
}

.brandBtn.black:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--333), 0.4);
}

.brandBtn.red {
    background: rgb(var(--880402));
    color: rgb(var(--fdf2cc));
}

.brandBtn.red:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--880402), 0.7);
}

.brandBtn.gold {
    background: rgb(var(--d4ac55));
    color: rgb(var(--fdf2cc));
}

.brandBtn.gold:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--d4ac55), 0.4);
}

.brandBtn.white {
    background: rgb(var(--fffefb));
    color: rgb(var(--333));
}

.brandBtn.white:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--fffefb), 0.4);
}

.brandBtn:hover {
    background-image: linear-gradient(rgb(0 0 0/10%) 0 0);
    background-blend-mode: darken;
}

.brandBtn:active {
    background-image: linear-gradient(rgb(0 0 0/30%) 0 0);
    background-blend-mode: darken;
}

/* ------------------------------------------------ */
/* Header */

.header {
    position: fixed;
    display: block;
    width: 100vw;
    min-width: 100vw !important;
    height: 20px;
    z-index: 9;
    text-align: center;
    color: rgb(var(--fffefb));
    background-color: rgba(0, 0, 0, .25);
}

.header .color {
    width: 100%;
    height: 2px;
    background-color: rgb(var(--fdf2cc));
    position: absolute;
}

.header span {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 18px;
    white-space: nowrap;
    font-family: "SiteSerifRegular", Times, serif;
    margin-top: 2px;
}

/* ------------------------------------------------ */
/* Text Block */

.textBlock {
    background-color: rgb(var(--fffefb));
    padding: 80px 20px 60px;
}
.textBlock h1,
.textBlock h2,
.textBlock h3 {
    color: rgb(var(--333));
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
    font-family: "SiteBold", "Arial", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.textBlock p {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    font-weight: 400;
    line-height: 20px;
    font-size: 16px;
}

.textBlock p b {
    font-weight: 700;
}

.textBlock p i {
    font-style: italic;
}

.textBlock.centerAll p {
    text-align: center !important;
}