/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

html {
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    background: #252422;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #fff;
}

a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus {
    color: #fe4101;
    outline: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #000000;
}

.section-title {
    padding-bottom: 20px;
}

.section-title h2 {
    margin-top: 0;
}

.section-btn {
    background: #fe4101;
    border: 0;
    border-radius: 3px;
    color: #ffffff;
    font-size: inherit;
    font-weight: 500;
    padding: 14px 20px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
}

.section-btn:hover {
    transform: translateY(-5px);
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

.border-top {
    border-top: 1px solid #f2f2f2;
    margin-top: 4em;
    padding-top: 2.5em;
}

.btn-gray {
    background: #393939;
}

.btn-blue {
    background: #fe4101;
}

/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: inherit;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -1px;
}

h5 {
    font-weight: 500;
}

h1 {
    color: #fff;
    font-size: 5em;
}

h2 {
    color: #fff;
    font-size: 3em;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 0;
}

h4 {
    color: #fff;
    font-size: 1.8em;
    padding-bottom: 2px;
}

h6 {
    letter-spacing: 0;
    font-weight: normal;
}

p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #000;
}

.loader {
  font-size: 2.5rem;
  font-family: sans-serif;
  font-weight: bold;
  position: relative;
  width: max-content;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.sound,
.lab {
  display: inline-block;
  position: relative;
}

.sound {
  color: #fe4101;
  animation: moveInFromLeft 1s ease-in-out forwards;
}

.lab {
  color: #ffffff;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
  animation: moveInFromRight 1s ease-in-out forwards;
}

@keyframes moveInFromLeft {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(0%); }
}

@keyframes moveInFromRight {
  0% { transform: translateX(60%); }
  100% { transform: translateX(0%); }
}

.wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: pulseRing 0.6s ease-out forwards;
  z-index: 1;
  pointer-events: none;
}

.wave1 {
  animation-delay: 1s;
}

.wave2 {
  width: 30px;
  height: 30px;
  border-width: 1px;
  animation-delay: 1.2s;
}

.wave3 {
  width: 50px;
  height: 50px;
  border-width: 1px;
  animation-delay: 1.4s;
}

@keyframes pulseRing {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0.8;
    border-width: 2px;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
    border-width: 1px;
  }
}

/*---------------------------------------
      MENU              
  -----------------------------------------*/

.logo {
    width: 15%;
    height: auto;
    margin-left: 10px;
}

header {
    background: #000;
    display: flex;
    height: 45px;
    justify-content: center; 
}

header .col-md-8 {
    padding-right: 0;
}


header span {
    font-size: 12px;
    line-height: 24px;
    padding-top: 12px;
}

header a,
header span {
    color: #ffffff;
}

header span {
    font-weight: 500;
    display: inline-block;
    padding: 11px 15px;
}

header span.date-icon {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    padding-right: 19px;
    padding-left: 19px;
}

header span i {
    color: #fe4101;
    margin-right: 5px;
}

/*---------------------------------------
      NAVBAR              
  -----------------------------------------*/

.name {
    color: #fff;
}

.slogan .fa {
    color: #fe4101;
}

.navbar {
    background-color: black !important;
}

.navbar a:hover {
    cursor: pointer;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    font-weight: 1000;
    font-size: large;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
}

.navbar .navbar-nav .nav-item::after {
    position: relativ;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #fe4101;
    width: 0%;
    content: "";
    height: 2px;
    transition: all 0.5s;
}

.navbar .navbar-nav .nav-item:hover::after {
    width: 100%;
}

#navbarSupportedContent {
    margin-right: 50px;
}

/*---------------------------------------
     SECTIONS GENERAL       
  -----------------------------------------*/

#welcome,
#news,
#services {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

#news,
#service {
    text-align: center;
}

.news_content  img {
  max-width: 100%;
  height: auto;
  display: block;
}

#google-map {
    line-height: 0;
    margin: 0;
    padding: 0;
}

/*---------------------------------------
      SECTIONS - HOME              
  -----------------------------------------*/

#home h1 {
    color: #ffffff;
    padding-bottom: 10px;
    margin-top: 0;
}

#home h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    line-height: inherit;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.slider .container {
    width: 100%;
}

