:root {
    --white: #FFFFFF;
    --bg-grey: #F6F6F6;
    --bg-navy: #374E62;
    --bg-burgundy: #8f0B16;

    --cta-metal: #939AA2;
    --cta-navy: #253645;
    --black: #000000;
    --cta-green: #00782E;
    --cta-grey: #999999;

    --ta-grey: #666666;
    --ta-red: #9E3533;

    --error-red: #CC0100;

    --ba-white: #F5F4F0;
    --ba-grey: #E7E6DE;

    --border-grey: #E5E5E5;
    --border-grey-2: #CCCCCC;
    --border-grey-3: #D9D9D9;
    --share-square: #F6F5F2;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "trade-gothic-next", sans-serif;
    color: var(--cta-navy);
    background-color: var(--white);
    font-weight: 400;
    line-height: 150%;
    font-size: 1rem;     
}

/* #region logo */
.logo-text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    width: min-content;
    gap: 0.3125rem;
}
.logo-text > span {
    margin-top: 0.3rem;
}
.logo-text p {
    font-family: "garamond-premier-pro", serif;
    line-height: 110%;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 1.625rem !important;
}
.logo {
    width: 1.875rem;
    height: 1.875rem;
    padding: 0.25rem 0.3125rem 0.21875rem;   
}
.logo > text {
    font-family: "garamond-premier-pro", serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 110%;
}
/*#endregion*/

h1,h4,
p.l {
    color: var(--cta-navy);
    font-family: "garamond-premier-pro", serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.04rem;
}
p.l {
    color: currentColor;
}

h2 {
    color: var(--cta-navy);
    font-family: "trade-gothic-next", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 150%; 
}


a {
    font-family: "trade-gothic-next", sans-serif;
    color: var(--cta-navy);
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 0 0);     
}
a.ep {
    padding: 0.5em 0;
}
a.btn {
    display: inline-block;
    padding: 0.75rem 1.625rem;
    background-color: var(--cta-navy);
    box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}
a.btn.lg {
    padding: 1rem 2.5rem;
}
a.website-plans {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--cta-green);
    color: var(--white);
    font-weight: 600;    
}

button {
    font-family: "trade-gothic-next", sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

button.default {
    outline: none;
    border: none;
    background: var(--cta-navy);
    color: var(--white);
    width: 100%;
    
    padding: 0.875rem 1.625rem;
    background-color: var(--cta-navy);
}
.shadow {
    box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}
button.default:hover {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 0 0);     
}

button.a {
    color: var(--cta-navy);
    display: inline-block;
    background: none;
    outline: none;
    border: none;
    padding: 0.875rem 0;
}

