/*
    Author: Code Jungle
*/

/* Jost-100 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 100;
  src: url("./fonts/jost-v20-latin-100.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 200;
  src: url("./fonts/jost-v20-latin-200.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/jost-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/jost-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/jost-v20-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/jost-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/jost-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 800;
  src: url("./fonts/jost-v20-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Jost";
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/jost-v20-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  /*   --primary-color: #ff651c; */
  --primary-color: #019ddb; /*maria blau*/
  --secondary-color: #fff;
  --ferien-color: #eb504a;
  /*  --secondary-color: red; */
  /* --primary-color: #73b6be; */
  /* --dark-color: #373737; */
  --dark-color: #c59a22;
  --dark-color-light: #efd770;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #555;
}

img {
  max-width: 100%;
}

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

a:hover {
  color: #cb612f;
  text-decoration: none;
}

/* Tran Arztpraxis */

.text-gold {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 50px;
}
.text-primary {
  color: var(--primary-color) !important;
  font-size: 50px;
}

.text-dark {
  color: var(--primary-color);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  background: transparent;
  transition: 0.2 background;
}
.main-header .navbar {
  padding: 15px 0;
}
.main-header .navbar-nav > li {
  padding: 0 10px;
}

.main-header .navbar-nav > li > .nav-link {
  padding: 0 5px;
  line-height: 35px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--dark-color);
  letter-spacing: 3px;
  position: relative;
}

.main-header .navbar-nav > li > .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: ease all 0.3s;
}

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

.main-header .navbar-nav > li > .nav-link:hover::after,
.main-header .navbar-nav > li > .nav-link.active::after {
  left: 0;
  right: auto;
  width: 100%;
}

@media (max-width: 991px) {
  .main-header .navbar-collapse {
    border-bottom: 2px solid var(--dark-color);
    border-top: 2px solid var(--dark-color);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
  }
  .main-header .navbar-nav > li + li {
    border-top: 1px solid rgba(55, 55, 55, 0.1);
  }
  .main-header .navbar-nav > li > .nav-link {
    line-height: 50px;
  }

  .main-header .navbar-nav > li > .nav-link::after {
    display: none;
  }

  .main-header .navbar-toggler {
    display: flex;
    flex-direction: column;
    border: none;
    padding: 4px 9px;
    outline: none;
    box-shadow: none;
  }

  .main-header .navbar-toggler span {
    width: 25px;
    height: 2px;
    background: var(--dark-color);
    margin: 4px 0;
    transition: 0.3s;
  }

  .main-header .navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .main-header .navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
  }
  .main-header .navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* .fixed-header  */

.main-header {
  /* background: rgba(255, 255, 255, 0.9); */
  background: #fff;
  /*   backdrop-filter: blur(10px); */

  box-shadow: 0 0.125rem 0.25rem rgba(55, 55, 55, 0.1);
}

.colored-btn {
  padding: 8px 20px;
  border: 2px solid var(--primary-color);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: ease all 0.3s;
  display: inline-block;
  background: var(--primary-color);
  /* color: #fff; */
  color: black;
  box-shadow: 6px 6px 0 -1px var(--dark-color);
}

.colored-btn:hover {
  /* color: #fff; */
  color: black;
  text-decoration: underline;
  background: var(--dark-color);
  border-color: var(--dark-color);
  box-shadow: 5px 5px 0 -2px var(--primary-color);
}

/* section service hintergrund */
.bg-gray {
  /*   background: rgba(254, 196, 72, 0.1); */
  background: hsl(0, 0%, 98%);
  background: var(--primary-color);
}

/* section footer hintergrund */
.bg-dark {
  /*  background-color: var(--dark-color) !important; */
  /*  background-color: #73b6be !important; */
  /* background-color: #039ddb !important; */
  background-color: var(--primary-color-khanh) !important;
}

.bg-1 {
  background-color: #9bd3d0;
}

.bg-2 {
  background-color: #fec447;
}

.bg-3 {
  background-color: #feccb5;
}

.bg-4 {
  background-color: #92b5ff;
}

.bg-5 {
  background-color: #c4d39b;
}

.bg-6 {
  background-color: #d2ceff;
}

