
h6.modal-head{
font-size:16px !important;
font-weight:normal;
}

.grid {
	max-width: 69em;
	list-style: none;
	margin:0px auto;
	padding: 0;
}

.grid li {
	display: block;
	float: left;
	padding: 7px;
	width:25%;
	opacity: 0;
}

h2.md {
    font-size:21px;
    color:#3C4858;
    font-weight: normal;
    margin: 0px;
    font-family: "Roboto", sans-serif !important;
    padding: 7px;
}

.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
	opacity: 1;
}

.grid li a,
.grid li img {
	outline: none;
	border: none;
	display: block;
	max-width: 100%;
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
	-webkit-animation: fadeIn 0.65s ease forwards;
	animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

@keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

/* Effect 2: Move Up */
.grid.effect-2 li.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); opacity: 1; }
}

@keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

/* Effect 3: Scale up */
.grid.effect-3 li.animate {
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: scaleUp 0.65s ease-in-out forwards;
	animation: scaleUp 0.65s ease-in-out forwards;
}

@-webkit-keyframes scaleUp {
	0% { }
	100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes scaleUp {
	0% { }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

/* Effect 4: fall perspective */
.grid.effect-4 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-4 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	-webkit-animation: fallPerspective .8s ease-in-out forwards;
	animation: fallPerspective .8s ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
	0% { }
	100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

@keyframes fallPerspective {
	0% { }
	100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

/* Effect 5: fly (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-5 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-5 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 50% -300px;
	transform-origin: 50% 50% -300px;
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-animation: fly .8s ease-in-out forwards;
	animation: fly .8s ease-in-out forwards;
}

@-webkit-keyframes fly {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@keyframes fly {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}

/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-6 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-6 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: rotateX(-80deg);
	transform: rotateX(-80deg);
	-webkit-animation: flip .8s ease-in-out forwards;
	animation: flip .8s ease-in-out forwards;
}

@-webkit-keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}

/* Effect 7: helix (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-7 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-7 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-animation: helix .8s ease-in-out forwards;
	animation: helix .8s ease-in-out forwards;
}

@-webkit-keyframes helix {
	0% { }
	100% { -webkit-transform: rotateY(0deg); opacity: 1; }
}

@keyframes helix {
	0% { }
	100% { -webkit-transform: rotateY(0deg); transform: rotateY(0deg); opacity: 1; }
}

/* Effect 8:  */
.grid.effect-8 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-8 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-animation: popUp .8s ease-in forwards;
	animation: popUp .8s ease-in forwards;
}

@-webkit-keyframes popUp {
	0% { }
	70% { -webkit-transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes popUp {
	0% { }
	70% { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@media screen and (max-width: 900px) {
	.grid li {
		width: 50%;
	}
}

@media screen and (max-width: 400px) {
	.grid li {
		width: 100%;
	}
}

/*footer starts*/

  .mb0 {
            margin-bottom: 0px;
        }

        .section-white-gradient {
            background-color: #acdbc9 !important;
        }

        .category {
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 2px !important;
            background: #a9c8ba !important;
            min-height: 144px;
            box-shadow: none !important;
            border: 2px solid #eee;
            padding:0px;
        }

       /* .demopadding {
            margin: 14px 47px 45px;
            width: 140px;
            text-align: center;
        }*/

        .icon {
            position: relative;
            text-align: center;
            width: 0px;
            height: 0px;
            padding: 15px;
            border-top-right-radius: 20px;
            border-top-left-radius: 20px;
            border-bottom-right-radius: 20px;
            border-bottom-left-radius: 20px;
            -moz-border-radius: 20px 20px 20px 20px;
            -webkit-border-radius: 20px 20px 20px 20px;
            -khtml-border-radius: 20px 20px 20px 20px;
            color: #FFFFFF;
        }

        .nav-pills > li > a {
            min-width: auto !important;
            letter-spacing: 0.2px;
        }

        .icon i {
            font-size: 15px;
            position: absolute;
            left: 9px;
            top: 8px;
        }

        .icon.social {
            float: left;
            margin: 0 5px 0 0;
            cursor: pointer;
            background: #6d6e71;
            color: #fff;
            transition: 0.5s;
            -moz-transition: 0.5s;
            -webkit-transition: 0.5s;
            -o-transition: 0.5s;
        }

            .icon.social:hover {
                background: #fff;
                color: #6d6e71;
                transition: 0.5s;
                -moz-transition: 0.5s;
                -webkit-transition: 0.5s;
                -o-transition: 0.5s;
                -webkit-filter: drop-shadow(0 1px 10px rgba(0,0,0,.8));
                -moz-filter: drop-shadow(0 1px 10px rgba(0,0,0,.8));
                -ms-filter: drop-shadow(0 1px 10px rgba(0,0,0,.8));
                -o-filter: drop-shadow(0 1px 10px rgba(0,0,0,.8));
                filter: drop-shadow(0 1px 10px rgba(0,0,0,.8));
            }

            .icon.social.fb i {
                left: 10px;
                top: 8px;
            }

            .icon.social.tw i {
                left: 8px;
            }

            .icon.social.in i {
                left: 9px;
            }


        .mtop {
            margin-top: 45px !important;
        }


        h6, .h6 {
            font-size: 14px !important;
            font-weight: 400;
            margin-top: 0px;
            color: #f48b92 !important;
        }	


        .nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
            background-color: transparent;
            color: #f48b92;
            box-shadow: none;
            letter-spacing: 0.2px;
        }

        img.card:hover {
            display: inline-block;
            position: relative;
            width: 100%;
            border-radius: 3px;
            color: rgba(0,0,0, 0.87);
            background: #fff;
            box-shadow: none;
        }

        .font-new > li i {
            font-size: 22px !important;
        }

        .font-new > li > a {
            font-size: 14px;
            color: #fff;
            padding: 0px 30px !important;
        }


        .pt {
            padding-top: 20px;
        }

        .pb {
            padding-bottom: 20px;
        }


        .section-white-gradient {
            background-color: #eee;
            padding: 5px;
            margin-bottom: 20px;
        }


        .modal-content .modal-header {
            padding-top: 7px;
            padding-bottom:7px;
            color: #fff;
        }

        .bits {
            margin-bottom: 5px;
        }



        element {
        }

        .contact-page .contact-content {
            padding-bottom: 40px;
            padding-top: 40px;
        }

        .info {
            max-width: 360px;
            margin: 0 auto;
            padding: 70px 0 30px;
            padding-bottom: 10px;
        }


        .breadcrumb > li + li::before {
            content: "/\00a0";
            padding: 0 5px;
            color: #000;
        }

        .breadcrumb {
            padding: 7px 15px !important;
            margin-bottom: 0px;
            text-align: right;
        }

        .btn.btn-new {
            background-color: #fba0a6;
            color: #FFFFFF;
        }


        .form-control, .form-group .form-control {
            background-image: linear-gradient(#fba0a6, #fba0a6), linear-gradient(#D2D2D2, #D2D2D2) !important;
        }

        .form-group.is-focused label,
        .form-group.is-focused label.control-label {
            color: #fba0a6;
            font-weight: 600;
        }


/*footer ends*/

.border{
    display: block;
    cursor: pointer;
    min-height: 3rem;
    line-height: 3rem;
    padding: 0 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
}

.panel.panel-primary > .panel-heading {
    background-color:#acdbc9;
	padding:15px;
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color:transparent;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color:#3C4858;
	font-weight:400;
}

ul.link1 li{
 list-style-type: disc;
    text-align: left;
    font-size: 14px !important;
}


h4.nurse{
	font-size:18px;
	margin:0px;
	color:#f48b92;
	font-weight:600;
}


.form-group h5{
font-size:18px;
}

h2.have{
font-size:31px;
	color:#f48b92;
	font-weight:normal;
	margin:10px;
	font-family:"Roboto", sans-serif !important;
}

.content{
font-size:14px;
}