.transition-05 {
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
.transition-10 {
    transition: transform 1s ease-out, opacity 0.75s ease-out;
}
.t-delay-50 {
    transition-delay: 0.05s;
}
.t-delay-100 {
    transition-delay: 0.1s;
}
.t-delay-150 {
    transition-delay: 0.15s;
}
.t-delay-200 {
    transition-delay: 0.2s;
}
.hl-transition-enter {
    transform: translateX(-100%);
    opacity: 0;
}
.hl-transition-enter.half {
    transform: translateX(-50%);    
}
.hl-transition-enter.triple {
    transform: translateX(-300%);
}
.hr-transition-enter {
    transform: translateX(100%);
    opacity: 0;
}
.hr-transition-enter.half {
    transform: translateX(50%);    
}


.full-size {
    width: 100%;
    height: 100%;
}
.bg-white {
    background-color: var(--white) !important;
}
.bg-navy {
    background-color: var(--cta-navy) !important;
    color: var(--white);
}
.bg-green {
    background-color: var(--cta-green) !important;
}
.text-white {
    color: var(--white) !important;
}
.text-black {
    color: var(--black) !important;
}
.text-navy {
    color: var(--cta-navy) !important;
}
.text-green {
    color: var(--cta-green) !important;
}
.text-cta-grey {
    color: var(--cta-grey) !important;
}
.strong-600 {
    font-weight: 600;
}
.show-67 {
    display: none;
}
.show-48 {
    display: none;
}
.show-41 {
    display: none;
}
.show-30 {
    display: none;
}

.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.between {
    justify-content: space-between;
}
.center {
    justify-content: center;
}
.end {
    justify-content: end;
}
.align-center {
    align-items: center;
}

.mb-32-28 {
    margin-bottom: 2rem;
}
.mb-50-28 {
    margin-bottom: 3.125rem;
}
.mb-50-40 {
    margin-bottom: 3.125rem;
}
.mb-10-16 {
    margin-bottom: 0.625rem;
}
.mb-24-28 {
    margin-bottom: 1.5rem;
}
.mb-20-16 {
    margin-bottom: 1.25rem;
}
.mb-90-80 {
    margin-bottom: 5.625rem;
}
.mt-32 {
    margin-top: 2rem;
}
.pt-100-60 {
    padding-top: 6.25rem;
}
.pt-120-60 {
    padding-top: 6.25rem;
}
.pb-100-60 {
    padding-bottom: 6.25rem;
}
.w100 {
    width: 100%;
}
.text-center {
    text-align: center;
}
.w60p {
    padding-left: 20%;
    padding-right: 20%;
}

.default-middle {
    width: 77.5rem;
    margin: auto;
}
.default-middle-2,
.default-middle-3 {
    width: 85.25rem;
    margin: auto;
}

@media (width <= 90em) {
    .default-middle {
        margin: 0;
        width: 100%;
        padding-left: 6.9%;
        padding-right: 6.9%;
    }
    .default-middle-2,
    .default-middle-3 {
        margin: 0;
        width: 100%;
        padding-left: 6%;
        padding-right: 6%;
    }
}
@media (width <= 67.5em) {
    .hide-67 {
        display: none !important;
    }
    .show-67 {
        display: block;
    }
}
@media (width <= 55em) {
    .hide-55 {
        display: none !important;
    }
}
@media (width <= 48em) {
    h2 {
        font-size: 1rem;
    }
    .mb-32-28 {
        margin-bottom: 1.75rem;
    }
    .mb-50-28 {
        margin-bottom: 1.75rem;
    }
    .mb-50-40 {
        margin-bottom: 2.5rem;
    }
    .mb-10-16 {
        margin-bottom: 1rem;
    }
    .mb-90-80 {
        margin-bottom: 5rem;
    }
    .mb-24-28 {
        margin-bottom: 1.75rem;
    }
    .mb-20-16 {
        margin-bottom: 1rem;
    }
    .ribbon {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }
    .pt-100-60 {
        padding-top: 3.75rem;
    }
    .pt-120-60 {
        padding-top: 3.75rem;
    }
    .pb-100-60 {
        padding-bottom: 3.75rem;
    }
    a.btn {
        padding: 0.75rem 0.75rem;        
    }
    a.btn.lg {
        padding: 0.75rem 1.75rem;
    }
    a.website-plans {
        padding: 0.75rem 1.75rem;
    }
    .show-48 {
        display: block;
    }
    .hide-48 {
        display: none;
    }
}
@media (width <= 41.25em) {
    .show-41 {
        display: block;
    }
    .hide-41 {
        display: none;
    }
}
@media (width <= 30em) {
    h2 {
        font-size: 0.875rem;
    }
    .default-middle,
    .default-middle-2 {
        margin: 0;
        width: 100%;
        padding-left: 1.5625rem;
        padding-right: 1.5625rem;
    }
    .default-middle-3 {
        margin: 0;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;        
    }
    .hide-30 {
        display: none !important;
    }
    .pg-squeeze {
        width: 18.125rem;
        margin-left: auto;
        margin-right: auto;
    }
    .show-30 {
        display: block;
    }
    .hide-30 {
        display: none;
    }
}


/* #region navbar */
nav {
    height: 4.75rem;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    z-index: 90;
    /*temp*/
    background-color: transparent;
    /* border-bottom: 1px solid var(--cta-grey); */
    transition: 0.2s all;
}

nav > div {
    /*width: 90%;*/
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav #nav-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

nav #nav-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.nav-links-mobile > button {
    background: none;
    border: none;
    padding: 0.25rem 0.2rem;
}
.nav-links-mobile > button > svg {
    width: 1.25rem;
    height: 1.25rem;
}
.nav-menu-mobile {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 10.5rem;
    height: 13rem;
    background-color: var(--white);
    color: var(--black);
    border-radius: 1.5rem;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 0.9fr 1fr 0.8fr;
    font-size: 1rem !important;
}
.nav-menu-mobile a {
    text-decoration: none;
    color: var(--black);
}
.nav-menu-mobile > div {
    position: relative;
}
.nav-menu-mobile > div:nth-child(1) > button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0.5rem 0.5rem 0 0;
    width: 2.25rem;
    height: 2.25rem;
    background: none;
    outline: none;
    border: none;
}
.nav-menu-mobile > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    gap: 1.25rem;
}
.nav-menu-mobile > div:nth-child(3) {
    border-top: 2px solid var(--border-grey-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-menu-mobile p {
    font-size: 1rem !important;
}


/*#endregion*/

/*#region hero*/
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-top: -4.75rem;
    background-color: var(--base-white);
    overflow: hidden;
}
#hero > img {
    /*temp*/
    position: absolute;
    z-index: 1;

    height: 100%;
    width: calc(max(100%, 1080px));
    object-fit: fill;
    object-position: left bottom;
}
#hero > div {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
}

