

@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Source+Sans+Pro:200,400");

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "Playfair Display", serif;
    }


/* General doc styles */
html {
    scroll-behavior: smooth;
    overflow-x: initial;
    overflow-y:initial;
    height: 100%;
}


a {
    background-color: goldenrod;
    text-decoration: none;
    color: white;
    border-radius: 0.25rem;
    text-align: center;
    display: inline-block;
    transition: all 0.3s;
}

a:hover {
    opacity: 0.6;
}


/* Styles for the hero image */

.hero {
    background: url('./inner_banner22-1.jpg')
    center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 2rem;
    /* grid styles */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
}

.hero > * {
    color: white;
}

.hero > h1 {
    font-size: 4rem;
    padding-bottom: 1rem;
}

.hero > article > h1 {
    font-size: 4rem;
    padding-bottom: 1rem;
}

.hero > article > p {
    font-size: 1.5rem;
    font-weight: 200;
}

.hero > article > a {
    padding: 1rem;
    margin-top: 0.75rem;
}

/* Mobile formatting */

@media only screen and (max-width: 600px) {
    .hero >  h1 {
    display: none;
}

.hero {
    background: url('./inner_banner22-1.jpg')
    center;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 10rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
}

.img-fluid{
    max-height: 80%;
}

#mobileText{
    display: block !important;
}
}


@media only screen and (min-width: 2000px) {

.hero {
    background: url('./inner_banner22-1.jpg')
    center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
}


}














    /* thank you check */
    .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #2581C1;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    }
    .container {
        text-align: center;
    }
    .checkmark {
    width: 100px;
    height:100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    }
    .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    }
    @keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
    }
    @keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
    }
    @keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #7ac142;
    }
    }

    /* Pad Button */   
    .btn{
        margin-left: 20px;
        margin-right: 20px;
    }

    /*header*/
    .site-header {
        background-color: rgba(0, 0, 0, .85);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
    }

    /* Extra utilities*/
    .border-top { border-top: 1px solid #e5e5e5; }
    .border-bottom { border-bottom: 1px solid #e5e5e5; }
    .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
    .flex-equal > * {
        -ms-flex: 1;
        -webkit-box-flex: 1;
        flex: 1;
    }
    .overflow-hidden { overflow: hidden; }