.bg-phone {
  background-color: black;
}
.bg-email {
  background-color: #1d2f3d;
}

.bg-address {
  background-color: green;
}

.bg-timer {
  background-color: #874107;
}
main {
  position: relative;
  z-index: 1;
}

/* Home Section */
.home-section {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 100px;
  background: #fff; /* hintergrund home section */
}

@media (max-767px) {
  .home-section {
    padding-bottom: 70px;
  }
}

.home-section .container {
  position: relative;
  z-index: 1;
}

.home-section .home-intro h6 {
  font-weight: 600;
  color: var(--dark-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 30px;
}

@media (max-width: 767px) {
  .home-section .home-intro h6 {
    margin: 0 0 30px;
  }
}

.home-section .home-intro h1 {
  font-size: 70px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 35px;
  line-height: 1;
}

@media (max-width: 1200) {
  .home-section .home-intro h1 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .home-section .home-intro h1 {
    margin: 0 0 25px;
    font-size: 45px;
  }
}

.home-section .home-intro h1 span {
  border-bottom: 2px solid var(--primary-color);
}

.home-section .home-intro p {
  font-size: 20px;
}

@media (max-width: 767px) {
  .home-section .home-intro p {
    font-size: 18px;
  }
}

.home-image img {
  height: 500px;
  width: 500px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--dark-color);
  position: relative;
  z-index: -2;
}

@media (max-width: 767px) {
  .home-image img {
    height: 300px;
    width: 300px;
  }
}
.home-mapto {
  color: #555;
}
.home-mapto:hover {
  text-decoration: underline;
  color: #555;
}


/* Sommerferien */
.sommeferien {
  background: var(--ferien-color);
  padding: 40px 40px;
  border-radius: 10px;
}

