﻿

*****=====***** TABLE OF CONTENT *****=====*****

01. IMPORTED STYLE CSS
02. GENERAL CSS
        => Form CSS
        => Placeholder Color CSS
        => BUtton CSS
        => Background Over Layer CSS
        => Default Title CSS
        => Preloader CSS
        => Pagination CSS
03. Header CSS Start
        => Social Group CSS
        => Header Top CSS
        => Navbar CSS
        => NavBar Fixed CSS
        => Header Two CSS
04. Slider CSS
05. About CSS
06. Video CSS
07. Services CSS
08. Appointment CSS 
09. Counter CSS
10. Doctors CSS
        => Doctors Details
11. Call Us CSS
12. Portfolio CSS
13. Testimonial CSS
14. Blog CSS
        => Blog Sidebar
15. Timetable CSS
16. Defult Page
17. Footer CSS
18. Treatment CSS
        => Treatment Details
19. FAQ CSS
20. Error CSS
21. Departments CSS
22. Contact CSS
23. Footer CSS
24. Copyright CSS


*/

/*****=====*****=====*****=====*****=====
    01. IMPORTED STYLE CSS
=====*****=====*****=====*****=====*****/

/* GOOGLE FONTs */
@import url('https://fonts.googleapis.com/css?family=Oxygen:400,700');
@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,400i,500,500i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script:400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600');

/* OTHER IMPORTED CSS */



/*****=====*****=====*****=====*****=====
    02. General CSS 
=====*****=====*****=====*****=====*****/

body {
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #4c4c4c;
    position: relative;
}
/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #111111;
    line-height: 1.3;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    text-transform: uppercase;
}
p {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.carousel-control .fa-chevron-left{
    top: 50%;
    position: absolute;
}
.carousel-control .fa-chevron-right{
    top: 50%;
    position: absolute;
}
/* Form CSS */

.form-control {
    resize: none;
    height: 40px;
    margin-bottom: 30px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}
.form-control:focus {
    border-color: #a2a2a2;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* Placeholder Color CSS */
::-webkit-input-placeholder {
    color: #999999 !important;
}
::-moz-placeholder {
    color: #999999 !important;
}
:-ms-input-placeholder {
    color: #999999 !important;
}
:-moz-placeholder {
    color: #999999 !important;
}

/* BUtton CSS */
.my-btn {
    background: #0041ff;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 12px 25px;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.my-btn:hover {
    color: #ffffff;
    background: #ff0000;
    box-shadow: inset 0 0 0 5px #1dbeb5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Background Over Layer CSS */
.overlay-black {
    position: relative;
}
.overlay-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.overlay-white {
    position: relative;
}
.overlay-white:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.9);
}

/* Default Title CSS */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}
.section-title .title-style {
    position: relative;
    display: inline-block;
}
.section-title .title-style h2 {
    font-size: 36px;
    margin-bottom: 0;
}
.title-icon {
    width: 80px;
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
}
.title-icon:before {
    content: "";
    width: 100px;
    height: 2px;
    background: #1ED2C8;
    position: absolute;
    top: 12px;
    left: -80px;
}
.title-icon:after {
    content: "";
    width: 100px;
    height: 2px;
    background: #1ED2C8;
    position: absolute;
    top: 12px;
    right: -80px;
}
.title-icon i {
    color: #1ED2C8;
    font-size: 30px;
}
.section-title p {
    font-weight: bold;
    margin-top: 20px;
}



/* Preloader CSS */
/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999;
}
#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/preloder.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}

/* Scrollup CSS */
.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    display: none;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background-color: #1DD2C8;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}
.scrollup:hover {
    color: #111111;
}

/* Pagination CSS Start */
.page-pagination {
    text-align: center;
}
.page-pagination .pagination {
    margin: 30px 0 30px;
}
.page-pagination .pagination>li>a, 
.page-pagination .pagination>li>span {
    background: transparent;
    color: #1DD2C8;
}
.page-pagination .pagination>li>a:hover {
    color: #ffffff;
    background: #1DD2C8;
}
.page-pagination-left {
    text-align: left;
}
.page-pagination-right {
    text-align: right;
}

/*--------------------------------
    03. Header CSS Start
----------------------------------*/
.main-herader {
    position: relative;
    background: #ffffff;
}

