@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
/* 311545 */
/* rgb(244, 150, 26); */
:root{
    /* --green:rgb(164, 203, 58); */
    --green:rgb(203, 33, 33);
    --black:#3026ee;
    --whaite:white;
    --btn:rgb(164, 203, 58);
    /* --light-color:#777; */
    --box-shadow:.5rem .5rem 0 rgba(22, 160, 133, .2);
    --text-shadow:.4rem .4rem 0 rgba(0, 0, 0, .2); 
    --border:.2rem solid var(--green);
}

*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-transform: capitalize;
    transition: all .2s ease-out;
    
    text-decoration: none;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

section{
    padding:2rem 9%;
}

/* section:nth-child(even){
    /* background: #f5f5f5; 
}*/


.heading{
    
    text-align: center;
    padding-bottom: 2rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    /* color:var(--black); */
    font-size: 5rem;
    letter-spacing: .4rem;
}

.heading span{
    text-transform: uppercase;
    color:var(--btn);
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: .5rem;
    padding-left: 1rem;
    border:var( --btn);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    color: white;
    cursor: pointer;
    font-size: 1.7rem;
    background: var(--btn);
}

.btn span{
    padding:.7rem 1rem;
    border-radius: .5rem;
    /* background: var(--green); */
    color:#fff;
    margin-left: .5rem;
}

.btn:hover{
    background: var(--green);
    color:#fff;
}

.btn:hover span{
    color: var(--black);
    background:#fff;
    margin-left: 1rem;
}

.header{
    padding:1rem 9%;
    position: relative;;
    top:0px; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.header .logo{
    font-size: 2.5rem;
    color: var(--black);
}

.header .logo i{
    color: var(--green);
}

.header .navbar a{
    font-size: 1.7rem;
    color: var(--light-color);
    margin-left: 2rem;
}

.header .navbar a:hover{
    color: var(--green);
}

/* gopal header1 */

.header1{
    padding:1rem 9%;
    position: fixed;
    top:0; left: 0; right: 0;
    z-index: 1000;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.header1 .logo{
    font-size: 2.5rem;
    color: var(--black);
}

.header1 .logo i{
    color: var(--green);
}

.header1 .navbar a{
    font-size: 1.7rem;
    color: var(--light-color);
    margin-left: 2rem;
}

.header1 .navbar a:hover{
    color: var(--green);
}



#menu-btn{
    font-size: 2.5rem;
    border-radius: .5rem;
    background: #eee;
    color:var(--green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: none;
}

.home{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
    padding-top: 10rem;background: blanchedalmond;
}

.home .image{
    flex:1 1 45rem;
}

.home .image img{
    width: 100%;
}

.home .content{
    flex:1 1 45rem;
}

.home .content h3{
    font-size: 4.5rem;
    color:var(--black);
    line-height: 1.8;
    /* text-shadow: var(--text-shadow); */
}

.home .content p{
    font-size: 2.7rem;
    color:balck;
    line-height: 1.8;
    padding: 1rem 0;
    
}

.icons-container{
    display: grid;
    gap:2rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.icons-container .icons{
    /* border:var(--border);
    box-shadow: var(--box-shadow); */
    background: var(--btn);
    border-radius: .5rem;
    text-align: center;
    padding: 2.5rem;
}

.icons-container .icons i{
    font-size: 4.5rem;
    color:var(--whaite); 
    padding-bottom: .7rem;
}

.icons-container .icons h3{
    font-size: 4.5rem;
    color:var(--whaite);
    padding: .5rem 0;
    /* text-shadow: var(--text-shadow); */
}

.icons-container .icons p{
    font-size: 2.7rem;
    color:var(--light-color); color:white;
}

.services .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:2rem;
}

.services .box-container .box{
    background:blanchedalmond;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border:var(--border);
    padding: 2.5rem;
}

.services .box-container .box i{
    color: var(--black);
    font-size: 5rem;
    padding-bottom: .5rem;
}

.services .box-container .box h3{
    color: var(--green);
    font-size: 2.5rem;
    padding:1rem 0;
}

.services .box-container .box p{
    color: var(--light-color);
    font-size: 1.4rem;
    line-height: 2;
}
.about
{
    background: #eae3d4;
}
.about .row{
    
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
}

.about .row .image{
    flex:1 1 45rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex:1 1 45rem;
}

.about .row .content h3{
   /* color: var(--whaite);*/
    text-shadow: var(--text-shadow);
    font-size: 4rem;
    line-height: 1.8;
}

.about .row .content p{
    color:balck;
    padding:1rem 0;
    font-size: 20px;
    line-height: 1.8;
}

.doctors .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;
}

.doctors .box-container .box{
    text-align: center;
    /* background: rgb(244 150 26); */
    background:#fff; 
    border-radius: .5rem;
    border:var(--border);
    box-shadow: var(--box-shadow);
    padding:2rem;
}

.doctors .box-container .box img{
    height: 20rem;
    border:var(--border);
    border-radius: .5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.doctors .box-container .box h3{
    color:var(--black);
    font-size: 2.5rem;
}

.doctors .box-container .box span{
    /* color:var(--green); */
    font-size: 1.5rem;
}

.doctors .box-container .box .share{
    padding-top: 2rem;
}

.doctors .box-container .box .share a{
    height: 5rem;
     /* background: rebeccapurple;  */
    width: 5rem;
    line-height: 4.5rem;
    font-size: 2rem;
     color:var(--green);
    border-radius: .5rem;
    border:var(--border);
    margin:.3rem;
}

.doctors .box-container .box .share a:hover{
    background:var(--green);
    color:var(--black);
    box-shadow: var(--box-shadow);
}

.book .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
}
 
.book .row .image{
    flex:1 1 45rem;
}

.book .row .image img{
    width: 100%;
}

.book .row form{
    flex:1 1 45rem;
    background: #fff;
    border:var(--border);
    box-shadow: var(--box-shadow);
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
}

.book .row form h3{
    color:var(--black);
    padding-bottom: 1rem;
    font-size: 3rem;
}

.book .row form .box{
    width: 100%;
    margin:.7rem 0;
    border-radius: .5rem;
    border:var(--border);
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    padding: 1rem;
}

.book .row form .btn{
    padding:1rem 4rem;
}

.review .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:2rem;
}