.slider .owl-dots {
    position: absolute;
    top: 575px;
    width: 100%;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px 7px;
    border: 2px solid #d9d9d9;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #ffffff;
    border-color: transparent;
}

.slider .caption {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
    color: #fff;
}

.slider .item {
    height: 650px;
}


/*---------------------------------------
      SECTIONS - WELCOME             
  -----------------------------------------*/

#welcome {
    background-color: #1A1A1A;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 150px;
}

.profile img,
.profile figcaption {
    display: inline-block;
    vertical-align: top;
    margin-top: 1em;
}

.profile img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
    margin-right: 1em;
}

.profile figcaption h3 {
    margin-top: 0;
}

#welcome h6 {
    color: #858585;
    margin: 0;
}

.gallery-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  transform-origin: top left;
}

@media (max-width: 768px) {
  .gallery-wrapper {
    transform: scale(0.9);
    max-width: none;
  }
}

.gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: auto 0 auto;
    place-items: center;
}

.gallery > img {
    width: 180px;
    aspect-ratio: 1;
    object-fit: cover;
    transition: .35s;
    filter: grayscale(0%);
    cursor: pointer;
}

@media only screen and (min-width: 768px) {

    .gallery > img {
        width: 300px;
        aspect-ratio: 1;
        object-fit: cover;
        transition: .35s;
        filter: grayscale(0%);
        cursor: pointer;
    }
}

.gallery > img:hover {
    filter: grayscale();
}

.gallery > img:nth-child(1) {
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
}

.gallery > img:nth-child(2) {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.gallery > img:nth-child(3) {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
}

.gallery > img:nth-child(4) {
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
}

.gallery > img:nth-child(5) {
    clip-path: polygon(50% 0, 100% 100%, 0% 100%);
}

.gallery > img:nth-child(6) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
}


/*---------------------------------------
      SECTIONS - SERVICES             
  -----------------------------------------*/

.justify {
    text-align: justify;
}

#services h4 {
    margin-bottom: 50px;
}

#services .card {
    min-height: 540px;
    background-color: #1A1A1A;
}

#services li {
    color: #757575;
}

#services .card a {
    color: #fff;
}

#services{
    background-color: #1A1A1A;
}


.container .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.container .card-body {
    flex-grow: 1;
}


.container .card {
    min-height: 300px;
}

.card-title {
    text-transform: uppercase;
}

.list-nobullets {
    list-style-type: none;
}

.list-bullets {
    list-style: none;
}

.list-bullets li {
    display: flex;
    align-items: center;
}

.list-bullets li::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fe4101;
    border: 2px solid #fe4101;
    display: block;
    margin-right: 1rem;
}

#services .cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

#services .cards_item {
  display: flex;
  padding: 1rem;
}

#services .card_image {
  position: relative;
  max-height: 250px;
}

#services .card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 40rem) {
  #services .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  #services .cards_item {
    width: 33.3333%;
  }
}

#services .card {
  background-color: #1A1A1A;
  border-radius: 0.25rem;
  filter: drop-shadow(0 20px 14px rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#services .card_content {
  position: relative;
  padding: 16px 12px 32px 24px;
  margin: 16px 8px 8px 0;
  max-height: 370px;
  overflow-y: scroll;
}

#services .card_content::-webkit-scrollbar {
  width: 8px;
}

#services .card_content::-webkit-scrollbar-track {
  box-shadow: 0;
  border-radius: 0;
}

#services .card_content::-webkit-scrollbar-thumb {
  background: #fe4101;
  border-radius: 15px;
}

#services .card_title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

#services .card_title::after {
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fe4101;
  content: "";
}

#services hr {
  margin: 24px auto;
  width: 50px;
  border-top: 2px solid #fe4101;
}

#services .card_text p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
}

#services .card_text p:last-child {
  margin: 0;
}


/*---------------------------------------
     SECTIONS - MAPS              
  -----------------------------------------*/

.maps-container {
    position: relative;
    height: 420px;
    background-color: #1A1A1A;
    overflow: hidden;
}

#google-map {
    width: 100%;
    height: 100%;
}

#google-map iframe {
    padding-top: 35px;
    padding-bottom: 35px;
    width: 100%;
    height: 100%;
    border: 0;
}