#hero-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 7.5rem;
    padding-top: 11.5rem;
}
#hero-text {
    padding-top: 7%;
    width: 36rem;
}
p.m {
    font-size: 1.25rem;
    line-height: 150%;
    font-weight: 200;
}
#hero-preview {
    width: 36rem;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 1.25rem -0.625rem 1.25rem 0 rgba(0, 0, 0, 0.25);
}

@media (width <= 90em) {
    h1,h4,
    p.l {
        font-size: 3.25rem;
    }
    #hero-content {
        justify-content: space-between;
        gap: 0;
    }
    #hero-text {
        width: 45%;
    }
    #hero-preview {
        width: 45%;
    }
}
@media (width <= 72.5em) {
    h1,h4,
    p.l {
        font-size: 2.75rem;
    }
    p.m {
        font-size: 1rem;
    }
}
@media (width <= 61em) {
    h1,h4,
    p.l {
        font-size: 2.25rem;
    }
}
@media (width <= 52em) {
    h1,h4,
    p.l {
        font-size: 2rem;
    }
    p.m {
        font-size: 0.825rem;
    }
}
@media (width <= 48em) {
    h1,h4,
    p.l {
        font-size: 2.5rem;
    }
    #hero-content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 8.5rem;
    }
    #hero-text {
        text-align: center;
        width: calc(min(100%, 22rem));
        padding-top: 0;
    }
    #hero-preview {
        width: 100%;
        margin-top: 2.5rem;
    }
}

/*#endregion*/

/*#region features*/

#features {
    scroll-margin-top: 4.75rem;
    text-align: center;
}
#features-content {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: clamp(12rem, 55%, 56.25rem) auto;
    column-gap: 3.5%;
    width: 100%;
}
#features-preview {
    position: relative;
    margin-bottom: -40%;
}
#features-preview > img {
    position: relative;
    object-fit: cover;
    object-position: 0 0;
    height: 85%;
    width: 100%;
    z-index: 1;
}
#features-preview > div.shadow {
    position: absolute;
    z-index: 0;
    box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 80%;
    z-index: 0;
}
#features-preview > div.link {
    position: absolute;
    bottom: 15%;
    height: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}
