@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');


html {
    scroll-behavior: smooth;
  }

*,
*::after,
*::before{
    box-sizing: border-box;
    padding:0;
    margin:0;

}
html{
    font-size:62.5%;
}
body{
    font-family:'Poppins',sans-serif;
}
.container{
    max-width:1200px;
    width: 90%;
    margin:auto;

}

.main-title{
    font-weight: 600;
    font-size: 3.5rem;
}


.btn {
    display: inline-block;
    padding: 1em 2.5em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    margin-top: 1em ;
    font-weight: 500;

}

.btn-primary{
    /* color: #fff; */
    color:#000;
    background: #319bf7;
}

.btn-sec{
    padding: 30px;
    font-size: large;
    color: #eee;
}


.btn:hover{
    background-color: rgb(65, 188, 236);
}




/*#######      navbarstyling*/
/* for desktop mode */
.navbar input[type='checkbox'],
.navbar .hamburger-lines{
    display:none;
}
.navbar{
    box-shadow: 0px 5px 10px 0px #aaa;
    position:fixed;
    width: 100%;
    background: #fff;
    color:#000;
    opacity:0.85;
z-index: 999;
}
.navbar-container{
    display:flex;
    justify-content: space-between;
    height: 64px;
    align-items:center;
}
.menu-items{
   order:2; 
   display:flex;
}
.menu-items li{
    list-style:none;
    margin-left:1.5rem;
    font-size:1.8rem;
}
.logo{
    order:1;
    font-size: 3rem;

}
.navbar a{
    color:#444;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}
.navbar a:hover{
    color: #319bf7;
}
@media(max-width: 768px){
    .navbar{
        opacity:0.95;
    }
    .navbar-container input[type='checkbox'],
    .navbar-container .hamburger-lines{
        display:block;
    }
    .navbar-container{
        display:block;
        position:relative;
        height: 64px;
    }
    .navbar-container input[type='checkbox']{
        position:absolute;
        display:block;
        height:32px;
        width:40px;
        top:20px;
        left:20px;
        z-index:5;
        opacity:0;

        
    }
    .navbar-container .hamburger-lines{
        display:block;
        height:32px;
        width: 40px;
        position:absolute;
        top:20px;
        left:20px;
        z-index:2;
        display:flex;
        flex-direction:column;
        justify-content: space-between;
    }
    .navbar-container .hamburger-lines .line{
        display:block;
        height: 4px;
        width: 100%;
        border-radius:10px;
        background: #333333;
    }
    .navbar-container .hamburger-lines .line1{
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }
    .navbar-container .hamburger-lines .line2{
        
        transition: transform 0.4s ease-in-out;
    }
    .navbar-container .hamburger-lines .line3{
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }
    .navbar .menu-items{
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 300px;
        transform: translateX(-150%);
        display:flex;
        flex-direction: column;
        margin-left:-40px;
        padding-left: 50px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px 0px #aaa;
    }
    .navbar .menu-items li{
        margin-bottom: 3rem;
        font-size:2rem;
        font-weight: 500;

    }
    .logo{
        position: absolute;
        top: 10px;
        right:15px;
        font-size:3rem;
    }
    .navbar-container input[type="checkbox"]:checked ~.menu-items{
        transform: translateX(0);
    }
    .navbar-container input[type="checkbox"]:checked ~.hamburger-lines .line1{
       transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~.hamburger-lines .line2{
       transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~.hamburger-lines .line3{
       transform: rotate(-45deg);
    }
    .navbar .menu-items{
        padding-top: 100px;
        padding-right: 10px;
    }

    .main-title{
        display: none;
    }
    .welcome{
        text-align: center;
        justify-content: center;
        margin: 20px;
    }
}




/* ############# showcase styling ############## */

.showcase-area{
    height: 90vh;
    background:linear-gradient(rgba(240,240,240,0.144),rgba(255,255,255,0.3)) ,url("./Screenshot\ 2022-02-26\ 020230.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2.2rem;
}

.main-title{
    text-transform: uppercase;
}

.welcome{
    font-weight: 500;
    font-size: x-large;
}

.features-services{
    margin-left: 20px;
    margin-top: 30px;

}


.title a{
    font-size: x-large;
    color:  #000;
    text-decoration: none;
    font-weight: 400;
}

.title a:hover{
    color: aliceblue ;
    text-decoration: none;
}

/* .icon i:hover{
    color: aliceblue ;
} */

.description{
    font-size: 1.9rem;
    color: #444444;

}

.features-services .icon-box{
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68,88,144,0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

.features-services .icon-box::before{
    content:"";
    position: absolute;
    background: #d9f1f2;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.3s;
    z-index: -1;

}


.features-services .icon-box:hover::before{
    background: #319bf7;
    top: 0;
    border-radius: 0px;

}

.features-services .icon{
    margin-bottom: 40px;

}

.features-services .icon i{
    font-size: 48px;
    line-height: 1;
    color:rgb(65, 188, 236);
    transition: all 0.3s ease-in-out;
}

/* .container1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
     /* width: 25%;  */
     /* margin-bottom: 20px;
     padding: 40px;
} */ 

.element{
    margin: 11px auto;
    /* width: 50%; */
    height: auto;


}

.holder{
    /* background: rgb(233, 231, 231); */
    margin-top: 700px;
    width: 100%;
    justify-content: center;
    text-align: center;

}

.button{
    width: 200px;
    height: 50px;
    border: 0px solid;
    background-color: #319bf7;
    color: #fff;
    font-size: 24px;
    border-radius: 50px;
}

.button:hover{
    background-color: rgb(65, 188, 236);
}


/* 
############# testi ############## */


.active .hd{
    font-size: x-large;
}


.testim .heading{
    color:rgb(65, 188, 236) ;
    text-align: center;
    margin-bottom: 30px;
    font-size:xx-large;
   font-family:'Roboto', sans-serif;
}


.testim{
    /* width: 100%; */
    position: absolute;
    display: flex;
    justify-content: space-between;
    background: #084880;
    padding:50px;
     margin-top: 350px;
    margin-bottom: 500px; 
    /* margin-left:180px; */
    /* top: 50%; */
    transform: translateY(-50%);
}
.testim .wrap{
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    margin: auto;
}
.testim .arrow{
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}
.testim .arrow:before{
    cursor: pointer;
}
.testim .arrow.left{
    left: 10px;
}
.testim .arrow.right{
    right: 10px;
}
.testim .arrow:hover{
    color:#319bf7;
}
.testim .dots{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}
.testim .dots .dot{
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}
.testim .dots .dot.active,
.testim .dots .dot:hover{
background:#319bf7;
border-color:#319bf7 ;
}

.testim .dots .dot.active{
    animation: testim-scale .5s ease-in-out forwards;
}
.testim .cont{
    position: relative;
    overflow: hidden;
}
.testim .cont > div{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}
.testim .cont > div.inactive{
    opacity: 1;
}
.testim .cont > div.active{
    
    position: relative;
    opacity: 1;
    
}
.testim .cont div .img img{
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}
.testim .cont div h2{
    color:#319bf7;
    font-size: 2em;
    margin: 15px 0;
}
.testim .cont div p{
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img{
    animation: testim-show .5s ease-in-out forwards;
}
.testim .cont div.active h2{
    animation: testim-content-in .4s ease-in-out forwards;
}
.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}
.testim .cont div.inactive .img img{
    animation: testim-hide .5s ease-in-out forwards;
}
.testim .cont div.inactive h2{
    animation: testim-content-out .4s ease-in-out forwards;
}
.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px #319bf7;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #319bf7;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}
@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}


.contact-img{
    transform: translateX(150%);
    animation: contact-img-animation 0.5s ease-in-out forwards;
}


@keyframes contact-img-animation{
    100%{
        transform: translate(0);
    }
}

.container2 {
    margin-top: 50px;
}
.container2 h4{
    font-size: 2em;

}

 .container2 .pt-3{
     margin-bottom: 70px;
 }
 .container2 .pt-5{
    margin-bottom: 70px;
}


.container2 i{
   color: #319bf7;}


/*################ FOOTER STYLING ########################*/
.footer{
    margin-top: 50px;
    /* margin-bottom: 50px; */
    background: #d2e2eb;
    color: #131010;
    padding: 2rem;
    text-align: center;
    font-size: larger;
}
.social-media-links i{
    margin: 2rem;
}

.container1 img{
   opacity: 1;
}

.container1 img:hover{
    opacity: 0.6;
 }





.info p{
    font-size: 1.5rem;
    padding: 3px;
}

.info .address{
    margin-bottom: 15px;
}

.info .email{
    margin-bottom: 15px;
}

 .contacts{
    background-image: url("./pngtree-chinese-medical-day-simple-blue-doctors-picture-image_925616.jpg");
} 
 .form-row{
    justify-content: center;
    margin-right: 500px;

}

.form-group{
    margin: 20px;
    font-size: larger;
} 




#contacts{
    padding: 50px 0px;
    background: #f5f5f7;
}

.contacts-wrapper{
    display: flex;
} 

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}
@media all and (max-width: 500px) {
    .testim .arrow{
        font-size: 1.5rem;
    }
    .testim .cont div p{
        line-height: 25px;
    }
}

/* kaushik_add_ */
@media (min-width:1200px){
    #testim{
        margin-left:160px;
    }
}


#patanhi{
    width: 90%;
    height: 100%;
}
