

/************************************************
[ 1.0 - BASIC CSS START ] ***********************
*************************************************/
html {
  height: 100% !important; }

body {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1.6;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
background-image: url("../img/bg1.jpg");
	background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FFF;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important; }

table {
  border-spacing: 0;
  border-collapse: collapse; }

a {
  text-decoration: none !important;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  cursor: pointer; }
  a:hover, a:active {
    outline: 0;
    color: #32C1CE; }

p,
span {
  line-height: 1.6; }

label {
  line-height: 1.6;
  font-weight: 400;
  margin: 0; }

input,
textarea {
  font-family: "Montserrat", sans-serif;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  border: 0; }
  input:focus,
  textarea:focus {
    border: 0;
    outline: 0; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

textarea {
  resize: none; }

button {
  background-color: transparent;
  border: 0; }
  button:active {
    outline: none; }

select {
  border: none;
  outline: none; }
  select:focus {
    border: none;
    outline: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal; }

h1 {
  font-size: 28px; }

h2 {
  font-size: 30px; }

h3 {
  font-size: 26px;
color: #FFFFFF;}

h4 {
  font-size: 20px; }

h5 {
  font-size: 16px; }

h6 {
	line-height:14px;
  font-size: 16px; }

blockquote {
  font-family: "Montserrat", sans-serif; }
  blockquote::after {
    display: none; }
  blockquote::before {
    display: none; }







/*=== 4. Main Form ===*/
.login-form-1 {
  max-width: 300px;
  border-radius: 5px;
  display: inline-block;
}
.main-login-form {
  position: relative;
}
.login-form-1 .form-control {
  border: 0;
  box-shadow: 0 0 0;
  border-radius: 0;
  background: transparent;
  color: #555555;
  padding: 7px 0;
  font-weight: bold;
  height:auto;
}
.login-form-1 .form-control::-webkit-input-placeholder {
  color: #999999;
}
.login-form-1 .form-control:-moz-placeholder,
.login-form-1 .form-control::-moz-placeholder,
.login-form-1 .form-control:-ms-input-placeholder {
  color: #999999;
}
.login-form-1 .form-group {
  margin-bottom: 0;
  border-bottom: 2px solid #efefef;
  padding-right: 20px;
  position: relative;
}
.login-form-1 .form-group:last-child {
  border-bottom: 0;
}
.login-group {
  background: #ffffff;
  color: #999999;
  border-radius: 8px;
  padding: 10px 20px;
}
.login-group-checkbox {
  padding: 5px 0;
}
/*=== 5. Login Button ===*/
.login-form-1 .login-button {
  position: absolute;
  right: -25px;
  top: 50%;
  background: #ffffff;
  color: #999999;
  padding: 11px 0;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border: 5px solid #efefef;
  border-radius: 50%;
  transition: all ease-in-out 500ms;
}
.login-form-1 .login-button:hover {
  color: #555555;
  transform: rotate(450deg);
}
.login-form-1 .login-button.clicked {
  color: #555555;
}
.login-form-1 .login-button.clicked:hover {
  transform: none;
}
.login-form-1 .login-button.clicked.success {
  color: #2ecc71;
}
.login-form-1 .login-button.clicked.error {
  color: #e74c3c;
}
/*=== 6. Form Invalid ===*/
label.form-invalid {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: block;
  margin-top: -25px;
  padding: 7px 9px;
  background: #777777;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 11px;
}
label.form-invalid:after {
  top: 100%;
  right: 10px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #777777;
  border-width: 6px;
}
/*=== 7. Form - Main Message ===*/
.login-form-main-message {
  background: #ffffff;
  color: #999999;
  border-left: 3px solid transparent;
  border-radius: 3px;
  margin-bottom: 8px;
  font-weight: bold;
  height: 0;
  padding: 0 20px 0 17px;
  opacity: 0;
  transition: all ease-in-out 200ms;
}
.login-form-main-message.show {
  height: auto;
  opacity: 1;
  padding: 10px 20px 10px 17px;
}
.login-form-main-message.success {
  border-left-color: #2ecc71;
}
.login-form-main-message.error {
  border-left-color: #e74c3c;
}
/*=== 8. Custom Checkbox & Radio ===*/
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 25px;
  padding-top: 1px;
  cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 0px solid #aaa;
  background: #f0f0f0;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  position: absolute;
  color: #555555;
  transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after,
[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before,
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #8c8c8c;
  background-color: #878787;
}
[type="checkbox"]:disabled:checked + label:after,
[type="radio"]:disabled:checked + label:after {
  color: #555555;
}
[type="checkbox"]:disabled + label,
[type="radio"]:disabled + label {
  color: #8c8c8c;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before,
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: 1px dotted #f6f6f6;
}
/* hover style just for information */
label:hover:before {
  border: 1px solid #f6f6f6 !important;
}
/*=== Customization ===*/
/* radio aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  border-radius: 3px;
}
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  border-radius: 35px;
}
/* selected mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  top: 0;
  left: 2px;
  font-size: 14px;
}
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '\2022';
  top: 0;
  left: 3px;
  font-size: 30px;
  line-height: 25px;
}



/**************************************************
[ 2.0 - DEFAULT CSS START ] ***********************
***************************************************/
/* [ 2.1 OVERRIDING CSS START ] */
.mdl-button, .mdl-textfield__input {
  font-family: "Montserrat", sans-serif; }

.mdl-textfield__label::after,
.mdl-selectfield__label::after {
  background-color: #32C1CE; }

.mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
.mdl-textfield--floating-label.has-placeholder .mdl-textfield__label,
.mdl-selectfield--floating-label.is-focused .mdl-selectfield__label,
.mdl-selectfield--floating-label.is-dirty .mdl-selectfield__label {
  color: #32C1CE; }

.mdl-card.mdl-shadow--2dp {
  width: 100%; }

.mdl-card__title {
  height: 300px; }

.img-thumbnail, .modal-content {
  border-radius: 2px; }

.fc th {
  background: #32C1CE; }

.fc-state-down,
.fc-state-active {
  color: #FFF;
  background: #32C1CE; }

.mdl-data-table {
  width: 100%; }

.alert {
  font-size: 13px;
  letter-spacing: .5px;
  text-align: left; }

.card-title {
  margin-top: 0; }



/* [ 2.2 COMMON CSS START ] */
.layer-wrapper, .button-icon span, .button-icon .fa, .theme-block-hover,
.theme-block-picture img, .theme-block-picture::before, .theme-block-hidden, .slider-appointment a, .feature-icon, .feature-icon .fa,
.blog-list-picture img, .blog-full-img img, .contact-info-inner, .blog-picture, .hm-service-block .fa,
.hm-about-icon .fa, .theme-dropdown li::after, .theme-img img, .theme-img::before, .hm-doctor, .hm-doctor h6 {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.page-ttl::before, .parallax-background::before {
   }

.theme-block, .form-container, .theme-table-container, .map-address,
.hm-feature-block-1 {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); }

.tbl {
  display: table;
  width: 100%; }

.tbl-row {
  display: table-row; }

.tbl-cell {
  display: table-cell;
  vertical-align: middle; }

/* [ 2.3 LAYOUT CSS START ] */
.layer-stretch {
  position: relative;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  overflow: hidden; }

.layer-tablet {
  width: 992px;
  margin: 0 auto; }

.layer-mobile {
  width: 448px;
  margin: 0 auto; }

.layer-fixed {
  position: relative;
  max-width: 680px;
  width: 100%;
  margin: 0 auto; }

.layer-wrapper {
	max-width: 960px;
	margin: auto;
	text-align: center;
	padding-bottom: 30px;
	padding-top: 10px;
   }

.layer-bottom-0 {
  padding: 50px 0 0 0; }

.layer-bottom-10 {
  padding: 50px 0 20px 0; }

.colored-background {
  width: 100%;
  background: linear-gradient(-90deg, rgba(2, 167, 182, 0.9), rgba(1, 82, 89, 0.9)); }

.parallax-background {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .parallax-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.parallax-background-1 {
   }



.layer-ttl {
  text-align: center;
  margin: 0 0 40px 0; }
  .layer-ttl h3 {
    position: relative;
    font-size: 32px;
    font-weight: 500;
    color: #015259;
    line-height: 1;
    display: inline-block;
    margin: 0;
    padding: 12px 25px 15px 25px;
    background: #EBFCFD;
    border-bottom: 2px solid #02A7B6;
    border-radius: 4px; }

.layer-ttl-white h3 {
  color: #EBFCFD;
  background: #015259;
  border-bottom: 2px solid #EBFCFD; }

.layer-container {
  position: relative;
  width: 100%;
  margin: 0; }

.col-inset-0 {
  padding-left: 0;
  padding-right: 0; }

.rounded {
  border-radius: 50% !important; }

/* [ 2.4 FONT SIZE CSS START ] */
.font-12 {
  font-size: 12px !important; }

.font-13 {
  font-size: 13px !important; }

.font-14 {
  font-size: 14px !important; }

.font-16 {
  font-size: 16px !important; }

.font-18 {
  font-size: 18px !important; }

.font-20 {
  font-size: 20px !important; }

.font-24 {
  font-size: 24px !important; }

.font-28 {
  font-size: 28px !important; }

.font-30 {
  font-size: 30px !important; }

.font-36 {
  font-size: 36px !important; }

.font-400 {
  font-weight: 400; }

.font-500 {
  font-weight: 500; }

/* [ 2.5 COLOR CSS START ] */
.primary-color {
  color: #32C1CE !important; }

.color-white {
  color: #FFF !important; }

.color-blue {
  color: #32C1CE !important; }

.color-green {
  color: #54C798 !important; }

.color-orange {
  color: #EfA752 !important; }

.color-red {
  color: #fb9678; }

.color-purple {
  color: #A675D4 !important; }

.color-black {
  color: #333 !important; }

.color-dark-light {
  color: #555 !important; }

.color-light {
  color: #777 !important; }

.paragraph-medium {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  margin: 0 0 10px 0; }

.paragraph-small {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: .5px; }

.paragraph-black {
  color: #777; }

.paragraph-white {
  color: #FFF; }

/* [ 2.6 BUTTON CSS START ] */
.button {
  height: auto;
  line-height: normal;
  padding: 12px 30px;
  font-weight: 400;
  color: #FFF !important;
  font-family: "Montserrat", sans-serif;
  border-radius: 2px; }

.button-default {
  color: #333 !important; }

.button-primary {
  background-color: #32C1CE !important; }

.button-success {
  background-color: #0bc36e !important; }

.button-warning {
  background-color: #fec107 !important; }

.button-danger {
  background-color: #fb9678 !important; }

.button-info {
  background-color: #03a9f3 !important; }

.button-blue {
  color: #FFF;
  background-color: #32C1CE;
  border: 2px solid #32C1CE; }

.button-orange {
  color: #FFF;
  background: #EfA752;
  border: 2px solid #EfA752; }

.button-purple {
  color: #FFF;
  background-color: #A675D4;
  border: 2px solid #A675D4; }

.button-red {
  color: #FFF;
  background-color: #cc5151;
  border: 2px solid #cc5151; }

.button-transparent {
  color: #333 !important;
  background: transparent !important; }

.button-hover-transparent:hover {
  color: #333 !important;
  background: transparent !important; }

.button-hover-primary:hover {
  color: #FFF !important;
  background: #32C1CE !important; }

.button-hover-success:hover {
  color: #FFF !important;
  background: #0bc36e !important; }

.button-hover-warning:hover {
  color: #FFF !important;
  background: #fec107 !important; }

.button-hover-danger:hover {
  color: #FFF !important;
  background: #fb9678 !important; }

.button-hover-info:hover {
  color: #FFF !important;
  background: #03a9f3 !important; }

.button-bordered-primary {
  border: 2px solid #32C1CE; }

.button-bordered-success {
  border: 2px solid #0bc36e; }

.button-bordered-warning {
  border: 2px solid #fec107; }

.button-bordered-danger {
  border: 2px solid #fb9678; }

.button-bordered-info {
  border: 2px solid #03a9f3; }

.button-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 0;
  border: 1px solid #32C1CE;
  border-radius: 2px;
  cursor: pointer; }
  .button-icon:hover span {
    color: #32C1CE;
    background: #FFF; }
  .button-icon:hover .fa {
    color: #FFF;
    background: #32C1CE; }
  .button-icon span {
    display: inline-block;
    vertical-align: top;
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 20px;
    color: #FFF;
    letter-spacing: .5px;
    background: #32C1CE; }
  .button-icon .fa {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    height: 42px;
    line-height: 42px;
    padding: 0 16px;
    color: #32C1CE; }


.button-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px; }

.button-lg {
  padding: 12px 30px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 2px; }

.anchor-icon {
  font-size: 14px;
  color: #32C1CE; }
  .anchor-icon .fa {
    margin: 0 0 0 5px; }

.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  border-color: rgba(3, 169, 243, 0.6);
  background: rgba(3, 169, 243, 0.6); }

.btn-success:not([disabled]):not(.disabled).active,
.btn-success:not([disabled]):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  border-color: rgba(11, 195, 110, 0.6);
  background: rgba(11, 195, 110, 0.6); }

.btn-warning:not([disabled]):not(.disabled).active,
.btn-warning:not([disabled]):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  border-color: rgba(254, 193, 7, 0.6);
  background: rgba(254, 193, 7, 0.6); }

.btn-danger:not([disabled]):not(.disabled).active,
.btn-danger:not([disabled]):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  border-color: rgba(251, 150, 120, 0.6);
  background: rgba(251, 150, 120, 0.6); }

.btn-info:not([disabled]):not(.disabled).active,
.btn-info:not([disabled]):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  border-color: rgba(3, 169, 243, 0.6);
  background: rgba(3, 169, 243, 0.6); }

.btn-primary {
  background: #32C1CE;
  border-color: #32C1CE; }
  .btn-primary:hover {
	  background: #7eb9c9;
	border-color: #7eb9c9; }

.btn-success {
  background: #0bc36e;
  border-color: #0bc36e; }
  .btn-success:hover {
    border-color: rgba(11, 195, 110, 0.6); }

.btn-warning {
  background: #fec107;
  border-color: #fec107; }
  .btn-warning:hover {
    border-color: rgba(254, 193, 7, 0.6); }

.btn-danger {
  background: #fb9678;
  border-color: #fb9678; }
  .btn-danger:hover {
    border-color: rgba(251, 150, 120, 0.6); }

.btn-info {
  background: #03a9f3;
  border-color: #03a9f3; }
  .btn-info:hover {
    border-color: rgba(3, 169, 243, 0.6); }

/* [ 2.7 THEME BLOCK CSS START ] */
.theme-block {
  position: relative;
  width: 100%;
  padding: 4px;
  margin: 0 0 30px 0;
  text-align: center;
  background: #FFF;
  border-radius: 2px;
  overflow: hidden; }
  .theme-block:hover .theme-block-hidden {
    opacity: 1;
    z-index: 2;
    bottom: 0; }
  .theme-block:hover .service-block-data a {
    color: #32C1CE; }

.theme-block-hover:hover .theme-block-picture img {
  opacity: 0.7;
  -webkit-transform: scale(1.2) rotate(6deg);
  -moz-transform: scale(1.2) rotate(6deg);
  -ms-transform: scale(1.2) rotate(6deg);
  -o-transform: scale(1.2) rotate(6deg);
  transform: scale(1.2) rotate(6deg); }
.theme-block-hover:hover .theme-block-picture:before {
  background: linear-gradient(-90deg, rgba(2, 167, 182, 0.9), rgba(1, 82, 89, 0.9)); }

.theme-block-picture {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .theme-block-picture img {
    width: 100%;
    height: auto; }

.theme-block-picture::before, .theme-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.theme-block-data {
  position: relative;
  padding: 15px; }
  .theme-block-data h4 {
    font-size: 20px;
    text-align: center;
    margin: 0;
    padding: 10px 0 5px 0; }
    .theme-block-data h4 a {
      color: #555; }
  .theme-block-data p {
    margin: 0; }
    .theme-block-data p a {
      color: #015259; }

.theme-block-hidden {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  border: 1px solid #EEE;
  opacity: 0;
  z-index: -2; }

.theme-block-padding {
  padding: 10px; }


/* [ 2.14 THEME FLEXSLIDER CSS START ] */
.theme-flexslider {
  margin: 0 0 40px 0; }
  .theme-flexslider .flex-control-paging li {
    vertical-align: middle; }
    .theme-flexslider .flex-control-paging li a {
      background: #FFF;
      border: 2px solid #32C1CE;
      box-shadow: none; }
      .theme-flexslider .flex-control-paging li a:hover {
        background: #32C1CE; }
      .theme-flexslider .flex-control-paging li a.flex-active {
        width: 15px;
        height: 15px;
        background: #32C1CE; }

.theme-flexslider-container {
  width: 100%;
  position: relative;
  padding: 0 0 10px 0; }
  .theme-flexslider-container h4 {
    color: #333;
    margin: 10px 0 10px 0;
    letter-spacing: .5px;
    font-size: 20px;
    font-weight: 400; }
  .theme-flexslider-container p {
    font-size: 14px;
    color: #999;
    letter-spacing: .5px;
    margin: 0; }
  .theme-flexslider-container img {
    width: 100%; }



/* [ 2.17 THEME TABLE CSS START ] */
.table-container {
  margin: 0 10px 30px 10px;
  padding: 0;
  background: #FFF;
  border-top: 1px solid #32C1CE; }

.table {
  width: 100%; }
  .table th {
    color: #777;
    padding: 12px 5px;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 2px solid #DDD; }
  .table td {
    padding: 12px 5px;
    color: #777;
    vertical-align: middle;
    font-size: 14px;
    border-bottom: 1px solid #EEE; }

.table-hover tbody > tr:hover {
  background-color: #EBFCFD; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #EBFCFD; }

.table-bordered th {
  border: 1px solid #DDD;
  border-bottom: 2px solid #DDD; }
.table-bordered td {
  border: 1px solid #DDD; }

.table-primary-head > th,
.table-warning-head > th,
.table-success-head > th,
.table-danger-head > th,
.table-danger-head > th {
  color: #FFF; }

.table-primary-head > th {
  background-color: #32C1CE; }

.table-warning-head > th {
  background-color: #fec107; }

.table-success-head > th {
  background-color: #0bc36e; }

.table-danger-head > th {
  background-color: #fb9678; }

.table-primary, .table-primary > td, .table-primary > th {
  background-color: rgba(3, 169, 243, 0.1); }

.table-warning, .table-warning > td, .table-warning > th {
  background-color: rgba(254, 193, 7, 0.1); }

.table-success, .table-success > td, .table-success > th {
  background-color: rgba(11, 195, 110, 0.1); }

.table-danger, .table-danger > td, .table-danger > th {
  background-color: rgba(251, 150, 120, 0.1); }

.theme-list-basic {
  padding: 0 0 0 30px;
  margin: 0 0 10px 0; }
  .theme-list-basic li {
    font-size: 14px;
    color: #555;
    padding: 3px 0; }
    .theme-list-basic li li {
      list-style: circle; }
    .theme-list-basic li .fa {
      margin: 0 5px 0 0; }

.theme-list {
  padding: 0;
  margin: 0 0 10px 0; }
  .theme-list li {
    list-style: none;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 5px 0;
    letter-spacing: .5px; }
    .theme-list li .fa {
      margin: 0 5px 0 0; }

/* [ 2.18 THEME IMAGE CSS START ] */
.theme-img {
  position: relative;
  display: inline-block;
  padding: 4px;
  background: #FFF;
  border: 1px solid #DDD;
  border-radius: 2px;
  overflow: hidden; }
  .theme-img::before {
    opacity: .4; }
  .theme-img:hover::before {
    background: linear-gradient(-90deg, rgba(2, 167, 182, 0.9), rgba(1, 82, 89, 0.9));
    z-index: 1; }
  .theme-img img {
    width: 100%; }

.theme-img-scale:hover img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3); }

.theme-img-scalerotate:hover img {
  -webkit-transform: scale(1.3) rotate(6deg);
  -moz-transform: scale(1.3) rotate(6deg);
  -ms-transform: scale(1.3) rotate(6deg);
  -o-transform: scale(1.3) rotate(6deg);
  transform: scale(1.3) rotate(6deg); }

/* [ 2.19 THEME QUOTE CSS START ] */
.theme-quote {
  font-size: 15px;
  color: #555;
  padding: 20px;
  letter-spacing: .5px;
  margin: 0 0 10px 0;
  text-align: left;
  font-style: italic;
  background: #f4f4f4;
  border-left: 4px solid #AAA;
  border-radius: 2px; }
  .theme-quote .fa {
    color: #32C1CE; }

.theme-quote-colored {
  color: #FFF;
  background: #32C1CE;
  border-color: #333; }
  .theme-quote-colored .fa {
    color: #FFF; }

.theme-quote-primary {
  background: #32C1CE; }

.theme-quote-success {
  background: #0bc36e; }

.theme-quote-warning {
  color: #333;
  background: #fec107; }

.theme-quote-danger {
  background: #fb9678; }

.theme-quote-info {
  background: #03a9f3; }

/* [ 2.20 PAGE TITLE CSS START ] */
.page-ttl {
  position: relative;
  width: 100%;
  padding: 40px 0 40px 0;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../uploads/background-1.jpg); }
  .page-ttl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.page-ttl-container {
  text-align: center; }
  .page-ttl-container h1 {
    font-size: 42px;
    font-weight: 500;
    color: #FFF;
    margin: 0; }
  .page-ttl-container p {
    font-size: 14px;
    color: #CCC;
    padding: 10px 0 0 0; }
    .page-ttl-container p a {
      display: inline-block;
      color: #EEE;
      margin: 0 5px 0 0; }
      .page-ttl-container p a:hover {
        text-decoration: underline !important; }
    .page-ttl-container p span {
      display: inline-block;
      margin: 0 0 0 5px; }

.page-ttl-icon {
  display: inline-block;
  vertical-align: middle;
  display: none; }

/* [ 2.21 NOT FOUND PAGE CSS START ] */
.notfound-wrapper {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 50px 0 0 0; }

.notfound-ttl {
  font-size: 150px;
  text-transform: uppercase;
  color: #F09E71;
  letter-spacing: 2px;
  font-weight: bold;
  display: block;
  margin: 10px 0; }

.notfound-tag-1 {
  font-size: 48px;
  text-transform: uppercase;
  color: #333;
  margin: 10px 0;
  font-weight: 600; }

.notfound-tag-2 {
  display: block;
  font-size: 28px;
  color: #555;
  margin: 10px 0; }

.notfound-link {
  margin: 30px 0; }

.notfound-link a {
  margin: 30px; }

.notfound-social li {
  margin: 10px; }
  .notfound-social li a {
    font-size: 24px; }

/**************************************************
[ 3.0 HEADER CSS START ] **************************
***************************************************/
#header {
  position: relative;
  background-color: #FFF;
  z-index: 11; }

#hdr-top-wrapper {
  position: relative;
  padding: 5px 0;
  border-bottom: 1px solid #EEE; }

.hdr-top {
  text-align: right;
  overflow: visible; }



/*************************************************
[ 4.0 HEADER 2 CSS START ] ***********************
**************************************************/
#header-1 {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 99; }
  #header-1 .menu a {
    color: #FFF; }
  #header-1 .menu ul li a {
    color: #333; }
  #header-1 #menu-bar .fa {
    color: #EEE; }

#header-3 {
  position: relative; }

.hdr-center {
  padding: 20px 15px; }

.hdr-center-logo img {
  height: 40px; }

.hdr-center-submenu .tbl-cell {
  padding: 5px; }
.hdr-center-submenu .fa {
  width: 42px;
  height: 42px;
  line-height: 36px;
  font-size: 20px;
  margin: 0 10px 0 0;
  text-align: center;
  color: #75DBE4;
  border-radius: 50%;
  border: 2px dotted #32C1CE; }

.hdr-center-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(51, 51, 51, 0.3);
  border-top: 1px solid #EEE;
  z-index: 11; }
  .hdr-center-menu .menu li a {
    color: #FFF; }

.hdr-center-account a:hover .fa {
  color: #FFF;
  background-color: #32C1CE;
  border: 1px solid #32C1CE; }
.hdr-center-account .fa {
  font-size: 16px;
  color: #777;
  width: 32px;
  height: 32px;
  line-height: 28px;
  margin: 0 10px 0;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #777;
  border-radius: 50%; }


#header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  z-index: 11; }
  #header-transparent .menu li a {
    color: #FFF; }
  #header-transparent .hdr-center-account a {
    color: #EEE; }
  #header-transparent .hdr-center-account .fa {
    color: #EEE;
    border: 1px solid #EEE; }

.header-transparent-menu {
  width: 100%;
  padding: 10px 0;
  background: rgba(51, 51, 51, 0.3);
  border-top: 1px solid #EBFCFD; }

.hdr-search {
  line-height: 56px;
  background: none;
  box-shadow: none; }
  .hdr-search .fa {
    font-size: 24px; }

.hdr-fixed {
  background-color: rgba(1, 82, 89, 0.8); }

/*************************************************
[ 5.0 HOME PAGE CSS START ] **********************
**************************************************/
/* [ 5.1 BANNER CSS START ] */
.slider-wrapper .slides li {
  position: relative; }
  .slider-wrapper .slides li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    background: linear-gradient(-90deg, rgba(2, 167, 182, 0.9), rgba(1, 82, 89, 0.9)); }
  .slider-wrapper .slides li img {
    width: 100%; }

.slider-1 {
  height: 100%; }
  .slider-1 .slider-wrapper {
    height: 100%; }
  .slider-1 .slides {
    height: 100%; }
    .slider-1 .slides li {
      height: 100%; }
  .slider-1 .slider-info {
    padding: 0 10%;}

.slider-height {
  height: 100%; }
  .slider-height .slider-wrapper {
    height: 100%; }
  .slider-height .slides {
    height: 100%; }
    .slider-height .slides li {
      height: 100%; }

.slider-wrapper {
  height: 100%;
  border: 0;
  margin: 0;
  overflow: hidden; }

.flex-direction-nav a {
  line-height: 40px; }

.slider-info {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  padding: 0 10%;
  text-align: center;
  z-index: 9999; }

.slider-info h1 {
	display: inline-block;
    font-size: 54px;
    color: #FFF;
    font-weight: 500;
    margin: 0 0 15px 0;
    animation-delay: .4s;
}

  .slider-info h3 {

    font-size: 34px;
    color: #FFF;
    font-weight: 500;
    margin: 0 0 15px 0;
    animation-delay: .4s; }

  .slider-info p {
    font-size: 16px;
    color: #FFF;
    animation-delay: .6s; }



.slider-backgroung-image {
  position: relative;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.slider-2 .slider-info {
  top: 35%; }

/* [ 5.2 HOME SERVICE CSS START ] */
.hm-service-left {
  position: relative; }
  .hm-service-left img {
    position: relative;
    width: 100%;
    border: 4px solid #32C1CE;
    border-radius: 2px;
    z-index: 1; }

.hm-service-right .paragraph-medium {
  color: #015259; }

.hm-service {
  text-align: center; }

.hm-service-block {
  display: inline-block;
  vertical-align: top;
  width: 180px;
  padding: 10px 0;
  margin: 20px 0; }
  .hm-service-block .fa {
    position: relative;
    width: 64px;
    height: 64px;
    line-height: 64px;
    font-size: 36px;
    text-align: center;
    color: #FFF;
    background: #32C1CE;
    border: 2px solid #32C1CE;
    border-radius: 2px; }
    .hm-service-block .fa:hover {
      color: #FFF; }
      .hm-service-block .fa:hover::after {
        border: 14px solid #32C1CE; }
    .hm-service-block .fa::after {
      content: '';
      position: absolute;
      top: -15%;
      left: -15%;
      width: 130%;
      height: 130%;
      border: 2px solid #32C1CE;
      border-radius: 2px;
      z-index: 1;
      -webkit-transition: all .2s;
      transition: all .2s; }
  .hm-service-block span {
    display: block;
    font-size: 14px;
    color: #555;
    padding: 20px 0 0 0;
    letter-spacing: .5px; }


/* [ 5.3 HOME ABOUT CSS START ] */
.hm-about-block {
  display: inline-block;
  vertical-align: top;
  min-width: 280px;
  padding: 0 10px;
  margin: 0 0 30px 0; }
  .hm-about-block:hover .fa {
    color: #32C1CE;
    -webkit-box-shadow: inset 0 0 0 70px #FFF;
    -moz-box-shadow: inset 0 0 0 70px #FFF;
    box-shadow: inset 0 0 0 70px #FFF; }
    .hm-about-block:hover .fa::after {
      border: 10px solid #FFF; }

.padMain{
	padding-bottom: 50px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 50px;
}


/* [ 5.6 HOME FEATURE CSS START ] */
#hm-feature {
  text-align: center; }

.hm-feature-block {
  display: inline-block;
  vertical-align: top;
  width: 33%;
  padding: 0 40px;
  margin: 10px 0 30px 0; }
  .hm-feature-block:hover .fa {
    color: #FFF;
    background: #32C1CE;
    -webkit-box-shadow: inset 0 0 0 70px #32C1CE;
    -moz-box-shadow: inset 0 0 0 70px #32C1CE;
    box-shadow: inset 0 0 0 70px #32C1CE; }
  .hm-feature-block .fa {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 42px;
    color: #32C1CE;
    background: #FAFAFA;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    border-radius: 50%; }
  .hm-feature-block span {
    display: block;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    color: #015259;
    padding: 20px 5px 10px 5px; }
  .hm-feature-block p {
    text-align: center;
    color: #777;
    margin: 0; }

.hm-feature-icon {
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 122px;
  margin: 0 auto;
  background: #32C1CE;
  border-radius: 2px; }

.hm-feature-block-1 {
  padding: 4px 4px 4px 4px;
  margin: 0 0 30px 0;
  background: #FFF;
  border-radius: 2px; }
  .hm-feature-block-1 .theme-img {
    padding: 0;
    max-height: 100px;
    border: none; }
  .hm-feature-block-1 span {
    display: block;
    font-size: 18px;
    color: #32C1CE;
    padding: 15px 5px 10px 5px; }
  .hm-feature-block-1 p {
    text-align: center;
    color: #777;
    padding: 0 10px; }



/*************************************************
[ 11.0 FORM INPUT CSS START ] ********************
**************************************************/
.form-container {
  max-width: 400px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  background: #FFF; }
  .form-container .paragraph-small {
    text-align: center; }
  .form-container label em {
    color: #cc5151; }

.form-input input {
  font-family: "Montserrat", sans-serif; }
.form-input label {
  color: #777; }


.form-input-icon {
  width: 100%;
  padding: 20px 0 20px 30px; }
  .form-input-icon .fa {
    position: absolute;
    top: 24px;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #FFF;
    background: #02A7B6;
    border-radius: 2px; }
  .form-input-icon input {
    font-family: "Montserrat", sans-serif; }
  .form-input-icon label {
    display: inline-block;
    width: auto;
    left: 30px;
    color: #777; }

.form-input-white input {
  color: #FFF;
  border-bottom: 1px solid #EEE; }
.form-input-white textarea {
  color: #FFF;
  border-bottom: 1px solid #EEE; }
.form-input-white label {
  color: #EEE; }
.form-input-white.mdl-textfield--floating-label.is-focused .mdl-textfield__label, .form-input-white.mdl-textfield--floating-label.is-dirty .mdl-textfield__label, .form-input-white.mdl-textfield--floating-label.has-placeholder .mdl-textfield__label, .form-input-white.mdl-selectfield--floating-label.is-focused .mdl-selectfield__label, .form-input-white.mdl-selectfield--floating-label.is-dirty .mdl-selectfield__label {
  color: #EEE; }

.form-radio {
  text-align: left; }
  .form-radio p {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    color: #32C1CE; }

.form-submit {
  padding: 10px 0 0 0; }



/*************************************************
[ 16.0 Footer CSS START ] ************************
**************************************************/
#footer {
  width: 100%;
	min-height: 300px; }




.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}



/*************************************************
[ 17.0 MEDIA QUERIES START ] *********************
**************************************************/
/* FROM 1200px TO 1400px */
/* FROM 992px TO 1199PX */
/* FROM 0PX TO 992PX */
@media only screen and (max-width: 992px) {
  .slider-info h1,
  .slider-info h2 {
    font-size: 34px; }

  .hm-about-block {
    width: auto; }

  .blog-page-container {
    width: 100%; }

  .hm-feature-block {
    width: 33.33%; }

  .gallery-container ul li {
    width: 33.33%;
    padding-top: 33.33%; }

  .feature-block {
    width: 50%; }

  .profile-right .profile-edit, .edit-profile-right .profile-edit {
    padding: 20px 0 0 0; }

  .menu {
    position: fixed;
    top: 0;
    left: -130%;
    width: 100%;
    min-height: 100%;
    padding: 30px 60px 30px 20px !important;
    overflow-y: scroll;
    background: linear-gradient(-90deg, #02a7b6, #015259);
    z-index: 99999999;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; }
    .menu li {
      position: relative !important;
      display: block; }
      .menu li a {
        display: block;
        height: auto;
        font-size: 14px;
        text-align: left;
        color: #FFF;
        padding: 5px;
        text-transform: none; }
      .menu li li a {
        color: #333; }

  .menu-dropdown {
    width: 70%;
    left: inherit;
    right: -55px;
    z-index: 9999999; }
    .menu-dropdown li:hover .menu-dropdown {
      display: block; }
    .menu-dropdown .menu-dropdown {
      display: none;
      left: 0;
      width: 100%;
      position: relative;
      box-shadow: none;
      z-index: 9999999; }

  .menu-megamenu {
    width: 70%;
    left: inherit;
    right: -55px; }

  .mobile-menu-close {
    display: block !important; }

  #menu-bar {
    display: block; }

  .hm-feature-block {
    width: 50%; }

  .footer-block:nth-child(2) {
    padding: 20px;
    margin: 0 0 30px 0;
    border: 0;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555; }

  .hm-service-right {
    padding: 20px 0 0 0; } }
/* FROM 768PX TO 979PX */
/* FROM 0PX TO 768PX */
@media only screen and (max-width: 768px) {
  .slider-info {
    padding: 60px 15%; }
    .slider-info h1,
    .slider-info h2 {
      font-size: 24px; }

  .gallery-container ul li {
    width: 50%;
    padding-top: 50%; }

  .service-description {
    min-height: inherit; }

  .blog-list-block {
    width: 100%;
    padding: 10px;
    height: auto; }

  .map-address {
    display: none; }

  .contact-info-block {
    padding: 10px 15px; }

  .feature-block {
    width: 100%; }

  .doctorp-social {
    position: relative; }

  .hidden-xs {
    display: none !important; } }
/* FROM 0PX TO 480PX */
@media only screen and (max-width: 480px) {
  .layer-ttl h3 {
    font-size: 28px; }

  .hdr-logo a img {
    height: 30px; }

  .slider-info h1, .slider-info h2 {
    font-size: 20px; }
  .slider-info p {
    display: none; }

  .slider-appointment {
    display: none; }

  .gallery-container ul li {
    width: 100%;
    padding-top: 100%; }

  .blog-list-picture {
    width: 100%;
    height: auto;
    max-height: 280px; }

  .blog-page-picture {
    width: 100%; }

  .blog-page-ttl {
    font-size: 20px; }

  .hm-feature-block {
    width: 100%; }

  .hm-blog-picture {
    height: auto;
    max-height: 280px; }

  .paragraph-medium {
    font-size: 12px; }

  #emergency .paragraph-medium {
    padding: 0; }

  .emergency-number {
    font-size: 24px; }

  .department-icon .fa {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px; }

  .department-detail a {
    font-size: 16px; }

  .blog-list-ttl h4 {
    font-size: 28px; }

  .form-container {
    max-width: 100%; }

  .footer-block {
    padding: 20px 0; }
    .footer-block:nth-child(2) {
      padding: 20px 0; } 

.padMain{
	padding-bottom: 5px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 5px;
}
}




@media only screen and (max-width: 580px) {
	
.layer-wrapper {
	}

.parallax-background-1 {
 }
	
.slider-info {
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  padding: 0 10%;
  text-align: center;
  z-index: 9999; }
  
	.slider-info h1 {
    display: inline-block;
    font-size: 28px;
    color: #FFF;
    font-weight: 500;
    margin: 40px 0 15px 0;
    animation-delay: .4s; }
	
  .slider-info h3 {
    font-size: 22px;
    color: #FFF;
    font-weight: 500;
    margin: 0;
    animation-delay: .4s; }
	
.padMain{
	padding-bottom: 5px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 5px;
}

 }



}


/*# sourceMappingURL=style.css.map */
