:root {
    --color-primary: #b11d1d;
    --color-secondary: #61717e;
    --main-grey: #757574;
    --light-grey: #dbdbdb;
    --dark-grey: #4A4848;
}

/*  ----------  Navbar  ----------  */

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: fixed;
    overflow: hidden;
    top: 0px;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .1);
}

.content-overlay {
    position: fixed;
    z-index: 14;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: opacity .5s ease-in-out;
    background: #0009;
    opacity: 0;
    pointer-events: none;
}

.navbar .menu-btn:checked~.content-overlay {
    opacity: 1;
    pointer-events: auto;
}

.logo_container {
    margin-top: 10px;
    padding-left: 10px;
}

.logo_container img {
    height: 70px;
}

.nav_content_right {
    display: flex;
    flex-direction: row;
    justify-self: right;
    justify-items: center;
}

.navbar .menu {
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: -300px;
    top: 0;
    min-width: 300px;
    text-align: center;
    height: 100vh;
    transition: right .4s ease-out;
    background-color: #ffffff;
    box-shadow: -4px -4px 8px 2px rgba(0, 0, 0, .1);
}

.navbar ul {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 60px;
    list-style: none;
    overflow: hidden;
}

.menu li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 15px 0px;
}

.menu li:hover>.border {
    width: 100%;
}

.navbar li a {
    display: inline-block;
    color: black;
    text-align: center;
    font-size: 20px;
    padding: 5px 0px;
    text-decoration: none;
}

.menu .donate {
    padding: 10px 15px;
    font-size: 18px;

    &:hover {
        background-color: #db3e3e;
    }
}

.menu .border {
    border-bottom: 2px solid var(--color-primary);
    width: 0%;
    transition: all 0.3s ease-in-out;
}

.navbar .menu-icon {
    z-index: 15;
    justify-self: right;
    cursor: pointer;
    display: inline-block;
    padding: 28px 20px;
    margin-right: 10px;
    position: relative;
    user-select: none;
}

.navbar .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 26px;
}

.navbar .menu-icon .navicon:before,
.navbar .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.navbar .menu-icon .navicon:before {
    top: 7px;
}

.navbar .menu-icon .navicon:after {
    top: -7px;
}

/* menu btn */

.navbar .menu-btn {
    display: none;
}

.nav_content_right:has(.menu-btn:checked)>.menu {
    right: 0;
}

.navbar .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.navbar .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.navbar .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.navbar .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.navbar .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media (min-width: 960px) {

    .navbar .menu {
        z-index: inherit;
        flex-direction: row;
        position: relative;
        height: auto;
        top: 0;
        right: 0;
        box-shadow: 0 0 0 0;
    }

    .navbar ul {
        margin-top: auto;
        flex-direction: row;
        height: 100%;
    }

    .navbar li {
        height: 100%;
        padding: 0px 20px;
    }

    .navbar li a {
        padding: 5px 0px;
    }

    .navbar .menu-icon {
        display: none;
    }

    .navbar .nav_call {
        display: flex;
    }
}

@media only screen and (max-width:550px) {

    .logo_container img {
        height: 70px;
    }

}

/*  ----------  Main  ----------  */

@font-face {
    font-family: 'Bangers Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Bangers Regular'), url('../fonts/Bangers-Regular.ttf') format('woff');
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    font-size: 18px;
}

body {
    background-color: rgb(240, 239, 239);
}

h1 {
    font-size: 64px;
    font-weight: 500;
    color: white;
    padding: 10px;
    text-align: center;
    font-family: 'Bangers Regular', sans-serif;
    letter-spacing: 2px;
}

h2 {
    font-size: 32px;
    color: var(--color-secondary);
    padding: 10px;
    text-align: center;
    font-family: 'Bangers Regular', sans-serif;
    letter-spacing: 3px;
}

h3 {
    font-size: 24px;
    font-weight: 300;
    padding: 10px;
    text-align: center;
}

p {
    padding: 10px;
}

hr {
    width: 100%;
    max-width: 1000px;
    margin: 15px auto 50px;
    border-bottom: 1px solid var(--main-grey);
}

section {
    margin-top: 100px !important;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.icon {
    user-select: none;
    text-decoration: none;
  
    &.thin {
      font-variation-settings:
        'wght' 200,
        'fill' 0
    }
  
    &.white {
      color: white;
    }
  
    &.black {
      color: black;
    }
  
    &.gray {
      color: var(--main-grey);
    }

    &.secondary {
        color: var(--color-secondary);
    }
  
    &.primary {
      color: var(--color-primary);
    }
  
    &.red {
      color: red;
    }
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-white {
    color: white !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    color: black;
    padding: 15px;
    border: none;
    border-radius: 7px;
    width: auto;
    cursor: pointer;
    

    &.primary {
        background-color: var(--color-primary);
    }

    &.secondary {
        background-color: var(--color-secondary);
    }

    &.white {
        background-color: white;
        border: 1px solid var(--main-grey);
    }
}

.main-content {
    margin-top: 70px;
    overflow: hidden;
}

.intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    margin-top: 0 !important;
}

.intro-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    max-width: 1200px;
    text-align: right;

    .slogan {
        margin-right: 10%;

        h1 {
            display: inline;
        }
    }
}

@media only screen and (max-width:550px) {

    hr {
        margin: 15px 10px 50px;
    }

    .intro-content {
        justify-content: center;

        .slogan {
            margin: 0;
            text-align: center;

            h1 {
                font-size: 46px;
                padding: 5px;
            }
        }
    }

}

/*  ----------  Footer  ----------  */

.footer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--light-grey);
    margin-top: 100px;
    background-color: rgb(255, 255, 255);
}

.footer_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    padding: 10px;

    .contact_footer, .logo, .info {
        width: 300px;
    }

    .contact_footer {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
    }

    .logo {
        padding: 8px 8px 6px 8px;

        img {
            height: 120px;
        }
    }

    .donate {
        button {
            width: 200px;
            border: 1px solid var(--color-secondary);
        }
    }

    i {
        margin-right: 10px;
        color: var(--main-grey);
    }
}

.info p {
    padding: 10px 5px;
    display: flex;
    align-items: center;

    a {
        display: flex;
        align-items: center;
        color: black;
        text-decoration: none;
    }
}

.legal {
    color: var(--main-grey);
    text-align: center;

    p {
        font-size: 14px;
        padding: 0 10px 10px;
    }
}

@media only screen and (max-width:550px) {


    .footer_top {
        gap: 50px;
    }

}