*,
::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    text-rendering: optimizeLegibility;
}
body {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(111deg, #ffe6dd 1%, #ffc5b1 100%);
    color: #202124;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
}
a {
    color: #b02f00;
    text-decoration: none;
}
.site-header {
    background: transparent;
    width: 100%;
    height: 4rem;
    position: fixed;
    top: 0;
    transition: box-shadow .2s ease-in-out;
    z-index: 9999;
}
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .header-brand {
    display: block;
}
.site-header .header-brand a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.site-header .header-brand a:hover {

}
.site-header .header-brand .brand-logo {
    color: inherit;
    fill: inherit;
    stop-color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.site-header .header-brand .brand-logo img {
    width: auto;
    height: 3rem;
    vertical-align: middle;
}
.site-header .header-brand .brand-name {
    color: inherit;
    font-size: 1.5rem;
}
.site-header .header-brand .brand-name::after {
    content: '.';
    color: #202124;
}
.site-header .header-navigation {
    display: block;
}
.site-header .header-navigation .navigation-list {
    display: block;
}
.site-header .header-navigation .navigation-list .list-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.site-header .header-navigation .navigation-list .list-nav a {
    background: transparent;
    color: #202124;
    width: auto;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
}
.site-header .header-navigation .navigation-list .list-nav a:hover {
    color: #b02f00;
}
.site-header.sticky {
    background: #b02f00 !important;
    color: #fff !important;
    box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);
}
.site-header.sticky a {
    color: #fff !important;
}

.site-hero {
    width: 100%;
    margin: 4rem 0;
    display: block;
}
.site-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    border: 0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
}
.site-hero .hero-content h1 {
    font-size: 3.5em;
    text-transform: uppercase;
}
.site-hero .hero-content h1 span {
    background-image: url(https://media.giphy.com/media/FKjwfZ3Cz4xos/giphy.gif); /*3FoCLhuJfNJ8zIukIn*/
    background-size: contain;
    -moz-background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin: 0;
    -webkit-text-stroke: 1px #202124;
}
.site-hero .hero-content h2 {
    font-size: 3em;
}
.site-hero .hero-content h3 {}
.site-hero .hero-content p {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin: 0.5rem 0;
}
.site-hero .hero-content a {
    color: #202124;
    padding: 0;
    position: relative;
    font-weight: 800;
    font-style: normal;
    box-shadow: inset 0 -1.115rem 0px #b02f00;
    transition: all .4s ease-in;
    text-decoration: none;
    cursor: pointer;    
}
.site-hero .hero-content a:hover { 
    box-shadow: inset 0 -3rem 0 #b02f00;
    transition: all .2s ease-out;
}
.site-footer {
    background: transparent;
    width: 100%;
}
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media ( max-width: 767px ) {
    body {
        font-size: 16px;
    }
    .site-header .container {
        padding: 0 1rem;
    }
    .site-header .header-brand .brand-name {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .site-header .header-navigation .navigation-list .list-nav a {
        font-size: 16px;
        padding: 0 0.5rem;
    }
    .site-hero .hero-content h1 {
        font-size: 2.75em;
        text-transform: uppercase;
    }
    .site-hero .hero-content h2 {
        font-size: 2em;
    }
    .site-hero .hero-content h3 {}
    .site-hero .hero-content p {
        font-size: 1.25rem;
    }
    .site-hero .container,
    .site-footer .container {
        padding: 2rem 1rem;
    }
    .hide-md {
        display: none;
    }
}