/* Header Top CSS Start */
.header-topbar {
   /* background: #1DD2C8;*/
}
.header-topbar-col {
    /*padding: 10px 0;*/
}
.header-topbar-col p {
    color: #6d6b1f;
    margin-top: 4px;
    font-size: 17px;
}
.header-topbar-col h1 {
    color: #4e60e2;
    margin-top: 4px;
	font-family: 'Open Sans', sans-serif;
}
.header-topbar-col p i {
    margin-right: 5px;
    color: #ffffff;
}
.header-topbar-col p a {
    color: #ffffff;
}
.social-link-group {
   /* text-align: right;*/
}
.social-link-group a {
    /*margin-left: 12px;*/
}
.social-link-group a i {
    /*color: #ffffff;*/
	color:#000;
}
.appoinment-link {
	margin-top:15px;
    background: #0041ff;
    padding: 10px 20px;
    text-transform: uppercase;
    line-height: 30px;
    color: #fff;
	text-align:center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.appoinment-link:hover {
    background:#ff0000;
	color:#fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* Navbar CSS start */
.header-navbar {
    color: #ffffff;
	background:#0041ff;
}
.header-navbar .navbar-brand {
    padding: 0;
	margin:0;
    /*margin-top: 5px;*/
}
.header-navbar .navbar-brand img {
    width: 180px;
    height: auto;
}
.header-navbar .navbar {
    margin-bottom: 0;
}
.header-navbar .navbar-nav {
    /*margin-top: 8px;*/
	
}
.header-navbar .navbar-default {
    background: transparent;
    border: none;
    /*padding: 10px 0 15px;*/
}
.header-navbar .navbar-default .navbar-nav>.active>a,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    color: #1DD2C8;
    background-color: transparent;
}
.header-navbar .navbar-default .navbar-nav>li>a {
    color: #fff;
    text-transform: uppercase;
    padding-left: 0;
    padding-right: 0;
    margin-left: 30px;
}
.header-navbar .navbar-default .navbar-nav>li>a:focus,
.header-navbar .navbar-default .navbar-nav>li>a:hover {
    background: transparent;
}
.header-navbar .navbar-right .dropdown-menu {
    right: auto;
}
.header-navbar .navbar-nav .dropdown-menu {
    padding: 0;
    margin-left: 30px;
}
.header-navbar .navbar-nav .dropdown-menu>li>a {
    padding: 15px 10px;
    color: #333333;
    text-transform: uppercase;
    border-left: 5px solid transparent;
    border-top: 1px solid #eeeeee;
}
.header-navbar .navbar-nav .dropdown-menu>li>a:hover {
    border-left-color: #1DD2C8;
}
.header-navbar .navbar-default .navbar-nav>.open>a,
.header-navbar .navbar-default .navbar-nav>.open>a:focus,
.header-navbar .navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
}