.review .box-container .box{
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding:2.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.review .box-container .box img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    border:.5rem solid #fff;
}

.review .box-container .box h3{
    color:#fff;
    font-size: 2.2rem;
    padding:.5rem 0;
}

.review .box-container .box .stars i{
    color:#fff;
    font-size: 1.5rem;
}

.review .box-container .box .text{
    color:var(--light-color);
    line-height: 1.8;
    font-size: 1.6rem;
    padding-top: 4rem;
}

.review .box-container .box::before{
    content: '';
    position: absolute;
    top:-4rem; left: 50%;
    transform:translateX(-50%);
    background:var(--green);
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    height: 25rem;
    width: 120%;
    z-index: -1;
}

.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;
}

.blogs .box-container .box{
    border:var(--border);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    padding: 2rem;
}

.blogs .box-container .box .image{
    height: 20rem;
    overflow:hidden;
    border-radius: .5rem;
}

.blogs .box-container .box .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blogs .box-container .box:hover .image img{
    transform:scale(1.2);
}

.blogs .box-container .box .content{
    padding-top: 1rem;
}

.blogs .box-container .box .content .icon{
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogs .box-container .box .content .icon a{
    font-size: 1.4rem;
    color: var(--light-color);
}

.blogs .box-container .box .content .icon a:hover{
    color:var(--green);
}

.blogs .box-container .box .content .icon a i{
    padding-right: .5rem;
    color: var(--green);
}

.blogs .box-container .box .content h3{
    color:var(--black);
    font-size: 3rem;
}

.blogs .box-container .box .content p{
    color:var(--light-color);
    font-size: 1.5rem;
    line-height: 1.8;
    padding:1rem 0;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap:2rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    color:white;
    padding: 1rem 0;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    color:white;
    padding: 1rem 0;
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color:var(--green);
}

.footer .box-container .box a:hover i{
    padding-right:2rem;
}

.footer .credit{
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    color:white;
    border-top: .1rem solid rgba(0, 0, 0, .1);
}

.footer .credit span{
    color:var(--green);
}









/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        /* padding: 1rem; */
        
    }
    .header1{
        padding: 1rem;
        
    }

    section{
        padding:2rem;
    }

}

