/* CONTACT CREATIVE */

.info-card {
    border-radius: 18px;
    padding: 10px 25px;
    background: linear-gradient(145deg, #fff, #fff);
    position: relative;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(163, 0, 3, .15);
}

/* glowing corner */

.info-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #a30003;
    opacity: .08;
    top: -40px;
    right: -40px;
    border-radius: 50%;
}

/* hover */

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(163, 0, 3, .18);
}

/* ICON */

.info-card i {
    font-size: 25px;
    color: #a30003;
    margin-bottom: 15px;
}

/* TITLE */

.info-card h5 {
    font-weight: 700;
    font-size: 15px;
    color: #222;
    margin-bottom: 10px;
}

/* TEXT */

.info-card p {
    font-size: 13px;
    color: #555;
}

/* LINKS */

.contact-link {
    text-decoration: none;
    color: #555;
    transition: .3s;
}

.contact-link:hover {
    color: #a30003;
}

/* subtle bottom line */

.info-card::after {
    content: "";
    width: 40%;
    height: 2px;
    background: #a30003;
    position: absolute;
    bottom: 20px;
    left: 30%;
    opacity: .6;
}

/* MOBILE */

@media(max-width:768px) {

    .info-card {
        padding: 35px 20px;
    }

}


/* FORM */
.return label {
    font-size: 14px;
    color: #a30003;
    margin-bottom: 6px;
}

.return .form-control {
    border-radius: 2px;
    font-size: 10px;
    padding: 5px !important;
}

.return .form-control:focus,
.return .form-select:focus {
    box-shadow: none;
}

.return .form-select {
    border-radius: 2px;
    font-size: 10px;
    padding: 5px !important;
}
