@font-face {
  font-family: 'JohnsonText';
  src: url('JohnsonText-Regular.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonTextBold';
  src: url('JohnsonText-Bold.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonTextLight';
  src: url('JohnsonText-Light.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonTextMedium';
  src: url('JohnsonText-Medium.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonDisplay';
  src: url('JohnsonDisplay-Regular.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonDisplayBold';
  src: url('JohnsonDisplay-Bold.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonDisplayLight';
  src: url('JohnsonDisplay-Light.woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JohnsonDisplayMedium';
  src: url('JohnsonDisplay-Medium.woff');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'JohnsonText', Verdana, sans-serif;
  font-size: 1.42em;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}

body.anti-clickjack {
  display: none;
}

main {
  flex: 1;
}

p a:link, p a:visited, p a:active {
	color: #eb1700;
}


p {
  color: #505050;
  line-height: 1.5em;
}

h1 {
  color: #eb1700;
  font-size: 1.5em;
  font-family: 'JohnsonDisplay', Verdana, sans-serif;
}

h2 {
  color: #eb1700;
  font-size: 1.27em;
}

a,
button {
  transition: color .2s ease-in-out;
}

ul li {
  padding-left: 10px;
  margin: 0;
}

ul li p {
  margin: 5px 0;
}

.sub-heading {
  font-family: 'JohnsonDisplay-bold', Verdana, sans-serif;
  font-size: 80%;
}

header {
  margin-bottom: 20px;
}

/*
header .logos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}
*/

header .logos {
	margin-bottom: 20px;
}

header .logos .main-logo {
	float: left;
	width: 186px;
	height1: 90px;
}

header .logos .right-logo {
	float: right;
	width: 153px;
	height1: 96px;
}

header .logos div {
	display: inline-block;
	border-left: 2px solid #eb1700;
	margin-left: 15px;
	padding-left: 15px;
	height: 60px;
	margin-top: 15px;
	vertical-align: middle;
}

header .logos span {
	display: inline-block;
	position: relative;
	top: 10px;
	margin-left: 10px;
	padding-bottom: 40px;
	vertical-align: middle;
	font-family: 'JohnsonDisplay', Verdana, sans-serif;
	font-size: 1.3em;
}

nav {
  clear: both;
  position: relative;
  background: #eb1700;
  padding: 20px;
  text-align: right;
  font-family: 'JohnsonText', Verdana, sans-serif;
}

nav a {
  text-decoration: none !important;
  color: #FFFFFF;
  font-family: 'JohnsonText', Verdana, sans-serif;
  font-weight: bold;
  padding: 5px 10px;
  border-right: 2px solid #fff;
}

nav a:last-of-type {
  border-right: none;
}

nav a:hover,
nav button:hover,
nav a.current {
  text-decoration: underline !important;
}

nav button {
  all: unset;
  display: none;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}

footer a {
  color: #000000;
  text-decoration: none;
  font-family: 'JohnsonTextBold', Verdana, sans-serif;
}

/* carousel */

.carousel {
  position: relative;
  max-width: 550px;
  margin: 20px auto;
  padding: 0;
}

.carousel li {
  position: relative;
  background-color: #eb1700;
  max-width: 550px;
  padding: 30px;
  list-style-type: none;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.carousel img.quote, .home .col-right img.quote {
   width: 60px;
   padding-bottom: 10px;
}

.carousel li p {
  margin-top: 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.carousel li.current {
  opacity: 1;
}

.carousel li:not(.current) {
  top: 0;
  position: absolute;
}

.carousel li span {
  display: block;
  text-align: right;
  color: #fff;
}

/* accordion */

.accordion button {
  all: unset;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.accordion button h2 {
  transition: color .2s ease-in-out;
}

.accordion button:hover h2 {
  text-decoration: underline !important;  
}

.accordion button::before {
  content: '>';
  color: #003366;
  font-weight: bold;
  font-size: 1.5em;
  transition: transform .5s ease-in-out;
}

.accordion button:hover::before {
  transform: rotate(90deg);
}

.accordion.open button::before {
  transform: rotate(90deg);
}

.accordion div {
  opacity: 0;
  display: none;
  transition: opacity 5s ease-in-out;
}

.accordion.open div {
  display: block;
  opacity: 1;
}

.accordion div p {
  margin-top: 0;
}

/* Home page */
.home {
  display: flex;
  gap: 20px;
}

.home .col-left {
  flex: 3;
}

.home .col-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .col-right img {
  max-width: 550px;
  width: 100%;
}

.cta {
  display: inline-block;
  margin: 10px 20px;
  background-color: #eb1700;
  color: #FFFFFF;
  padding: 20px 30px;
  font-weight: bold;
  font-family: 'JohnsonTextBold', Verdana, sans-serif;
  transition: background-color .2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.cta:link, .cta:visited, .cta:active, .cta:hover {
	color: #fff;
}

.cta a:hover {
  background-color: #72aa55;
}

/* Feedback page */

.feedback ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feedback ul li {
  list-style-type: none;
  position: relative;
  background-color: #f6f4f3; #F1EFED;
  max-width: 550px;
  padding: 20px 30px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

.feedback ul li.alt {
	background-color: #E8E6E3;
}
.feedback ul li p {
  text-align: center;
  color: #000000;
  /*font-weight: bold;*/
}

.feedback ul li span {
  display: block;
  text-align: right;
  color: #eb1700;
  margin-top: auto;
}

.contact {
	background-color: #F1EFED;
	padding: 10px;
	text-align: center;
}