﻿nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 100;
  display: flex;
  background-color: rgba(175, 175, 175, 0.35);
  border-bottom: 1px solid white;
  transition: all 1250ms ease;
}
@media (max-width: 1050px) {
  nav {
    height: 90px;
    justify-content: space-between;
  }
}
nav ul.main-nav {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  margin: 0;
  list-style-type: none;
  width: 100%;
  height: 100%;
}
nav ul.main-nav > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
}
nav ul.main-nav > li > a {
  font-family: "brother-1816", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.025rem;
  text-align: center;
  margin: 0 15px;
  color: white;
  transition: all 250ms ease;
  border-bottom: 4px solid transparent;
  position: relative;
  padding: 6px 0;
  text-transform: uppercase;
}
@media (max-width: 1075px) {
  nav ul.main-nav > li > a {
    margin: 0 10px;
  }
}
nav ul.main-nav > li > a:hover {
  border-bottom: 3px solid #004976;
}
nav ul.main-nav > li.is-open > a {
  border-bottom: 3px solid #004976;
}
nav ul.main-nav > li.is-open > .megamenu-content {
  visibility: visible;
  opacity: 1;
}
nav ul.main-nav > li.is-open > .megamenu-content .megamenu-content-container {
  padding-top: 40px;
}
nav ul.main-nav > li.is-open > .nav-link {
  background: #fff;
  color: #333;
}
nav .nav-content {
  width: 100%;
  display: flex;
}
@media (max-width: 1050px) {
  nav .nav-content {
    display: none;
  }
}
nav .nav-icon-white {
  display: none;
}
nav .nav-logo-container {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-logo-container img {
  width: 100%;
  max-width: 225px;
}
nav .nav-item-container {
  width: 65%;
  border: 1px solid white;
  border-top: none;
  border-bottom: none;
}
@media (max-width: 1150px) {
  nav .nav-item-container {
    width: 71%;
  }
}
nav .nav-item-container-upper {
  border-bottom: 1px solid white;
  height: 45px;
  display: flex;
  justify-content: flex-end;
}
nav .nav-item-container-upper .search {
  width: 250px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border: none;
  background-color: #F1F1F1;
  height: 100%;
  position: relative;
}
nav .nav-item-container-upper .search form {
  display: flex;
  align-items: center;
}
nav .nav-item-container-upper .search input {
  width: 100%;
  border: none;
  background-color: transparent;
  height: 45px;
  padding: 0 10px;
}
nav .nav-item-container-upper .search button {
  position: absolute;
  right: 5px;
  padding: 5px 15px;
}
nav .nav-item-container-upper .search button img {
  height: 18px;
}
nav .nav-item-container-upper > a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
  color: white;
}
nav .nav-item-container-upper > a img {
  height: 70%;
  margin-right: 12px;
}
nav .nav-item-container-upper-accent-link {
  background: rgb(0, 139, 196);
  background: linear-gradient(122deg, rgb(0, 139, 196) 0%, rgb(0, 110, 179) 100%);
  min-width: 150px;
  display: flex;
  border-left: 1px solid white;
  text-transform: uppercase;
  font-weight: 700;
}
nav .nav-item-container-lower {
  height: 95px;
}
nav .nav-item-container-lower .nav-links-container > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
nav .nav-item-container-lower .nav-links-container-link {
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 0 !important;
  margin-bottom: 0;
  position: relative;
  padding: 6px 0;
  padding-left: 2px;
  padding-right: 20px;
  transition: color 250ms ease;
  text-transform: uppercase;
}
nav .nav-item-container-lower .nav-links-container-link a {
  color: white;
}
nav .nav-item-container-lower .nav-links-container-link:hover {
  color: #ffffff;
}
nav .nav-item-container-lower .nav-links-container-link:hover > .nav-links-container-dropdown:not(.dropdown-mobile) {
  display: block;
}
nav .nav-item-container-lower .nav-links-container-dropdown {
  background: rgba(0, 0, 0, 0.75);
  border-top: none;
  position: absolute;
  top: 102%;
  left: 0;
  color: #fff;
  transition: all 300ms ease;
  display: none;
  min-width: 250px;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul {
  list-style-type: none;
  display: block;
  margin: 15px;
  padding: 0;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul li {
  transition: color 250ms ease;
  color: white !important;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul li a {
  color: white !important;
}
nav .nav-item-container-lower .nav-links-container-dropdown > ul li:hover {
  color: #ffffff;
}
nav .nav-spacer {
  flex: 1;
}
nav.nav-scrolled {
  background-color: white;
  border-color: #EBEBEB;
}
nav.nav-scrolled * {
  border-color: #EBEBEB;
}
nav.nav-scrolled .nav-item-container a:not(.nav-item-container-upper-accent-link) {
  color: #004976;
}

.mobile-main-link {
  display: none;
}

.nav-logo-container-mobile {
  display: none;
}

.nav-trigger {
  display: none;
}
@media (max-width: 800px) {
  .nav-trigger {
    display: block;
    width: 50px;
    position: absolute;
    top: 75px;
    right: 66px;
  }
}
@media (max-width: 450px) {
  .nav-trigger {
    top: 65px;
  }
}

/*MegaMenu Styles*/
.small-menu {
  position: absolute;
  top: 140px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.15s;
  background: white;
  padding: 30px;
  width: 220px;
  margin-left: -80px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
.small-menu h3 {
  color: #004976;
  font-size: 105%;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .small-menu h3 {
    text-align: center;
  }
}
.small-menu h3 a {
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}
.small-menu a {
  font-weight: 300;
  display: block;
  margin-left: 10px;
  margin-bottom: 7px;
  color: black;
  transition: color 150ms ease;
  text-align: left;
}
.small-menu a:hover {
  color: #004976;
}

.megamenu-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 140px;
  overflow: visible;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  transition-delay: 0.15s;
  width: 80%;
  background-color: white;
  padding: 0 5%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 30px -5px;
}
@media (max-width: 1350px) {
  .megamenu-content {
    padding: 0 25px;
  }
}
.megamenu-content .megamenu-content-container {
  display: flex;
  justify-content: flex-start;
  padding: 40px;
  transition: padding-top 0.45s linear;
}
.megamenu-content p, .megamenu-content span, .megamenu-content div {
  color: black;
}
.megamenu-content h3 {
  font-family: "brother-1816";
}
.megamenu-content-lower {
  width: 100%;
  height: 60px;
  background: #628196;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
}
.megamenu-content-lower h3 {
  color: white;
  font-weight: bold;
  margin-right: 30px;
}
.megamenu-content-lower a {
  color: white;
  font-size: 98%;
}
.megamenu-content-lower a:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid #004976;
  margin-right: 15px;
}
.megamenu-content .megamenu {
  /*    &-left-spotlight {
    max-width: 400px;
    margin: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    &-image {
      margin-right: 10px;
      max-width: 300px;
      width: 100%;
      align-self: center;
    }

    &-content-logo {
      max-width: 175px;
      margin-right: 25px;
    }

    h3 {
      color: $red;
      margin-bottom: 10px;
    }

    p {
      font-size: 1rem;
    }

    .button {
      min-width: 150px;
    }

    @media(max-width: 1000px) {
      display: none;
    }

    @media(max-width: 768px) {
      display: flex;
      border-right: 0;
      margin-right: 0 !important;
      padding-right: 0 !important;
      margin-bottom: 25px;
    }
  }*/
}
.megamenu-content .megamenu-lower-callout {
  display: flex;
  background-color: #53565A;
  height: 100px;
  position: absolute;
  left: 0;
  width: 100%;
}
.megamenu-content .megamenu-lower-callout * {
  margin: 0;
  padding: 0;
}
.megamenu-content .megamenu-lower-callout h4, .megamenu-content .megamenu-lower-callout p {
  color: white !important;
  text-align: left;
}
.megamenu-content .megamenu-lower-callout h4 {
  text-transform: uppercase;
}
.megamenu-content .megamenu-lower-callout p {
  font-family: "brother-1816";
  font-weight: 300;
}
.megamenu-content .megamenu-lower-callout .megamenu-button {
  background: #B2BCBC;
  color: black;
  padding: 10px 20px;
  border-radius: 4px;
  transform: all 250ms ease;
}
.megamenu-content .megamenu-lower-callout .megamenu-button:hover {
  background: #C9D5D5;
}
.megamenu-content .megamenu-lower-callout > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
}
.megamenu-content .megamenu-lower-callout > div:first-of-type {
  background-color: #004976;
}
.megamenu-content .megamenu-lower-callout > div:nth-of-type(2) {
  max-width: 500px;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .megamenu-content .megamenu-lower-callout {
    display: none !important;
  }
}
.megamenu-content .megamenu-hover-panel {
  width: 100%;
  max-width: 300px;
  background: #F2F2F2;
  padding: 30px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 500ms ease;
}
.megamenu-content .megamenu-hover-panel-active {
  opacity: 1;
}
.megamenu-content .megamenu-hover-panel p, .megamenu-content .megamenu-hover-panel h4 {
  margin: 0;
  margin-bottom: 5px;
}
.megamenu-content .megamenu-hover-panel-logo {
  width: 100%;
  max-width: 200px;
  min-height: 60px;
  margin-bottom: 5px;
}
.megamenu-content .megamenu-hover-panel-logo img {
  width: 100%;
}
.megamenu-content .megamenu-hover-panel-icons {
  margin-top: 25px;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.megamenu-content .megamenu-hover-panel-icons > span {
  width: 50%;
  display: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4px;
  text-align: left;
  font-size: 0.6rem;
}
.megamenu-content .megamenu-hover-panel-icons > span.active {
  display: flex;
}
.megamenu-content .megamenu-hover-panel-icons > span img {
  max-width: 30px;
  margin-right: 3px;
}
@media (max-width: 1450px) {
  .megamenu-content .megamenu-hover-panel {
    display: none !important;
  }
}
.megamenu-content .megamenu-subnav {
  margin-right: 35px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-width: 10%;
}
.megamenu-content .megamenu-subnav.megamenu-column {
  border-left: 1px solid #EBEBEB;
  padding: 0 50px;
  margin-right: 0;
}
.megamenu-content .megamenu-subnav.megamenu-column a {
  text-wrap: nowrap;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 10px;
  margin-right: 50px;
  color: #00263E;
  transition: color 250ms ease;
}
@media (max-width: 1700px) {
  .megamenu-content .megamenu-subnav.megamenu-column a {
    margin-right: 20px;
  }
}
.megamenu-content .megamenu-subnav.megamenu-column a:hover {
  color: #006EB3;
}
.megamenu-content .megamenu-subnav.megamenu-column h3 {
  color: #B7C9D3;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 250ms ease;
}
.megamenu-content .megamenu-subnav.megamenu-column:hover h3 {
  color: #C1A01F;
}
.megamenu-content .megamenu-subnav .megamenu-column-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 250px;
  width: 350px;
}
@media (max-width: 1700px) {
  .megamenu-content .megamenu-subnav .megamenu-column-links {
    width: 275px;
  }
}
@media (max-width: 1250px) {
  .megamenu-content .megamenu-subnav .megamenu-column-links {
    max-height: none;
  }
}
.megamenu-content .megamenu-subnav p, .megamenu-content .megamenu-subnav h3 {
  font-size: 90%;
  margin: 0;
}
.megamenu-content .megamenu-subnav h3 {
  color: #004976;
  font-size: 105%;
  font-weight: bold;
  margin-bottom: 10px;
}
.megamenu-content .megamenu-subnav h3 a {
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  text-transform: uppercase;
}
.megamenu-content .megamenu-subnav a {
  /*font-weight: 300;
  display: block;
  margin-bottom: 7px;
  color: inherit;
  transition: color 150ms ease;*/
  color: #00263E;
}
.megamenu-content .megamenu-subnav a:hover {
  color: #004976;
}
.megamenu-content .megamenu-subnav-list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.megamenu-content .megamenu-subnav-list-item-link {
  color: black;
}
.megamenu-content .megamenu-content-image-container {
  max-width: 300px;
  margin-right: 50px;
}
.megamenu-content .megamenu-content-image-container img {
  width: 100%;
}
.megamenu-content .megamenu-content-image-container p {
  color: #004976;
  margin-top: 5px;
  font-size: 1.75rem;
  line-height: 1.75rem;
  font-weight: 300;
}
.megamenu-content .megamenu-info-block {
  width: 30%;
}
.megamenu-content .megamenu-info-block h3 {
  color: #00263E;
  font-size: 1.9rem;
  line-height: 1.9rem;
  font-weight: 200;
}
.megamenu-content .megamenu-info-block p {
  color: #00263E;
}
.megamenu-content .megamenu-info-block a {
  width: fit-content;
}
.megamenu-content .megamenu-info-block-image {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.megamenu-content .megamenu-info-block-image img {
  height: 40px;
  margin-right: 10px;
}
.megamenu-content .megamenu-info-block-image p {
  color: #006EB3;
  line-height: 1.2rem;
}

.megamenu-background {
  background: #fff;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: calc(140px * 1.5);
  right: 0;
  height: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  display: flex;
  width: 80%;
}

.megamenu-dim {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 140px;
  visibility: hidden;
  opacity: 0;
  z-index: -9997;
  transition: all 0.3s ease-in-out;
}
body.megamenu-visible .megamenu-dim {
  z-index: 9997;
  visibility: visible;
  opacity: 1;
}

.mobile-logo {
  display: none;
  max-width: 180px;
  margin-top: 20px;
  margin-left: 25px;
}
@media (max-width: 1050px) {
  .mobile-logo {
    display: block;
  }
}
.mobile-logo img {
  max-width: 100%;
}

.mobile-search {
  display: none;
  height: 33px;
  width: 32px;
  margin-top: 30px;
  position: absolute;
  right: 90px;
  z-index: 1000;
}
@media (max-width: 1050px) {
  .mobile-search {
    display: block;
  }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100vw;
  height: 100vh;
  z-index: 100;
  overflow-y: scroll;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav-trigger {
  display: none;
  height: 80px;
  width: 80px;
  margin-top: 5px;
  margin-right: 5px;
  position: relative;
  z-index: 1000;
  /*Hamburger Animation*/
}
@media (max-width: 1050px) {
  .mobile-nav-trigger {
    display: block;
  }
}
.mobile-nav-trigger .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mobile-nav-trigger .hamRotate.active {
  transform: rotate(45deg);
}
.mobile-nav-trigger .hamRotate180.active {
  transform: rotate(180deg);
}
.mobile-nav-trigger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #006EB3;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.mobile-nav-trigger .ham4 .top {
  stroke-dasharray: 40 121;
}
.mobile-nav-trigger .ham4 .bottom {
  stroke-dasharray: 40 121;
}
.mobile-nav-trigger .ham4.active .top {
  stroke-dashoffset: -68px;
}
.mobile-nav-trigger .ham4.active .bottom {
  stroke-dashoffset: -68px;
}
.mobile-nav > li {
  list-style: none;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #00263E;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
}
.mobile-nav-logo {
  max-width: 300px;
  margin: 0 25px;
  margin-top: 100px;
  margin-bottom: 50px;
}
.mobile-nav-logo img {
  max-width: 100%;
}
.mobile-nav-dropdown-content-section h3 {
  text-align: center;
  font-size: 1.1rem;
  color: #B7C9D3;
  color: #C1A01F;
  margin-bottom: 5px;
  margin-top: 15px;
}
.mobile-nav-dropdown-content-section-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav-dropdown-content-section-links a {
  text-transform: none;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: normal;
}

#searchModal {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 10000000000000;
}
#searchModal .close-x {
  top: 35px;
  right: 25px;
  font-size: 3rem;
  cursor: pointer;
  color: white;
}
@media (max-width: 769px) {
  #searchModal .close-x {
    font-size: 2.25rem;
  }
}
#searchModal .searchModalInputs {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#searchModal .searchForm input:first-child {
  background: none;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid white;
  color: white;
  width: 35vw;
  font-size: 3rem;
  line-height: 3rem;
  padding: 0.5rem;
}
@media (max-width: 769px) {
  #searchModal .searchForm input:first-child {
    width: 65vw;
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}
#searchModal .searchForm input:last-child {
  cursor: pointer;
  height: 50px;
  width: 50px;
  /*background: url(/Images/search-icon.png);*/
  /*background-size: contain;
  background-repeat: no-repeat;*/
  -webkit-appearance: none;
  border: none;
}
@media (max-width: 769px) {
  #searchModal .searchForm input:last-child {
    height: 35px;
    width: 35px;
  }
}
#searchModal .searchForm button {
  cursor: pointer;
  height: 50px;
  -webkit-appearance: none;
  border: none;
}
@media (max-width: 769px) {
  #searchModal .searchForm button {
    height: 35px;
    width: 35px;
  }
}