.sommerferien-text {
  color: whitesmoke;
  font-size: 26px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .sommeferien {
    background: var(--ferien-color);
    padding: 30px 30px;
    border-radius: 10px;
  }
  .sommerferien-text {
    color: whitesmoke;
    font-size: 20px;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  .sommeferien {
    background: var(--ferien-color);
    padding: 30px 30px;
    border-radius: 10px;
  }
  .sommerferien-text {
    color: white;
    font-size: 30px;
    font-weight: 400;
  }
}

@media (max-width: 767px) {
  .sommeferien {
    background: var(--ferien-color);
    padding: 30px 30px;
    border-radius: 10px;
  }
  .sommerferien-text {
    color: white;
    font-size: 21px;
    font-weight: 400;
  }
}
.bx-sun {
  color: yellow;
  /*   width: 40px;
  height: 40px; */
}

.bx-sun i {
  font-size:;
}

.notfall {
  background: red;
  padding: 40px 40px;
  border-radius: 10px;
}

.notfall-text {
  color: black;
  font-size: 25px;
  font-weight: 600;
}

.spital {
  color: black;
  font-size: 25px;
  font-weight: 600;
}

.medarium {
  color: black;
  font-size: 25px;
  font-weight: 600;
}

/* Animation Element */

.anim-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.anim-elements .anim-element {
  position: absolute;
  font-size: 30px;
}

.anim-elements .anim-element:nth-child(1) {
  top: 12%;
  left: 15%;
  color: var(--primary-color);
  animation: aniOne 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(2) {
  bottom: 15%;
  left: 45%;
  color: cornflowerblue;
  animation: aniTwo 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(3) {
  bottom: 20%;
  left: 30%;
  color: cyan;
  animation: aniThree 13s infinite linear alternate;
}
.anim-elements .anim-element:nth-child(4) {
  bottom: 15%;
  right: 25%;
  color: darkseagreen;
  animation: aniFour 13s infinite linear alternate;
}

.anim-elements .anim-element:nth-child(5) {
  top: 18%;
  right: 25%;
  color: var(--dark-color);
  animation: aniThree 13s infinite linear alternate;
}

@keyframes aniOne {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  40% {
    transform: translate(141px, 72px) rotate(75deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(0);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes aniTwo {
  0% {
    transform: translate(0, 0) rotate(0) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  100% {
    transform: translate(0, 0) rotate(0) scale(1);
  }
}

@keyframes aniThree {
  0% {
    transform: translate(-300, 151px) rotate(0);
  }
  100% {
    transform: translate(251px, -200px) rotate(180deg);
  }
}

@keyframes aniFour {
  0% {
    transform: translate(61px, -99px) rotate(0);
  }
  20% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  100% {
    transform: translate(-1px, 0) rotate(180deg);
  }
}

.type-it {
  color: var(--primary-color);
}

.type-gross {
  font-size: 50px;
}

.typed-cursor {
  font-size: 0px;
}

/* Sections */
.section {
  padding: 10px; /* Abstand zu section */
  position: relative;
  padding-bottom: 100px; /* khanh abstand unten */
}

@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }
}

@media (max-width: 767) {
  .section {
    padding: 60px 0;
  }
}

/*khanh p im sercices */
.section-heading {
  margin-top: 150px;
  padding-bottom: 60px;
  text-align: center;
}

@media (max-width: 991px) {
  .section-heading {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .section-heading {
    padding-bottom: 30px;
  }
}

.section-heading h3 {
  font-size: 50px;
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: black;
  color: var(--secondary-color); /* khanh */
}

@media (max-width: 991px) {
  .section-heading h3 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .section-heading h3 {
    font-size: 38px;
  }
}

.about-text p {
  font-size: 18px;
}

.about-image img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  position: relative;
  z-index: -2;
}

.feature-box {
  padding: 40px;
  /* border: 2px solid var(--dark-color); */
  border: 1px solid var(--secondary-color); /* khanh Umrahmung */
  box-shadow: 0 0 0 0 var(--dark-color-khanh);
  display: flex;
  transition: 0.3s box-shadow;
}

.feature-box:hover {
  box-shadow: 5px 5px 0 0 var(--dark-color-khanh);
}
/* Font Grösse Leistungen */
.khanh-farbe {
  color: black;
  font-size: 17px;
  color: var(--secondary-color); /* khanh */
}

@media (max-width: 767px) {
  .feature-box {
    padding: 30px;
  }
}

.feature-box .icon {
  width: 70px;
  height: 70px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /*  border: 2px solid var(--dark-color); khanh */
  /*  border: 2px solid gray; */
  background: var(--dark-color);
  color: var(--secondary-color);
  font-size: 32px;
}

.feature-box .content {
  max-width: calc(100% - 70px);
  padding-left: 20px;
}

.feature-box h5 {
  font-size: 24px;
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
  color: var(--secondary-color);
}

@media (max-width: 767) {
  .feature-box h5 {
    font-size: 22px;
  }
}

.feature-box p {
  margin: 0;
  color: var(--dark-color);
  font-size: 17px;
  color: black;
  color: var(--secondary-color);
}

/* My Skills */

.feature-box-small {
  padding: 15px;
  align-items: center;
}

.feature-box-small:hover {
  box-shadow: 3px 3px 0 0 var(--dark-color);
}

.feature-box-small .icon {
  width: 50px;
  height: 50px;
}

.feature-box-small h6 {
  margin: 0;
  color: var(--dark-color);
  padding-left: 15px;
}

/* Portfolio */

.portfolio-box .portfolio-img {
  position: relative;
  border: 2px solid var(--dark-color);
  box-shadow: 0 0 0 0 var(--dark-color);
  transition: 0.3s;
}

.portfolio-box .portfolio-img:hover {
  box-shadow: 5px 5px 0 0 var(--dark-color);
}

.portfolio-box .portfolio-text span {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 101, 28, 0.2);
  color: var(--dark-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.portfolio-box .portfolio-text h4 {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .portfolio .portfolio h4 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.portfolio-box .portfolio-text .colored-btn {
  font-size: 12px;
}

/* Contact  */

.contact-form {
  border: 2px solid var(--dark-color);
  padding: 35px;
  background: #fff;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 25px;
  }
}

.contact-form .lead {
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 30px;
}

.contact-form .form-control {
  border-radius: 0;
  border: 1px solid var(--dark-color);
  box-shadow: none;
  padding: 0.575rem 0.7rem;
}

.contact-infos {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-infos li {
  display: flex;
  position: relative;
  padding-bottom: 35px;
}

.contact-infos li:last-child {
  padding-bottom: 0;
}

.contact-infos .icon {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 25px;
}
/* Praxis Adresse, Telefon, Email, Öffnungzeiten*/
.contact-infos h5 {
  font-size: 15px;
  margin: 0 0 5px;
  /* color: rgba(255, 255, 255, 0.8); */
  color: black;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-infos p {
  margin: 0;
  /* font-size: 20px; */
  font-size: 16px;  /* khanh */
  color: #fff;
  font-weight: 500;
  color: black;
}
.telefon p {
  font-size: 16px;
}
.contact-title h3 {
  color: black;
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  font-weight: 200;
  text-transform: uppercase;
}
/* Footer */

.footer {
  background-color: var(--dark-color);
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.footer .nav a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
}

.footer .nav a:hover {
  color: var(--primary-color);
}

.footer .nav a + a {
  margin-left: 18px;
}

.footer {
  /*   background: #b68809; */
  background-color: #1d2f3d;
  background: var(--dark-color);
  background: #fff;
  /* border: 1px solid black; */
  background: var(--primary-color);
  font-size: 17px;
}

#footer-to-home {
  /*  color: black; */
  color: var(--secondary-color);
  font-weight: 350;
}

#footer-to-home a {
  color: black;
  color: var(--secondary-color);
  font-weight: 350;
}

#footer-to-home a:hover {
  color: black;
  text-decoration: underline;
  color: var(--secondary-color);
  font-weight: 350;
}

@media (max-width: 767px) {
  #footer-to-home {
    /*  color: black; */
    color: var(--secondary-color);
    font-size: 12px;
  }
  #footer-to-home a {
    color: var(--secondary-color);
    font-size: 12px;
  }
  #footer-to-home a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
  }
}

@media (max-width: 1394px) {
  #footer-to-home {
    /*  color: black; */
    color: var(--secondary-color);
    font-size: 14px;
  }
  #footer-to-home a {
    color: var(--secondary-color);
    font-size: 14px;
  }
  #footer-to-home a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
  }
}

