/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');*/

/*===== CUSTOM FONTS =====*/

@font-face {
    font-family: "CustomFont";   
    src: url("../css/fonts/earthwerk/pizzadude.dk_-_earthwerk-webfont.woff") format("woff");
    src: url("../css/fonts/earthwerk/pizzadude.dk_-_earthwerk-webfont.woff2") format("woff2");
    /*font-family: "akzidenz";
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff2") format("woff2");
    font-family: "knockout";
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff") format("woff");
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff2") format("woff2");*/
    }

@font-face {
    font-family: 'akzidenz';
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-black-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-bold-webfont.woff2") format("woff2");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff") format("woff");
    src: url("../css/fonts/akzidenz/akzidenz-grotesk-light-webfont.woff2") format("woff2");
}

@font-face {
    font-family: 'knockout';
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff") format("woff");
    src: url("../css/fonts/knockout/knockout-htf-69-full-liteweight-1361516723-webfont.woff2") format("woff2");
}

/*===== VARIABLES =====*/

:root {    
    --green-primary: #6d8d36;
    --indigo-secondary: #1c283e;
    --white-light: #eaebed;
    --text-color: rgb(33, 37, 41);
    --black-main: #000;
    --white-main: #fff;
    --gray: #97968e;
    --design-fonts: 'CustomFont';
    --akzidenz-font-family: Helvetica, Arial, sans-serif;
    --knockout-font-family: 'knockout';
    --heading-font: 'CustomFont';
    --line-height: 1.5;
    --letter-spacing: 1;
    --font-size: 20px;
}

/*===== PRESETS =====*/

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;    
    overflow-x: hidden;
    font-family: var(--akzidenz-font-family);
    font-size: 18px;
}

.for-overflow{
    overflow-x: hidden;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

p{
    line-height: var(--line-height);
    font-size: var(--font-size);
    letter-spacing: var(--letter-spacing);
    font-family: Helvetica, Arial, sans-serif;
}



/*===== UTILITY CLASSES =====*/

.container {
    width: 85%;
    max-width: 1200px;
    margin-inline: auto;
}

.section-padding{
    padding-block: 3rem;
}


/*===== HEADER STYLES =====*/

.main-header{
    padding-block: 2rem;
    
    position: absolute;
    z-index: 2;
    width: 100%;
}

.main-header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .container .branding-wrapper{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-header .container .branding-logo{
    /*background-color: var(--white-main);
    padding-block: 0.5rem;
    padding-inline: 1.5rem;
    border-radius: 20px;*/
}

.main-header .container .links{
    display: flex;
    align-items: center;
    gap: 3rem;
}

.main-header .container .links .socials {
    display: flex;
    gap: 1rem;
}

.main-header .container .links .socials a{
    text-decoration: none;
    color: white;
    font-size: 2rem;
}

.main-header .container .links .socials a:hover [class^="icon-"],
.main-header .container .links .socials a:hover [class*=" icon-"]{
    color: var(--green-primary);
}

.main-header .container .links .navigation{
    display: flex;
    gap: 1.5rem;
}

.main-header .container .links ul.navigation li{
    background-color: var(--white-main);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.main-header .container .links ul.navigation li a{
    font-family: var(--design-fonts);
    color: var(--green-primary);
    font-size: 18px;
    
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-header .container .links ul.navigation li.current-menu-item{
    background-color: var(--green-primary);
}

.main-header .container .links ul.navigation li.current-menu-item a{
    color: white;
}

.main-header .container .links ul.navigation li:hover{
    background-color: var(--green-primary);
    
}

.main-header .container .links ul.navigation li:hover a {
    color: white;
}


/*===== BANNER STYLES =====*/
section#leaveLegacy.banner {
    min-height: unset;
}


section#leaveLegacy.banner img {
    object-fit: cover;
    width: 100%;
    object-position: center;
    height: 100%;
    
}

section#leaveLegacy.banner .intro-wrapper{
    width: 100vw;
    position: absolute;
    bottom: 10%;   
    z-index: 10;
}

section#leaveLegacy.banner .intro-wrapper .rhino-intro{
    width: 770px;
    margin-inline: auto;
    text-align: center;
}

