@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");

html {
    font-size: 16px;
    scroll-behavior: smooth
}

body.cpdc {
    padding: 0;
    margin: 0;
    box-sizing: content-box;
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth
}

.cpdc-main {
    width: 100%;
    position: relative
}

    .cpdc-main .cpdc-main-container {
        width: 100%;
        max-width: 1680px;
        margin: 0 auto
    }

@media (max-width: 1766px) {
    .cpdc-main .cpdc-main-container {
        max-width: 1440px
    }
}

@media (max-width: 1500px) {
    .cpdc-main .cpdc-main-container {
        max-width: 1280px
    }
}

@media (max-width: 1420px) {
    .cpdc-main .cpdc-main-container {
        max-width: 1152px
    }
}

@media (max-width: 1220px) {
    .cpdc-main .cpdc-main-container {
        max-width: 992px
    }
}

.cpdc-main .cpdc-main-container-body {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto
}

@media (max-width: 1152px) {
    .cpdc-main .cpdc-main-container-body {
        max-width: 992px;
        width: 94%
    }
}

.cpdc-main__modal {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: .2s ease-in-out
}

.cpdc-main__modal-body {
    width: 100%;
    height: 100vh;
    position: fixed
}

    .cpdc-main__modal-body .content {
        width: 75%;
        max-width: 500px;
        height: max-content;
        margin: auto auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 1.5rem;
        position: absolute;
        padding: 1rem 2rem;
        z-index: 1001;
        opacity: 0;
        transition: .2s ease-in-out
    }

        .cpdc-main__modal-body .content .title {
            font-size: 1.3rem;
            font-weight: 800;
            text-align: center;
            color: #0258c1
        }

        .cpdc-main__modal-body .content .description {
            font-size: 1rem;
            font-weight: 300;
            padding: 1rem 1rem;
            text-align: center
        }

        .cpdc-main__modal-body .content button {
            background: #0258c1;
            border: 0;
            width: 100%;
            border-radius: 50px;
            display: block;
            min-height: 50px;
            color: #fff;
            font-size: 1.1rem;
            text-transform: uppercase;
            font-weight: 600
        }

            .cpdc-main__modal-body .content button:hover {
                cursor: pointer
            }

.cpdc-main__modal.showing {
    position: absolute;
    z-index: 1000;
    background: rgba(0,0,0,0.75)
}

    .cpdc-main__modal.showing .content {
        opacity: 1
    }

.cpdc-main__nav {
    width: calc(100% - 2rem);
    height: 80px;
    background: #0d0d0d;
    padding: 0 1rem;
    position: fixed;
    z-index: 1099;
    transition: .2s ease-in-out
}

.cpdc-main__nav-menu {
    width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .2s ease-in-out
}

    .cpdc-main__nav-menu .logo {
        width: max-content;
        height: 100%;
        display: flex;
        align-items: center
    }

        .cpdc-main__nav-menu .logo img {
            width: auto;
            height: 40px;
            transition: .2s ease-in-out
        }

    .cpdc-main__nav-menu .list {
        list-style: none;
        display: flex;
        gap: 2rem
    }

        .cpdc-main__nav-menu .list li a {
            color: #fff;
            text-decoration: none;
            font-size: .9rem;
            text-transform: uppercase;
            position: relative;
            transition: .2s ease-in-out
        }

            .cpdc-main__nav-menu .list li a:after {
                width: 0;
                content: '';
                position: absolute;
                bottom: -.25rem;
                left: 0;
                height: .15rem;
                background: #fff;
                transition: .2s ease-in-out
            }

            .cpdc-main__nav-menu .list li a:hover:after {
                width: 100%;
                right: 0
            }

.cpdc-main__nav.scrolling {
    height: 60px;
    background: rgba(13,13,13,0.9)
}

    .cpdc-main__nav.scrolling .cpdc-main__nav-menu .logo img {
        height: 30px
    }

@media (max-width: 1040px) {
    .cpdc-main__nav {
        height: 60px
    }

    .cpdc-main__nav-menu .logo img {
        height: 30px
    }
}

@media (max-width: 575px) {
    .cpdc-main__nav {
        height: 45px
    }

    .cpdc-main__nav-menu .logo img {
        height: 20px
    }

    .cpdc-main__nav-menu .list {
        gap: 1rem
    }

        .cpdc-main__nav-menu .list li a {
            font-size: .8rem
        }

    .cpdc-main__nav.scrolling {
        height: 45px
    }

        .cpdc-main__nav.scrolling .cpdc-main__nav-menu .logo img {
            height: 20px
        }
}

