body {
    --primary-color:#EF473A;
    --secondary-color:#B6305F;
    --dark-color:#1E1E1E;
    --grey-color:#525252;
    --max-body-width: 1050px;
    --margin-space-default: 100px;
    --button-padding: 10px 30px 10px 30px;
    --button-primary-padding: 12px 35px 12px 35px;
    --footer-navigation-height:70px;
}

body {
    margin:0;
    padding:0;
    font-family: "Montserrat", serif;
}
header {
    height: 500px;
    background: linear-gradient(78.94deg, var(--primary-color) 4.13%, var(--secondary-color) 128%);
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
    position: relative;
}
header .wrap {
    max-width: var(--max-body-width);
    margin: 0 auto;
    position: relative;
    width: 100%;
    text-align: center;
}
header .head_left_gfx {
    position: absolute;
    bottom:-150px;
    left:20px;
    width: 150px;
}
header .head_right_gfx {
    position: absolute;
    bottom:-100px;
    right:20px;
    width: 180px;
}
header h1 {
    background:white;
    color:var(--dark-color);
    padding: 10px 20px 10px 20px;
    display: inline-block;
    font-size: 60px;
    margin-top:0;
    margin-bottom: 10px;
    border-radius: 10px;
}
header p {
    color:#FFDCCF;
    font-size: 28px;
    text-align: center;
}
header .categories {
    display: flex;
    gap:20px;
    margin-top:60px;
    flex-wrap: wrap;
    justify-content: center;
}
header .categories a {
    padding: var(--button-padding);
    border: 2px solid #fff;
    color:white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease-in-out;
}
header .categories a:hover, header .categories a.selected {
    background:white;
    color:var(--dark-color);
}

.navigation {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
    height: var(--footer-navigation-height);
    box-shadow: 0 8px 6px -6px rgba(0,0,0,0.2);
    z-index: 200;
    background: linear-gradient(78.94deg, var(--primary-color) 4.13%, var(--secondary-color) 128%);
    position: relative;
}
.navigation img {
    max-height: 44px;
}
.promotions {
    max-width: var(--max-body-width);
    width: 100%;
    margin:var(--margin-space-default) auto;
}
.promotions article {
    display: flex;
    flex-flow: column wrap;
    flex-direction: row;
    background:#F2F2F2;
    box-shadow: 0 8px 6px -6px rgba(0,0,0,0.11);
    border-radius: 10px;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: stretch;
    margin-bottom: 40px;
    transition: all .1s ease-in-out;
}
.promotions article:hover {
    box-shadow: 0 8px 6px -6px rgba(0,0,0,0.15);
    background: #f5f5f5;

}
.promotions article .action {
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
}
.promotions article .logo {
    background: linear-gradient(78.94deg, var(--primary-color) 4.13%, var(--secondary-color) 128%);
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    max-width: 23%;
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.promotions article .logo img {
    max-width: 130px;
    filter: brightness(0) invert(1);
}
ul li {
    font-size:16px;
    font-weight: 500;
    margin-top:15px;
    margin-bottom:15px;
}
ul { list-style: none;}

ul li { position: relative;}

ul li:before {
    text-align: center;
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: -4px;
    margin: 3px 2px 0 -43px;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    content: "\f00c";
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color:var(--primary-color);
    font-size:13px;
}
ul {
    max-width: 45%;
    width: 100%;
    margin-top:8px;
    margin-bottom:8px;
}

.promotions .action {
    max-width: 22%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-button {
    background: linear-gradient(78.94deg, var(--primary-color) 4.13%, var(--secondary-color) 128%);
    padding: var(--button-primary-padding);
    color:white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 7px;
}
.primary-button i {
    font-size: 16px;
}
.primary-button:hover {
    background: linear-gradient(78.94deg, var(--primary-color) 4.13%, var(--primary-color) 128%);
    transform: scale(1.1);
}
.information {
    max-width: var(--max-body-width);
    width: 100%;
    margin:var(--margin-space-default) auto;
    text-align: center;
}
.information p {
    color:var(--grey-color);
    text-align:center;
    font-weight: 400;
    margin-bottom:30px;
}
.bottom-icons {
    max-width: 350px;
    margin-top:40px;
}

footer {
    background: linear-gradient(78.94deg, var(--primary-color) 4.13%, var(--secondary-color) 128%);

}
footer .wrap {
    max-width: var(--max-body-width);
    width: 100%;
    margin:0 auto;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap:30px;
    height: var(--footer-navigation-height);
    font-size: 14px;
    color:white;
}
footer .wrap a {
    color:white;
    text-decoration: none;
}
footer .wrap a:hover {
    text-decoration: underline;
}
footer .wrap img {
    height: 36px;
}

@media only screen and (min-width: 968px) {
    .information p {
        padding-left:100px;
        padding-right:100px;
    }
    .promotions article {
        min-height: 200px;
    }
}
@media only screen and (max-width: 968px) {
    body {
        --margin-space-default: 100px;
        --button-padding: 10px 20px 10px 20px;
    }
    header .categories {
        padding:20px;
        margin-top:20px;
    }
    header {
        min-height: 500px;
        height: initial;
    }
    header p {
        font-size: 18px;
    }
    header h1 {
        font-size: 40px;
        margin-left:20px;
        margin-right:20px;
    }
    .promotions article {
        display: flex;
        flex-flow: column wrap;
        flex-direction: column;
        margin-left:10px;
        margin-right: 10px;
    }
    .promotions article .logo {
        width: 100%;
        max-width: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        height: 90px;
    }
    .promotions article .action {
        width: 100%;
        max-width: 100%;
        padding-bottom:20px;
    }
    .information p {
        padding-left:20px;
        padding-right:20px;
    }
    ul {
        max-width: 100%;
        margin-left:20px;
        margin-right: 20px;
        word-break: break-all;
        font-size: 13px;
        width: initial;
    }
    ul li {
        font-size: 14px;
    }
    header .head_left_gfx {
        display: none;
    }
    header .head_right_gfx {
        display: none;
    }

}
@media only screen and (max-width: 768px) {
    body {
        --margin-space-default: 60px;
    }
    footer .wrap {
        flex-direction: column;
        height: auto;
        padding-top:25px;
        padding-bottom:25px;
    }
    header .categories {
        gap:10px;
        justify-content: center;
    }
    .bottom-icons {
        max-width: 220px;
    }
    .primary-button {
        width: 100%;
        margin:20px 20px 20px 20px;
        text-align: center;
        justify-content: center;
    }
    .primary-button:hover {
        transform: scale(1);
    }
    ul li:before {
        top: -6px;
        margin: 3px 2px 0 -35px;
    }
}