* {
  box-sizing: border-box;
}

html {
  background-repeat: no-repeat;
  font-family: "Arial";
  font-size: 12pt;
  line-height: 18pt;
  text-align: left;
  color: #483c46;
}

body {
  margin: 0;
  font-size: 1rem;
}

.accent {
  color: #f4743b;
}

a:link,
a:visited {
  color: #483c46;
  text-decoration: none;
}

a:hover,
a:active {
  color: #f4743b;
}

h3,
h1 {
  margin: 0;
  padding: 0;
}

/* --- HEADER --- */
#banner {
  margin-bottom: 1rem;
  background-color: #51afe5;
}

.banner-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  color: white;
  @media screen and (min-width: 768px) {
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
  }
}

.banner-text h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  @media screen and (min-width: 768px) {
    font-size: 1rem;
  }
}

.banner-text a:link {
  color: #FFFFFF;
}

.line-break {
  display: block;
  @media screen and (min-width: 768px) {
    display: none;
  }
}

.statement {
  font-size: 1rem;
  @media screen and (min-width: 768px) {
    font-size: 0.9rem;
  }
}

/* --- NAVIGATION --- */
#navigation {
  padding: 0 2rem;
  margin-bottom: 1rem;
  @media screen and (min-width: 768px) {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}

.logo {
  width: 100%;
  @media screen and (min-width: 768px) {
    width: 300px;
    margin-right: 2rem;
  }
}

.nav-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (min-width: 768px) {
    width: 400px;
  }
}

.current-page {
  color: #f4743b !important;
}

.contact-link {
  background-color: #51afe5;
  padding: 0.75rem 0.75rem;
  border-radius: 12px;
  border: none;
  color: white !important;
  margin-left: 1rem;
  font-size: 0.8rem;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding-top: 1rem;
}

/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #ffffff;
  color: #f4743b;
}

/* --- CONTENT --- */
.content {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-items: center;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    max-width: 1200px;
    margin: 0 auto;
    diplay: block;
    padding: 2rem 2rem;
  }
}

.content img {
  width: 100%;
}

.section p {
  margin-top: 0;
}

.mobile-img {
  display: block;
  margin-bottom: 1rem;
  @media screen and (min-width: 768px) {
    display: none;
  }
}

.desk-img {
  display: none;
  @media screen and (min-width: 768px) {
    display: block;
  }
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 1.8rem;
  display: inline-block;
  padding-bottom: 0.75rem;
  position: relative;
  /* background-color: darkcyan; */
}

.section-title:before {
  content: "";
  position: absolute;
  width: 15%;
  height: 1px;
  bottom: 0;
  left: 0;
  border-bottom: 5px solid #2e3491;
}

@media screen and (min-width: 768px) {
  .section-title:before {
    content: "";
    position: absolute;
    width: 6%;
    height: 1px;
    bottom: 0;
    left: 0;
    border-bottom: 5px solid #2e3491;
  }
}

.img-text-wrap {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    align-items: flex-start;
  }
}

.home-img-wrap {
  @media screen and (min-width: 768px) {
    min-width: 200px;
  }
}

.img-wrap {
  text-align: center;
  margin-bottom: 1rem;
  @media screen and (min-width: 768px) {
    width: 50%;
  }
}

.text-wrap {
  @media screen and (min-width: 768px) {
    width: 50%;
  }
}

.text-wrap-slide {
  @media screen and (min-width: 768px) {
    width: 75%;
  }
}

.text-wrap-padding-left-2 {
  padding-left: 0;
  @media screen and (min-width: 768px) {
    padding-left: 2rem;
  }
}

.text-wrap-padding-right-2 {
  padding-right: 0;
  @media screen and (min-width: 768px) {
    padding-right: 2rem;
  }
}

.p-top-1 {
  padding-top: 1rem;
}

.p-top-2 {
  padding-top: 2rem;
}

/* --- VALUES CARDS --- */

#values {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 0;
  }
}

.card {
  margin-top: 2rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media screen and (min-width: 768px) {
    width: 38%;
    padding: 0;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

.card i {
  font-size: 3rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  left: -1rem;
  position: relative;
  text-align: center;
}

.card-centre {
  text-align: center;
  width: 100%;
}

.cols-2 {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
  }
}

.cols-2 ul {
  text-align: center;
  margin: 0;
  @media screen and (min-width: 768px) {
    text-align: left;
  }
}

/* --- FOOTER --- */
.footer {
  background-color: #483c46;
  display: flex;
  flex-direction: column;
  justify-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #483c46;
  color: white;
  width: 100%;
  padding: 2rem;
  @media screen and (min-width: 900px) {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.form iframe {
  width: 100%;
  @media screen and (min-width: 900px) {
    width: 300px;
  }
  @media screen and (min-width: 1200px) {
    width: 450px;
  }
}

.footer a:link {
  color: white;
}

.map iframe {
  width: 100%;
  @media screen and (min-width: 900px) {
    width: 300px;
  }
}

.copyright {
  color: #ffffff;
  font-size: 0.8rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  padding-bottom: 2rem;
  margin: 0 auto;
}