@media (max-width: 480px) {
    .cpdc-main__nav-menu .logo img {
        height: 15px
    }

    .cpdc-main__nav-menu .list {
        gap: .5rem
    }

        .cpdc-main__nav-menu .list li a {
            font-size: .7rem
        }

    .cpdc-main__nav.scrolling .cpdc-main__nav-menu .logo img {
        height: 15px
    }
}

.cpdc-main__header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px
}

    .cpdc-main__header:after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 25%, rgba(0,0,0,0) 60%)
    }

    .cpdc-main__header img {
        width: 100%;
        max-width: 1980px;
        margin: 0 auto;
        height: auto;
        z-index: 0;
        position: relative
    }

.cpdc-main__header-content {
    width: 1680px;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    position: absolute;
    top: calc(50% - 5rem + 45px);
    transition: .2s ease-in-out
}

    .cpdc-main__header-content h2 {
        margin: 0;
        color: #fff;
        font-size: 2rem;
        font-weight: 100;
        z-index: 2;
        position: absolute;
        top: -.5rem
    }

        .cpdc-main__header-content h2 span {
            font-weight: 700
        }

        .cpdc-main__header-content h2.left {
            left: 0
        }

        .cpdc-main__header-content h2.right {
            right: 0
        }

@media (max-width: 1766px) {
    .cpdc-main__header-content {
        width: 1440px;
        top: calc(50% - 4.6rem + 45px)
    }
}

@media (max-width: 1500px) {
    .cpdc-main__header-content {
        width: 1280px;
        top: calc(50% - 4rem + 45px)
    }
}

@media (max-width: 1420px) {
    .cpdc-main__header-content {
        width: 1152px;
        top: calc(50% - 3.6rem + 45px)
    }

        .cpdc-main__header-content h2 {
            font-size: 1.8rem
        }
}

@media (max-width: 1220px) {
    .cpdc-main__header-content {
        width: 992px;
        top: calc(50% - 3rem + 45px)
    }

        .cpdc-main__header-content h2 {
            font-size: 1.5rem
        }
}

@media (max-width: 1040px) {
    .cpdc-main__header-content {
        width: calc(100% - 6rem);
        top: calc(50% - 2.6rem + 40px)
    }
}

@media (max-width: 992px) {
    .cpdc-main__header {
        padding-top: 60px
    }

    .cpdc-main__header-content {
        width: 100%;
        padding: 0;
        top: calc(50% - 2.6rem + 35px)
    }

        .cpdc-main__header-content h2 {
            top: -.3rem;
            font-size: 1.2rem;
            position: absolute
        }

            .cpdc-main__header-content h2.left {
                left: 2rem
            }

            .cpdc-main__header-content h2.right {
                right: 2rem
            }
}

@media (max-width: 768px) {
    .cpdc-main__header-content {
        top: calc(50% - 2.6rem + 30px)
    }

        .cpdc-main__header-content h2 {
            top: .3rem;
            font-size: 1rem
        }

            .cpdc-main__header-content h2.left {
                left: 1rem
            }

            .cpdc-main__header-content h2.right {
                right: 1rem
            }
}

@media (max-width: 575px) {
    .cpdc-main__header {
        padding-top: 45px
    }

        .cpdc-main__header img {
            height: 250px;
            object-fit: cover
        }

    .cpdc-main__header-content {
        top: 0;
        height: 100%;
        bottom: 0;
        flex-direction: column
    }

        .cpdc-main__header-content h2 {
            position: unset
        }

            .cpdc-main__header-content h2.left {
                padding-top: 3rem
            }

            .cpdc-main__header-content h2.right {
                padding-bottom: 1.8rem
            }
}

.cpdc-main__cards {
    width: 100%
}

    .cpdc-main__cards ul {
        width: 100%;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        margin-top: -180px;
        padding-left: 0;
        transition: .2s ease-in-out
    }

        .cpdc-main__cards ul .card-coffee {
            width: 100%;
            max-width: 300px;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: .2s ease-in-out
        }

            .cpdc-main__cards ul .card-coffee img {
                width: 100%;
                margin: 0 auto;
                max-width: 250px;
                height: auto;
                padding-bottom: 2rem
            }

            .cpdc-main__cards ul .card-coffee h3 {
                margin: 0;
                font-weight: 800;
                font-size: 1.3rem;
                text-transform: uppercase
            }

            .cpdc-main__cards ul .card-coffee p {
                margin: 0;
                font-size: .8rem;
                color: #666;
                position: relative;
                font-weight: 600
            }

