@font-face {
    font-family: 'Zil-Semi-Slab';
    src:url('../fonts/Zil-Semi-Slab.ttf.woff') format('woff'),
        url('../fonts/Zil-Semi-Slab.ttf.svg#Zil-Semi-Slab') format('svg'),
        url('../fonts/Zil-Semi-Slab.ttf.eot'),
        url('../fonts/Zil-Semi-Slab.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

:root {
  --white-color:                  #ffffff;
  --primary-color:                #3b98c3; /* Bleu Kiné@Dom */
  --secondary-color:              #76b841; /* Vert Kiné@Dom */
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #76b841; /* Couleur de fond des boutons */
  --custom-btn-bg-hover-color:    #3b98c3; /* Bleu foncé pour hover */
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #76b841; /* Bordures Kiné@Dom */
  --link-hover-color:             #76b841; /* Vert pour les liens */

  --body-font-family:             'Open Sans', sans-serif;
  --title-font-family:            'Montserrat', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
  color: var(--secondary-color)
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-weight: var(--font-weight-normal);
  font-size: var(--h3-font-size);
  font-family: 'Zil-Semi-Slab';
  letter-spacing : 1.4px;
}

h4 {
  font-weight: var(--font-weight-normal);
  font-size: var(--h4-font-size);
  font-family: 'Zil-Semi-Slab';
  letter-spacing : 1.4px;
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-weight: var(--font-weight-normal);
  color: white;
  font-size: var(--h6-font-size);
  font-family: 'Zil-Semi-Slab';
  letter-spacing : 1.4px;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.font8{font-size: 8px;}   /* Various Font Size Classes can applied */
.font10{font-size: 10px;}
.font12{font-size: 12px;}
.font14{font-size: 14px;}
.font16{font-size: 16px;}   /* Various Font Size Classes can applied */
.font18{font-size: 18px;}
.font20{font-size: 20px;}
.font22{font-size: 22px;}
.font24{font-size: 24px;}
.font26{font-size: 26px;}
.font28{font-size: 28px;}
.font30{font-size: 30px;}
.font32{font-size: 32px;}
.font34{font-size: 34px;}
.font36{font-size: 36px;}

.justify{text-align:justify;}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, var(--primary-color) 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(15deg, var(--primary-color) 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
  opacity: 0.5;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
  opacity: 0.5;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--secondary-color); /* Utilisez une couleur opaque définie dans les variables */
  transition: background-color 0.5s;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  opacity:1;
  border-radius: var(--border-radius-large);
  margin: 1px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 1400px) {
  .navbar .dropdown:hover .dropdown-menu .emergency {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
    align-items: center;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, var(--primary-color) 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}


/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--primary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}


.topics-listing-page .site-header {
  padding-bottom: 300px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}
/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               e
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color); 
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

.site-footer .widget-message:after {
  content: "";
  position: absolute;
  width: 20%;
  height: 1px;
  bottom: 0px;
  left: 50%;
  background-color: #d5d5d5;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.site-footer .widget-message {
  position: relative;
  text-align: center;
  font-style: italic;
  margin-top: 0px;
  padding: 40px 0px;
  font-family: 'Volkhov', serif;
}
.site-footer .widget-message p {
  font-size: 22px;
  position: relative;
  max-width: 65%;
  margin: auto;
  text-align: center;
}
.site-footer .widget {
  margin: 20px 0px;
  position: relative;
  color: #2a8abe;
  overflow: hidden;
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  text-align: right;
  width: 35px;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 1px;
  text-align: center;
  font-size: 20px;
  height: 35px;
  width: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
  padding-top: 1px;
}

.social-icon-link-2 {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  background-color: #fff;
  color: var(--primary-color);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  line-height: 42px;
  transition: background 0.2s, color 0.2s;
}
.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav .emergency .nav-link{
    padding-bottom: 20px;
    align-items: center;
  }

  .navbar-expand-lg .navbar-nav .nav-link .emergency {
    padding: 0;
    align-items: center;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
    align-items: center;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
    align-items: center;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

@media (m-width : 1200px) {
  .navbar .navbar-nav {
    text-align: left;
  }

  .navbar .emergency .number {
      font-size: 24px; /* Ajustez la taille de la police */
      font-weight: bold; /* Met en évidence le numéro */
      color: white; /* Assurez une bonne visibilité */
      margin-top: -60px;
      margin-right: 20px;
  }
  .navbar .emergency .sub-text {
      font-size: 12px; /* Plus petite taille pour le sous-texte */
      color: white; /* Couleur du sous-texte */
      margin-top: -35px;
      margin-right: 15px;
  }
  .navbar .i-fa-mobile {
    align-self: left
  }
}

@media (max-width: 991px) {
  .navbar .navbar-nav {
    text-align: left;
  }
  .navbar .emergency {
      display: flex;
      margin-top: -100px;
      justify-content: center; /* Centre horizontalement */
      align-items: center; /* Centre verticalement */
      flex-direction: column; /* Place les éléments en colonne */
      text-align: center; /* Centre le texte */
      margin-top: 0px; /* Optionnel : ajustez les marges */
  }
  .navbar .emergency .number {
      font-size: 24px; /* Ajustez la taille de la police */
      font-weight: bold; /* Met en évidence le numéro */
      color: white; /* Assurez une bonne visibilité */
      margin-top: -60px;
      margin-right: 0px;
  }
  .navbar .emergency .sub-text {
      font-size: 12px; /* Plus petite taille pour le sous-texte */
      color: white; /* Couleur du sous-texte */
      margin-top: -35px;
      margin-right: 0px;
  }
}
@media (max-width: 480px) {
  .navbar .navbar-nav {
    text-align: left;
  }
  .navbar .emergency {
      display: flex;
      margin-top: -100px;
      justify-content: center; /* Centre horizontalement */
      align-items: center; /* Centre verticalement */
      flex-direction: column; /* Place les éléments en colonne */
      text-align: center; /* Centre le texte */
      margin-top: 0px; /* Optionnel : ajustez les marges */
  }
  .navbar .emergency .number {
      font-size: 24px; /* Ajustez la taille de la police */
      font-weight: bold; /* Met en évidence le numéro */
      color: white; /* Assurez une bonne visibilité */
      margin-top: -60px;
      margin-right: 0px;
  }
  .navbar .emergency .sub-text {
      font-size: 12px; /* Plus petite taille pour le sous-texte */
      color: white; /* Couleur du sous-texte */
      margin-top: -35px;
      margin-right: 0px;
  }
}
/* Style du champ mot de passe */
#password {
  border-radius: var(--border-radius-large);
  padding: 13px 20px;
  font-size: var(--p-font-size);
}


/* Style du bouton de soumission */
.custom-form button[type="submit"] {
  background-color: var(--custom-btn-bg-color);
  color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 20px;
  font-size: var(--btn-font-size);
  transition: background-color 0.3s;
}

.custom-form button[type="submit"]:hover {
  background-color: var(--custom-btn-bg-hover-color);
}

/* Alignement des champs de téléphone */
.input-group .form-select {
  max-width: 180px;
}


/* Marges entre les champs */
.custom-form .form-control,
.custom-form .input-group {
    margin-bottom: 1.5rem;
}

/* Styles pour la section de disponibilité */

/* Style du titre de la section */
.container h3.text-success {
  font-size: var(--h4-font-size);
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 20px;
}

/* Table de disponibilité */
.table-borderless {
  width: 100%;
  margin-top: 20px;
  color: var(--dark-color);
}

.table-borderless th {
  font-size: var(--btn-font-size);
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}

.table-borderless td {
  vertical-align: middle;
  font-size: var(--p-font-size);
}

/* Boutons radio pour Oui/Non */
.table-borderless label {
  margin-right: 15px;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--p-color);
}

