@charset "UTF-8";
body {
  font-family: raleway, sans-serif;
  color: #151515;
  font-size: 14px;
  font-weight: 400;
}

.container {
  max-width: 1260px;
}

.entry-title {
  display: none;
}

.entry-content {
  margin-top: 0;
}

.page {
  margin-bottom: 0;
}

.site-header {
  background: #131416;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.site-header .main-navigation {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}
.site-header .navbar-toggler {
  border: none;
}
.site-header .navbar-toggler .menu-icon {
  width: 28px;
  height: 30px;
  position: relative;
  cursor: pointer;
}
.site-header .navbar-toggler .menu-icon div {
  width: 100%;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: 0.4s;
}
.site-header .navbar-toggler .menu-icon.open .bar1 {
  transform: translate(0, 10px) rotate(-45deg);
}
.site-header .navbar-toggler .menu-icon.open .bar2 {
  opacity: 0;
}
.site-header .navbar-toggler .menu-icon.open .bar3 {
  transform: translate(0, -10px) rotate(45deg);
}
.site-header .navbar-toggler-icon {
  color: white;
}
.site-header .navbar-collapse {
  justify-content: end;
}
.site-header img {
  width: 180px;
}
.site-header li a {
  color: white;
  padding: 0 15px;
  text-transform: uppercase;
  font-family: raleway, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
}
.site-header li a:before {
  position: absolute;
  content: "•";
  left: -4px;
}
.site-header li a:hover {
  color: #f1c40f;
}
.site-header li a.active {
  color: #f1c40f;
}
.site-header li:first-child a:before {
  content: "";
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}
.section-title:after {
  content: "";
  display: block;
  background-color: #151515;
  width: 30px;
  height: 1px;
  margin: 15px auto 0;
}

.hero-section {
  position: relative;
}
.hero-section .hero-background {
  height: 100vh;
  width: 100%;
  filter: brightness(60%);
}
.hero-section .hero-content {
  color: white;
  filter: brightness(100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
  padding: 40px 40px 70px 40px;
}
.hero-section .hero-content .kicker {
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: 3px solid rgba(255, 255, 255, 0.15);
}
.hero-section .hero-content .title {
  font-size: 72px;
  margin-bottom: 40px;
  font-weight: 600;
}
.hero-section .hero-content .title span {
  display: block;
}
.hero-section .hero-content .title .title2 {
  color: #f1c40f;
}
.hero-section .hero-content a {
  color: white;
  border: 1px solid white;
  font-size: 12px;
  padding: 15px 30px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
}

.mission-section {
  text-align: center;
  padding: 80px 60px;
}
.mission-section .blocks {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.mission-section .blocks .block {
  flex: 0 0 30%;
}
.mission-section .blocks .block .image {
  margin-bottom: 30px;
}
.mission-section .blocks .block .image img {
  width: 90x;
  height: 90px;
  margin: 0 auto;
}
.mission-section .blocks .block h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
}
.mission-section .blocks .block .description {
  color: #595959;
  line-height: 28px;
}

.units-section {
  background-color: #F2F2F2;
  padding-top: 80px;
}
.units-section .blocks {
  display: flex;
  flex-wrap: wrap;
}
.units-section .blocks .block {
  flex: 0 0 33%;
  position: relative;
}
.units-section .blocks .block .logo {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.units-section .blocks .block .image {
  overflow: hidden;
}
.units-section .blocks .block .image img {
  transition: all 0.2s linear;
}
.units-section .blocks .block:hover .image img {
  filter: brightness(50%);
  scale: 1.1;
}
.units-section .blocks .block:hover .logo {
  opacity: 1;
  width: 360px;
  height: 60px;
}

.leadership-section {
  padding: 80px 20px;
}
.leadership-section h2, .leadership-section h3 {
  text-align: center;
}
.leadership-section h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
}
.leadership-section .content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 18px;
  color: #595959;
}
.leadership-section .leadership-slider {
  max-width: 1260px;
  margin: 0 auto;
}
.leadership-section .splide__arrows .splide__arrow--next {
  position: absolute;
  top: 50%;
  right: -52px;
  border: none;
  transform: translateY(-50%) rotate(180deg);
  background: url("arrow.png");
  background-size: contain;
  width: 52px;
  height: 100px;
}
.leadership-section .splide__arrows .splide__arrow--prev {
  position: absolute;
  top: 50%;
  left: -52px;
  border: none;
  transform: translateY(-50%);
  background: url("arrow.png");
  background-size: contain;
  width: 52px;
  height: 100px;
}
.leadership-section .thumbnail {
  text-align: center;
  margin-bottom: 20px;
}
.leadership-section .slide {
  height: 100%;
  position: relative;
}
.leadership-section .info {
  text-align: center;
  padding-bottom: 55px;
}
.leadership-section .info h4 {
  font-size: 22px;
  font-weight: 600;
}
.leadership-section .info .job {
  color: #151515;
  font-weight: 500;
}
.leadership-section .info .excerpt {
  color: #595959;
  line-height: 28px;
  margin-bottom: 50px;
}
.leadership-section .info button {
  color: black;
  border: 1px solid black;
  text-transform: uppercase;
  padding: 14px 25px;
  border-radius: none;
  background: none;
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.leadership-section .info button:hover {
  background: black;
  color: white;
}
.leadership-section .modal-content {
  border-radius: 0;
  position: relative;
}
.leadership-section .modal-content img {
  display: block;
  margin: 0 auto 20px auto;
}
.leadership-section .modal-content .modal-body {
  padding: 40px;
  text-align: center;
}
.leadership-section .modal-content .btn-close {
  border-radius: 0;
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  color: black;
  background: white;
}
.leadership-section .modal-content .btn-close svg {
  vertical-align: baseline;
}

.feature-section {
  position: relative;
  background: black;
}
.feature-section .feature-background {
  height: 560px;
  width: 100%;
  filter: brightness(40%);
}
.feature-section .feature-block {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.feature-section .title {
  font-size: 80px;
  line-height: 125%;
  font-weight: 600;
}
.feature-section .title:after {
  content: "";
  display: block;
  background-color: white;
  width: 30px;
  height: 1px;
  margin: 15px auto 30px auto;
}
.feature-section .title1 {
  color: white;
}
.feature-section .title2 {
  color: #f1c40f;
}
.feature-section .description {
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 65px;
}
.feature-section a {
  text-decoration: none;
  color: black;
  background: #f1c40f;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 30px;
}
.feature-section a:hover {
  background: black;
  color: white;
}

.contact-section {
  color: white;
  position: relative;
  padding: 80px 20px;
  background: black;
}
.contact-section .title {
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}
.contact-section .title:after {
  content: "";
  display: block;
  background-color: white;
  width: 30px;
  height: 1px;
  margin: 15px auto 30px auto;
}
.contact-section .contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: brightness(40%);
  flex-grow: 1;
}
.contact-section .contact-block {
  max-width: 1060px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  z-index: 0;
}
.contact-section .contact-block .left {
  flex: 0 0 500px;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  z-index: 1;
}
.contact-section .contact-block .left h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.contact-section .contact-block .left p {
  line-height: 28px;
  margin-bottom: 20px;
}
.contact-section .contact-block .right {
  flex: 0 0 500px;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  z-index: 1;
}
.contact-section .contact-block .right .gform-theme--foundation label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  color: white;
  text-align: right;
  align-items: end;
  padding-right: 10px;
}
.contact-section .contact-block .right .gform-theme--foundation .ginput_container {
  width: 100%;
}
.contact-section .contact-block .right .gform-theme--foundation input, .contact-section .contact-block .right .gform-theme--foundation textarea {
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: white;
}
.contact-section .contact-block .right .gform-theme--foundation .gform_fields {
  row-gap: 1px;
}
.contact-section .contact-block .right .gform-theme--foundation .button {
  background-color: black !important;
  padding: 15px 35px !important;
  border-radius: none;
  text-transform: uppercase !important;
}
.contact-section .contact-block .right .gform-theme--foundation .button:hover {
  background-color: #f1c330 !important;
  color: black !important;
}

.site-footer {
  text-align: center;
  background: white;
  position: relative;
}
.site-footer .to-top {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -40px;
  background: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.site-footer .to-top img {
  vertical-align: -webkit-baseline-middle;
}
.site-footer .logo {
  width: 190px;
  display: inline-block;
  margin: 40px 0 20px 0;
}

.entry-content > .gform_wrapper {
  max-width: 1260px;
  margin: 0 auto;
  padding: 140px 60px;
}
.entry-content > .gform_wrapper input[type=submit] {
  background: black !important;
}