/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  height: 100%;
}
html,
body {
  font-family: 'Noto Sans', sans-serif;
  height: 100%;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3.2rem;
  padding-bottom: 10px;
}
h3 {
  font-size: 2.8rem;
  padding-bottom: 10px;
}
h4 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}
p {
  line-height: 1.5;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
.container {
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  padding-bottom: 60px;
}
.about {
  background-color: #FBFBFB;
}
.about .intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about .team {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.about .team .card {
  width: 250px;
  margin: 10px;
  align-items: center;
  text-align: center;
}
.about .team .card img {
  width: 90%;
  height: 90%;
}
.about .team .card button {
  border-radius: 5px;
  border: none;
  width: 30%;
  height: 30px;
  background-color: #0FADAA;
}
.about .team .card button:hover {
  background-color: #56d8ff;
}
.about .team .card button a {
  text-decoration: none;
  color: #FBFBFB;
}
.about .team .card button a:hover {
  color: black;
}
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 100px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #006989;
}
.navBar .logo {
  width: 300px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 800px) {
  .navBar .logo {
    width: 240px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .navBar .logo {
    width: 200px;
    height: 60px;
  }
}
.navBar nav a {
  text-decoration: none;
  color: white;
  display: inline-flex;
  font-size: 1.8rem;
  padding: 10px;
  border-radius: 5px;
  margin: 10px;
}
.navBar nav a:hover {
  color: black;
  background-color: #56d8ff;
}
@media (max-width: 500px) {
  .navBar nav a {
    display: none;
  }
}
@media (max-width: 800px) {
  .navBar nav a {
    margin: 10px;
    font-size: 1.5rem;
  }
}
.navBar .dropdown {
  left: 25px;
  cursor: pointer;
  display: none ;
}
@media (max-width: 500px) {
  .navBar .dropdown {
    display: block;
  }
}
.navBar .dropdown .dropdown-button {
  padding: 20px;
  border: 3px solid white;
  color: black;
  font-size: 20px;
  font-weight: bold;
}
.navBar .dropdown .dropdown-button:hover {
  background-color: #0FADAA;
}
.navBar .dropdown .dropdown-content {
  z-index: 3;
  width: 18.5%;
  position: absolute;
  background-color: #FBFBFB;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  border: 2.5px solid #A3BAC3;
  border-radius: 5px;
}
.navBar .dropdown .link {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
  text-decoration: none;
  color: black;
}
.navBar .dropdown .link:hover {
  color: #FBFBFB;
  background-color: #0FADAA;
}
.navBar .dropdown .dropdown-hidden {
  display: none;
}
.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  transition: 0.4s;
}
/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}
/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}
/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}
footer {
  width: 100%;
  height: 60px;
  background: #006989;
  border: 1px double #0FADAA;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
}
.home {
  background-color: #FBFBFB;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta {
  position: relative;
  max-width: 850px;
  padding: 10px 0;
}
.cta img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.9;
  border-radius: 5px;
}
.cta .cta-text {
  position: absolute;
  bottom: 2.6rem;
  left: 1.6rem;
  right: 1.6rem;
  background-color: rgba(251, 251, 251, 0.7);
  padding: 1rem;
}
@media (max-width: 500px) {
  .cta .cta-text {
    position: unset;
  }
}
.find-button {
  background-color: #f98847;
  border-radius: 8px;
  border: 1px solid #FBFBFB;
  padding: 1rem 3rem;
  line-height: 1.5;
  color: #FBFBFB;
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: bold;
}
.button-hl {
  background-color: #FBFBFB;
  border-color: #f98847;
  color: #f98847;
  cursor: pointer;
}
.details {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 10px 0;
  border-top: 3px dashed lightgray;
}
@media (max-width: 500px) {
  .details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }
}
.details .card {
  width: 30%;
}
@media (max-width: 800px) {
  .details .card {
    width: 100%;
    padding: 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
@media (max-width: 500px) {
  .details .card {
    width: 100%;
    padding: 2%;
    flex-direction: column;
  }
}
.details .card img {
  width: 240px;
  height: 160px;
  border-radius: 5px;
  object-fit: cover;
}
@media (max-width: 500px) {
  .details .card img {
    width: 100%;
    height: auto;
    max-height: 240px;
  }
}
@media (max-width: 800px) {
  .details .card .cardtext {
    padding: 8px;
  }
}
@media (max-width: 500px) {
  .details .card .cardtext {
    padding: 8px;
  }
}
.card-hl {
  background-color: #e2e2e2;
}