.table-borderless input[type="radio"] {
  accent-color: var(--primary-color);
  margin-right: 10px;
}

/* Style des menus déroulants pour les heures */
.table-borderless .form-select {
  width: 75px;
  display: inline-block;
  margin-right: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  padding: 5px 25px;
  background-color: var(--white-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.table-borderless .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 5px rgba(0, 128, 128, 0.3);
  outline: none;
}

/* Style du bouton de demande de RDV */
.btn-primary {
  background-color: var(--custom-btn-bg-color);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  padding: 10px 20px;
  border-radius: var(--border-radius-large);
  border: none;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background-color: var(--custom-btn-bg-hover-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

        .body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }

        .navbar {
            background-color:var(--secondary-color);
        }

        .navbar .nav-link {
            color: white;
        }

        .navbar .nav-link:hover {
            color: #c2f0c2;
        }

        .main-title {
            margin-top: 30px;
            text-align: center;
            font-size: 2rem;
            color: var(--secondary-color);
        }

        .table-container {
            margin: 30px auto;
            max-width: 1000px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }

        .table {
            width: 100%;
            margin-bottom: 1rem;
            background-color: transparent;
        }

        .table th {
            background-color: var(--secondary-color);
            color: white;
        }

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

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

        .btnrdv {
            margin-top: 10px;
            padding: 5px 10px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .btnrdv:hover {
            background-color: var(--secondary-color);
        }


        .jumbotron{
          position:relative;
            padding: 250px 0px;
            margin: 0px;
            background-size: cover;
            background-position: center center;
        }
        
        .jumbotron:before{
          content:"";
          position:absolute;
          left:0px;
          top:0px;
          height:100%;
          width:100%;
          background-color:rgba(0, 0, 0, 0.02);
        }
        
        .jumbotron h1{
          color:#04B404;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }
        /* Extra Small Devices */ 
@media only screen and (min-width : 480px) {
  .jumbotron .h1,
  .jumbotron h1{
  font-size:45px;
  margin-top:-110px;	
}
}

/* Extra Small Devices */ 
@media only screen and (max-width : 480px) {
  .jumbotron .h1,
  .jumbotron h1{
  font-size:25px;
  margin-top:-110px;	
}
}

/* Style du menu déroulant */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--white-color);
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: var(--border-radius-medium);
  padding: 50px 10px 13px;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu a {
  color: var(--dark-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-toggle {
  color: #ffffff;
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}

.dropdown-toggle:hover {
  color: var(--secondary-color);
}

.color1{color: #086F98;}     /* Blue Color */
.color2{color: #fff;}     /* Light Grey Color */
.color3{color: #303b41;}     /* Dark Color */
.inverse{color: #fff;}       /* White Color */

.bgcolor1{background-color: #086F98;}     /* Blue Color Background */
.bgcolor2{background-color: #ffffff;}     /* Yellow Color Background */
.bgcolor3{background-color: #303b41;}     /* Dark Color Background */
.bginverse{background-color: #fff}        /* White Color Background */

/**********************/
/***** Mobile CSS *****/
/**********************/

/* Large Devices, Dektops */
@media only screen and (min-width: 1400px){
  .coming-soon .left-block,
  .coming-soon .right-block{
  padding:80px;
}
}

/* Medium Devices, Laptops */
@media only screen and (min-width: 992px){
  
  .header-2{
      position: absolute;
  }
  
  .health-tips{
  background-size: contain;
}
  
  .coming-soon .left-block, .coming-soon .right-block{
      float: none;
      display: table-cell;
      vertical-align: top;
      height: 100vh;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px){
  
  .p20{padding:20px;}
  .p40{padding:40px;}
  .p60{padding:60px;}
  .p80{padding:80px;}
  .p100{padding:100px;}
  
  .header-1 .topbar .contact,
  .header-2 .topbar .contact,
  .header-3 .topbar .contact{
      width: inherit;
      float: right;
      text-align: left;
  }
  
  .header-1 .topbar .social,
  .header-2 .topbar .social,
  .header-3 .topbar .social{
      width: inherit;
      float: left;
      text-align: left;
  }
  
  .header-1 .emergency{
      padding: 18px 0px 18px 18px;
  }
  
.emergency{
      padding: 18px 0px 18px 18px;
      align-items: right;
  }
  
  .flex{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
  }
  
  .not-found .nf-icon{
      text-align: right;
  }
  
  .not-found .nf-icon,
  .not-found .nf-text{
      display: table-cell;
      vertical-align: middle;
  }
  
  #fixed-appointment{
      display: block;
  }
  
  .app-download-light,
  .app-download-dark{
      background-size: 42%;
  }
  
  .call-out-1 .right,
  .call-out-1 .left{
  text-align:left;
}

.call-out-1 .right i,
.call-out-1 .right .call-us{
    display: table-cell;
    vertical-align: middle;
}

.call-out-1:after{
  width:50%;
  left:50%;
}

.gmap-address .address{
    top:50%;
    left: 50px;
    padding: 500px 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
}

.navbar i.fa-mobile {
  font-size: 60px;
  color: white;
  margin-top: -10px;
  float: left;
  margin-left: -30px; /* Position verticale par défaut */
}

@media (max-width: 991px) and (min-width: 320px) {
  .emergency {
    flex-direction: row; /* Les éléments restent en ligne */
    justify-content: center; /* Aligne à gauche */
    gap: 10px; /* Espace constant entre l'icône et le texte */
  }

  .emergency i.fa-mobile {
    margin-right: 170px;
    margin-bottom: 2px;
  }
}

.emergency .number{
    font-size: 24px; /* Réduit la taille du texte */
    color: #fff;
    font-weight: bold;
    display: inline-block;
	line-height: 0.7;
	padding-left:10px;
    }
	
.emergency .sub-text {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding-left:10px;
  line-height: 0.7;
}

.emergency i.fa-mobile {
    font-size: 62px;
    margin-top: -10px;
}

    
.contact-list{
  list-style: none;
  padding: 0px;
  font-size: 16px;
}

.contact-list li{
  padding-bottom: 8px;
  overflow: hidden;
}

.contact-list li:last-child{
  margin-bottom: 0px;
}

.contact-list li i{
  float: left;
  font-size: 14px;
  color: #086F98;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-list-2x{
  font-size: 20px;
}

.contact-list-2x li i{
  font-size: 18px;
  height: 35px;
  width: 35px;
  line-height: 35px;
}

.call-out-2{
    display: table;
    margin: 0px auto;
}

.call-out-2 i,
.call-out-2 .call-us{
    display: table-cell;
    vertical-align: middle;
}

.call-out-2 i{
    font-size: 84px;
    padding-right: 25px;
    color: #fff;
}

.call-out-2 .call-us{
    font-size: 38px;
    font-weight: 600;
    text-align: left;
    color: #fff;
    line-height: 34px;
}

.call-out-2 .call-us strong{
    vertical-align: top;
    line-height: 20px;
}

.contact-list li i {
  float: left;
  font-size: 14px;
  color: #086F98;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.contact-list-2x li i {
  font-size: 18px;
  height: 35px;
  width: 35px;
  line-height: 35px;
}

tbody {
  display: table-row-group;
  vertical-align: middle;
  unicode-bidi: isolate;
  border-color: inherit;
  border-top-color: 0;
  border-right-color: 0;
  border-bottom-color: 0;
  border-left-color: 0;
}

/* Footer 1 */

.footer-1{
    border-top: 6px solid #086F98;
}

.footer-1 .footer-pri{
    background-color: #f2f2f2;
}

.footer-1 .footer-sec{
    background-color: #e5e5e5;
    padding: 25px 0px;
    text-align: center;
    color: #9c9c9c;
}

.footer-1 .widget{
    margin: 20px 0px;
    position: relative;
    color: #303b41;
    overflow:hidden;
}

.footer-1 .widget .heading{
    color: #303b41;
}

.footer-1 hr{
    border-color: rgba(0, 0, 0, 0.06);
}

.footer-1 .widget .contact{
    list-style: none;
    padding: 0px;
    font-size: 16px;
}

.footer-1 .widget .contact li{
    padding: 3px 0px;
}

.footer-1 .widget .contact li i{
    margin-right: 10px;
    color: #086F98;
}

/* Icon Widget */

.footer-1 .widget-icon{
    position: relative;
    font-size: 26px;
    background-color: #086F98;
    text-align: center;
    margin: 0px;
}

.footer-1 .widget-icon strong{
    color: #fff;
    display: block;
    font-size: 0.6em;
    margin-bottom: 8px;
}

.footer-1 .widget-icon i{
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    vertical-align: middle;
    margin-right: 6px;
}

.footer-1 .widget-icon span{
    color: rgba(255, 255, 255, 0.8);
    vertical-align: middle;
}

/* List Widget */

.footer-1 .widget-links ul{
    list-style: none;
    padding: 0px;
}

.footer-1 .widget-links ul li{
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.footer-1 .widget-links ul li:before{
    font: normal normal normal 8px/1 FontAwesome;
    content: "\f10c";
    color: #086F98;
    position: absolute;
    top: 9px;
    left: 0px;
    font-weight: 600;
}

.footer-1 .widget-links ul li a{
    color: #303b41;
    padding: 3px 5px;
    display: inline-block;
    -webkit-transition: 350ms ease all;
    transition: 350ms ease all;
}

.footer-1 .widget-links ul li:hover a{
    color: #086F98;
}

.footer-1 .widget-links ul li:hover:before{
    color: #086F98;
}

/* Flickr Widget */

.footer-1 .widget-flickr ul{
    list-style: none;
    padding: 0px;
}

.footer-1 .widget-flickr ul li{
    float: left;
    width: 30%;
    margin-right: 3%;
    margin-bottom: 3%;
}

.footer-1 .widget-flickr ul li img{
    width:100%;
}

/* Message Widget */

.footer-1 .widget-message{
    position: relative;
    text-align: center;
    margin-top: 0px;
    padding: 36px 0px;
    font-family: 'webfont-medical-icons';
}

.footer-1 .widget-message:before{
    content: "\e623";
    position: absolute;
    color: #e5e5e5;
    font: normal normal normal 100px/1 webfont-medical-icons;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footer-1 .widget-message:after{
    content: "\e623";
    position: absolute;
    width: 20%;
    height: 0px;
    bottom: 0px;
    left: 50%;
    background-color: #d5d5d5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer-1 .widget-message p{
    font-size: 26px;
    position: relative;
    max-width: 65%;
    margin: auto;
    text-align: center;
}

/* Twitter Widget */

.footer-1 .widget-twitter p{
    font-size: 18px;
    text-align: left;
}



.sidebar .widget{
  margin-top: -40px;
  margin-bottom: 60px;
  padding: 30px;
  border: 5px solid #f2f2f2;
  overflow: hidden;
}

/* Categories Widget */

.widget-categories ul{
  list-style: none;
  padding: 0px;
}

.widget-categories .widget-list li{
  border-bottom: 1px solid #f2f2f2;
  position: relative;
}

.widget-categories .widget-list li:before{
  font: normal normal normal 8px/1 FontAwesome;
  content: "\f105";
  color: #086F98;
  vertical-align: middle;
  line-height: 13px;
  font-size: 13px;
  height: 16px;
  width: 16px;
  border: 1px solid #086F98;
  text-align: center;
  border-radius: 50%;
  left: 0px;
  position: absolute;
  top: 8px;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}

.widget-categories .widget-list li:hover:before{
  background-color: #086F98;
  color: #fff;
}

.widget-categories .widget-list li a{
  padding: 7px 0px;
  font-weight: 600;
  padding-left: 30px;
  display: inline-block;
}

/* Tags Widget */

.widget-tags .widget-list{
  list-style: none;
  padding: 0px;
}

.widget-tags .widget-list li{
  float: left;
  margin:5px;
  overflow: hidden;
}

.widget-tags .widget-list li a{
  background-color: #f7f7f7;
  padding: 5px 10px;
  display: inline-block;
  font-weight: 400;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}

.widget-tags .widget-list li a:hover{
  background-color: #086F98;
  color: #fff;
}

/* Recent Blog Widget */

.widget-blogs .widget-list{
  list-style: none;
  padding: 0px;
}

.widget-blogs .widget-list li{
  padding: 10px 10px 10px 20px;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
  border-radius: 4px;
}

.widget-blogs .widget-list li:before{
  font: normal normal normal 8px/1 FontAwesome;
  content: "\f10c";
  color: #086F98;
  left: 0px;
  font-weight: 600;
  position: absolute;
  top: 16px;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}

.widget-blogs .widget-list li:last-child{
  border: 0px;
  padding-bottom: 0px;
}

.widget-blogs .widget-list li a{
  font-weight: 600;
}

.widget-blogs .widget-list li p{
  font-size: 14px;
  margin-bottom: 0px;
}

.widget-blogs .widget-list li:hover{
  background-color: #f9f9f9;
}

/* Testimonial Widget */

.widget-testimonial .slider-items{
  text-align: center;
}

.widget-testimonial .slider-items .testi-img img{
  max-width: 90px;
  margin: auto;
}

.widget-testimonial .slider-items .testi-text i{
  display: block;
  font-size: 30px;
  color: #086F98;
  margin: 15px 0px 10px;
}

.widget-testimonial .slider-items .said-by{
  color: #086F98;
  margin-top: 5px;
  display: block;
  font-weight: 400;
}

/* Appointment Form Widget */

.widget-appointment{
  background-color: #086F98;
}

.widget-appointment .heading{
  color: #fff;
}

/* Departments Widget */

.widget-departments ul{
  list-style: none;
  padding: 0px;
}

.widget-departments ul li{
  width: 48%;
  margin-right: 1%;
  margin-bottom: 2%;
  padding: 10px;
  display: inline-block;
  text-align: center;
  background-color: #f7f7f7;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}

.widget-departments ul li .list-icon{
  color: #086F98;
  font-size: 30px;
  display: block;
}

.widget-departments ul li .list-text{
  font-weight: 400;
}

.widget-departments ul li:hover{
  background-color: #f5f5f5;
}

/* Doctors Widget */

.widget-doctors ul{
  list-style: none;
  padding: 0px;
}

.widget-doctors ul li{
  padding: 10px 0px;
  border-bottom: 1px solid #f2f2f2;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}

.widget-doctors ul li:first-child{
  padding-top: 0px;
}

.widget-doctors ul li:last-child{
  border:0;
}

.widget-doctors ul li img{
  max-height: 75px;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}

.widget-doctors ul li .doctor-img,
.widget-doctors ul li .doctor-name{
  display: table-cell;
  vertical-align: middle;
}

.widget-doctors ul li .doctor-name a{
  display: block;
  font-weight: bold;
}

.widget-doctors ul li:hover{
  background-color: #f7f7f7;
}



/* Social Media */

.social{
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.social > li{
  display: inline-block;
  margin: 5px;
}

.social > li:first-child{
  margin-left: 0px;
}

.social > li a{
  position: relative;
  background-color: #086F98;
  height: 25px;
  width: 25px;
  border-radius: 4px;
  text-align: center;
  line-height: 26px;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
  z-index: 1;
}

.social > li a:hover{
  background-color: #fff;
}

.social-2x > li a{
  font-size: 20px;
  height: 40px;
  width: 40px;
  line-height: 42px;
}

.social-box{
  padding: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin: 20px 0px;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}

.social-box:hover{
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
}

.social-box > a{
  color: #086F98;
  display: inline-block;
  text-align: center;
  font-size: 50px;
}

.social-box .count{
  display: block;
  font-size: 20px;
  color: #086F98;
  font-weight: 600;
  letter-spacing: 1px;
}

.loader-backdrop{
    position: fixed;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999999;
    background-color: #fff;
}

.loader{
    position: absolute;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    border: 6px solid #f2f2f2;
    border-left: 6px solid #086F98;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: circle 1.1s infinite linear;
    animation: circle 1.1s infinite linear;
}

.loader{
    position: absolute;
    border-radius: 100px;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    border: 6px solid #f2f2f2;
    border-left: 6px solid #086F98;
    margin-top: -50px;
    margin-left: -50px;
    -webkit-animation: circle 1.1s infinite linear;
    animation: circle 1.1s infinite linear;
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.modal-backdrop.in{
    opacity: 0.75;
}

/* Back To Top */

#back{
    display: none;
    position: fixed;
    right: 25px;
    bottom: 20px;
    height: 40px;
    width: 40px;
    background-color: #086F98;
    color: #fff;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    z-index: 99;
}

.alert-cookies{
    background-color: #303b41;
    color: #fff;
    position: fixed;
	z-index: 9999;
    bottom: 0px;
    width: 100%;
    margin-bottom: 0px;

}

.alert-cookies .alert-link{
    color: rgba(255, 255, 255, 0.8);
	
	opacity: 0;
}

@media (max-width: 768px)	{
.disparition 	{
	display: none;
    visibility: hidden;
				}
							}
							}
@media (min-width: 768px)	{
.apparition	 	{
	display: none;
    visibility: hidden;
				}