@media (max-width:768px){

    #menu-btn{
        display: initial;
    }

    .header .navbar{
        position: absolute;
        top: 97%;
        right: 7rem;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        width: 30rem;
        border: var(--border);
        background: #fff;
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        transition: none;
    }

    .header .navbar.active{
        transform: scale(1);
        opacity: 1;
        transition: .2s ease-out;
    }

    .header .navbar a{
        font-size: 2rem;
        display: block;
        margin:2.5rem;
    }


    .header1 .navbar{
        position: absolute;
        top:115%; right: 2rem;
        border-radius: .5rem;
        box-shadow: var(--box-shadow);
        width: 30rem;
        border: var(--border);
        background: #fff;
        transform: scale(0);
        opacity: 0;
        transform-origin: top right;
        transition: none;
    }

    .header1 .navbar.active{
        transform: scale(1);
        opacity: 1;
        transition: .2s ease-out;
    }

    .header1 .navbar a{
        font-size: 2rem;
        display: block;
        margin:2.5rem;
    }
}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}




/* nav  */
   
/*! CSS Used from: https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css */
*,
*:after,
*:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

nav {
    display: block;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

img {
    border-style: none;
}

a {
    color: #4183c4;
    text-decoration: none;
}

a:hover {
    color: #1e70bf;
    text-decoration: none;
}

::selection {
    background-color: #cce2ff;
    color: rgba(0, 0, 0, 0.87);
}

body ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
}

body ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

body ::-webkit-scrollbar-thumb {
    cursor: pointer;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

body ::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 135, 139, 0.8);
}

.ui.dropdown {
    cursor: pointer;
    position: relative;
    display: inline-block;
    outline: 0;
    text-align: left;
    -webkit-transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
    transition: width 0.1s ease, -webkit-box-shadow 0.1s ease;
    transition: box-shadow 0.1s ease, width 0.1s ease;
    transition: box-shadow 0.1s ease, width 0.1s ease, -webkit-box-shadow 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}

.ui.dropdown .menu {
    cursor: auto;
    position: absolute;
    display: none;
    outline: 0;
    top: 100%;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    margin: 0;
    padding: 0 0;
    background: #fff;
    font-size: 1em;
    text-shadow: none;
    text-align: left;
    -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
    border: 1px solid rgba(34, 36, 38, 0.15);
    border-radius: 0.28571429rem;
    -webkit-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
    z-index: 11;
    will-change: transform, opacity;
}

.ui.dropdown .menu > * {
    white-space: nowrap;
}

.ui.dropdown .menu > .item {
    position: relative;
    cursor: pointer;
    display: block;
    border: none;
    height: auto;
    text-align: left;
    border-top: none;
    line-height: 1em;
    color: rgba(0, 0, 0, 0.87);
    padding: 0.78571429rem 1.14285714rem !important;
    font-size: 1rem;
    text-transform: none;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-touch-callout: none;
}

.ui.dropdown .menu > .item:first-child {
    border-top-width: 0;
}

.ui.dropdown .menu > .item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.95);
    z-index: 13;
}

.ui.dropdown .menu {
    left: 0;
}

/*! CSS Used from: https://sharesamadhan.com/landing-assets/assets/css/style.css?v=2.4382 */
* {
    box-sizing: border-box;
}

li,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
}

