﻿/*=========================================================
    WHY CHOOSE US
=========================================================*/

.why-section {
    padding: 120px 0;
    background: #f8f6f2;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #D4AF37;
        transform: scaleX(0);
        transition: .4s;
    }

    .why-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
    }

        .why-card:hover::before {
            transform: scaleX(1);
        }

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #6B0F1A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: .4s;
}

.why-card:hover .why-icon {
    background: #D4AF37;
    transform: rotateY(180deg);
}

.why-card h3 {
    font-family: "Cormorant Garamond",serif;
    color: #6B0F1A;
    font-size: 32px;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

@media(max-width:991px) {

    .why-section {
        padding: 90px 0;
    }
}

@media(max-width:767px) {

    .why-section {
        padding: 70px 0;
    }

    .why-card {
        padding: 35px 25px;
    }

        .why-card h3 {
            font-size: 28px;
        }

    .why-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }
}