section#leaveLegacy.banner .intro-wrapper .rhino-intro h1{
    font-family: var(--design-fonts);
    font-size: 60px;
    color: white;
    font-weight: lighter;
    letter-spacing: 1px;
}

section#leaveLegacy.banner .intro-wrapper .rhino-intro h1 strong{
    color: var(--green-primary);
    font-weight: lighter;
}

section#leaveLegacy.banner .intro-wrapper .rhino-intro p{
    color: white;
}

/*----- LEGACY BANNER RESPONSIVENESS -----*/
@media screen and (max-width: 1023px){
    section#leaveLegacy.banner .intro-wrapper .container{
        width: 95%;
    }

    section#leaveLegacy.banner .intro-wrapper .rhino-intro h1{
        font-size: 40px;
    }
}

@media screen and (max-width: 816px){
    section#leaveLegacy.banner .intro-wrapper .rhino-intro{
        width: 100%;
    }

    section#leaveLegacy.banner .intro-wrapper .rhino-intro h1{
        font-size: 32px;
    }

    section#leaveLegacy.banner .intro-wrapper .rhino-intro p{
        font-size: 16px;
    }
}

@media screen and (max-width: 399px){
    section#leaveLegacy.banner .intro-wrapper .rhino-intro h1{
        font-size: 28px;
        
    }
}

/*===== SECURE THE FUTURE STYLES =====*/
section.secure-the-future .secure-the-future-wrapper {
    width: 800px;
    margin-inline: auto;
}

