/*-----------------------------------------------------------------------------------

	Membership SCSS INDEX

	00. Colours
		- Operator page gallery modal
		- Subscribe to news pop-up
	01. Fonts
	02. Nav
	03. Content
	04. Footer
	05. Media Queries


-----------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,700;1,400&display=swap");
.MembershipPage .title h2, p, li, a, h3, h4, h1, h2 {
  font-family: "Chivo", sans-serif;
}

h2 {
  font-size: 1.8rem;
}

h3, h4 {
  margin: 30px 0 10px 0;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.3;
}

p, li, a {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

a {
  color: #e99b30;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #414042;
}

ul {
  padding-left: 1rem;
}

.btn-primary, .action {
  background-color: #e99b30;
  border: #e99b30;
  color: #FFFFFF;
  letter-spacing: 0.05rem;
  letter-spacing: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover, .action:hover {
  background-color: #414042;
  color: #FFFFFF;
}

label {
  font-weight: 600;
  margin-bottom: 2px;
}

.pad-none {
  padding: 0;
}

.header {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 20px;
  align-items: baseline;
}
.header img {
  width: 300px;
  margin-right: 30px;
}
.header h1 {
  font-weight: 600;
  margin: 20px 0 0 0;
}

.list-inline {
  padding: 20px 20px 0 30px;
  list-style: none;
  background-color: #FFF;
  color: #414042;
}
.list-inline li.list-inline-item {
  margin-right: 25px !important;
}
.list-inline li.list-inline-item a {
  text-decoration: none;
  color: #414042;
}

.sub-nav {
  background-color: #414042;
  padding: 30px 30px 10px 30px;
  margin: 0 0 30px 0;
}
.sub-nav ul {
  padding-left: 0;
}
.sub-nav li {
  list-style: none;
}
.sub-nav li a {
  line-height: 1.4 !important;
}
.sub-nav li.active, .sub-nav a:hover {
  color: #e99b30;
}
.sub-nav a {
  color: #FFFFFF;
  text-decoration: none;
}

.content {
  padding: 10px 0 0 30px;
}

.MembershipPage {
  padding: 50px 0 0 0;
  color: #414042;
  background-color: #f1f1f1;
}
.MembershipPage .title h2 {
  font-size: 1.8rem;
  margin-top: 20px;
}

.footer {
  background-color: #414042;
  color: #FFFFFF;
  padding: 50px 0 0 30px;
}
.footer footer {
  padding: 30px;
}
.footer footer h3 {
  font-size: 1rem;
}
.footer footer p {
  font-size: 0.95rem;
}

@media (min-width: 576px) {
  .sub-nav {
    display: flex;
    flex-flow: row nowrap;
  }
}
@media (min-width: 768px) {
  .header {
    flex-flow: row nowrap;
  }
  .header h1 {
    margin: 0 0 -7px 0;
    align-self: last baseline;
  }
  .sub-nav {
    display: none;
  }
}