@media (max-width: 1200px) {
  #footer-to-home {
    /*  color: black; */
    color: var(--secondary-color);
    font-size: 12px;
  }
  #footer-to-home a {
    color: var(--secondary-color);
    font-size: 12px;
  }
  #footer-to-home a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
  }
}

.bx {
  padding: 7px;
  font-size: 20px;
}

.mailto {
  color: black;
  font-size: 16px; /* khanh */
}

.mailto:hover {
  color: black;
  text-decoration: underline;
}

.mailto-home {
  color: #555;
}
.mailto-home:hover {
  /* color: var(--primary-color); */
  color: black;
  text-decoration: underline;
}

.mapto {
  /* color: #fff; */
  color: black;
  font-size: 16px; /* khanh */
}

.mapto:hover {
  text-decoration: underline;
  color: black;
}
iframe {
  width: 50vh;
  height: 50vh;
}

.contact-bild-fade img {
  /* backdrop-filter: blur(10px); */
  filter: blur(10px);
}
.home-image img {
  /* backdrop-filter: blur(10px); */
}

iframe {
  border-radius: 10%;
  object-fit: cover;
}

.geschlossen {
  color: darkgoldenrod;
}

.donnerstag {
}

.khanh img {
  color: red;
}

.contact-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10%;
  margin-top: 5px;
  border: 2px solid var(--dark-color);
}

.zentral-notfall-text {
  font-size: 20px;
  color: red;
}
.zentral-notfall-nr p {
  /* font-size: 1px; */
}

.ambulance-image {
  margin-top: 5px;
  /* padding-top: 10px; */
  width: 200px;
  height: 200px;
  border-radius: 10%;
  object-fit: cover;
  border: 2px solid var(--dark-color);
}

.ambulance-text {
  padding-top: 30px;
  font-size: 30px;
  color: black;
  font-size: 20px;
  color: red;
}

.ambulance-nr {
  color: black;
  font-size: 24px;
}
.oder {
  font-size: 20px;
}

.linie {
  border-top: 1px solid var(--dark-color);
  margin-bottom: 25px;
}

/* abstand oben und unten */
#contact {
  padding: 100px;
  padding-bottom: 10px;
}