section.secure-the-future .secure-the-future-wrapper h2{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 2rem;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-content{
    display: flex;
    align-items: flex-start;
    gap: 3.375rem;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-content p{
    font-size: 18px;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-paragraph{
    flex-basis: 59%;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-image{
    flex-basis: 273px;
    height: auto;
}

section.secure-the-future .secure-the-future-wrapper .secure-the-future-image img{
    object-fit: cover;
    aspect-ratio: 273 / 180;
    width: 100%;
    height: auto;
    display: block;
}

/*----- SECURE FUTURE RESPONSIVENESS -----*/
@media screen and (max-width: 830px){
    section.secure-the-future .secure-the-future-wrapper{
        width: 95%;
    }

    section.secure-the-future .secure-the-future-wrapper .secure-the-future-content{
        gap: 1.5rem;
    }

    section.secure-the-future .secure-the-future-wrapper h2{
        font-size: 32px;
    }

    section.secure-the-future .secure-the-future-wrapper .secure-the-future-content p{
        font-size: 16px;
    }
}

@media screen and (max-width: 600px){
    section.secure-the-future .secure-the-future-wrapper .secure-the-future-content{
        flex-direction: column-reverse;
    }

    section.secure-the-future .secure-the-future-wrapper h2{
        font-size: 24px;
    }

    section.secure-the-future .secure-the-future-wrapper .secure-the-future-image{
        width: 100%;
        height: auto;
    }

    section.secure-the-future .secure-the-future-wrapper .secure-the-future-image img{
        object-fit: cover;
        aspect-ratio: 273 / 180;
        width: 100%;
        height: auto;
        display: block;
    }

    section.secure-the-future .secure-the-future-wrapper .secure-the-future-content p{
        font-size: 16px;
    }
}

/*===== TYPES OF GIFTS STYLES =====*/
section.gift-types {
    margin-bottom: 6rem;
}

section.gift-types h2{
    font-size: 40px;
    font-family: var(--design-fonts);
    text-align: center;
    margin-bottom: 3rem;
}

section.gift-types h2 span{
    color: var(--green-primary);
}

section.gift-types .gift-types-list{
    display: grid;
    grid-template-columns: repeat(3, 320px);
    justify-content: space-between;
}

section.gift-types .gift-types-list .gift-list-card{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 22px;
    padding-block: 26px;
    border: thin solid var(--gray);
    border-radius: 10px;
}

section.gift-types .gift-types-list .gift-list-card h3{
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: bold;
    color: var(--green-primary);
    letter-spacing: 1px;
}

section.gift-types .gift-types-list .gift-list-card p{
    font-size: 18px;
    text-align: center;
}

/*----- GIFT TYPES RESPONSIVENESS -----*/
@media screen and (max-width: 1200px){
    section.gift-types.container{
        width: clamp(61.4375rem, 47.9830rem + 21.0227vw, 63.75rem);
    }
}

@media screen and (max-width: 1023px){
    section.gift-types.container{
        width: 95%;
    }

    section.gift-types .gift-types-list{
        grid-template-columns: repeat(3, clamp(14.375rem, -2.5000rem + 35.1563vw, 20rem));
    }

    section.gift-types .gift-types-list .gift-list-card{
        padding-inline: clamp(0.5rem, -2.1250rem + 5.4688vw, 1.375rem);
    }
   
    
}

@media screen and (max-width: 830px){
    section.gift-types .gift-types-list .gift-list-card p{
        font-size: 16px;
    }
}

@media screen and (max-width: 764px){
    section.gift-types .gift-types-list{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    section.gift-types .gift-types-list .gift-list-card{
        width: 400px;
    }
}

@media screen and (max-width: 420px){
    section.gift-types .gift-types-list .gift-list-card{
        width: clamp(20rem, -2.5000rem + 100.0000vw, 23.75rem);
    }
}

/*===== HOW TO LEAVE A LEGACY STYLES =====*/
section.how-to-leave-legacy{
    
    background-size: cover;
    background-position: top;
    background-color: var(--indigo-secondary);
    color: black;
    mix-blend-mode: multiply;
    
}

section.how-to-leave-legacy .container{
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    
    padding: 2rem 3rem; 
    display: flex;
    gap: 100px;
    position: relative;
    isolation: isolate;
}

section.how-to-leave-legacy .container h2{    
    color: var(--green-primary);
    text-align: start;
    font-family: var(--knockout-font-family);
    font-size: 32px;
    letter-spacing: 1px;      
    
}

section.how-to-leave-legacy .container .how-to-legacy-content{
    display: flex;
    flex-basis: 70%;
    flex-direction: column;
    gap: 1.5rem;
}

section.how-to-leave-legacy .container .how-to-legacy-content .how-to-legacy-paragraphs{
    display: flex;
    
    flex-direction: column;
    gap: 1rem;
}

section.how-to-leave-legacy .container .how-to-legacy-content .how-to-legacy-paragraphs p{
    font-size: 18px;
}

section.how-to-leave-legacy .container .how-to-legacy-content .how-to-legacy-paragraphs p a{
    text-decoration: underline;
    color: black;
}

section.how-to-leave-legacy .container .how-to-legacy-flag{
    width: 218px;
    height: 145px;
    background: white; 
 
}

section.how-to-leave-legacy .container .how-to-legacy-flag img{
    width: 100%;
    object-fit: cover;
    
    display: block;
    
    height: 100%;
}

/*section.how-to-leave-legacy .container .how-to-leave-legacy-list  .how-to-leave-legacy-item{
    display: flex;
    align-items:start;
    color: black;
    background-color: white;
    padding-block: 28px;
    padding-inline: 51px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
} */


section.how-to-leave-legacy .container .how-to-leave-legacy-list  .how-to-leave-legacy-item .item-icon{
    width: 200px;
    margin-right: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

section.how-to-leave-legacy .container .how-to-leave-legacy-list  .how-to-leave-legacy-item .item-icon h3{
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

section.how-to-leave-legacy .container .how-to-leave-legacy-list  .how-to-leave-legacy-item .item-paragraphs{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/*----- HOW TO LEAVE A LEGACY RESPONSIVENESS -----*/
@media screen and (max-width: 1023px){
    section.how-to-leave-legacy .container{
        width: 95%;
        gap: clamp(1.875rem, -5.7286rem + 18.7166vw, 6.25rem);
        padding: 2rem clamp(1rem, -4.4745rem + 11.6788vw, 3rem);
    }

    section.how-to-leave-legacy .container .how-to-legacy-content .how-to-legacy-paragraphs p{
        font-size: 16px;
    }
}

@media screen and (max-width: 767px){
    section.how-to-leave-legacy .container .how-to-legacy-flag{
        display: none;
    }

    section.how-to-leave-legacy .container .how-to-legacy-content{
        flex-basis: 100%;
    }

    section.how-to-leave-legacy .container h2{
        font-size: 28px;
    }
}












 



