@charset "utf-8";
/* CSS Document */

html {font-size: 16px}

body
{
    font-size: 1rem;
    margin: 0;
}

header, main, footer, section, article {display: block;}

*
{
    box-sizing: border-box;
    margin: 0;
}

img, video {vertical-align: top;}

/*p {margin-bottom: 1em;}

p:last-child {margin-bottom: 0;}*/

/***** Utility Classes *****/
.display-block {display: block;}

.display-inline-block {display: inline-block;}

.display-none {display: none;}

.full-width {width: 100%;}

.site-content-width
{
    max-width: 1600px;
    width: 100%
}

.block-content-width {width: 100%;}

.text-content-width {width: 100%;}

.full-viewport-height {height: 100vh;}

.clearfix::after
{
    clear: both;
    content: "";
    display: block;
}

.hidden
{
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.overflow-hidden {overflow: hidden;}

.pos-absolute {position: absolute;}

.pos-relative {position: relative;}

.z-index-1 {z-index: 1;}

.z-index-10 {z-index: 10;}

.object-pos-center {object-position: center;}

.object-fit-cover {object-fit: cover;}

.transform-translate-xy-center
{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.transform-translate-x-center
{
    left: 50%;
    transform: translateX(-50%)
}

.transform-translate-y-center
{
    top: 50%;
    transform: translateY(-50%)
}

.margin-auto {margin: auto;}

.margin-l-r-auto {margin: 0 auto}

.block-margin-bttm {margin-bottom: 4rem;}

.content-margin-bttm {margin-bottom: 3rem;}

/*.margin-none {margin: 0;}

.margin-bttm-none {margin-bottom: 0;}

.margin-top-none {margin-top: 0;}

.margin-bttm-xs {margin-bottom: 0.5rem;}

.margin-bttm-sm {margin-bottom: 1rem;}

.margin-bttm-base {margin-bottom: 1.5rem;}

.margin-bttm-md {margin-bottom: 2rem;}

.margin-bttm-lg {margin-bottom: 3rem;}

.margin-bttm-xl {margin-bottom: 4rem;}*/

/*.sec-content-margin-bttm {margin-bottom: 4rem;}*/

.padding-none {padding: 0;}

.site-sec-padding-top-bttm
{
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.site-sec-padding-left-right
{
    padding-left: 1rem;
    padding-right: 1rem;
}

.flex {display: flex;}

.flex-column {flex-direction: column;}

.flex-row {flex-direction: row;}

.flex-wrap {flex-wrap: wrap;}

/*This is a CSS trick used for flex box in order to right align a single or group of flex item(s) at the end
of the flex-order. This is needed because multiple flex items on the main axis are treated as a group.*/
.flex-item-right-align {margin-left: auto;}

.justify-content-center {justify-content: center;}flex-justify-content-center

.justify-content-flex-end {justify-content: flex-end;}

.justify-content-space-between {justify-content: space-between;}

.justify-content-space-around {justify-content: space-around;}

.justify-content-space-evenly {justify-content: space-evenly;}

.align-items-center {align-items: center;}

.align-self-center {align-self: center;}

/*.gap-xs {gap: 0.25rem}

.gap-s {gap: 0.5rem}

.gap-base {gap: 1rem}

.gap-l {gap: 1.5rem}

.gap-xl {gap: 2rem}

.gap-2xl {gap: 3rem}

.gap-3xl {gap: 4rem}*/

.flex-card-row-gap {row-gap: 4rem;}

.text-align-center {text-align: center;}

.text-align-justify {text-align: justify;}

.text-align-left {text-align: left;}

/*.font-family-sacramento {font-family: 'Sacramento', cursive;}

.font-family-bebas-neue {font-family: 'Bebas Neue', sans-serif;}

.font-family-dancing-script {font-family: 'Dancing Script', cursive;}

.font-family-grandiflora-one {font-family: 'Grandiflora One', cursive;}

.font-family-comfortaa {font-family: 'Comfortaa', sans-serif;}

.font-family-urbanist {font-family: 'Urbanist', sans-serif;}

.font-family-arvo {font-family: 'Arvo', serif;}

.font-family-pt-serif-caption {font-family: 'PT Serif Caption', serif;}*/

.font-weight-200 {font-weight: 200;}

.font-weight-300 {font-weight: 300;} 

.font-weight-400 {font-weight: 400;}

.font-weight-500 {font-weight: 500;}

.font-weight-600 {font-weight: 600;}

.font-weight-700 {font-weight: 700;}

.bg-white {background-color: #ffffff;}

/*.bg-light-green {background-color: #9FC6B2;}*/

/*.bg-light-green {background-color: #F5EBDA;}*/

/*.bg-light-beige {background-color: #FFFEFB;}*/

.bg-light-grey {background-color: #f2f2f2;}

.bg-med-grey {background-color: #d9d9d9;}

.bg-pink-swan {background-color: #bfafaf;}

.bg-dark-navy-blue {background-color: #0f1b27;}

.color-white {color: #ffffff;}

.color-black {color: #000000;}

/*.color-light-green {color: #9FC6B2;}

.color-rouge {color: #9e4848;}

.color-light-rouge {color: #bd7171;}*/

.color-dark-navy-blue {color: #0f1b27;}

.color-pink-swan {color: #bfafaf;}

/*.color-light-green {color: #F5EBDA;}*/

.border-none {border: 0px;}

.list-style-none {list-style: none;}
/***** END Utility Classes *****/

.hero-item-right {padding: 0.5rem 0 7rem 0;}

.hero-logo
{
    max-width: 400px;
    width: 70%;
}

.tag-line
{
    color: #fff;
    /*font-family: 'Arvo', serif;*/
    font-family: 'PT Serif Caption', serif;
    font-size: 3em;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}

.hero-flair
{
    max-width: 300px;
    top:44%;
    width: 60%;
}

.h1-primary
{
    font-family: 'Sacramento', cursive;
    font-size: 3.5em;
    line-height: 1.3em;
    margin-bottom: 0.6em;
}

.h2-primary
{
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.6em;
    line-height: 1.2em;
    margin-bottom: 1.5em;
}

.h3-primary
{
    font-family: 'PT Serif Caption', serif;
    font-size: 1.2em;
    line-height: 1.2em;
    margin-bottom: 1.5em;
}

.primary-p
{
    font-family: 'PT Serif Caption', serif;
    font-size: 1.1em;
    line-height: 1.6em;
    margin-bottom: 1em;
}

.rose-flair
{
    max-height: 700px;
    opacity: 30%;
    right: -40%;
    width: 100%;
}

.bttn-group
{
    gap: 2rem;
}

.button
{
    border: 0px solid #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.2);
    cursor: pointer;
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.5em;
    padding: 0.5em 0.5em 0.4em 0.5em;
    width: 80%;
}

.card {gap: 2rem;}

.card > * {margin: 0;}

.highlight-cont {}

.highlights-icon
{
    max-width: 150px;
    width: 35%;
}

.highlights-card {width: 96%;}

.post-card-cont {max-width: 430px;}

.post-card-cont::before
{
    background-color: #d9d9d9;
    content: "";
    height: 90%;
    opacity: 80%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

/*.post-card-flair
{
    position: absolute;
    width: 100%;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d9d9d9;
    opacity: 80%;
}*/

.post-card
{
    box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);
    padding: 1em;
    width: 94%;
}

.partner-logo
{
    max-width: 240px;
    width: 60%;
}

.partner-card
{
    max-width: 400px;
}

.form
{
    font-family: 'PT Serif Caption', serif;
    font-size: 1.1em;
}

.form-content-margin {margin-bottom: 2rem;}

.fieldset
{
    padding: 1rem 0;
}

.form-label
{
    margin-bottom: 0.5rem;
}

.form-input
{
    border: 1px solid #0f1b27;
    border-radius: 8px;
    font-family: 'PT Serif Caption', serif;
    font-size: 1em;
    padding: 0.3em 0.5em;
}

.form-bttn {box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.4);}

.margin-none {margin: 0;}

@media screen and (min-width: 500px)
{
    .rose-flair
    {
        right: -30%;
        width: 90%;
    }
}

@media screen and (min-width: 700px)
{
    .site-sec-padding-left-right
    {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .rose-flair {width: 64%;}
    
    .highlights-card {width: 70%;}
}

@media screen and (min-width: 800px)
{
    .mq-800-pos-relative {position: relative;}
    
    .mq-800-width-50 {width: 50%;}
    
    .site-sec-padding-top-bttm
    {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }
}

@media screen and (min-width: 900px)
{
    .block-content-width {width: 80%;}
    
    .text-content-width {width: 80%}
    
    .site-sec-padding-left-right
    {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .rose-flair
    {
        right: -10%;
        width: 48%;
    }
    
    .highlights-card {width: 60%;}
}

@media screen and (min-width: 1100px)
{
    .mq-1100-flex-row {flex-direction: row;}
    
    .mq-1100-align-items-start {align-items: flex-start;}
    
    .rose-flair
    {
        right: -4%;
        width: 38%;
    }
    
    .highlights-card
    {
        max-width: 320px;
        width: 28%;
    }
    
    /*.post-card-cont {width: 48%;}*/
    
    .button {width: 60%;}
}

@media screen and (min-width: 1400px)
{
    .text-content-width {width: 60%}
    
    .site-sec-padding-left-right
    {
        padding-left: 0;
        padding-right: 0;
    }
}