#features-preview > div.link > p {
    width: 24rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.625rem;
    font-family: Arial, Helvetica, sans-serif;
    color: #242424;
    font-size: 0.875rem;
    background-color: #FCFCFC;
    border-radius: 1.25rem;
    border: 1px solid #CFCFCF;
    transition: all .2s ease-in;
}
#features-preview > div.link > p:hover {
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.145) 0 0);*/
    background-color: #D4D6D9;
    border: 1px solid #A5A7A9;         
}
#features-preview > div.gradient {
    position: absolute;
    width: 100%;
    height: 85%;    
    background: #FFFFFF;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 3%,  rgba(0, 0, 0, 0) 23%);
    z-index: 2;
}

#features-col {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 11% 22% 13% 17% 22% 14% auto;
}
#features-col div {
    margin-top: auto;
    text-align: left;
}
#features-col div h6 {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
    font-weight: 700;
}
#features-col div p {
    font-size: 1rem;
}

@media (width <= 67.5em) {
    #features-col div h6 {
        font-size: 1rem;
        margin-bottom: 1em;
    }
    #features-col div p {
        font-size: 0.75rem;
    }
}
@media (width <= 55em) {
    #features-col div h6 {
        font-size: 0.75rem;
    }
    #features-col div p {
        font-size: 0.625rem;
    }
}
@media (width <= 48em) {
    #features-col {
        grid-template-rows: 11% 20% 16% 17% 20% 15% auto
    }    
}
@media (width <= 41.25em) {
    #features-preview {
        margin-bottom: -180%;
    }
    #features-preview > img {
        height: 82.5%;        
    }
    #features-preview > div.shadow {
        height: 77.5%;
    }
    #features-preview > div.gradient {
        background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 3%,  rgba(0, 0, 0, 0) 23%);
        height: 82.5%;  
    }
    #features-preview > div.link {
        bottom: 18%;
    }
    #features-col {
        grid-template-rows: 7% 21% 12% 19% 27% 14% auto;
    }    
}
@media (width <= 26em) {
    #features-preview > div.link > p {
        width: 18rem;
        font-size: 0.75rem;
    }
    #features-col {
        grid-template-rows: 12% 19% 15% 17% 25% 12% auto;
    }      
}

/*#endregion*/


#how-it-works {
    background: conic-gradient(from 90deg at 1px 1px, var(--white) 90deg, var(--share-square) 0) 0 0/50px 50px;
}
#how-it-works-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 54.5rem;
    gap: 1.25rem;
}
#how-it-works-cards .card {
    position: relative;
    height: 15rem;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.25);
    padding: 3.125rem 3.125rem 2rem;
    display: grid;
    grid-template-columns: 12% auto;
    grid-template-rows: 1fr;
    text-align: left;    
}
#how-it-works-cards .card .card-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#how-it-works .number {
    font-family: "garamond-premier-pro", serif;
    font-size: 4.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.0475rem;
}
#how-it-works-cards p {
    font-size: 1rem;
}
#how-it-works p.title {
    font-family: "garamond-premier-pro", serif;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.03rem;    
}
#how-it-works .graphic {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3125rem;
    width: 6.25rem;
}
#how-it-works .graphic p {
    font-size: 0.875rem;
}

@media (width <= 90em) {
    #how-it-works-cards .card {
        height: 15.75rem;
        padding: 2rem 2rem 1.25rem;
    }
}
@media (width <= 61em) {
    #how-it-works p.title {
        font-size: 2.75rem
    }
    #how-it-works .number {
        font-size: 4.25rem;
    } 
}
@media (width <= 48em) {
    #how-it-works-cards .card {
        height: min-content;
        padding: 1.5rem 1.75rem 1.25rem 1.5rem ;
    }
    #how-it-works p.title {
        font-size: 2.25rem
    }
    #how-it-works-cards .card .card-text {
        justify-content: flex-start;
    }
    #how-it-works-cards p {
        font-size: 0.75em
    }
    #how-it-works .number {
        font-size: 3.5rem;
    }
}
@media (width <= 37.5em) {
    #how-it-works .card {
        grid-template-columns: 16% auto;
    }
    #how-it-works p.title {
        font-size: 2rem
    }
    #how-it-works .number {
        font-size: 3rem;
    }    
}
@media (width <= 30em) {
    #how-it-works .number {
        font-size: 2.75rem;
    }
}