.maps-container .card {
    background-color: #1A1A1A;
}

.responsive_cookieconsent_background {
    position: absolute;
    left: 0;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.responsive_cookieconsent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: #1A1A1A;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    z-index: 11;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

#cookieconsentbutton {
    background-color: #252422;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

#cookieconsentbutton:hover {
    background-color: #252422;
}

/*---------------------------------------
     COOKIES              
  -----------------------------------------*/

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1A1A1A;
  color: white;
  padding: 20px;
  z-index: 1000;
  filter: drop-shadow(0 -2px 8px rgba(0, 0, 0, 0.4));
}

.cookie-banner-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.cookie-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

#accept-cookies,
#decline-cookies {
  background-color: #252422;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

#accept-cookies:hover,
#decline-cookies:hover {
  background-color: #3b3a38;
}


/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

footer {
    margin-top: 20px;
    padding-top: 80px;
    padding-bottom: 40px;
}

footer h4 {
    padding-bottom: 5px;
}

footer a {
    color: #757575;
}

footer a:hover {
    color: #fe4101;
}

.contact-info {
    padding-top: 10px;
}

.contact-info .fa {
    background: #393939;
    border-radius: 100%;
    color: #ffffff;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 5px;
    margin-bottom: 2px;
}

.latest-stories {
    margin-bottom: 20px;
}

.stories-image,
.stories-info {
    display: inline-block;
    vertical-align: top;
}

.stories-image img {
    border-radius: 100%;
    width: 65px;
    height: 65px;
}

.stories-info {
    margin-left: 15px;
}

.stories-info h5 {
    margin-bottom: 2px;
}

.stories-info span {
    color: #858585;
    font-size: 12px;
}

.opening-hours p {
    line-height: 18px;
}

.opening-hours span {
    font-weight: 500;
    display: inline-block;
    padding-left: 10px;
}

.copyright-text p,
.footer-link a {
    color: #858585;
    font-size: 12px;
    font-weight: 500;
}

.footer-link a {
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    margin-top: 4px;
}

.angle-up-btn {
    position: relative;
    bottom: 4em;
    display: block;
}

.angle-up-btn a {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 3px;
    font-size: 20px;
    color: #393939;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    transition: transform 0.1s ease-in;
    transform: translateX(0);
}

.angle-up-btn a:hover {
    background: #fe4101;
    color: #ffffff;
    transform: translateY(-5px);
}


/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
    position: relative;
    padding: 0;
    margin: 0;
}

.social-icon li {
    display: inline-block;
    list-style: none;
}

.social-icon li a {
    border-radius: 100px;
    color: #464646;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    position: relative;
}

.social-icon li a:hover {
    background: #fe4101;
    color: #ffffff;
}

/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media only screen and (max-width: 1200px) {
    h1 {
        font-size: 4em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 1.5em;
    }

    header {
        height: inherit;
    }

    header span.date-icon {
        border: 0;
        padding-right: 0;
        padding-left: 0;
    }

    header span.email-icon {
        padding-top: 0;
    }

    .navbar-default .navbar-nav li a {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .slider .item {
        background-position: center;
    }

    header {
        padding-bottom: 10px;
    }

    header .text-align-right {
        text-align: left;
    }

    header span {
        padding-top: 0;
        padding-left: 0;
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: transparent;
    }

    .navbar-default .navbar-nav li.appointment-btn {
        margin-left: 15px;
    }

    .navbar-default .navbar-nav li a {
        display: inline-block;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .news-sidebar {
        margin-top: 2em;
    }

    #appointment-form {
        padding-top: 4em;
        padding-bottom: 4em;
    }

    footer {
        padding-top: 60px;
        padding-bottom: 0;
    }

    .footer-thumb {
        padding-bottom: 10px;
    }

    .border-top {
        text-align: center;
    }

    .copyright-text {
        margin-top: 10px;
    }

    .angle-up-btn {
        bottom: 10em;
    }
}

@media only screen and (max-width: 639px) {
    h1 {
        font-size: 3em;
        line-height: 1.2em;
    }

    h2 {
        font-size: 2.1em;
    }

    h4 {
        font-size: 1.4em;
    }

    #home h3 {
        font-size: 11px;
        letter-spacing: 1px;
    }

}