@media (max-width: 1420px) {
    .cpdc-main__cards ul {
        margin-top: -120px
    }

        .cpdc-main__cards ul .card-coffee {
            max-width: 300px;
            height: 500px
        }

            .cpdc-main__cards ul .card-coffee img {
                max-width: 230px
            }
}

@media (max-width: 1220px) {
    .cpdc-main__cards ul {
        margin-top: -80px;
        justify-content: space-around
    }

        .cpdc-main__cards ul .card-coffee {
            max-width: 300px;
            height: 340px
        }

            .cpdc-main__cards ul .card-coffee img {
                max-width: 200px
            }
}

@media (max-width: 992px) {
    .cpdc-main__cards ul {
        margin-top: -80px
    }

        .cpdc-main__cards ul .card-coffee {
            max-width: unset;
            height: unset
        }

            .cpdc-main__cards ul .card-coffee img {
                max-width: 180px
            }
}

@media (max-width: 768px) {
    .cpdc-main__cards ul {
        margin-top: -50px
    }

        .cpdc-main__cards ul .card-coffee img {
            max-width: 120px
        }

        .cpdc-main__cards ul .card-coffee h3 {
            font-size: 1rem
        }
}

@media (max-width: 700px) {
    .cpdc-main__cards ul {
        margin-top: -50px
    }

        .cpdc-main__cards ul .card-coffee img {
            max-width: 90px
        }
}

@media (max-width: 575px) {
    .cpdc-main__cards {
        padding: 5rem 0
    }

        .cpdc-main__cards ul {
            flex-direction: column;
            margin-top: unset;
            gap: 2rem
        }

            .cpdc-main__cards ul .card-coffee img {
                max-width: 90px
            }
}

.cpdc-main__code {
    width: 100%;
    padding: 3.5rem 0 7rem 0;
    position: relative;
    transition: .2s ease-in-out
}

    .cpdc-main__code img.left {
        width: 100%;
        max-width: 400px;
        height: auto;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: .2s ease-in-out
    }

    .cpdc-main__code img.right {
        width: 100%;
        max-width: 400px;
        height: auto;
        position: absolute;
        right: 0;
        top: 0;
        transition: .2s ease-in-out
    }

.cpdc-main__code-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: .2s ease-in-out
}

    .cpdc-main__code-content .redeem {
        width: 100%;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        transition: .2s ease-in-out
    }

        .cpdc-main__code-content .redeem h3 {
            width: 100%;
            color: #0258c1;
            font-size: 1.5rem;
            font-weight: 300;
            text-align: center;
            transition: .2s ease-in-out
        }

            .cpdc-main__code-content .redeem h3 span {
                font-weight: 700
            }

        .cpdc-main__code-content .redeem .form {
            width: 100%;
            display: flex;
            flex-direction: column;
            transition: .2s ease-in-out
        }

        .cpdc-main__code-content .redeem .form-input {
            width: calc(100% - 4rem);
            position: relative
        }

            .cpdc-main__code-content .redeem .form-input span {
                position: absolute;
                bottom: 0;
                top: 0;
                padding: 0 .5rem;
                display: flex;
                align-items: center
            }

                .cpdc-main__code-content .redeem .form-input span svg {
                    width: 15px;
                    height: 15px;
                    fill: #bbb
                }

            .cpdc-main__code-content .redeem .form-input input {
                width: 100%;
                min-height: 45px;
                border: 0;
                color: #0258c1;
                font-size: 1rem;
                padding: 0 2rem 0 2rem;
                background: rgba(255,255,255,0.5);
                border-bottom: 0.1rem solid #0258c1;
                transition: .2s ease-in-out
            }

                .cpdc-main__code-content .redeem .form-input input::placeholder {
                    font-size: 1rem;
                    font-family: 'Mulish', sans-serif;
                    font-weight: 300
                }

                .cpdc-main__code-content .redeem .form-input input:focus, .cpdc-main__code-content .redeem .form-input input:hover {
                    outline: 0;
                    background: rgba(0,0,0,0.1)
                }

        .cpdc-main__code-content .redeem .form button {
            width: 100%;
            border: 0;
            min-height: 50px;
            background: #0258c1;
            border-radius: 50px;
            color: #fff;
            text-transform: uppercase;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 35px
        }

            .cpdc-main__code-content .redeem .form button:hover {
                cursor: pointer
            }

    .cpdc-main__code-content .gift-container {
        width: 100%;
        padding: 2rem 0 2rem 2rem;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        transition: .2s ease-in-out
    }

        .cpdc-main__code-content .gift-container .gift-card {
            width: 100%;
            max-width: 500px;
            height: 450px;
            perspective: 1000px;
            transition: .2s ease-in-out
        }

            .cpdc-main__code-content .gift-container .gift-card.flipped {
                perspective: 1000px;
                transition: .2s ease-in-out
            }

                .cpdc-main__code-content .gift-container .gift-card.flipped .gift-card__inner {
                    transform: rotateY(180deg);
                    transition: transform 0.5s
                }

        .cpdc-main__code-content .gift-container .gift-card__inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 1s;
            transform-style: preserve-3d
        }

        .cpdc-main__code-content .gift-container .gift-card__front, .cpdc-main__code-content .gift-container .gift-card__back {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden
        }

            .cpdc-main__code-content .gift-container .gift-card__front img {
                width: 100%
            }

        .cpdc-main__code-content .gift-container .gift-card__back {
            transform: rotateY(180deg)
        }

            .cpdc-main__code-content .gift-container .gift-card__back img {
                width: 100%
            }

