:root {
  --background1: #FFFFFF;
  --background2: #F8F8F8;
  --colour-1:#407D96;
  --colour-2:#7FA6A1;
  --colour-3:#FFC13E;

  --font-colour: #444444;
  --hover-colour: #9cbeba;
}

::-moz-selection {
  background: #7FA6A1;;
  color: white;
}
::selection {
  background: #7FA6A1;;
  color: white;
}
a {
  color: black;
  text-decoration: none;
}

/* mouse over link */
a:hover, a:active {
  color: #573236;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #2e2e2e;
  background-color: var(--background1);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #444444;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 2.5rem;
}
h4 {
  font-size: 2rem;
}
h5 {
  font-size: 1rem;
}
p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5em;
}
.p1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
}
.p2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.main-banner.h150 {
  height: 150px;
}
.no-margin {
  margin: 0;
}
.margin1 {
  margin: 0.2rem 0;
}
.no-bottom-margin {
  margin-bottom: 0;
}
.bottom-margin-05rem {
  margin: 0;
  margin-bottom: 0.5rem;
}
.bottom-margin-1rem {
  margin: 0;
  margin-bottom: 1rem;
}
.bottom-margin-50px {
  margin-bottom: 50px;
}
.margin-x-1rem {
  margin: 1rem 0;
}

.margin-x-1-05rem {
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.valign-top {
  vertical-align:top;
}
.strikethrough {
  text-decoration: line-through;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
}
button {
  font-family: inherit; /* Inherits the font family from its parent */
  font-size: inherit;   /* Inherits the font size from its parent */
  color: inherit;       /* Inherits the text color from its parent */
  border: none;
}


*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  scroll-behavior: smooth;
}

body:has(dialog:open) {
  overflow: hidden;
}

body:has(.dialog__mobile-menu:open) {
  overflow: hidden;
  -webkit-overflow-scrolling: hidden;
}

table, tr, th, td {
  border-collapse: collapse;
  border: 1px solid;
  padding: 0.5rem;
  width: 500px;
}

.inner-table {
  border: none;
  padding: 0;
}

/* ---------------------------------------Body--------------------------------------------------- */
.main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin: 50px 0;
}
@media screen and (min-width: 425px) {}
@media screen and (min-width: 600px) {}
@media screen and (min-width: 769px) {
  .text-content {
    width: min(100%, 700px);
  }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
