/*---------------Global theme variables ---------------*/



:root {
    --theme-bg-dark-color: #171719;
    --theme-bg-light-grey-color: #333;
    --theme-bg-grey-color: #222;
    --theme-black-color: #000;
    --theme-white-color: #fff;
    --theme-heading-color: linear-gradient(45deg, #f2ff86, #f7c40e, #f7c40e, #f7c40e, #f2ff86);
    --theme-btn-color: #f7c40e;
    --theme-btn-white-color: #fff;
    --theme-box-shadow: 0.5em -0.5em 2em 0 #00000094;

}


/** end */
body {
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    background-color: var(--theme-bg-dark-color);
    font-size: 17px;
}

div {
    color: var(--theme-white-color);
}

.section-title {
    background-image: var(--theme-heading-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white {
    color: var(--theme-white-color) !important;
}




h1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
}

h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0px;
    text-transform: none;
    font-weight: 800;
    font-style: normal;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--theme-btn-color);
    border-color: transparent;
    color: var(--theme-bg-dark-color);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: var(--theme-btn-color);
    border-color: var(--theme-btn-color);
    color: var(--theme-bg-dark-color);
    box-shadow: none;
}

.card-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    color: var(--theme-secondary-color);
    font-size: 20px;
    letter-spacing: 0.2px;
}

.card-title:hover {
    color: var(--theme-primary-color);
}

a:hover {
    text-decoration: none;
}

.block3 {
    position: relative;
    height: 100%;
    border-radius: 20px;
}

.block3::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #ffecaa;
    z-index: -3;
    border-radius: 3em;
    transform: scale3d(1.2, 1, 1) rotate(8deg);
}



/*------------Banner----------------*/

.heading {
    background-image: var(--theme-heading-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.bg-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(black, #000000c7);
    top: 0;
    z-index: 0;
    opacity: 0.9;
    left: 0;
}

.amc-banner {
    padding: 9em 0em;
}

.amc-banner::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    background: url("../../image/1.jpg");
    top: 0;
    left: 0;
    opacity: 0.7;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: cover;
}


.card-icon-custom svg {
    fill: var(--theme-white-color);
    width: 40px;
}

.about-us {
    padding-top: 5em;
    padding-bottom: 3em;
}

.card-title {
    font-size: 22px;
    line-height: 1;
    font-weight: normal;
    color: var(--theme-bg-dark-color);
}

.card-title:hover {
    color: var(--theme-bg-dark-color);

}

.all-cards div {
    color: var(--theme-bg-dark-color) !important;
}

.about-us a {
    background-image: var(--theme-heading-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 900px) {

    .block3::before {
        content: "";
        transform: unset;
        background: #ffecaa;
        border-radius: 0;
    }

    .amc-banner {
        padding: 3em 0em !important;
    }


    .about-us {
        padding-top: 2em;
        padding-bottom: 0em;
    }

}

@media only screen and (min-width: 600px) and (max-width: 900px) {
    .about-us {
        padding-top: 5em;
        padding-bottom: 0em;
    }




}

.doctor-feedback {
    border: 1px solid #f7c40e;
    border-radius: 50%;
    display: inline-block
}

.doctor-feedback~.card-title {
    color: #fff !important;
}

.doctor-feedback img {
    padding: 1em;
    width: 100px
}