/* #customization {
    height: max-content;
} */

#customization-preview {
    position: relative;
    bottom: -0.3125rem;
    width: 100%;
}

/*#region pricing*/
#pricing {
    position: relative;
    width: 100vw;
    overflow: hidden;
    height: 77.25rem;
    scroll-margin-top: 4.75rem;
}
#pricing > div {
    position: absolute;
    z-index: 2;
}
#pricing > img {
    /*temp*/
    position: absolute;
    z-index: 1;

    height: 100%;
    object-position: 50% 0;
    width: calc(max(100%, 2000px));
}

#pricing-cards {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    justify-content: center;
}
#pricing-cards > div.grad {
    position: absolute;
    bottom: -3.125rem;
    width: 50%;
    height: 12rem;
    background-image: radial-gradient(circle at 3px 3px, var(--border-grey) 3px, transparent 0);
    background-size: 40px 40px;
    z-index: 1;
}
#pricing-content {
    width: 100%;
    text-align: center;
}
.pricing-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 17.125rem auto 6.25rem;
    width: 25rem;
    height: 46.25rem;
    padding: 2.5rem;
    box-shadow: 0 0 0.625rem 0.3125rem rgba(0, 0, 0, 0.25);
    background-color: var(--white);
    text-align: left;
    z-index: 2;
}
.pricing-card .highlight-bar {
    position: absolute;
    top: -2.5rem;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: var(--cta-green);
    color: var(--white);
    border-radius: 1.25rem 1.25rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pricing-cards .price {
    display: inline;
    font-size: 3rem;
    margin-bottom: 0.25rem;
    font-family: "garamond-premier-pro", serif;
    line-height: 100%;
}
#pricing-cards .mo {
    display: inline;
}
#pricing-cards .price-caption {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

#pricing-cards ul {
    font-size: 0.875rem;
    line-height: 150%;
    letter-spacing: -0.00875rem;
    margin-left: 1.25rem;
}
#pricing-cards ul li {
    list-style-image: url('/static/brandbio/assets/checkmark.svg');
    margin-bottom: 0.7em;
}
#pricing-cards ul li.text-green {
    list-style-image: url('/static/brandbio/assets/checkmarkg.svg');
}
#pricing-cards .pricing-cta {
    border-top: 2px solid var(--border-grey-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
#pricing-cards .pricing-cta form {
    width: 100%;
    text-align: center;
    color: var(--white);
}

@media (width <= 48em) {
    #pricing {
        height: 110rem;
    }
    #pricing-cards {
        flex-direction: column-reverse;
        gap: 2.5rem;
        align-items: center;
        justify-content: flex-start;
    }
    .pricing-card {
        grid-template-rows: 15.125rem auto 6.25rem;
        height: 41.25rem;
    }
    #pricing-cards .price {
        font-size: 2.75rem;
    }
    #pricing-cards .price-caption {
        font-size: 0.6875rem;
    }
    #pricing-cards ul {
        font-size: 0.75rem;
    }
}
@media (width <= 30em) {
    .pricing-card {
        width: 21.5rem;
    }
}

/*#endregion*/


.ribbon {
    background-color: var(--cta-navy);
    color: var(--white);
    text-align: center;
}
#ribbon-down-arrow {
    width: 3.125rem;
    height: 3.125rem;
    margin-top: 1.5rem;
    margin-bottom: -1.5rem;
}

footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 6.5rem;
    height: 32rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}
#tos_pp {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 4rem;
}
#tos_pp a {
    display: block;
    font-size: 0.825rem;
    text-decoration: underline;
}

@media (width <= 61em) {
    #ribbon-down-arrow {
        margin-top: 0.5rem;
    }
}
@media (width <= 48em) {
    footer {
        padding-top: 4rem;
        height: 16rem;
    }
    #ribbon-down-arrow {
        margin-top: 0;
    }
}
