﻿.scroller {
    max-width: 100%;
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient( 90deg, transparent, white 20%, white 80%, transparent );
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

    .scroller[data-animated="true"] .scroller__inner {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        flex-wrap: nowrap;
        -webkit-animation: scroll var(--_animation-duration, 10s) var(--_animation-direction, forwards) linear infinite;
        animation: scroll var(--_animation-duration, 10s) var(--_animation-direction, forwards) linear infinite;
    }

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 5s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 10s;
}

@-webkit-keyframes scroll {
    to {
        transform: translate(calc(-10px - 0.1rem));
    }
}

@keyframes scroll {
    to {
        transform: translate(calc(-200px - 500px));
    }
}

/* general styles */

 

.tag-list {
    margin: 0;
    padding-inline: 0;
    list-style: none;
}

    .tag-list li {
        padding: 1rem;
        background: var(--clr-primary-400);
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
    }

/* for testing purposed to ensure the animation lined up correctly */
.test {
    background: red !important;
}


.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin-inline: auto;
    gap: 5px;
}

    .image-gallery > img {
        width: 100%;
        aspect-ratio: 1/1;
        -o-object-fit: cover;
        object-fit: cover;
        transition: scale 350ms ease, opacity 350ms linear;
       
    }

    .image-gallery:has(img:hover) img:not(:hover) {
        scale: 0.8;
        opacity: 0.7;
    }
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500;900&display=swap");
 

 

main > div span {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #717171;
}

