:root {
  --main_clr: hsl(213, 70%, 53%);
  --sec_clr: hsl(218, 50%, 66%);
  --grey: hsl(0, 0%, 80%);
  --fgrey: hsl(0, 0%, 40%);
  --pri_grad: linear-gradient(to right, var(--sec_clr), var(--main_clr));
  --ff: "Montserrat", sans-serif !important;
  --bs: 0px 2px 15px 1px rgba(106, 106, 106, 0.5);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul {
  list-style-type: "▸ ";
  display: inline-block;
  text-align: left;
}

hr {
  color: var(--main_clr) !important;
  margin: 1px !important;
}
/* NAVBAR */

#navBar {
  transition: 0.2s;
  width: 100%;
}
.mynav {
  font-family: var(--ff);
  background-image: linear-gradient(to right, var(--sec_clr), var(--main_clr));
  transition: 0.2s;
}
.nav-item {
  font-weight: bold;
  font-size: large;
}

.floatingNav {
  /* width: calc(100vh - 200px); */
  border-radius: 2px;
  box-shadow: 0px 5px 20px var(--main_clr);
}

/* BANNNER */
.banner {
  background-image: var(--pri_grad);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em; /*HØJDEN PÅ BANNERET*/
  width: max-content;
}
.logo {
  padding: 1.5em;
}

/* EKONS */
.e-kons {
  font-family: var(--ff);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--grey);
}
.btn-primary {
  background-color: var(--main_clr) !important;
  width: max-content !important;
  margin-top: 2em !important;
  margin-left: 10em;
  margin-right: 10em;
  margin-bottom: 2em;
  transition: all 0.3s !important;
}
.btn-primary:hover {
  transform: scale(1.1);
}
.infotext {
  text-align: center;
  padding-left: 2em;
  padding-right: 2em;
}

/* ABOUT */
.about {
  font-family: var(--ff);
}

.aboutheader {
  font-family: var(--ff);
  margin-top: 5em;
  margin-bottom: 5em;
}

.about_text {
  font-family: var(--ff);
  font-size: larger;
}

.about_header_text {
  text-align: center;
  font-weight: bold;
}

a {
  text-decoration: none !important;
  /* color: var(--main_clr) !important; */
}

/* CARDS */
.cards {
  margin-top: 3em;
}

.card {
  overflow: hidden;
  border-radius: 10px !important;
  font-family: var(--ff);
  box-shadow: var(--bs);
}

.cards-doctor-title {
  margin-top: 5em;
  font-family: var(--ff);
}

.card-title {
  font-size: x-large;
  font-family: var(--ff);
  font-weight: bold;
}

/* DROPDOWN */
.faq {
  margin-top: 5em;
  margin-bottom: 5em;
  position: relative;
  font-family: var(--ff);
}

.btn-secondary {
  background-color: var(--main_clr) !important;
  font-size: x-large !important;
  font-weight: 600 !important;
  box-shadow: var(--bs);
}

.mydropdown {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item {
  font-size: large;
}
.dropdown-item:hover {
  background-color: var(--fgrey) !important;
  color: white !important;
}
.dropdown-menu {
  box-shadow: var(--bs);
}

/* FIND OS */
.findos {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5em;
  font-family: var(--ff);
  font-weight: bold !important;
}

.findos_text {
  font-weight: bold !important;
}

/* FOOTER */
footer {
  background-color: var(--fgrey);
  font-family: var(--ff);
  color: white;
}
.logof {
  margin-top: 3em;
}

.ftitle {
  /* text-align: center; */
  text-transform: uppercase;
  font-weight: bold;
}
.fsection {
  padding-top: 2em;
}

@media only screen and (max-width: 768px) {
  .card {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
  .btn-primary {
    margin-left: 1em !important;
    margin-right: 1em !important;
  }
}
