@charset "UTF-8";
/*
Theme Name: ENDVR Energy Theme
Author: Mindshape
Version: 1.0
*/
header {
  width: 100%;
  height: 160px;
  padding: 34px 0 34px 0;
  background-color: #004C6C;
  /* Main horizontal menu */
}
header .logo {
  width: 30%;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  header .logo {
    width: 40%;
  }
}
@media (max-width: 575.98px) {
  header .logo {
    width: 80%;
  }
}
header .main-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  position: relative;
  display: flex;
  justify-content: flex-end;
  /* Submenu styling */
}
header .main-menu li {
  display: inline-block;
  position: relative;
}
header .main-menu li a {
  text-decoration: none;
  color: #004a66;
  padding: 0.5rem 0;
  display: block;
  color: #fff;
  font-family: Oswald;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 6px solid transparent;
  white-space: nowrap;
}
header .main-menu li.current-menu-item a, header .main-menu li:hover a, header .main-menu li a:active {
  border-bottom: 6px solid #fff;
}
header .main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  min-width: 180px;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
header .main-menu .sub-menu li {
  padding: 0;
}
header .main-menu .sub-menu a {
  padding: 0.5rem 1rem;
  color: #004a66;
  white-space: nowrap;
}
header .main-menu .sub-menu li:hover > .sub-menu {
  display: block;
}
@media (max-width: 575.98px) {
  header .main-menu {
    flex-direction: column;
    display: none;
  }
  header .main-menu.active {
    display: flex;
  }
  header .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
  }
  header .menu-item-has-children.open > .sub-menu {
    display: block;
  }
  header .menu-item-has-children > a::after {
    content: " ▶";
    float: right;
  }
  header .menu-item-has-children.open > a::after {
    content: " ▼";
  }
}