main > div h1 {
    text-transform: capitalize;
    letter-spacing: 0.8px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: clamp(3.4375rem, 3.25rem + 0.75vw, 4rem);
    background-color: #005baa;
    background-image: linear-gradient(45deg, #005baa, #000000);
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

main > div hr {
    display: block;
    background: #005baa;
    height: 0.25rem;
    width: 6.25rem;
    border: none;
    margin: 1.125rem 0 1.875rem 0;
}

main > div p {
    line-height: 1.6;
}

main a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #717171;
    font-weight: 500;
    background: #fff;
    border-radius: 3.125rem;
    transition: 0.3s ease-in-out;
}

main > div > a {
    border: 2px solid #c2c2c2;
    margin-top: 2.188rem;
    padding: 0.625rem 1.875rem;
}

    main > div > a:hover {
        border: 0.125rem solid #005baa;
        color: #005baa;
    }

.swiper {
    width: 100%;
    padding-top: 3.125rem;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    bottom: 1.25rem !important;
}

.swiper-slide {
    width: 18.75rem;
    height: 28.125rem;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: self-start;
}

    .swiper-slide h2 {
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 0.625rem;
        padding: 0 0 0 1.563rem;
        text-transform: uppercase;
    }

    .swiper-slide p {
        color: #dadada;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        padding: 0 1.563rem;
        line-height: 1.6;
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .swiper-slide a {
        margin:20px !important;
        padding: 10px 10px;
        font-size: 15px;
         border-radius:50px;
        border:2px solid #fff;
        color:#fff
       
    }

        .swiper-slide a:hover {
            color: #F57F1B;
            background-color:#fff;
            transition:linear 200ms
        }

    .swiper-slide div {
        display: none;
        opacity: 0;
        padding-bottom: 50px;
    }

.swiper-slide-active div {
    display: block;
    opacity: 1;
}

 

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

@media screen and (min-width: 48rem) {
    main {
        display: flex;
        align-items: center;
    }

    .bg,
    .bg2 {
        opacity: 0.1;
    }
}

@media screen and (min-width: 93.75rem) {
    .swiper {
        width: 85%;
    }
}



.content1 {
    width: 100%;
    padding: 0 4%;
    color: white;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .content1 {
        flex-direction: column;
    }
}

.card {
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    height: 220px;
    background-color: #292929 !important;
    margin: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    border-top: 8px solid #F57F1B;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px !important;

}

.icon {
    margin: 0 auto;
    width: 100%;
    height: 80px;
    max-width: 80px;
    background: linear-gradient(90deg, #F57F1B 0%, #F57F1B 40%, rgba(0, 0, 0, 0.28) 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s ease;
    background-position: 0px;
    background-size: 200px;
    border-radius: 50px !important;
    
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.card .title {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-top: 30px;
    color: #F57F1B;
    font-weight: 900;
    text-transform: uppercase;
}

.card .text {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-weight: 900;
    max-height: 0;
    transition: all 0.3s ease;
}

.card:hover {
    height: 210px;
}

    .card:hover .info {
        height: 90%;
    }

    .card:hover .text {
        transition: all 0.3s ease;
        opacity: 1;
        max-height: 40px;
        color: #F57F1B
    }

    .card:hover .icon {
        background-position: -120px;
        transition: all 0.3s ease;
    }

        .card:hover .icon i {
            background: linear-gradient(90deg, #F57F1B, #F57F1B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 1;
            transition: all 0.3s ease;
        }






@charset "UTF-8";
/********************* FONTES ******************* */
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");
/********************* GERAL ******************* */
::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 0px;
}

::-webkit-scrollbar-track-piece {
    opacity: 1;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #bbb;
}

 

@-webkit-keyframes gradienteBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradienteBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

* a {
    outline: none !important;
}

/********************* PRELOADER ******************* */
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 98;
}

    .preloader i {
        position: absolute;
        color: #C4151C;
        width: 50px;
        height: 50px;
        font-size: 40px;
        top: calc(50% - 20px);
        right: calc(50% - 34px);
    }

    .preloader::before {
        content: "";
        width: 100px;
        height: 100px;
        position: fixed;
        z-index: 999999;
        top: calc(50% - 50px);
        right: calc(50% - 50px);
        z-index: 99;
        border: 4px solid #fff;
        border-right: 4px solid #C4151C;
        border-left: 4px solid #C4151C;
        border-radius: 100%;
        -webkit-animation-name: rodar;
        animation-name: rodar;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: normal;
        animation-direction: normal;
        -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
        animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

@-webkit-keyframes rodar {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(360deg) scale(1.2);
    }
}

@keyframes rodar {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(360deg) scale(1.2);
    }
}
/********************* BOTÃO CODEPEN ******************* */
.botao-codepen {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    -webkit-animation-name: pular;
    animation-name: pular;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

    .botao-codepen i {
        color: #fff;
        line-height: 50px;
        font-size: 23px;
    }

@-webkit-keyframes pular {
    0%, 100% {
        transform: translateY(0px) scale(1) rotateY(0deg);
    }

    50% {
        transform: translateY(-9px) scale(0.8) rotateY(180deg);
    }
}

@keyframes pular {
    0%, 100% {
        transform: translateY(0px) scale(1) rotateY(0deg);
    }

    50% {
        transform: translateY(-9px) scale(0.8) rotateY(180deg);
    }
}
/******************** FIX MARGIN ********************* */
.magnificPopup__Box {
    margin-top: 30px;
}

/****************** BOX 1,2,3,4 *********************** */
.box-1, .box-2, .box-3, .box-4 {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

    .box-1::before, .box-2::before, .box-3::before, .box-4::before {
        content: "";
        position: absolute;
        top: 5%;
        left: 3.75%;
        width: 92.5%;
        height: 90%;
        background-color: rgba(0, 0, 0, 0.5);
        transition: 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .box-1:hover, .box-2:hover, .box-3:hover, .box-4:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.2);
    }

    .box-1::before {
        opacity: 0;
        transform: scale(0.4);
        transform-origin: center center;
    }

    .box-2::before {
        opacity: 0;
    }

    .box-3::before {
        opacity: 0;
        transform: translateY(-10px) translateX(-10px);
    }

    .box-4::before {
        opacity: 0;
        width: 0;
    }

    .box-1:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .box-2:hover::before {
        opacity: 1;
    }

    .box-3:hover::before {
        opacity: 1;
        transform: translateY(0px) translateX(0px);
    }

    .box-4:hover::before {
        opacity: 1;
        width: 92.5%;
    }

    .box-1::after, .box-2::after, .box-3::after, .box-4::after {
        content: "";
        position: absolute;
        top: 5%;
        left: 2.5%;
        width: 95%;
        height: 90%;
        border: 2px solid #F57F1B;
        border-radius: 0 30px 0 30px;
        opacity: 0;
        transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform: scale(0.9);
    }

    .box-1:hover::after, .box-2:hover::after, .box-3:hover::after, .box-4:hover::after {
        opacity: 1;
    }

/****************** LUPA OVERLAY *********************** */
.lupa {
    width: 50px;
    height: 50px;
    background-color: rgba(187, 187, 187, 0.80);
    position: absolute;
    top: calc(50% - 28px);
    left: calc(50% - 32px);
    opacity: 0;
    transform: rotate(45deg);
    border-radius: 8px;
    transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);

}

    .lupa > i {
        font-size: 23px;
        line-height: 45px;
        color: #F57F1B;
        transform: rotate(-45deg);
    }

.box-1:hover .lupa, .box-2:hover .lupa, .box-3:hover .lupa, .box-4:hover .lupa {
    opacity: 1;
}

/*************** FIX CURSOR MAGNIFIC POPUP *********** */
.mfp-close {
    cursor: pointer !important;
}

.mfp-bg, .mfp-container, .mfp-wrap {
    cursor: default !important;
}

/************* MAGNIFIC POPUP ZOOM ************** */
.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-zoom-in .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform: scale(0.6);
    }

    .mfp-zoom-in.mfp-bg {
        opacity: 0;
        transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-zoom-in.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: scale(1);
    }

    .mfp-zoom-in.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-zoom-in.mfp-removing .magnificPopup__Animus {
        transform: scale(0.6);
        opacity: 0;
    }

    .mfp-zoom-in.mfp-removing.mfp-bg {
        opacity: 0;
    }

/**************************************************** */
/************* MAGNIFIC 3D FLIP ************** */
.mfp-3d-flip {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-3d-flip .mfp-content {
        perspective: 2000px;
    }

    .mfp-3d-flip .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform-style: preserve-3d;
        transform: rotateY(-60deg);
    }

    .mfp-3d-flip.mfp-bg {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-3d-flip.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: rotateY(0deg);
    }

    .mfp-3d-flip.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-3d-flip.mfp-removing .magnificPopup__Animus {
        transform: rotateX(80deg);
        opacity: 0;
    }

    .mfp-3d-flip.mfp-removing.mfp-bg {
        opacity: 0;
    }

/*************************************************** */
/**************** MAGNIFIC HORIZONTAL IN OUT **************** */
.mfp-horizontal-in-out {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-horizontal-in-out .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s;
        transform: translateX(-500px);
    }

    .mfp-horizontal-in-out.mfp-bg {
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-horizontal-in-out.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: translateX(0);
    }

    .mfp-horizontal-in-out.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-horizontal-in-out.mfp-removing .magnificPopup__Animus {
        transform: translateX(500px);
        opacity: 0;
    }

    .mfp-horizontal-in-out.mfp-removing.mfp-bg {
        opacity: 0;
    }

/********************************************************************* */
/************************ MAGNIFIC VERTICAL TOP IN - BOTTOM OUT ************************* */
.mfp-vertical-topIn-bottomOut {
    /* start state */
    /* animate in */
    /* animate out */
}

    .mfp-vertical-topIn-bottomOut .mfp-content {
        vertical-align: middle;
    }

    .mfp-vertical-topIn-bottomOut .magnificPopup__Animus {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
        transform: translateY(-400px);
    }

    .mfp-vertical-topIn-bottomOut.mfp-bg {
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

    .mfp-vertical-topIn-bottomOut.mfp-ready .magnificPopup__Animus {
        opacity: 1;
        transform: translateY(0);
    }

    .mfp-vertical-topIn-bottomOut.mfp-ready.mfp-bg {
        opacity: 0.8;
    }

    .mfp-vertical-topIn-bottomOut.mfp-removing .magnificPopup__Animus {
        transform: translateY(200px);
        opacity: 0;
    }

    .mfp-vertical-topIn-bottomOut.mfp-removing.mfp-bg {
        opacity: 0;
    }


.container input {
    display: none;
}



/* Card Styling */
.card-div {
    width: 100%;
    min-height: 20em;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.85);
    margin: 0.6em;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: transform 0.2s ease-in-out;
}

/* ======== General styling of all cards and heart divs ========== */
.img-div {
    width: 100%;
    height: 8em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    z-index: 1;
    border-radius: 0 0 10px 10px;
    background-color:#C4151C
}

    .img-div img {
        transform-origin: bottom;
        transform: translateY(7.5%);
        transition: transform 0.3s ease-in-out
    }

/* === Styling the like Icon ==== */
.like-icon-div {
    padding: 1em 1em 0 1em;
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    font-size: 1.5em;
    color: var(--heart-icon-color);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: flex-end;
}

.like-icon-div-child {
    /* background-color: yellow; */
    width: 1em;
    height: 1em;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.heart-empty {
    position: absolute;
    left: 0;
    opacity: 1;
}

.heart-fill {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.25s ease-in-out, opacity 0.2s ease-in-out;
}


/* God of war image and heart-background*/
.gow-img-div {
    background-color: var(--card-1-secondary-color);
}

    .gow-img-div img {
        width: 65%;
        transform: translateY(7.5%);
        /* background-color: whitesmoke; */
    }

.card-1 .like-icon-div {
    background-color: var(--card-1-secondary-color);
}


/* Sekiro image and heart-background */
.sekiro-img-div {
    background-color: var(--card-2-secondary-color);
}

    .sekiro-img-div img {
        width: 45%;
        transform: translateY(7.5%);
    }

.card-2 .like-icon-div {
    background-color: var(--card-2-secondary-color);
}


/* Dazai image and heart-background */
.dazai-img-div {
    background-color: var(--card-3-secondary-color);
}

    .dazai-img-div img {
        width: 80%;
        transform: translateY(7.5%);
    }

.card-3 .like-icon-div {
    background-color: var(--card-3-secondary-color);
}

/* U4 image and heart-background*/
.u4-img-div {
    background-color: var(--card-4-secondary-color);
}

    .u4-img-div img {
        width: 50%;
        transform: translateY(7.5%);
    }

.card-4 .like-icon-div {
    background-color: var(--card-4-secondary-color);
}

/* ======== text Container Styling general ======== */

.text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: yellow; */
    padding: 0 1.5em;
    padding-top: 7em;
    padding-bottom: 1em;
    box-sizing: border-box;
    color:white
}

    .text-container .item-name,
    .text-container .date {
        margin: 0.25em 0;
        text-align: center;
    }

    .text-container .item-name {
        font-size: 18px;
        font-weight: var(--title-font-weight);
        color: var(--heading-color);
        text-align:left
    }

    .text-container .date {
        font-size: 0.9em;
        font-weight: var(--date-font-weight);
        color: var(--date-text-color);
    }

/* === Pricing and cart div  ===== */
.pricing-and-cart {
    /* background-color: wheat; */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0.25em 0 1em 0;
}

.pricing {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.previous-price {
    font-size: 0.8rem;
    font-weight: var(--pricing-font-weight);
    color: var(--previous-price-text-color);
    text-decoration: line-through;
    /* background-color: whitesmoke; */
    text-align: left;
}

.current-price {
    color: var(--current-price-text-color);
    font-size: 1.3rem;
    font-weight: var(--pricing-font-weight);
    /* background-color: yellow; */
    margin: 0;
}

.pricing-and-cart {
    width: 100%;
}

.fa-shopping-cart {
    font-size: 1.3rem;
    top: 0;
    transform: translateY(50%);
}


/* ====== Hover effects ======= */
.card-div:hover .img-div img {
    transform: translateY(7.5%) scale(1.2);
}

.card-div:hover {
    transform: translate(0, -10px);
}

.like-icon-div-child:hover .heart-fill {
    opacity: 1;
    transform: scale(1);
}

.like-icon-div-child:hover .heart-empty {
    transition-delay: 0.25s;
    opacity: 0;
}

#card-1-like:checked ~ .heart-empty,
#card-2-like:checked ~ .heart-empty,
#card-3-like:checked ~ .heart-empty,
#card-4-like:checked ~ .heart-empty {
    opacity: 0;
}

#card-1-like:checked ~ .heart-fill,
#card-2-like:checked ~ .heart-fill,
#card-3-like:checked ~ .heart-fill,
#card-4-like:checked ~ .heart-fill {
    animation: like-animation 0.25s ease-in-out forwards;
}

