input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}
/* Project Card */
.project-card {
    width: 100%;
}

.project-card img {
    width: 100%;
    height: 310px;
}

.project-card.box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(72, 78, 85, .6);
    box-shadow: 0 1px 1px rgba(72, 78, 85, .6);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.project-card.box-shadow:hover {
    -webkit-box-shadow: 0 20px 40px rgba(72, 78, 85, .6);
    box-shadow: 0 20px 40px rgba(72, 78, 85, .6);
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}
.project-card.card {
    border-radius: 25px;

}

.project-card.card img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    object-fit: cover;
}

.project-card.card svg {
    position: absolute;
    bottom: 105px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    filter: drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.2));
}

.project-card.card:hover svg {
    filter: drop-shadow(2px -9px 4px rgba(0, 69, 134, 0.4));
}

.project-card i {
    position: absolute;
    top: 20rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    background: rgb(238, 174, 202);
    /* background: var(--gold); */
    padding: 1rem;
    border-radius: 100%;
    transition: all .6s ease-in-out;
}

.project-card.card:hover i {
    transform: rotate(-180deg);
}

.project-card i:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.7) 0px 18px 36px -18px inset;
}




.project-card .cd__intro {
    padding: 60px 30px;
    margin-bottom: 15px;
    flex-direction: column;

}

.project-card .cd__intro,
.project-card .cd__credit {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #333;
    line-height: 1.5;
    text-align: center;
}

.project-card .cd__intro h1 {
    font-size: 18pt;
    padding-bottom: 15px;

}

.project-card .cd__intro p {
    font-size: 14px;
}

.project-card .cd__action {
    text-align: center;
    display: block;
    margin-top: 20px;
}

.project-card .cd__action a.cd__btn {
    text-decoration: none;
    color: #666;
    border: 2px solid #666;
    padding: 10px 15px;
    display: inline-block;
    margin-left: 5px;
}

.cd__action a.cd__btn:hover {
    background: #666;
    color: #fff;
    transition: .3s;
    -webkit-transition: .3s;
}

.project-card .cd__action .cd__btn:before {
    font-family: var(--primary-font);
    font-weight: normal;
    margin-right: 10px;
}

.project-card .down:before {
    content: "\f019"
}

.back:before {
    content: "\f112"
}

.project-card .cd__credit {
    padding: 12px;
    font-size: 9pt;
    margin-top: 40px;

}

.project-card .cd__credit span:before {
    font-family: var(--primary-font);
    color: #e41b17;
    content: "\f004";


}

.project-card .cd__credit a {
    color: #333;
    text-decoration: none;
}

.project-card .cd__credit a:hover {
    color: #1DBF73;
}

.project-card .cd__credit a:hover:after {
    font-family: var(--primary-font);
    content: "\f08e";
    font-size: 9pt;
    position: absolute;
    margin: 3px;
}

.project-card .cd__main {
    background: #fff;
    padding: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.project-card .cd__main {
    display: flex;
    width: 100%;
}
.choose-files {
    position: relative;
}

.hover-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.image-label {
    position: relative;
    display: inline-block;
}

.image-label:hover .hover-text {
    display: block;
}