@media (max-width: 1152px) {
    .cpdc-main__code-content .gift img {
        max-width: 400px
    }
}

@media (max-width: 1040px) {
    .cpdc-main__code {
        width: calc(100% - 4rem);
        padding: 3.5rem 2rem 7rem 2rem
    }

    .cpdc-main__code-content .gift-container img {
        max-width: 400px
    }
}

@media (max-width: 768px) {
    .cpdc-main__code-content {
        flex-direction: column-reverse
    }

        .cpdc-main__code-content .gift-container {
            max-height: 300px;
            padding: 2rem 0;
            justify-content: center
        }

            .cpdc-main__code-content .gift-container img {
                max-width: 350px
            }
}

.cpdc-main__footer {
    width: 100%;
    padding-bottom: 5rem;
    transition: .2s ease-in-out
}

.cpdc-main__footer-content {
    background: #0d0d0d;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.35);
    border-top: 1rem solid #0258c1;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 4rem 1rem;
    transition: .2s ease-in-out
}

    .cpdc-main__footer-content a {
        text-decoration: none;
        color: #fff;
        font-weight: 300;
        font-size: 1rem;
        position: relative;
        transition: .2s ease-in-out
    }

        .cpdc-main__footer-content a img {
            width: 100%;
            max-width: 200px;
            height: auto;
            position: unset
        }

        .cpdc-main__footer-content a.link:after {
            width: 0;
            content: '';
            position: absolute;
            bottom: -.25rem;
            left: 0;
            height: .1rem;
            background: #fff;
            transition: .2s ease-in-out
        }

        .cpdc-main__footer-content a.link:hover:after {
            width: 100%;
            right: 0
        }

    .cpdc-main__footer-content ul {
        display: flex;
        padding-left: 0;
        list-style: none;
        gap: 1rem
    }

        .cpdc-main__footer-content ul li a {
            text-decoration: none;
            color: #fff;
            font-weight: 300;
            font-size: 1rem;
            position: relative
        }

            .cpdc-main__footer-content ul li a:after {
                width: 0;
                content: '';
                position: absolute;
                bottom: -.25rem;
                left: 0;
                height: .1rem;
                background: #fff;
                transition: .2s ease-in-out
            }

            .cpdc-main__footer-content ul li a:hover:after {
                width: 100%;
                right: 0
            }

@media (max-width: 1040px) {
    .cpdc-main__footer {
        width: calc(100% - 4rem);
        padding: 0 2rem 2.5rem 2rem
    }

    .cpdc-main__footer-content .gift img {
        max-width: 300px
    }
}

@media (max-width: 575px) {
    .cpdc-main__footer-content {
        padding: 2rem 0
    }

        .cpdc-main__footer-content a {
            font-size: .9rem
        }

            .cpdc-main__footer-content a img {
                height: 30px
            }

        .cpdc-main__footer-content ul {
            flex-direction: column;
            gap: .35rem;
            align-items: center
        }

            .cpdc-main__footer-content ul li a {
                font-size: .9rem
            }
}
