/*************************************************************************
 *
 * TaxHeal.in CONFIDENTIAL
 * __________________
 *
 *  [2017] - [2025] TaxHeal.in
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of TaxHeal.in and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to TaxHeal.in
 * and its suppliers and may be covered by India and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from TaxHeal.in
 */

.circle {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#loading-overlay {
    position: fixed;
    /* Sit on top of the page content */
    display: none;
    /* Hidden by default */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 2;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: progress;
    /* Add a pointer on hover */
}

/* Loader css */

.main-loader {
    position: absolute;
    top: 50%;
    left: 50%;
}

a {
    cursor: pointer;
    cursor: hand;
}

button {
    cursor: pointer;
    cursor: hand;
}

/* Devbridge autocomplete */

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

footer .copyright {
    padding: 20px 30px;
    background-color: #11999e;
    width: 100%;
    color: rgb(233, 223, 223);
}

html, body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
}

footer h3 {
    width: 100%;
    background-color: #11999e;
    padding: 30px 20px;
    text-align: center;
    color: rgb(233, 223, 223);
}

.services h2 {
    width: 100%;
    background-color: #11999e;
    padding: 30px 20px;
    text-align: center;
    color: rgb(233, 223, 223);
}

.certification h2 {
    width: 100%;
    background-color: #11999e;
    padding: 30px 20px;
    text-align: center;
    color: rgb(233, 223, 223);
}

.card {
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.info .card, .certification .card {
    border: none;
}

.certification .data {
    padding: 20px 30px;
}

footer ul {
    list-style-type: none;
}

.certification div.show-on-scroll {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s 0.25s ease-out, transform 0.5s 0.25s ease-in;
    will-change: opacity, transform;
}

.certification div.is-visible {
    opacity: 1;
    transform: scale(1);
}

.services .card:hover {
    animation: shadow 0.2s forwards linear, shift 0.2s forwards linear;
    box-shadow: none;
}

@keyframes shadow {
    0% {
        box-shadow: none;
    }
    100% {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
}

@keyframes shift {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-20px);
    }
}

.services .show-on-scroll h5 {
    transform: translateX(-200px);
    opacity: 0;
    transition: transform 0.3s 0.3s ease-out, opacity 0.1s 0.2s ease-in;
    will-change: transform, opacity;
}

.services .is-visible h5 {
    opacity: 1;
    transform: translateX(0px);
}

.services .show-on-scroll p {
    opacity: 0;
    transform: translateX(200px);
    transition: transform 0.3s 0.3s ease-out, opacity 0.1s 0.2s ease-in;
    will-change: transform, opacity;
}

.services .is-visible p {
    opacity: 1;
    transform: translateX(0px);
}

.certification div.icon {
    height: 100px;
    text-align: center;
    font-size: 50px;
}

.certification h3, .certification p {
    text-align: center;
}

.certification div.row {
    padding: 20px 30px;
}

.certification div.data:hover {
    animation: shadow 0.2s forwards linear;
    color: teal;
}

.but {
    padding: 1rem 2rem;
    background: none;
    color: #fff;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border: 0.2rem solid #fff;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    text-decoration: none;
    display: inline;
}

.but.sm {
    padding: 0.5rem 1rem;
}

.but:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 0 0.1rem #fff;
}

.but.blue:hover {
    background: #1089ff;
    color: #fff;
    box-shadow: 0 0 0 0.1rem #1089ff;
}

.services .card a {
    width: 100%;
}

nav {
    background-color: #112d4e;
}