/* NavBar Fixed CSS */
.affix {
    border-bottom: 1px solid #000;
    background: #000;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 8px 12px -10px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 8px 12px -10px rgba(0,0,0,0.2);
    box-shadow: 0px 8px 12px -10px rgba(0,0,0,0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* Header Two CSS Start */
.main-herader-two {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background: transparent;
}
.main-herader-two .header-topbar {
    background: rgba(29, 210, 200, 0.3);
}
.main-herader-two .appoinment-link {
    padding: 16px 20px 16px;
}
.main-herader-two .header-navbar .navbar-default .navbar-nav>li>a {
    color: #dedede;
}
.main-herader-two .navbar .logo-1 {
    margin-top: 5px;
    display: none;
}
.main-herader-two .navbar .logo-2 {
    margin-top: 5px;
    display: block;
}
.main-herader-two .header-navbar.affix .navbar .logo-1 {
    display: block;
}
.main-herader-two .header-navbar.affix .navbar .logo-2 {
    display: none;
}
.main-herader-two .header-navbar.affix .navbar-default .navbar-nav>li>a{
    color: #333333;
}


/*--------------------------------
    04. Slider CSS Start
----------------------------------*/
.main-slider-area {
}

/* Fade Effect start */
.carousel-fade .carousel-inner .item {
    height: 80vh;
    opacity: 0.6;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
    opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
    z-index: 9;
}
/* Full screen slider start */
.carousel-caption {
    position: absolute;
    right: 0;
    left: 0;
    top: 48%;
    text-align: center;
    -moz-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    -o-transform: translateY(-25%);
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
}
.slide-1 {
    background: url(../images/slider/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-2 {
    background: url(../images/slider/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-3 {
    background: url(../images/slider/3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-newone {
    background: url(../images/slider/4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-1:before, .slide-2:before, .slide-3:before, .slide-newone:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.7);
}
.carousel-indicators {
    bottom: 0;
}
.carousel-control.right,
.carousel-control.left {
    background-image: none;
}
.carousel .item {
    height: 75vh;
    width:100%;  
}
.carousel-caption p {
    letter-spacing: 10px;
    font-size: 16px;
    text-transform: capitalize;
}
.carousel-caption h3 {
    color: #ffffff;
    font-size: 45px;
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.carousel-caption h3 span {
    color: #1DD2C8;
}
.carousel-caption .btn {
    font-size: 14px;
    padding: 10px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.carousel-caption .btn:hover {
    background: #1DD2C8;
    border-color: #1DD2C8;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Animation delays */
.carousel-caption h3:nth-child(2) {
    animation-delay: 1s;
}
.carousel-caption button {
    animation-delay: 1.5s;
}
.p {
  padding-top: 125px;
  text-align: center;
}

.p a {
  text-decoration: underline;
}

/* Slider Two CSS Start */
.main-slider-two .carousel-fade .carousel-inner .item {
    height: 100vh;
}
.main-slider-two .carousel-caption {
    top: 50%;
}


/*--------------------------------
    05. About CSS Start
----------------------------------*/
.about-section {
    padding: 50px 0 0;
}
.about-col {
    margin-bottom: 30px;
}
.about-col h2 {
    font-size: 30px;
}
.about-col h5 {
    font-size: 16px;
    color: #1DD2C8;
    margin-bottom: 20px;
}
.para-space {
    margin-bottom: 10px;
}


/*--------------------------------
    06. Video CSS Start
----------------------------------*/
.video-section {
    padding: 100px 0;
    background: url(../images/bg/1.jpg);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.video-col {
    text-align: center;
}
.video-col h2 {
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.video-col i {
    color: #1DD2C8;
    font-size: 100px;
}



/*--------------------------------
    07. Services CSS Start
----------------------------------*/
.service-section {
    padding: 50px 0 0;
}
.service-item {
    margin-bottom: 50px;
    position: relative;
    padding-left: 70px;
}
.service-item i {
    font-size: 40px;
    position: absolute;
    left: 0;
    top: 0;
    color: #0041ff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-bottom: 2px solid transparent;
    height: 80px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.service-item:hover i {
    opacity: 1;
    color: #ff0000;
    height: 60px;
    border-color: #111111;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/* Service More CSS Strat*/
.service-more {
    padding: 100px 0 0;
    position: relative;
}
.service-more-box {
    margin-bottom: 0px;
    position: relative;
    background: #1E2332;
    padding: 30px 30px 30px;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.service-more-box:before {
    content: "";
    width: 100%;
    height: 0;
    border-left: 800px solid transparent;
    border-top: 30px solid #ffffff;
    position: absolute;
    left: 0;
    top: 0;
}
.service-more-box:after {
    content: "";
    width: 100%;
    height: 0;
    border-right: 800px solid transparent;
    border-bottom: 30px solid #ffffff;
    position: absolute;
    right: 0;
    bottom: 0;
}
.service-more-box:hover {
    background: #1ED2C8;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.service-more-box i {
    font-size: 40px;
    position: absolute;
    color: black;
    right: 10px;
    top: 43px;
    z-index: 1;
    opacity: 0.3;
}
.service-more-box h4 {
    color: #1ED2C8;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.service-more-box:hover h4 {
    color: #111111;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.service-more-box p {
    color: #ffffff;
}




/*--------------------------------
    08. Appointment CSS Start
----------------------------------*/
.appointment-section {
    /*padding: 50px 0 0;*/
    background: url(../images/bg/pttrns.png);
    background-repeat: repeat;
    overflow: hidden;
}
.appointment-col {
    margin-bottom: 30px;
}
.appointment-img {
    margin-bottom: 0;
}
.appointment-col .form-control {
    border: 1px solid rgba(204, 204, 204, 0.7);
    background: rgba(255, 255, 255, 0.5);
}

/*--------------------------------
    09. Counter CSS Start
----------------------------------*/
.counter-section {
    padding: 100px 0 50px;
    background: #f5f5f5;
    background-image: url(../images/bg/2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} 
.counter-col {
    margin-bottom: 20px;
    text-align: center;
}
.counter-col .counter {
    width: 150px;
    margin: auto;
    margin-bottom: 50px;
    background: #1ED2C8;
    padding: 5px 0;
    position: relative;
}
.counter-col .counter:before {
    content: "";
    width: 100%;
    height: 0;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-bottom: 30px solid #1ED1C7;
    position: absolute;
    top: -30px;
    left: 0;
}
.counter-col .counter:after {
    content: "";
    width: 100%;
    height: 0;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 30px solid #1ED1C7;
    position: absolute;
    bottom: -30px;
    left: 0;
}
.counter-col .counter i {
    font-size: 40px;
    color: #1E2332;
    padding-bottom: 10px;
    display: block;
}
.counter-col .counter span {
    color: #ffffff;
    font-size: 30px; 
    line-height: 30px; 
}
.counter-col p {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*--------------------------------
    10. Doctors CSS Start
----------------------------------*/
.doctors-section {
    padding: 100px 0 70px;
}
.doctors-col {
    margin-bottom: 30px;
    text-align: center;
}
.doctors-col .doctors-common-info {
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctors-col:hover .doctors-common-info {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctors-col .doctors-common-info i {
    width: 45px;
    height: 45px;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 24px;
    line-height: 45px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctors-col .doctors-common-info i:hover {
    background: #1DD2C8;
    border-color: #1DD2C8;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctors-col .doctors-common-info .info h5 {
    color: #1ED2C8;
    margin-bottom: 0;
    margin-top: 20px;
}
.doctors-col h4 {
    margin-top: 20px;
}
.doctor-img {
    position: relative;
    border: 1px solid #dddddd;
}
.doctor-img:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctors-col:hover .doctor-img:before {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctor-img h3 {
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    margin-bottom: 0;
    padding: 10px 20px;
    background: #1DD2C8;
    display: inline-block;
}
.doctor-img h3:after {
    content: "";
    position: absolute;
    right: -29px;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 30px solid #1DD2C8;
    border-top: 40px solid transparent;
}
.doctor-img h3 a {
    color: #ffffff;
}
.doctor-img a span {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 20px;
    color: #ffffff;
    background: #1DD2C8;
    padding: 10px 20px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.doctor-img a span:hover {
    color: #111111;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

/* Doctors Details Css */
.doctors-details-section {
    padding: 100px 0 50px;
    background: #f5f5f5;
}
.doctors-details-img {
    margin-bottom: 50px;
    border: 1px solid #dddddd;
}
.doctors-details-col {
    margin-bottom: 50px;
}
.doctors-details-col span {
    font-style: italic;
    color: #1ED2C8;
    font-weight: bold;
    margin-right: 10px;
}
.doctors-details-col i {
    color: #F8C12C;
}
.doctors-details-col p {
    margin-top: 20px;
}
.contact-info-box {
    margin-top: 30px;
    padding: 30px 20px;
    border: 1px solid #dddddd;
    text-align: center;
}
.contact-info-box p {
    margin-top: 0;
}



/*--------------------------------
    11. Call Us CSS Start
----------------------------------*/
.call-section {
    padding: 100px 0;
    background: url(../images/bg/3.jpg);
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.call-col h2 {
    color: #ffffff;
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 10px;
}
.call-col h2 span {
    color: #1ED2C8;
}
.call-col i {
    font-size: 50px;
    color: #1ED2C8;
}
.call-col h4 {
    margin-top: 20px;
    color: #ffffff;
    letter-spacing: 5px;
    font-size: 20px;
}


/*--------------------------------
    12. Portfolio CSS Start
----------------------------------*/
.portfolio-section {
    padding: 50px 0 0 0;
    overflow: hidden;
}
.padd0 {
    padding: 0;
}

/* Image Hover */
.img-hover-item {
    position: relative;
    overflow: hidden;
}
.hover-item-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.img-hover-item:hover .hover-item-info {
    opacity: 1;
    top: 50%;
    margin-top: -50px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.img-hover-item img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

}
.img-hover-item:hover img {
    opacity: 0.3;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.hover-item-info h3 {
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
}
.hover-item-info i {
    font-size: 24px;
    color: #1ED2C8;
	margin-top:40px;
}




/*--------------------------------
    13. Testimonial CSS Start
----------------------------------*/
.testimonial-section {
    padding: 100px 0;
    background: url(../images/bg/2.jpg);
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
}
.testimonial-section .section-title h2 {
    color: #ffffff;
}
.testimonial-section .section-title .title-icon {
    background: transparent;
}
.testimonial-section .section-title p {
    color: #ffffff;
}
.test-item {
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0.6);
    border-right: none;
    border-left: none;
    text-align: center;
}
.test-item img {
    width: 80px !important;
    height: 80px !important;
    margin: auto;
    -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
     border-radius: 50%; 
}
.test-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
    margin-top: 20px;
}
.test-item span {
    font-size: 12px;
    color: #1DD2C8;
}
.test-item p {
    color: #ffffff;
    margin-top: 20px;
}
.testimonial-col .owl-theme .owl-nav {
    margin-top: 30px;
}
.testimonial-col .owl-theme .owl-dots .owl-dot span {
    margin-bottom: 0;
    margin-top: 0;
}
.testimonial-col .owl-theme .owl-dots .owl-dot.active span, 
.testimonial-col .owl-theme .owl-dots .owl-dot:hover span {
    background: #1DD2C8;
}


/*--------------------------------
    14. Blog CSS Start
----------------------------------*/
.blog-section {
    padding: 100px 0 70px;
}
.blog-col {
    margin-bottom: 30px;
    position: relative;
}
.blog-img {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}
.blog-img img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.blog-col:hover .blog-img img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2); 
    transform: scale(1.2); 
}
.overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.blog-col:hover .overlay:before {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.post-date {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    padding: 10px 20px;
    background: #1DD2C8;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.post-date:after {
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 40px solid #1DD2C8;
    border-top: 43px solid transparent;
}
.post-date h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 0;
}
.blog-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.blog-col h4 a {
    color: #111111;
}
.blog-col h4 a:hover {
    color: #1DD2C8;
}
.info-bar {
    margin-top: 20px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
    padding: 10px 15px 10px 0;
}
.info-bar ul li {
    float: left;
    margin-right: 20px;
}
.info-bar ul li i {
    margin-right: 5px;
    color: #1DD2C8;
}
.info-bar ul li a {
    color: #333333;
}
.blog-col .embed-responsive {
    margin-bottom: 20px;
}

/* Blog Sidebar */
.blog-sidebar-col {

}
.sidebar-search-box {
    margin-bottom: 50px;
}
.sidebar-search-box .input-group .form-control {
    height: 45px;
    border-color: #1DD2C8;
}
.sidebar-search-box .input-group-btn .btn {
    height: 45px;
    width: 60px;
    background: #1DD2C8;
}
.sidebar-search-box .input-group-btn .btn i {
    font-size: 22px;
    color: #ffffff;
}
.categories {
    margin-bottom: 50px;
}
.sidebar-title h3 {
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 5px;
    margin-bottom: 30px;
}
.categories ul li {
    margin-bottom: 10px;
}
.categories ul li a {
    color: #111111;
    text-transform: capitalize;
}
.categories ul li a:hover {
    color: #1DD2C8;
}
.sidebar-post {
    margin-bottom: 50px;
}
.sidebar-post ul li {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}
.sidebar-post ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
}
.sidebar-post ul li h4 {
    margin-bottom: 0;
}
.sidebar-tags {
    margin-bottom: 0;
}
.sidebar-tags ul li {
    border: 1px solid #dddddd;
    margin-bottom: 22px;
    margin-right: 10px;
    display: inline-block;
}
.sidebar-tags ul li a {
    padding: 10px 20px;
    color: #ffffff;
    background: #111111;
    text-transform: capitalize;
}
.sidebar-tags ul li a:hover {
    background: #1DD2C8;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}





/*--------------------------------
    15. Timetable CSS Start
----------------------------------*/
.timetable-section {
    padding: 100px 0 0;
    background: rgba(29, 210, 200, 0.2);
}
.timetable-col {
     
}
.timetable-col h2 {
    color: #ffffff;
    background: #1E2332;
    margin-bottom: 0;
    padding: 10px 28px;
    display: inline-block;
    position: relative;
}
.timetable-col h2:after {
    content: "";
    position: absolute;
    right: -54px;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 55px solid #1E2332;
    border-top: 60px  solid transparent;  
}
.timetable-box {
    background: #1E2332;
    padding: 25px 30px;
}
.timetable-box ul li {
    border-bottom: 1px solid #ddeddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.timetable-box ul li:last-child {
    border-bottom: none;
    padding-top: 30px;
    margin-bottom: 0;
    padding-bottom: 0;
}
.timetable-box ul li p {
    color: #ffffff;
}
.timetable-box ul li h4 {
    font-weight: 500;
    color: #ffffff;
}



/*--------------------------------
    16. Defult Page Title CSS Start
----------------------------------*/
.defult-page-title {
    padding: 60px 0;
    text-align: center;
    background: url(../images/pattern.png) repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-title-box {
/*    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.3);
    padding: 50px 80px;
    display: inline-block;*/
}
.page-title-box h2 {
    font-size: 36px;
    color: #ffffff;
}
.page-title-box p {
    color: #ffffff;
    text-transform: uppercase;
}
.page-title-box p a {
    color: #1DD2C8;
}
.page-title-box p a:hover {
    color: #ffffff;
}


/*--------------------------------
    17. About CSS Start
----------------------------------*/
.about-inner .about-tab {
    margin-top: 30px;
}
.about-inner .nav-tabs>li {
    margin-bottom: -2px;
}
.nav-tabs {
    border-bottom: 1px solid #1DD2C8;
}
.about-inner .nav-tabs>li>a {
    border-radius: 0;
    color: #111111;
}
.about-inner .nav-tabs>li.active>a, 
.about-inner .nav-tabs>li.active>a:focus, 
.about-inner .nav-tabs>li.active>a:hover {
    border-color: #1DD2C8;
    border-bottom: none;
}
.about-inner .about-tab .tab-content {
    border: 1px solid #1DD2C8;
    border-top: none;
    padding: 10px 20px;
}
.about-inner .about-tab .tab-content ul li {
    margin-top: 7px;
    margin-bottom: 7px;
}
.about-inner .about-tab .tab-content ul li i {
    margin-right: 10px;
}



/*--------------------------------
    18. Treatment CSS Start
----------------------------------*/
.treatment-section {
    padding: 100px 0 100px;
    overflow: hidden;
}
.pad-less {
    padding: 0;
}
.treatment-title {
    margin-bottom: 50px;
}
.treatment-col {
    position: relative;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; 
}
.treatment-col .treatment-box {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}
.treatment-col:hover .treatment-box {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}
.treatment-heading {
    position: absolute;
    top: 30px;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.treatment-col:hover .treatment-heading {
    opacity: 1;
    left: 30px;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out; 
}
.treatment-heading h4 {
    color: #ffffff;
}
.treatment-link {
    position: absolute;
    right: 30px;
    bottom: 0;
    padding: 5px 20px;
    background: #1DD2C8;
    font-size: 20px;
    opacity: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.treatment-col:hover .treatment-link  {
    opacity: 1;
    right: 0;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}
.treatment-link i {
    color: #ffffff;
}
.treatment-link i:hover {
    color: #111111;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}
.mb-100 {
    margin-bottom: 100px;
}

/* Treatment Details Start */
.treatment-details {
    padding: 100px 0 100px;
}
.treatment-details h3 {
    color: #1DD2C8;
    margin-bottom: 30px;
    margin-top: 30px;
}
.comment-field h3 a {
    color: #1DD2C8;
}
.comment-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 50px;
}
.comment-item img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
}
.comment-item-right {
    margin-left: 50px;
}
.treatment-middle-box {
    padding: 30px 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    background: #f5f5f5;
}
.treatment-middle-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}



/*--------------------------------
    19. FAQ CSS Start
----------------------------------*/
.faq-area {
    padding: 100px 0;
}
.panel-heading .accordion-toggle:after {
    content: "\f106";
    font-family: FontAwesome;
    float: right;
    font-size: 20px;
    color: #1DD2C8;
}
.panel-heading .accordion-toggle.collapsed:after {
    content: "\f107";
}
.faq-col h1 {
    margin-bottom: 30px;
}
.faq-col .panel-title {
    font-size: 18px;
}



/*--------------------------------
    20. Error CSS Start
----------------------------------*/
.error-area {
    padding: 100px 0 70px;
}
.error-col {
    margin-bottom: 30px;
    text-align: center;
}
.error-col h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    margin-bottom: 50px;
}
.error-col h1 span {
    font-size: 100px;
    color: #1ED2C8;
}
.error-col img {
    margin: 0 auto;
}
.error-col h4 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 0;
}
.error-col h4 a {
    color: #111111;
}
.error-col h4 a:hover {
    color: #1ED2C8;
    text-decoration: underline;
}



/*--------------------------------
    21. Departments CSS Start
----------------------------------*/
.timeline {
    padding: 100px 0;
}
/* Timeline CSS */
.timeline ul {
  
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 5px;
  margin: 0 auto;
  padding-top: 50px;
  background: #1E2332;
}

.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 30px;
  background: #1ED2C8;
}
.timeline ul li div h4 {
    margin-bottom: 10px;
}
.timeline ul li div p {
    color: #ffffff;
}
.timeline ul li div p a {
    color: #333333;
}

.timeline ul li div::before {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #1ED2C8 transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #1ED2C8;
}



/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after {
  transition: background .5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #1ED2C8;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}



/*--------------------------------
    22. Contact CSS Start
----------------------------------*/
.contact-area {
    padding: 100px 0 100px;
}
.contact-col {
    margin-bottom: 50px;
    text-align: center;
}
.contact-infobox {
    border: 1px solid #dcdcdc;
    padding: 50px 30px;
}
.contact-infobox i {
    width: 80px;
    height: 60px;
    border-top: 3px solid #1ED2C8;
    border-bottom: 3px solid #1ED2C8;
    color: #1ED2C8;
    text-align: center;
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 20px;
    padding: 5px 15px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}
.contact-infobox:hover i {
    background: #1ED2C8;
    color: #ffffff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; 
}
.contact-form-row .contact-col {
    margin-bottom: 0;
}
.contact-form-row .contact-col .form-control {
    height: 50px;
}
.contact-textarea textarea {
    height: 100% !important;
}




/*--------------------------------
    23. Footer CSS Start
----------------------------------*/
.main-footer {
    background: #111111;
    padding: 80px 0 50px;
    background: url(../images/bg/pttrns.png);
    background-repeat: repeat;
    position: relative;
}
.main-footer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute; 
    left: 0;
    top: 0;
    z-index: 0;
    background:#0041ff;
}
.footer-col {
    padding-bottom: 30px;
}
.footer-col img {
    margin-bottom: 30px;
    width: auto;
    max-width: inherit;
}
.footer-col h3 {
    color: #1ED2C8;
    margin-bottom: 40px;
}
.footer-col h3 span {
    color: #1DD2C8;
}
.footer-col p {
    color: #ffffff;
}
.footer-col .top-para {
    margin-bottom: 20px;
}

ul.footer-menu{ 
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.footer-menu li{
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid #b3b3b3;
    width: 45%;
    float: left;;
    margin-right: 4%;
}
ul.footer-menu li:last-child {
    border-bottom: 1px solid #b3b3b3 !important;
}
ul.footer-menu li a{
    display: block;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
ul.footer-menu li a:hover{   
     color: #1ED2C8;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.footer-col ul li {
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid #b3b3b3;
}
.footer-col ul li:last-child {
    border-bottom: none;
}
.footer-col ul li a {
    display: block;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.footer-col ul li a:hover {
    color: #1ED2C8;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.post-box {
    margin-bottom: 10px;
    position: relative;
    padding-left: 85px;
}
.footer-col .post-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
}
.post-box p {
    z-index: 1;
    line-height: 24px;
}
.post-box p a {
    color: #1DD2C8;
}
.address-col ul {
    margin-top: 20px;
}
.address-col ul li {
    border-bottom: none;
    color: #ffffff;
}
.address-col ul li i {
    width: 25px;
}


/*--------------------------------
    24. Copyright CSS Start
----------------------------------*/
.copyright-bar {
    padding: 20px 0;
    background: #000;
}
.footer-sociai-group {
    margin-bottom: 10px;
}
.footer-sociai-group a i {
    width: 35px;
    height: 35px;
    font-size: 15px;
    color: #ffffff;
    background: rgba(27, 27, 27, 0.75);
    text-align: center;
    line-height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.footer-sociai-group a i:hover {
    color: #ffffff;
    background: #1DD2C8;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.copyright-col p {
    color: #bdbcbc;
}
.copyright-col p a {
    color: #1DD2C8;
}




/*--------------------------------
    Demo Page CSS Start
----------------------------------*/
.demo-page-header {
    padding: 200px 0;
    background: #111111;
    background-image: url(../images/demo/1.jpg);
    background-position: center;
    background-size: cover;
}
.header-content {
    text-align: center;
}
.header-content h1 {
    color: #ffffff;
    margin-bottom: 30px;
}
.header-content h1 span {
    color: #1DD2C8;
    font-size: 50px;
}
.header-content .btn {
    font-style: 16px;
    background: #1DD2C8;
    border: none;
    padding: 18px 40px;
    color: #ffffff;
    text-transform: uppercase;
}
.demo-content-area {
    padding: 150px 0 100px;
}
.demo-content-col {
    margin-bottom: 50px;
    text-align: center;
}
.demo-content-col h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #111111;
}
.demo-content-col h2 a {
    color: #111111;
}
.demo-content-col ul li {
    margin-bottom: 10px;
    margin-top: 10px;
}
.demo-content-col ul li a {
    font-weight: bold;
    color: #777777;
    text-transform: uppercase;
}
.pages-col {
    text-align: center;
}
.pages-col h1 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #cccccc;
}
.breadcrumb-wrap{
	width:100%;
	background: rgba(248, 248, 248, 0.45);
}
.breadcrumb-wrap .breadcrumb{
	margin-bottom:0;
	background:inherit; 
}
.breadcrumb-wrap .breadcrumb>li{
	font-size:14px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight:400;
}
.breadcrumb-wrap .breadcrumb>li+li:before{
	color:#797474;
}
.justify-font{
	text-align:justify;
}
.facilities-section {
    padding: 100px 0 70px;
}
.facilities-col h5 {
    font-size: 16px;
    color: #ff0000;
    margin-bottom: 6px;
    margin-top: 12px;
    margin-left: 12px;
}
.facilities-section h4 {
    color: #ff0000;
	margin-top:10px 
}
.facilities-section p{
	text-align:justify;
}
.facilities-col p {
    margin-left: 12px;
	margin-bottom:15px;
}
.push-top-15{
	margin-top:15px;
}
.border-solid{
	border:solid 1px #d1d1d1;
	padding:0
}
ul.facilities-list{
	list-style:none;
	margin:0;
	padding:0;
}
ul.facilities-list li{
	display:block;
	margin:7px;
	padding:0;
	font-size:16px;
}
ul.facilities-list li .fa{
	font-size:18px;
	color:#4e60e2;
	margin-right:5px;
}
.admission-section{
    padding: 100px 0 70px;
}
.affiliation-section{
    padding: 100px 0 70px;
}
.courses-section{
    padding: 100px 0 70px;
}
.gallery-section{
    padding: 100px 0 70px;
}
.contact-section{
    padding: 100px 0 70px;
}

.contact-section ul {
    margin-top: 20px;
}
.contact-section ul li {
	border-bottom: none;
    color: #000;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
}
.contact-section ul li i {
    width: 25px;
    display: block;
    float: left;
    height:20px;
	color:#ff0000;
}
.push-0{
	margin:0 !important;
}
.font-color1{
	color:#ff0000 !important;
}
.header-topbar-col .navbar-brand{
	float: left;
    padding: 10px 15px;
    line-height: 20px;
	height:auto;
}
.header-topbar-col .phone-number{
	color:#000;
	/*float:right;*/
}
.color-1{
	color:#ff0000;
}
.color-2{
	color: #4e60e2;
}
.img-border{
	border:solid 1px #d1d1d1;
	padding:5px;
}

.hadeline {
    background-color: #ff0000;
    height: 2px;
    margin-top: 10px;
    position: relative;
	width:70%;
}

.hadeline span {
    background-color: #4e60e2;
    height: 2px;
    position: absolute;
    top: 0;
    width: 20%;
}
.push-bottom-20{
	margin-bottom:20px;
}
.push-right-15{
	margin-right:15px;
}
.push-top-30{
	margin-top:30px;
}
.affiliation-section ul.affiliation-list{list-style:none; margin:0; padding:0;}
.affiliation-section ul.affiliation-list li{display:inline-block; margin:0; padding:0;}
.affiliation-section ul.affiliation-list li h4{font-size:24px; margin:5px 0;}

.read-more {
	margin-top:30px;
    background: #0041ff;
    padding: 15px 25px;
    text-transform: uppercase;
    line-height: 80px;
    color: #fff;
	text-align:center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.read-more:hover {
    background:#ff0000;
	color:#fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.push-bottom-0 {
    margin-bottom: 0 !important;
}
.font-style-italic{
	font-style:italic;
}
ul.number-list{list-style:none; margin:10px 0; padding:0; overflow:hidden;}
ul.number-list li{display:block; margin:0; padding:2px 0;}
ul.number-listli .fa{}
.contact-phone{ font-size:16px; clear:both; padding-top:10px;}
.contact-phone .fa{ margin-right:10px; color:#ff0000;}
