/* _reset.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

.special-headings {
  display: flex;
  align-items: center;
  font-size: 24px;
}
.special-headings::after {
  content: "";
  flex: 1; /* line stretches to fill remaining space */
  height: 1px; /* thickness of the line */
  background-color: #7d7d7d; /* line color */
  margin-left: 10px;
  opacity: 0.5; /* space between text and line */
}

main {
  background: white;
}

ul, ol {
  padding-left: 4em;
}

ul, ol, li, p {
  color: #7d7d7d;
}

h1, h2, h3 {
  color: #2A2543;
}

h1, h2, h3, p {
  padding: 0.5em 0;
  font-family: "source sans pro", Helvetica, Arial, sans-serif;
}

p, li {
  font-size: 1.2rem;
  line-height: 2rem;
}

h3 {
  font-style: italic;
}

.theme-dark {
  background: #484848;
}
.theme-dark p, .theme-dark ol, .theme-dark ul, .theme-dark li {
  color: #dfdfdf;
}
.theme-dark h1, .theme-dark h2, .theme-dark h3 {
  color: #dfdfdf;
}
.theme-dark h2 {
  position: relative;
}

@media screen and (min-width: 600px) {
  .theme-dark h2::after {
    left: 20%;
  }
}
@media screen and (min-width: 1100px) {
  .theme-dark h2::after {
    left: 12%;
  }
}
nav {
  padding: 0 0 7em 0;
  width: 100%;
  font-family: sans-serif;
  border-bottom: 15px double #427E85;
  overflow: clip;
  max-height: 155px;
}
nav .top-nav {
  background-color: #dfdfdf;
  min-height: 30px;
}
nav .top-nav .container {
  max-width: 80em;
  margin: auto;
  text-align: right;
}
nav .top-nav .container a {
  color: #7d7d7d;
  padding: 0;
}
nav .main-nav {
  padding: 1em;
}
nav .main-nav .container {
  max-width: 80em;
  margin: auto;
  align-content: center;
  justify-content: center;
  height: 88px;
  line-height: 88px;
}
nav .main-nav .container .logo a {
  display: inline-block;
}
nav .main-nav .container .logo a img {
  width: 270px;
}
nav .main-nav .container .navigation {
  display: flex;
  gap: 1em;
}
nav .main-nav .container .navigation a {
  border-bottom: 4px solid transparent;
  padding: 0;
  text-transform: uppercase;
}
nav .main-nav .container .navigation a:hover {
  border-bottom: 4px solid #427E85;
}

@media screen and (min-width: 1076px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
  }
  nav {
    padding: 0;
  }
  nav .main-nav {
    padding: 1.75em 0 0 0;
  }
  nav .main-nav .container {
    display: grid;
    grid-template-columns: 78% 22%;
  }
}
.gray-button span {
  border: 2px solid #dfdfdf;
  padding: 1em;
}
.gray-button span:hover {
  border: 2px solid #484848;
}
.gray-button:hover {
  border-bottom: none !important;
}

.three-images {
  z-index: 999;
}
.three-images .wrapper {
  max-width: 70em;
  margin: auto;
}
@media screen and (min-width: 600px) {
  .three-images .wrapper {
    display: grid;
    grid-template-columns: auto auto auto;
  }
}
.text-left-img-right {
  z-index: 999;
  margin: 4em 0;
  background: white;
}
.text-left-img-right .wrapper {
  max-width: 70em;
  margin: auto;
  padding: 1em;
}
.text-left-img-right .wrapper .image {
  text-align: center;
  order: 1;
}
.text-left-img-right .wrapper .image img {
  border-radius: 10px;
  width: 80%;
  margin: auto;
  max-width: 80%;
}
.text-left-img-right .wrapper .text {
  order: 2;
}
.text-left-img-right .wrapper .text .text-heading {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 600px) {
  .text-left-img-right .wrapper .image img {
    max-width: 40%;
  }
}
@media screen and (min-width: 1000px) {
  .text-left-img-right .wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
  }
  .text-left-img-right .wrapper .image {
    order: 2;
    display: flex;
    justify-content: center;
  }
  .text-left-img-right .wrapper .image img {
    max-width: 40%;
  }
  .text-left-img-right .wrapper .text {
    order: 1;
  }
}
.header-two-collums {
  z-index: 999;
  padding: 4em 0;
}
.header-two-collums .wrapper {
  padding: 0 1em;
  max-width: 70em;
  margin: auto;
}

@media screen and (min-width: 600px) {
  .header-two-collums {
    z-index: 999;
  }
  .header-two-collums .wrapper .heading {
    width: 100%;
  }
  .header-two-collums .wrapper .main-text {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 1em;
  }
}
footer {
  background: #484848;
  position: sticky;
  width: 100%;
  bottom: 0;
  background-color: #333;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  z-index: -1;
}