/* Basic css */
@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../webfonts/ProximaNova-Regular.eot");
  src: url("../webfonts/ProximaNova-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../webfonts/ProximaNova-Regular.woff2") format("woff2"),
    url("../webfonts/ProximaNova-Regular.woff") format("woff"),
    url("../webfonts/ProximaNova-Regular.ttf") format("truetype"),
    url("../webfonts/ProximaNova-Regular.svg#ProximaNova-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../webfonts/ProximaNova-Bold.eot");
  src: url("../webfonts/ProximaNova-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../webfonts/ProximaNova-Bold.woff2") format("woff2"),
    url("../webfonts/ProximaNova-Bold.woff") format("woff"),
    url("../webfonts/ProximaNova-Bold.ttf") format("truetype"),
    url("../webfonts/ProximaNova-Bold.svg#ProximaNova-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Proxima Nova Rg", sans-serif;
  color: #000000;
  font-weight: normal;
  line-height: 1.5;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.2;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:focus,
input:focus,
select:focus,
button:focus {
  outline: 0 solid;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* Main styles */

.header .logo img {
  max-width: 250px;
}

.header .logo {
  display: block;
  text-align: center;
  padding-bottom: 10px;
}

.header {
  padding: 10px 0px;
  background-color: #2e2e2e;
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
}
body {
  padding-top: 180px;
}

.header .menu ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}

.header .menu ul li {
  display: inline-block;
}

.header .menu ul li a {
  text-transform: uppercase;
  color: #fff;
  padding: 10px 10px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}
.header .menu ul li:hover a {
  opacity: 0.8;
}

.header .menu ul li a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #fd291d;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.header .menu ul li.active a:after {
  opacity: 1;
}

.header .menu ul li.active a {
  color: #fd291d;
}

.heading-wrap {
  display: block;
  background-color: #2e2e2e;
  margin: 25px 0px 0px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 15px;
  position: relative;
  transition: all 0.3s ease;
}

.heading-wrap .icon {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  max-width: 16px;
  transform: translateY(-50%);
}

.heading-wrap:hover {
  color: #fff;
  opacity: 0.95;
}

.single-item {
  display: block;
  color: #000000;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.single-item img {
  margin-bottom: 5px;
}

.single-item:hover {
  opacity: 0.9;
  color: #000000;
}
.single-item p {
  padding-left: 5px;
  padding-right: 5px;
}

.toggle-btn {
  border: 0px;
  background: transparent;
  font-size: 26px;
  color: #ffffff;
  padding: 5px;
  line-height: 1;
}

.mobile-header {
  background-color: #fd291d;
  padding: 5px 0px;
}

.mobile-header p {
  margin-bottom: 0px;
  color: #ffff;
  font-size: 18px;
  font-weight: bold;
}

.offcanvas-menu {
  position: fixed;
  left: -300px;
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: #2e2e2e;
  z-index: 9;
  overflow-x: auto;
  transition: all 0.4s ease;
}
.offcanvas-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 8;
  visibility: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}
.offcanvas-bg.active {
  visibility: visible;
  opacity: 1;
}
.offcanvas-menu.active {
  left: 0;
}
.offcanvas-menu .menu ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.offcanvas-menu .menu ul li {
  display: block;
}

.offcanvas-menu .menu ul li a {
  text-transform: uppercase;
  color: #fff;
  padding: 10px 10px;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}
.offcanvas-menu .menu ul li:hover a {
  opacity: 0.8;
}

.offcanvas-menu .menu ul li.active a:after {
  opacity: 1;
}

.offcanvas-menu .menu ul li.active a {
  background-color: #fd291d;
}

a.language-switcher {
  color: #fd291d !important;
}

.offcanvas-menu .logo {
  display: inline-block;
  padding: 10px;
  margin-bottom: 10px;
  max-width: 250px;
  width: 100%;
}
.mobile-header {
  display: none;
}

.list .single-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.list .single-item img {
  margin-right: 25px;
}

.list .single-item p {
  font-size: 20px;
}

.list .single-item img {
  max-width: 30%;
}

.text-zoom {
  background: transparent;
  border: 0px;
  padding: 5px;
}

.text-zoom img {
  max-width: 26px;
  width: 100%;
}

.headline {
  color: #fd291d;
  text-transform: uppercase;
}

.inner-section {
  padding: 30px 0px;
}

ul {
  display: block;
}

ul li::marker {
  color: #fd291d;
}

.inner-section a {
  text-decoration: underline;
}

body.zoom {
  zoom: 120%;
}

body.zoom .mobile-header {
  zoom: 83%;
}

.subhead {
  font-size: 24px;
}

.references {
  font-weight: bold;
  font-size: 13px;
}

.sub-menu {
  background-color: #fd291d;
  padding: 20px;
  margin: 20px 0px;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  display: block;
  text-decoration: none !important;
}
.sub-menu:hover,
.sub-menu:focus,
.sub-menu:active {
  color: #ffffff;
}
.sub-menu:after {
  content: ">";
  font-size: 24px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -18px;
  transition: all 0.3s ease;
}

.image-content img {
  margin-bottom: 20px;
}

.sub-menu[aria-expanded="true"]:after {
  transform: rotate(90deg);
}

.well {
  background-color: #e9e9e9;
  padding: 30px;
  border-radius: 5px;
}

.well .headline {
  font-size: 36px;
}

.footnote {
  font-size: 80%;
  margin-bottom: 15px;
}

h4.bullet-number {
  font-size: 20px;
}

.callout {
  text-align: center;
  background-color: #fd291d;
  padding: 10px;
  color: #fff;
  margin-bottom: 25px;
}
.quotes {
  padding-bottom: 10px;
}

.quotes .quote-right {
  display: block;
  text-align: right;
}
h4.simple-title {
  font-size: 20px;
}
.fast-fact {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.fast-fact img {
  max-width: 15%;
  margin-right: 15px;
}