footer {
  background-color: #D9D9D9;
  color: #004C6C;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  padding-bottom: 1.875rem;
}
footer .logo {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  width: 80%;
  max-width: 1340px;
  overflow: hidden;
}
footer a {
  font-weight: 700;
  line-height: normal;
}
footer .border-bottom {
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
  border-bottom: 1px solid #004C6C !important;
}
footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  position: relative;
}
footer .footer-menu li {
  position: relative;
}
footer .footer-menu li a {
  text-decoration: none;
  color: #004a66;
  padding: 0.5rem 0;
  font-family: Poppins;
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: underline;
}
footer .footer-menu li::after {
  content: "|";
  margin-left: 1rem;
  margin-right: 1rem;
  color: #999;
}
@media (max-width: 575.98px) {
  footer .footer-menu li::after {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
footer .footer-menu li:last-child::after {
  content: "";
}

.hero-block {
  position: relative;
  color: #fff;
  background-size: 70% auto;
  background-position: center right;
}
.hero-block .container {
  z-index: 3;
}
.hero-block .hero-bg {
  display: flex;
  flex-direction: row;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: flex-start;
}
.hero-block .hero-bg .hero-shape {
  width: 20%;
  height: 100%;
  background-color: #009FDB;
}
.hero-block .hero-content {
  min-height: 450px;
  display: flex;
  align-items: center;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  background-color: #009FDB;
}
.hero-block .hero-content h1, .hero-block .hero-content h2 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: Oswald;
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.hero-block .hero-content h1 {
  margin-bottom: 1.5em;
}
@media (max-width: 991.98px) {
  .hero-block .hero-content h1, .hero-block .hero-content h2 {
    font-size: 3.125rem;
  }
}
@media (max-width: 767.98px) {
  .hero-block .hero-content {
    min-height: 18.2978723404rem;
  }
  .hero-block .hero-content h2 {
    font-size: 1.8723404255rem;
  }
}
.hero-block.align-content-end {
  background-position: center left;
}
.hero-block.align-content-end .hero-bg {
  justify-content: flex-end;
}
.hero-block.align-content-end .hero-content {
  padding-left: 7.5rem;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 767.98px) {
  .hero-block.align-content-end .hero-content {
    padding-left: 2.5531914894rem;
  }
}
@media (max-width: 767.98px) {
  .hero-block {
    background-size: auto 100%;
  }
}

.text-link-block {
  color: #004C6C;
  font-family: Poppins;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.text-link-block h2 {
  font-size: 4.375rem;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  line-height: 110%;
}
.text-link-block h3 {
  font-family: Oswald;
  font-style: normal;
  font-weight: 700;
  font-size: 3.125rem;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  line-height: 110%;
}
@media (max-width: 575.98px) {
  .text-link-block h3 {
    font-size: 1.8723404255rem;
  }
}
.text-link-block.with-border {
  padding-bottom: 0;
}
.text-link-block.with-border .container {
  border-bottom: 2px solid black;
  padding-bottom: 5rem;
}

.three-column-block {
  background-color: rgba(0, 159, 219, 0.1);
  color: #004C6C;
  font-family: Poppins;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.three-column-block h2 {
  text-align: center;
  font-family: Oswald;
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0.75em;
}
@media (max-width: 575.98px) {
  .three-column-block h2 {
    font-size: 1.8723404255rem;
  }
}
.three-column-block h4 {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 120%;
}

.two-column-links-block {
  color: #004C6C;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.two-column-links-block h2 {
  text-align: center;
  font-family: Oswald;
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 0.75em;
}
.two-column-links-block img {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}
.two-column-links-block h6 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 120%;
  margin-top: 0.75em;
}
@media (max-width: 575.98px) {
  .two-column-links-block h6 {
    font-size: 1.8723404255rem;
  }
}
.two-column-links-block p {
  font-family: Poppins;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.split-column-block {
  padding-bottom: 2.5rem;
}
.split-column-block .top-bar {
  display: flex;
  width: 100%;
  background-color: #fff;
}
.split-column-block .top-bar .left, .split-column-block .top-bar .right {
  background-color: #359E24;
  height: 35px;
  width: 50%;
}
.split-column-block .top-bar .left {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
.split-column-block .top-bar .right {
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
.split-column-block h2 {
  color: #004C6C;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 3.125rem;
  line-height: 110%;
}
.split-column-block p {
  color: #004C6C;
  font-family: Poppins;
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 160%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.split-column-block img {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  width: 80%;
  height: auto;
}

.custom-text-block {
  color: #004C6C;
}
.custom-text-block h2, .custom-text-block h4, .custom-text-block p {
  color: #004C6C;
}

.text-icons-block {
  color: #004C6C;
  padding-top: 5rem;
}
.text-icons-block h2 {
  text-align: center;
  font-family: Oswald;
  font-size: 4.375rem;
  line-height: 100%;
  margin-bottom: 1.8em;
}
.text-icons-block h4 {
  color: #004C6C;
  font-family: Oswald;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  width: 75%;
  margin-bottom: 0.75em;
}
.text-icons-block img.icon {
  height: auto;
  max-width: 100%;
}
.text-icons-block li {
  font-family: Poppins;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-transform: uppercase;
  list-style-position: outside;
}
.text-icons-block li::marker {
  font-size: 0.75rem;
}
.text-icons-block .icon-item {
  margin-bottom: 10rem;
}

.board-directors-block h2 {
  color: #004C6C;
  margin-bottom: 85px;
}
.board-directors-block img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.board-directors-block h4 {
  position: relative;
  border-bottom: 2px solid #009Fd8 !important;
  padding: 15px 0;
  font-family: Poppins;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.board-directors-block h4 a {
  display: block;
  text-decoration: none;
  color: #004C6C;
}
.board-directors-block h4 a::after {
  width: 1.25em;
  font-size: 1.375rem;
  font-weight: 300;
  text-align: center;
  content: "+";
  position: absolute;
  right: 0;
  color: #009Fd8;
}
.board-directors-block .bio {
  display: none;
}
.board-directors-block .director {
  margin: auto;
}
.board-directors-block .director.expanded h4 a::after {
  content: "-";
}
.board-directors-block .director.expanded .bio {
  display: block;
}

.expandable-items-block {
  position: relative;
  padding-bottom: 5rem;
}
.expandable-items-block .expandable-item-container {
  position: relative;
  margin-top: 5rem;
  min-height: 25rem;
}
.expandable-items-block .border-bottom {
  margin-top: 5rem;
  border-bottom: 2px solid #009FDB !important;
}
.expandable-items-block .img {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 0.9375rem;
  background-color: #00aef0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  max-height: 400px;
  overflow: hidden;
}
.expandable-items-block .img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
@media (max-width: 575.98px) {
  .expandable-items-block .img {
    position: relative;
    width: 100%;
  }
}
.expandable-items-block h2 {
  color: #004C6C;
  font-size: 3.125rem;
  line-height: 110%;
  letter-spacing: 0%;
  margin-bottom: 0.5em;
}
.expandable-items-block h4 a {
  display: block;
  color: #004C6C;
  font-family: Poppins;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 120%;
  letter-spacing: 0%;
  text-decoration: none;
  padding-top: 1.875rem;
  padding-bottom: 0.9375rem;
}
.expandable-items-block h4 {
  border-bottom: 2px solid var(--bgcolor, #009FDB);
  position: relative;
}
.expandable-items-block h4 a {
  display: block;
}
.expandable-items-block h4 a::after {
  width: 1.25em;
  font-size: 1.375rem;
  font-weight: 300;
  text-align: center;
  content: "+";
  position: absolute;
  right: 0;
  color: var(--bgcolor, #009FDB);
}
.expandable-items-block .content .description {
  display: none;
}
.expandable-items-block .content .section.expanded .description {
  display: block;
}
.expandable-items-block .content .section.expanded h4 a::after {
  content: "-";
}

.image-link-block {
  font-family: Poppins;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 150%;
  letter-spacing: 0%;
  padding-bottom: 5rem;
  color: #004C6C;
}
.image-link-block h2 {
  font-size: 4.375rem;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: #004C6C;
}
@media (max-width: 575.98px) {
  .image-link-block h2 {
    font-size: 1.8723404255rem;
  }
}
.image-link-block h5 {
  color: #004C6C;
  font-family: Poppins;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 1em;
}
@media (max-width: 575.98px) {
  .image-link-block h5 {
    font-size: 1.7021276596rem;
  }
}

.post-navigator-block {
  color: #004C6C;
}
.post-navigator-block .container {
  border-bottom: 2px solid #F5821F;
  padding-bottom: 3.75rem;
  margin-bottom: 5rem;
}
.post-navigator-block h4 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 120%;
  letter-spacing: 0%;
  margin-top: 2em;
}
.post-navigator-block .img {
  width: 75%;
  height: auto;
  padding-right: 0.9375rem;
  background-color: #F5821F;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  overflow: hidden;
}
.post-navigator-block .img img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
@media (max-width: 575.98px) {
  .post-navigator-block .img {
    width: 100%;
  }
}
.post-navigator-block p {
  font-family: Poppins;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.two-column-form-block {
  color: #004C6C;
  font-family: Poppins;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.two-column-form-block p {
  font-family: Poppins;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 160%;
  letter-spacing: 0%;
}
.two-column-form-block h2 {
  font-family: Oswald;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 110%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .two-column-form-block h2 {
    font-size: 1.375rem;
  }
}
.two-column-form-block h5 {
  font-family: Poppins;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 120%;
  letter-spacing: 0%;
  color: #004C6C;
  margin-bottom: 2em;
}
@media (max-width: 575.98px) {
  .two-column-form-block h5 {
    font-size: 1.25rem;
  }
}
.two-column-form-block .form-title {
  margin-bottom: 1.6em;
}
.two-column-form-block .form-label {
  font-family: Poppins;
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  text-transform: uppercase;
}
.two-column-form-block .form-label .required {
  color: #F5821F;
}
.two-column-form-block .form-control {
  font-family: Poppins;
  font-weight: 400;
  font-size: 1rem;
  color: #004C6C;
}
.two-column-form-block .wpcf7-not-valid-tip {
  font-family: Poppins;
  font-weight: 400;
  font-size: 1rem;
}
.two-column-form-block .form-control::placeholder {
  text-transform: uppercase;
  color: #9E9E9E;
}
.two-column-form-block .side-content strong {
  font-weight: 700;
}

html {
  font-size: 16px;
}
@media (max-width: 575.98px) {
  html {
    font-size: 11.75px;
  }
}
@media (max-width: 991.98px) {
  html {
    font-size: 12.8px;
  }
}

.angled-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #004a66;
  border: 2px solid #004a66;
  background-color: transparent;
  text-decoration: none;
  position: relative;
  transform: skewX(-30deg); /* slant the box */
  font-family: Oswald;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.angled-button > span {
  display: inline-block;
  transform: skewX(30deg);
}
.angled-button:hover {
  background-color: #004a66;
  color: white;
}

h1 {
  font-family: Oswald;
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

h2 {
  font-family: Oswald;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}