.resources-header {
  margin-top: 140px;
  padding: 40px 21%;
  width: 100%;
  background-color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 250px;
}
@media (max-width: 1050px) {
  .resources-header {
    margin-top: 90px;
    padding: 40px 10%;
  }
}
.resources-header h1 {
  max-width: 1200px;
  font-weight: 100;
  text-transform: none;
  font-size: 4.25rem;
  line-height: 4.25rem;
  color: #00263E;
}
@media (max-width: 769px) {
  .resources-header h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
.resources-header p {
  max-width: 1200px;
  width: 70%;
}
@media (max-width: 2000px) {
  .resources-header p {
    width: 80%;
  }
}
@media (max-width: 769px) {
  .resources-header p {
    width: 100%;
  }
}
.resources-header-for-you-crew {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 12%;
}
@media (max-width: 1600px) {
  .resources-header-for-you-crew {
    display: none;
  }
}
.resources-header-for-you-crew img {
  max-width: 150px;
  transform: rotate(-10deg);
}
.resources-header-for-you-crew a {
  color: #C1A01F;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: underline;
}
.resources-body {
  display: flex;
  padding: 0 10%;
  padding-bottom: 50px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .resources-body {
    flex-direction: column;
  }
}
.resources-body-bim {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00263E;
}
.resources-body-bim p {
  color: white;
  font-size: 1.25rem;
}
.resources-body-bim img {
  width: 20px;
  max-width: 100%;
  margin-left: 15px;
}
.resources-body-filters {
  border: 1px solid #C4C4C4;
  padding: 5px 10%;
  min-height: 250px;
}
@media (max-width: 900px) {
  .resources-body-filters {
    min-height: auto;
    padding: 5px 25px;
  }
}
@media (max-width: 450px) {
  .resources-body-filters {
    margin-bottom: 15px;
  }
}
.resources-body-filters h3 {
  margin-bottom: 10px;
  color: #00263E;
}
@media (max-width: 1150px) {
  .resources-body-filters {
    font-size: 1.5rem;
  }
}
.resources-body-filters-container {
  padding: 0 50px;
  width: 25%;
}
@media (max-width: 1500px) {
  .resources-body-filters-container {
    width: 35%;
  }
}
@media (max-width: 1200px) {
  .resources-body-filters-container {
    width: 45%;
  }
}
@media (max-width: 900px) {
  .resources-body-filters-container {
    width: 100%;
    padding: 0;
  }
}
.resources-body-filters-container h2 {
  color: #00263E;
  font-size: 1.5rem;
  line-height: 2rem;
  /*height: 50px;*/
  margin-bottom: 0;
  font-weight: normal;
}
@media (max-width: 1150px) {
  .resources-body-filters-container h2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}
.resources-body-filters-count {
  color: #959595;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.resources-body-filters > div {
  padding: 25px 0;
  border-bottom: 1px solid #E4E4E4;
}
@media (max-width: 900px) {
  .resources-body-filters > div {
    border-bottom: none;
  }
}
.resources-body-filters > div:last-child {
  border-bottom: none;
}
.resources-body-content {
  width: 75%;
  display: flex;
  flex-direction: column;
  /*&-controls {
    display: flex;
    justify-content: end;
    width: 100%;
    height: 50px;
    margin-bottom: -8px;
    margin-top: 38px;

    @media(max-width: 1150px) {
      margin-top: 25px;
    }

    @media(max-width: 450px) {
      flex-direction: column;
      align-items: end;
      height: 70px;
      margin-bottom: 10px;
    }

    & > div {
      display: flex;
      margin-left: 40px;

      @media(max-width: 450px) {
        margin-top: 10px;
      }

      select {
        margin-left: 5px;
        height: 30px;
      }
    }
  }*/
  /*&-search {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border: none;
    background-color: #F1F1F1;
    height: 50px;
    position: relative;

    form {
      display: flex;
      align-items: center;
    }

    input {
      width: 100%;
      border: none;
      background-color: transparent;
      height: 50px;
      padding: 0 10px;
    }

    button {
      position: absolute;
      right: 5px;
      padding: 5px 15px;

      img {
        height: 18px;
      }
    }
  }*/
  /*&-pagination {
    display: flex;
    justify-content: center;

    &-buttons {
      display: flex;
      align-items: center;
    }
  }*/
}
@media (max-width: 1500px) {
  .resources-body-content {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .resources-body-content {
    width: 55%;
  }
}
@media (max-width: 900px) {
  .resources-body-content {
    width: 100%;
  }
}
.resources-body-content-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .resources-body-content-results {
    justify-content: center;
  }
}
.resources-body-content-results .resources-entry {
  display: flex;
  flex-direction: column;
  width: 32%;
  margin-bottom: 30px;
  border: 1px solid #C4C4C4;
  margin-right: 2%;
  position: relative;
}
@media (max-width: 1500px) {
  .resources-body-content-results .resources-entry {
    width: 48%;
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .resources-body-content-results .resources-entry {
    width: 100%;
    max-width: 450px;
  }
}
@media (min-width: 1500px) {
  .resources-body-content-results .resources-entry:nth-child(3n) {
    margin-right: 0;
  }
}
@media (max-width: 1500px) {
  .resources-body-content-results .resources-entry:nth-child(2n+1) {
    margin-right: 2%;
  }
}
@media (max-width: 1200px) {
  .resources-body-content-results .resources-entry:nth-child(2n+1) {
    margin-right: 0;
  }
}
@media (max-width: 1500px) {
  .resources-body-content-results .resources-entry:nth-child(2n) {
    margin-left: 2%;
  }
}
@media (max-width: 1200px) {
  .resources-body-content-results .resources-entry:nth-child(2n) {
    margin-left: 0;
  }
}
.resources-body-content-results .resources-entry > img {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.resources-body-content-results .resources-entry-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  /*margin-bottom: 20px;*/
}
.resources-body-content-results .resources-entry-content {
  padding: 20px 30px;
  /*border-bottom: 1px solid #C4C4C4;*/
  display: flex;
  justify-content: space-between;
}
.resources-body-content-results .resources-entry-content h3 {
  font-weight: normal;
  font-size: 1.35rem;
  line-height: 1.5rem;
  /*margin-bottom: 25px;*/
  color: #00263E;
}
.resources-body-content-results .resources-entry-content h4 {
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 10px;
  text-transform: none;
}
.resources-body-content-results .resources-entry-content p {
  color: #00263E;
}
.resources-body-content-results .resources-entry-content-icon {
  padding-left: 10px;
}
.resources-body-content-results .resources-entry-content-icon img {
  width: 40px;
  height: 40px;
}
.resources-body-content-results .resources-entry-metadata {
  display: flex;
  padding: 10px 35px;
}
.resources-body-content-results .resources-entry-metadata p {
  color: #959595;
  margin-right: 15px;
  font-size: 0.9rem;
}
.resources-table {
  max-width: 1000px;
  margin-top: 40px;
}
.resources-table-product h3 {
  margin: 40px 0 10px;
}
.resources-table-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid black;
  padding: 10px 0;
}
.resources-table-row-download {
  display: flex;
  align-items: center;
}
.resources-table-row-download img {
  margin-left: 15px;
  width: 30px;
}

.product-legend {
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #959595;
  margin-bottom: 10px;
}
