/* For Underline */
.comments-area a,
.page-content a,
.comments-area a:hover,
.page-content a:hover {
    text-decoration: none;
}

/* Elementor Text Editor for widget custom tick list */
.elementor-widget-text-editor ul {
    list-style: none;
    /* default bullet remove */
    padding-left: 0;
}

.elementor-widget-text-editor ul li {
    position: relative;
    padding-left: 25px;
    /* space for tick */
    margin-bottom: 8px;
}

.elementor-widget-text-editor ul li::before {
    content: "✔";
    /* green tick */
    color: green;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

selector .card-content {
    height: 56%;
    margin-bottom: -150px;
    transition: all 0.5s ease;
}

selector .card-wrapper:hover .card-content {
    margin-bottom: 0px;
    height: 100%;
}

/* card hover effect css */
selector .card-content .e-con-inner {
    transition: all 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

selector .card-wrapper:not(:hover) .card-content .e-con-inner {
    animation: fadeIn 1.5s ease forwards;
}


selector .card-wrapper:hover .card-content .e-con-inner {
    justify-content: end;
}

@media(max-width:1024px) {
    selector .card-content {
        height: 54%;
    }
}

/* Wrapper */
.appointment-form {
    background: #f3f3f3;
    padding: 30px;
    border-radius: 6px;
}

/* Title */
.form-title {
    font-size: 22px;
    font-weight: 450;
    margin-bottom: 25px;
    color: #008000;
}

/* Row */
.form-row {
    margin-bottom: 18px;
}

/* 2 Column Layout */
.two-col {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

/* Inputs */
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
    outline: none;
}

/* Textarea height */
.appointment-form textarea {
    height: 120px;
    resize: none;
}

/* Button */
.appointment-form input[type="submit"] {
    width: 100%;
    background: #008000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.appointment-form input[type="submit"]:hover {
    background: #008000;
}

/* Responsive */
@media (max-width: 768px) {
    .two-col {
        flex-direction: column;
    }
}