#card-1-like:not(:checked) ~ .heart-fill,
#card-2-like:not(:checked) ~ .heart-fill,
#card-3-like:not(:checked) ~ .heart-fill,
#card-4-like:not(:checked) ~ .heart-fill {
    animation: unlike-animation 0.25s ease-in-out;
}


@keyframes like-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        color: var(--liked-heart-icon-color);
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        color: var(--liked-heart-icon-color);
        transform: scale(1.0);
    }
}

@keyframes unlike-animation {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        color: var(--heart-icon-color);
        transform: scale(1.0);
    }
}

.frame {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

button {
    margin: 20px;
}

.custom-btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 7px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
}

/* 7 */
.btn-7 {
    background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,1) 100%);
    line-height: 42px;
    padding: 0;
    border: none;
}

    .btn-7 span {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        font-size:15px
    }

    .btn-7:before,
    .btn-7:after {
        position: absolute;
        content: "";
        right: 0;
        bottom: 0;
        background: rgba(251,75,2,1);
         transition: all 0.3s ease;
    }

    .btn-7:before {
        height: 0%;
        width: 2px;
    }

    .btn-7:after {
        width: 0%;
        height: 2px;
    }

    .btn-7:hover {
        color: rgba(251,75,2,1);
        background: transparent;
    }

        .btn-7:hover:before {
            height: 100%;
        }

        .btn-7:hover:after {
            width: 100%;
        }

    .btn-7 span:before,
    .btn-7 span:after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        background: rgba(251,75,2,1);
        box-shadow: -7px -7px 20px 0px rgba(255,255,255,.9), -4px -4px 5px 0px rgba(255,255,255,.9), 7px 7px 20px 0px rgba(0,0,0,.2), 4px 4px 5px 0px rgba(0,0,0,.3);
        transition: all 0.3s ease;
    }

    .btn-7 span:before {
        width: 2px;
        height: 0%;
    }

    .btn-7 span:after {
        height: 2px;
        width: 0%;
    }

    .btn-7 span:hover:before {
        height: 100%;
    }

    .btn-7 span:hover:after {
        width: 100%;
    }