a {
    -webkit-transition: all 250ms ease 0s;
    -moz-transition: all 250ms ease 0s;
    -ms-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.cstm_container {
    max-width: calc(1400px + 30px);
    padding-left: 15px;
    padding-right: 15px;
    margin: 0px auto;
}

.d-flex {
    display: flex !important;
}

nav .cstm_container {
    justify-content: space-between;
    align-items: center;
}

.menu_box {
    justify-content: space-around;
}

.toggle_icon,
.cross_icon {
    display: none;
}

.logo {
    display: inline-block;
    margin-top: 12px;
}

header nav {
    background: #fff;
    box-shadow: 0px 2px 15px 0px #e9e9e9;
}

.nav_menu_area {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.menu_box > li > a {
    font-weight: 400;
    font-size: 14px;
    line-height: 34px;
    color: #333568;
    position: relative;
}

.menu_box > li > a:hover {
    color: #FF7419;
}

.menu_box > li.dropdown > a::after {
    position: absolute;
    content: '\f0d7';
    font-family: 'FontAwesome';
    color: #333568;
    line-height: 1;
    right: -11px;
    top: 4px;
}

.menu_box > li + li {
    margin-left: 40px;
}

.dropdown_menu {
    width: 180px;
}

.dropdown_menu li a {
    font-size: 15px;
    line-height: 20px;
    color: #333568;
    font-weight: 400;
}

.sign_btn {
    width: 130px;
    display: inline-block;
    margin-left: 40px;
}

.sign_btn .nav_link {
    display: inline-block;
    padding: 7px 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    background: #333568;
    color: #FFFFFF;
    border-radius: 40px;
    line-height: 20px;
    border: 1px solid #333568;
}

.sign_btn .nav_link:hover {
    background: none;
    color: #333568;
}

.sign_btn.ui.dropdown .menu {
    left: unset;
    right: 0;
}

.cstm_container {
    position: relative;
    z-index: 2;
}

.menu_box > li .dropdown_menu li a:hover {
    color: #FF7419 !important;
}

@media only screen and (max-width: 1160px) {
    .menu_box {
        position: fixed;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: 400px;
        background: #fff;
        padding: 25px 15px 30px;
        right: -105%;
        top: 0;
        transition: 0.5s;
        margin-top: 0px;
        z-index: 99999;
    }

    .toggle_icon,
    .cross_icon {
        display: inline-block;
        width: 30px;
    }
}

.cstm_container {
    width: 100%;
    max-width: calc(1400px + 30px);
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/*! CSS Used from: https://sharesamadhan.com/landing-assets/assets/css/responsive.css?v=2.342 */
@media (max-width: 1366px) {
    .menu_box > li + li {
        margin-left: 25px;
    }
}

@media (max-width: 1199px) {
    .menu_box > li + li {
        margin-left: 25px;
    }

    .sign_btn {
        width: 90px;
        margin-left: 30px;
    }
}

@media (max-width: 1100px) {
    .sign_btn {
        width: 75px;
        margin-left: 20px;
    }

    .menu_box > li + li {
        margin-left: 20px;
    }
}

@media (max-width: 1024px) {
    .logo {
        height: unset;
        margin: 0;
    }

    .logo img {
        width: 100%;
        height: 100%;
    }

    header nav {
        padding: 6px 0;
    }

    .sign_btn {
        width: 77px;
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .sign_btn {
        margin-left: 0;
        margin-right: 20px;
    }

    .nav_menu_area {
        display: flex;
        align-items: center;
    }

    .toggle_icon,
    .cross_icon {
        display: inline-block;
        width: 30px;
    }

    .menu_box {
        position: fixed;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: 400px;
        background: #fff;
        padding: 25px 15px 30px;
        right: -105%;
        top: 0;
        transition: 0.5s;
        margin-top: 0px;
        z-index: 99999;
    }

    .menu_box li {
        display: block;
    }

    .menu_box li + li {
        margin-left: 0;
        margin-top: 8px;
    }

    .menu_box li a {
        display: inline-block;
    }

    .menu_box > li.dropdown > a::after {
        top: 15px;
    }

    .sign_btn .nav_link {
        padding: 6px 11px;
        font-size: 13px;
        line-height: 18px;
    }

    .nav_menu_area .sign_btn {
        width: unset !important;
    }

    .sign_btn .nav_link {
        width: unset !important;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 214px;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 185px;
    }
}

/*! CSS Used from: https://sharesamadhan.com/landing-assets/build/css/demo.css */
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/*! CSS Used from: https://sharesamadhan.com/landing-assets/crop_img_assets/crop/bootstrap.min.css */
nav {
    display: block;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

img {
    border: 0;
}

@media print {
    *:after,
    *:before {
        color: #000 !important;
        text-shadow: none !important;
        background: 0 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* nav end  */