.body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    box-sizing: border-box;
}

.product-card {
    border-radius: .9rem;
    width: 40vw;
    height: var(--product-card-height);
    box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.5);
    display: flex;
}

    .product-card:hover {
        box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.5);
    }

.image-card {
    border-radius: .9rem;
    width: var(--image-width);
    height: var(--image-height);
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.5);
    transform: scale(1, 1) translate(calc(var(--image-width)/-4), calc((var(--product-card-height) - var(--image-height)) / 2)) scale(1, 1);
    background-color: white;
    overflow: hidden;
    transition: transform .2s ease-in-out;
}

    .image-card img:hover {
        transform: scale(1.1);
        transition: transform 5s ease-in-out;
    }

.product-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.product-title {
    font-size: 1.8rem;
    font-weight: bold;
}

.product-info {
    font-size: 1.3rem;
    color: gray;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

    .product-info > :nth-child(2) {
        width: 30%;
    }

    .product-info > :nth-child(1) {
        width: 70%;
    }

.product-price-details {
    font-size: 1.5rem;
    color: black;
    padding-top: 5px;
}


.price {
    font-size: 1.5rem;
}

.desc {
    flex-grow: 2;
}

.star {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(250, 200, 100, 1);
    background: linear-gradient(to right, rgba(250, 200, 100, 1) 100%, yellow);
    -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}


@media screen and (max-width: 426px) {
    .product-card {
        width: 100%;
        flex-direction: column;
        min-height: 400px;
        margin: calc((100% - var(--image-height))/2) 0;
    }

    .product-content {
        align-content: center;
        justify-content: space-between;
        padding: 5px 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .product-info > :nth-child(2) {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .body {
        flex-direction: column;
    }

    .product-card > * {
        transform: translate(0, calc(var(--image-height)/-4))
    }

    .image-card {
        transform: translate(calc(100% - 20px - var(--image-width)/2), calc(var(--image-height)/-4))
    }
}

@media screen and (max-width: 376px) {
    .image-card {
        transform: translate(0, 0);
        width: 100%;
        box-shadow: none;
        height: 35%;
        border-radius: 0;
    }

    .product-card > * {
        transform: translate(0, 0);
    }
}

.popup-wrapper {
    display: block;
    position: fixed;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.5);
    background: white;
    z-index: 9999;
    padding: 10px;
    border-radius: 12px;
}

@keyframes slide-down {
    0% {
        max-height: 0px;
    }

    100% {
        max-height: 400px;
    }
}

.popup {
    animation: slide-down 1.32s ease;
    overflow: hidden;
}

    .popup > ul {
        list-style: none;
        padding: 0 10px;
        max-width: 400px;
        max-height: 200px;
        min-height: 200px;
        overflow: scroll;
    }

    .popup > header {
        width: 100%;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .popup > ul > li {
        padding: 5px 0;
        display: flex;
        min-width: 200px;
        justify-content: space-between;
        align-items: center;
        text-transform: capitalize;
    }

        .popup > ul > li button {
            border-style: none;
            padding: 10px;
        }

.popup-wrapper::before {
    display: block;
    content: ' ';
    width: 20px;
    height: 20px;
    box-shadow: 5px 0px 5px -5px rgba(0, 0, 0, .9);
    background: white;
    position: absolute;
    right: -10px;
    top: 15px;
    z-index: 99999;
    transform: rotate(45deg);
}
.projcard-container {
    margin: 50px 0;
}

    /* Actual Code: */
    .projcard-container,
    .projcard-container * {
        box-sizing: border-box;
    }

.projcard-container {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

.projcard {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color:#fff;
    border: 2px solid #ddd;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .projcard:hover {
        box-shadow: 0 34px 32px -33px rgba(0, 0, 0, .18);
        transform: translate(0px, -3px);
    }

    .projcard::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(-70deg, #424242, transparent 50%);
        opacity: 0.07;
    }

    .projcard:nth-child(2n)::before {
        background-image: linear-gradient(-250deg, #424242, transparent 50%);
    }

.projcard-innerbox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.projcard-img {
    position: absolute;
    height: 300px;
    width: 350px;
    top: 0;
    left: 0;
    transition: transform 0.2s ease;
}

.projcard:nth-child(2n) .projcard-img {
    left: initial;
    right: 0;
}

.projcard:hover .projcard-img {
    transform: scale(1.05) rotate(1deg);
}

.projcard:hover .projcard-bar {
    width: 100%;
}

.projcard-textbox {
    position: absolute;
    top: 7%;
    bottom: 7%;
    left: 430px;
    width: calc(100% - 470px);
    font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox {
    left: initial;
    right: 430px;
}

.projcard-textbox::before,
.projcard-textbox::after {
    content: "";
    position: absolute;
    display: block;
    background: #ff0000bb;
    background: #fff;
    top: -20%;
    left: -55px;
    height: 140%;
    width: 60px;
    transform: rotate(8deg);
}

.projcard:nth-child(2n) .projcard-textbox::before {
    display: none;
}

.projcard-textbox::after {
    display: none;
    left: initial;
    right: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after {
    display: block;
}

.projcard-textbox * {
    position: relative;
}

.projcard-title {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    font-size: 20px;
    color:rgba(251,75,2,1)
}

.projcard-subtitle {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    color: #888;
    font-size:18px
}

.projcard-bar {
    left: -2px;
    width: 50px;
    height: 5px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 3s ease;
}

.projcard-blue .projcard-bar {
    background-color: rgba(251,75,2,1);
   
}

.projcard-blue::before {
    background-image: linear-gradient(-70deg, #0088FF, transparent 50%);
}

.projcard-blue:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #0088FF, transparent 50%);
}

.projcard-red .projcard-bar {
    background-color: rgba(251,75,2,1);
}

.projcard-red::before {
    background-image: linear-gradient(-70deg, #D62F1F, transparent 50%);
}

.projcard-red:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #D62F1F, transparent 50%);
}

 
 
 
 
.projcard-customcolor .projcard-bar {
    background-color: var(--projcard-color);
}

.projcard-customcolor::before {
    background-image: linear-gradient(-70deg, var(--projcard-color), transparent 50%);
}

.projcard-customcolor:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, var(--projcard-color), transparent 50%);
}

.projcard-description {
    z-index: 10;
    font-size: 15px;
    color: #424242;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projcard-tagbox {
    position: absolute;
 
    font-size: 14px;
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.projcard-tag {
    display: inline-block;
    /*background: #E0E0E0;*/
    color: #777;
    border-radius: 3px 0 0 3px;
    line-height: 26px;
    padding: 0 10px 0 23px;
    position: relative;
    margin-right: 20px;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
    margin-top:10px;
}

    .projcard-tag::before {
        content: '';
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
        height: 6px;
        left: 5px;
        width: 6px;
        top: 5px;
        border:7px solid rgba(251,75,2,1)
    }

    /*.projcard-tag::after {
        content: '';
        position: absolute;
        border-bottom: 13px solid #005baa;
        border-left: 10px solid #E0E0E0;
        border-top: 13px solid transparent;
        right: -10px;
        top: 0;
    }*/
    h1,
        h2,
        h3,
        h4,
        h5,
        h6 {}
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
        }
        
        a,
        a:active,
        a:focus {
            color: #333;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}



.veen {
    width: 70%;
    margin: 100px auto;
    background: rgba(255,255,255,.5);
    min-height: 550px;
    display: table;
    position: relative;
    box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
    border-radius:30px
}

    /*.veen > div {
         
 
        text-align: left;
        color: #fff;
       
        margin-right:200px
    }*/

    .veen button {
        background: transparent;
        //background-image: linear-gradient(90deg, #e0b722, #ff4931);
        display: inline-block;
        padding: 10px 30px;
        border: 3px solid #fff;
        border-radius: 50px;
        background-clip: padding-box;
        position: relative;
        color: #FFF;
        //box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
        transition: all .25s;
    }

        .veen button.dark {
            border-color: #FF5100;
            background: #FF5100;
        }

    .veen .move button.dark {
        border-color: #FF5100;
        background: #FF5100;
    }

    
    .veen button:active {
        box-shadow: none;
    }

    .veen button:focus {
        outline: none;
    }

    .veen > .wrapper {
        position: absolute;
        width: 40%;
        height: 120%;
        top: -10%;
        left: 5%;
        background: #fff;
        box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
        transition: all .5s;
        color: #303030;
        overflow: hidden;
        border-radius:50px
    }

    .veen .wrapper > form {
        padding: 15px 30px 30px;
        width: 100%;
        transition: all .5s;
        background: #fff;
        width: 100%;
    }

        .veen .wrapper > form:focus {
            outline: none;
        }

    .veen .wrapper #login {
        padding-top: 20%;
        visibility: visible;
    }

    .veen .wrapper #register {
        transform: translateY(-80%) translateX(100%);
        visibility: hidden;
    }

    .veen .wrapper.move #register {
        transform: translateY(-80%) translateX(0%);
        visibility: visible;
    }

    .veen .wrapper.move #login {
        transform: translateX(-100%);
        visibility: hidden;
    }

    .veen .wrapper > form > div {
        position: relative;
        margin-bottom: 15px;
    }

    .veen .wrapper label {
        position: absolute;
        top: -7px;
        font-size: 12px;
        white-space: nowrap;
        background: #fff;
        text-align: left;
        right: 20px;
        padding: 0 5px;
        color: #999;
        pointer-events: none;
    }

    .veen .wrapper h3 {
        margin-bottom: 25px;
        font-family: 'B Yekan'
    }

    .veen .wrapper input {
        height: 40px;
        padding: 5px 15px;
        width: 100%;
        border: solid 1px #999;
    }

    .veen .wrapper input {
        height: 40px;
        padding: 5px 15px;
        width: 100%;
        border: solid 1px #999;
    }

        .veen .wrapper input:focus {
            outline: none;
            border-color: #ff4931;
        }

    .veen > .wrapper.move {
        left: 45%;
    }

        .veen > .wrapper.move input:focus {
            border-color: #e0b722;
        }

@media (max-width: 767px) {
    .veen {
        padding: 5px;
        margin: 0;
        width: 100%;
        display: block;
    }

        .veen > .wrapper {
            position: relative;
            height: auto;
            top: 0;
            left: 0;
            width: 100%;
        }

        .veen > div {
            display: inline-block;
        }

    .splits {
        width: 50%;
        background: #fff;
        float: left;
    }

        .splits button {
            width: 100%;
            border-radius: 0;
            background: #505050;
            border: 0;
            opacity: .7;
        }

            .splits button.active {
                opacity: 1;
            }

            .splits button.active {
                opacity: 1;
                background: #ff4931;
            }

        .splits.rgstr-btn button.active {
            background: #FF5100;
        }

      
    .veen > .wrapper.move {
        left: 0%;
    }
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    box-shadow: inset 0 0 0 50px #fff
}



.projcard-tag2 {
    display: inline-block;
    /*background: #E0E0E0;*/
    color: #fff;
    border-radius: 3px 0 0 3px;
    line-height: 26px;
    padding: 0 10px 0 23px;
    position: relative;
    margin-right: 20px;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
    margin-top: 10px;
 
}

    .projcard-tag2::before {
        content: '';
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
        height: 6px;
        left: 5px;
        width: 6px;
        top: 10px;
        border: 2px solid white;
    
    }


.projcard-tagbox2 {
    position: absolute;
    font-size: 14px;
    cursor: default;
    user-select: none;
    pointer-events: none;
}


.projcard-tag3 {
    display: inline-block;
    /*background: #E0E0E0;*/
    color: #777;
    border-radius: 3px 0 0 3px;
    line-height: 26px;
    padding: 0 10px 0 23px;
    position: relative;
    margin-right: 20px;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
    margin-top: 10px;
}

    .projcard-tag3::before {
        content: '';
        position: absolute;
        background: #fff;
        border-radius: 10px;
        box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
        height: 6px;
        left: 5px;
        width: 6px;
        top: 5px;
        border: 2px solid rgba(251,75,2,1);
    }



.box-icon {
    text-align: center;
    position: relative;
    height:200px
}

    .box-icon > .image {
        position: relative;
        z-index: 2;
        margin: auto;
        width: 88px;
        height: 88px;
        border: 8px solid #fff;
        line-height: 88px;
        border-radius: 30%;
        background: #ff6a00;
        vertical-align: middle;
    }

    .box-icon:hover > .image {
        background: #333;
    }

    .box-icon > .image > i {
        font-size: 36px !important;
        color: #fff !important;
        line-height: 1;
        display: inline-block;
    }

    .box-icon:hover > .image > i {
        color: white !important;
    }

    .box-icon > .info {
        margin-top: -24px;
        background: rgba(80, 80, 80, 0.09);
        border: 1px solid #e0e0e0;
        padding: 15px 0 10px 0;
        height: 150px;
        border-radius: 20px;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    }

    .box-icon:hover > .info {
        background: rgba(0, 0, 0, 0.04);
        border-color: #e0e0e0;
        color: white;
    }

    .box-icon > .info > h3.title {
        
        font-size: 16px;
        color: #222;
        font-weight: 500;
        padding:30px
    }

    .box-icon > .info > p {
         
        font-size: 13px;
        color: #666;
        line-height: 1.5em;
        margin: 20px;
    }

    .box-icon:hover > .info > h3.title,
    .box-icon:hover > .info > p,
    .box-icon:hover > .info > .more > a {
        color: #222;
    }

    .box-icon > .info > .more a {
     
        font-size: 12px;
        color: #222;
        line-height: 12px;
        text-transform: uppercase;
        text-decoration: none;
        background-color:#FF5100;
        padding:10px
    }

    .box-icon:hover > .info > .more > a {
        color: #fff;
        padding: 6px 8px;
        background-color:  #ff6a00;
    }

.box .space {
    height: 30px;
}


.circle-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50px;
    box-sizing: border-box;
    transition: width 0.2s ease, height 0.2s ease;
    cursor: none !important
}

.circle-cursor--outer {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(240, 218, 178, 0.56);
    z-index: 12000;
    transition: width 0.2s ease, height 0.2s ease;
}

.circle-cursor--inner {
    width: 5px;
    height: 5px;
    left: -2.5px;
    top: -2.5px;
    z-index: 11000;
    background: #E6B866;
    transition: width 0.2s ease, height 0.2s ease;
}

.circle-cursor--hover .circle-cursor--outer {
    width: 50px;
    height: 50px;
}

.circle-cursor--hover .circle-cursor--inner {
    width: 10px;
    height: 10px;
}
