@charset "UTF-8";
/* -----------------------------------------------
    HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header {
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #F6F6F6;
}
.header.nav-active:before {
  display: block;
  bottom: 0;
  opacity: 0;
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.header:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  opacity: 1;
  background: rgba(126, 157, 98, 0.7);
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
  z-index: -1;
}
.header.sticky .top-bar .logo-image {
  -webkit-transform: scale(0.8) translateY(-15px);
      -ms-transform: scale(0.8) translateY(-15px);
          transform: scale(0.8) translateY(-15px);
}
.header.sticky .top-bar.active .logo-image {
  -webkit-transform: scale(1) translateY(0);
      -ms-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.header .wrapper.large {
  max-width: 1680px;
  padding: 0 1%;
}

.top-bar {
  height: auto;
  overflow: visible;
  background: #F6F6F6;
}
.top-bar .nav-background {
  display: none;
  position: absolute;
  width: 100%;
  height: calc(100% - 4px);
  background: rgba(126, 157, 98, 0.7);
  top: 50px;
  left: 0;
  z-index: -1;
}
.top-bar .logo-image {
  position: absolute;
  top: 12px;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  width: 100px;
}
.top-bar .logo-image a {
  display: block;
}
.top-bar .logo-image a img {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: block;
  max-width: 100%;
}
.top-bar ul {
  margin: 0;
  position: relative;
}
.top-bar ul li a, .top-bar ul li .main-link {
  font-size: 16px;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  color: #363636;
  cursor: pointer;
  padding: 12px 10px;
  display: block;
}
.top-bar ul li.has-sub-nav a, .top-bar ul li.has-sub-nav .main-link {
  padding: 12px 0 12px 10px;
}
.top-bar ul li.has-sub-nav a svg, .top-bar ul li.has-sub-nav .main-link svg {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
.top-bar ul li.has-sub-nav.right .sub-nav {
  right: 100px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-bar ul li.has-sub-nav.right .sub-nav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 30px 0 0;
}
.top-bar ul li.has-sub-nav .sub-nav {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  top: 46px;
  z-index: 5;
  margin-top: 0;
}
.top-bar ul li.has-sub-nav .sub-nav#ulFoundation {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  right: 0;
}
.top-bar ul li.has-sub-nav .sub-nav li {
  margin: 0 15px 0 0;
}
.top-bar ul li.has-sub-nav .sub-nav li a {
  padding: 12px 10px;
  color: #fff;
}
.top-bar ul li.has-sub-nav .sub-nav li:last-child {
  margin-right: 0;
}
.top-bar ul li:last-child {
  margin-right: 0;
}
.top-bar ul li:last-child a {
  padding-right: 0;
}
.top-bar .nav-expand {
  display: none;
  position: relative;
  padding: 0;
}
.top-bar .nav-expand a {
  display: block;
  padding: 23px 50px;
}
.top-bar .nav-expand a:hover .hamburger span,
.top-bar .nav-expand a:hover .hamburger span:nth-of-type(2) {
  width: 100%;
}
.top-bar .nav-expand .hamburger {
  position: absolute;
  width: 35px;
  right: 0;
  top: 11px;
}
.top-bar .nav-expand .hamburger span {
  background: #363636;
  border-bottom: 3px solid #363636;
  width: 60%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  cursor: pointer;
}
.top-bar .nav-expand .hamburger span:nth-of-type(2) {
  top: 11px;
  width: 80%;
}
.top-bar .nav-expand .hamburger span:nth-of-type(3) {
  top: 22px;
  width: 100%;
}
.top-bar .nav-expand.active .hamburger .top {
  width: 100%;
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
      -ms-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
}
.top-bar .nav-expand.active .hamburger .middle {
  opacity: 0;
}
.top-bar .nav-expand.active .hamburger .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
}
.top-bar.active .logo-image {
  position: relative;
  top: 0;
  z-index: 3;
}
.top-bar.active .logo-image img {
  width: 40px;
  height: 40px;
}
.top-bar.active .hamburger span {
  background: #363636;
  border-color: #363636;
}

/* -----------------------------------------------
    FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.disclaimer {
  text-align: left;
  margin-bottom: 80px;
  width: 60%;
}
.disclaimer p.copyright {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
}
.disclaimer .links {
  display: inline-block;
  font-weight: 500;
}
.disclaimer .links a {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  border-left: 1px solid #fff;
  padding-left: 10px;
  margin-left: 10px;
}
.disclaimer p.disclaimer-message {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 150px 0 80px;
  margin: 0 -1.5%;
}
.footer-columns .footer-column {
  float: none;
  -ms-flex-preferred-size: 17%;
      flex-basis: 17%;
  margin: 0 1.5%;
  padding-right: 0;
}
.footer-columns .footer-column h4 {
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  text-transform: uppercase;
}
.footer-columns .footer-column h4 svg {
  display: inline-block;
  position: relative;
  top: 4px;
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.footer-columns .footer-column h4 svg:hover {
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.primary-footer .footer-columns .footer-nav ul li a {
  color: #BCD5BC;
  font-size: 18px;
}
.primary-footer .footer-columns .footer-nav ul li a:hover {
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
}

.footer-contact ul.contact-info {
  padding: 0;
  margin: 22px 0;
}
.footer-contact ul.contact-info li {
  margin: 0;
}

.footer-contact .social-links li:last-child {
  margin-right: 0;
}

.primary-footer {
  width: 100%;
  background: rgba(43, 68, 38, 0.96);
  position: relative;
  color: #fff;
  padding: 0;
  font-family: brandon-grotesque, sans-serif;
}
.primary-footer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/images/heroes/electrical-lines-footer.png);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.primary-footer .wrapper.large {
  max-width: 1500px;
}
.primary-footer .logo {
  margin-top: 0;
}
.primary-footer .logo-image {
  width: 120px;
}
.primary-footer .social-links a {
  font-size: 20px;
  color: #BCD5BC;
}

/* -----------------------------------------------
    MAIN STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
  background: #fff;
  color: #333;
  font-family: proxima-nova, sans-serif;
}
body.admin {
  background: url(/images/bg.jpg) repeat;
}

h1, h2, h3, h4, h5, h6 {
  font-family: brandon-grotesque, sans-serif;
  color: #51672F;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

a {
  color: #363636;
}

.button {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 14px 30px 12px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  color: #363636;
  cursor: pointer;
}
.button a {
  color: #fff;
}
.button i {
  margin: 0 0 0 12px;
  -webkit-transition: none;
  transition: none;
}
.button.large {
  font-size: 24px;
  padding: 16px 30px;
  font-weight: 700;
  border-radius: 0;
}
.button.medium {
  font-size: 20px;
  padding: 12px 25px;
  font-weight: 700;
  border-radius: 0;
}
.button.small {
  font-size: 16px;
  padding: 5px 22px;
  font-weight: 700;
}
.button.x-small {
  font-size: 12px;
  padding: 7px 10px;
}
.button.primary {
  border-color: #7E9D62;
  background: #7E9D62;
  color: #fff;
  border: 0;
}
.button.secondary {
  background: #fff;
  color: #363636;
}
.button:hover {
  text-decoration: none;
}
.button:hover.primary {
  background: #51672F;
}
.button:hover.secondary {
  background: #51672F;
}

/* -----------------------------------------------
   GLOBAL STYLING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wrapper.large {
  max-width: 1250px;
}

span.icon-with-circle {
  display: block;
  position: relative;
  width: 48px;
  margin: 0 auto;
}
span.icon-with-circle.top-left .imperfect-circle {
  top: -6px;
  left: -11px;
}
span.icon-with-circle.top-right .imperfect-circle {
  top: -9px;
  right: -7px;
}
span.icon-with-circle.bottom-left .imperfect-circle {
  left: -10px;
  bottom: 10px;
}
span.icon-with-circle.bottom-right .imperfect-circle {
  right: -6px;
  bottom: 8px;
}
span.icon-with-circle.small {
  width: 30px;
  left: 0;
  bottom: 0;
}
span.icon-with-circle.small svg.feather {
  stroke: #7E9D62;
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
}
span.icon-with-circle.small svg.imperfect-circle {
  position: absolute;
  width: 36px;
  height: 30px;
  fill: #CEE6B9;
  stroke: #CEE6B9;
  top: -1px;
  left: 3px;
}
span.icon-with-circle svg.feather {
  stroke: #7E9D62;
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
}
span.icon-with-circle svg.imperfect-circle {
  position: absolute;
  width: 48px;
  height: 46px;
  fill: #F6F6F6;
}

.title-with-icon {
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
.title-with-icon h3 {
  border-bottom: 1px solid #363636;
  padding-bottom: 10px;
  display: inline-block;
  color: #363636;
  margin-bottom: 0;
  text-transform: uppercase;
}
.title-with-icon span.icon-with-circle {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: -50px;
  margin-right: 15px;
}
.title-with-icon span.icon-with-circle:after {
  right: -12px;
  top: 0;
  bottom: 0;
  margin: 8px 0;
  background-color: #BCD5BC;
}
.title-with-icon svg {
  height: 30px;
  width: 30px;
  stroke: #7E9D62;
}
.title-with-icon a {
  float: right;
  font-weight: 500;
  text-transform: uppercase;
  color: #2B4426;
  font-family: brandon-grotesque, sans-serif;
}

.two-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.two-col .join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-right: 100px;
  width: 400px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 24px;
}
.two-col .join .button {
  margin-top: 80px;
}
.two-col .links a {
  display: block;
  margin-bottom: 30px;
  color: #363636;
  font-family: brandon-grotesque, sans-serif;
  font-size: 24px;
}
.two-col .links a svg {
  display: inline-block;
  vertical-align: middle;
  stroke: #363636;
  width: 20px;
  height: 20px;
}

.content {
  background: transparent;
  margin: 0 auto;
  padding: 0;
}

#lnkLogin {
  background-color: #7E9D62;
  color: #fff;
  border-radius: 0;
  padding: 4px 12px;
  font-weight: 500;
}

.page-title .main-title {
  background: #BCD5BC;
  padding: 50px 0 40px;
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
}

/* -----------------------------------------------
    FORM STYLING
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.error-msg {
  color: #ec1c24;
  margin-bottom: 25px;
}

.extra-links {
  margin: 30px 0 0;
  font-style: italic;
}

.row.links {
  margin-top: 10px;
}

/* Generic Forms
--------------------------- */
.form-row {
  margin: 0 0 20px;
}
.form-row.submit {
  margin: 35px 0 10px;
}
.form-row label {
  text-align: left;
  margin: 0 0 7px;
}
.form-row label.error {
  color: #ec1c24;
  font-size: 14px;
  margin: 4px 0;
}

.form-note {
  font-size: 14px;
  font-style: italic;
  margin: 10px 0;
}
.form-note.gray-bg {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #ddd;
}

.input-container {
  border: 2px solid #ccc;
}
.input-container.focused {
  border-color: #777;
}
.input-container.w-icon {
  position: relative;
}
.input-container.w-icon input {
  padding-left: 30px;
}
.input-container.w-icon .input-icon {
  position: absolute;
  top: 5px;
  left: 9px;
  color: #aaa;
}
.input-container.inline {
  display: inline-block;
}
.input-container input, .input-container textarea {
  border: 0;
  background: transparent;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 7px 15px;
}
.input-container textarea {
  width: 99%;
  padding: 15px;
}
.input-container.checkboxlist, .input-container.radiobuttonlist {
  border: 0;
  background: none;
}
.input-container.checkboxlist table, .input-container.radiobuttonlist table {
  margin: 10px 0 0;
}
.input-container.checkboxlist td, .input-container.radiobuttonlist td {
  border: 0;
  padding: 5px 0;
}
.input-container.checkboxlist input, .input-container.radiobuttonlist input {
  position: relative;
  top: 2px;
  border: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 7px 0 0;
}
.input-container.checkboxlist label label, .input-container.radiobuttonlist label label {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  min-width: 130px;
  margin: 0;
}
.input-container.checkboxlist.inline tr, .input-container.radiobuttonlist.inline tr {
  display: inline;
}
.input-container.checkboxlist.inline tr:last-child td, .input-container.radiobuttonlist.inline tr:last-child td {
  padding: 0;
}
.input-container.checkboxlist.inline td, .input-container.radiobuttonlist.inline td {
  display: inline;
  border: 0;
  padding: 0 30px 0 0;
}
.input-container.checkboxlist.inline label, .input-container.radiobuttonlist.inline label {
  display: inline;
}
.input-container.select select {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 7px 15px 7px;
  margin: 0;
}
.input-container.select select[disabled] {
  background: #ddd;
  color: #888;
}

.checkbox .input-container {
  border: 0;
  display: inline-block;
}

.checkbox .input-container input {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 0;
}

.checkbox label {
  display: inline-block;
  margin: 0;
}

input[disabled=disabled] {
  background: #e0e0e0;
}

/* Select2 Styling
--------------------------- */
.select2-container {
  width: 100%;
  height: 37px;
}
.select2-container .select2-choice {
  border: 0;
  border-radius: 0;
  background: 0;
  color: #656565;
  padding: 5px 0 8px 8px;
  height: 37px;
}
.select2-container .select2-choice .select2-arrow {
  border: 0;
  border-radius: 0;
  background: none;
}
.select2-container .select2-choice .select2-arrow b {
  background-position: -2px 6px;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-drop-active {
  -webkit-transform: scale(1.01) translateY(3px);
  -ms-transform: scale(1.01) translateY(3px);
  transform: scale(1.01) translateY(3px);
  border: 2px solid #ccc;
}

.select2-search input,
.select2-search input:focus {
  border: 1px solid #bcd5bc;
  color: #656565;
}

/* Specfic Form Overrides */
#rblPaymentInfo td input {
  margin-left: 15px;
}
#rblPaymentInfo td label {
  display: inline-block;
}

/* -----------------------------------------------
   HOMEPAGE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.homepage {
  overflow: hidden;
}
.homepage section {
  clear: both;
}
.homepage section:last-child {
  margin-bottom: 0;
}
.homepage .hero {
  position: relative;
  background-image: url("/images/heroes/power-lines.png");
  background-position: top;
  background-size: cover;
  height: calc(100vh - 47px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin-bottom: 0;
  -webkit-transition: all ease-in-out 1000ms;
  transition: all ease-in-out 1000ms;
}
.homepage .hero:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(68, 84, 106, 0.85);
  top: 0;
  left: 0;
}
.homepage .hero .wrapper {
  margin-top: 75px;
  margin-bottom: 238px;
}
.homepage .hero .hero-text {
  height: auto;
  margin: 100px 0 0;
  position: relative;
  z-index: 5;
}
.homepage .hero .hero-text h1 {
  color: #fff;
  font-size: 90px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.homepage .hero .hero-text p {
  color: #fff;
  font-family: brandon-grotesque, sans-serif;
  font-size: 22px;
}
.homepage .hero .scroll-down {
  display: inline-block;
  color: #fff;
  padding: 15px;
  -webkit-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 9;
  top: 15px;
}
.homepage .hero .scroll-down svg {
  display: block;
  margin: 5px auto 0;
}
.homepage .hero .scroll-down:hover svg {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.homepage .hero .hero-slider {
  position: relative;
  z-index: 5;
}
.homepage .hero .hero-slider .card {
  padding: 18px 18px 10px;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.homepage .hero .hero-slider .title-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.homepage .hero .hero-slider .title-section .title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}
.homepage .hero .hero-slider .title-section .rotator-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.homepage .hero .hero-slider .title-section .rotator-controls a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homepage .hero .hero-slider .title-section .rotator-controls a:first-child {
  margin-right: 10px;
}
.homepage .hero .hero-slider .title-section .rotator-controls svg {
  height: 40px;
  width: 40px;
  stroke: #BCD5BC;
  -webkit-transition: stroke ease-in-out 250ms;
  transition: stroke ease-in-out 250ms;
}
.homepage .hero .hero-slider .title-section .rotator-controls svg:hover {
  stroke: #51672F;
}
.homepage .hero .hero-slider .slides a {
  display: block;
}
.homepage .hero .hero-slider .slides img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.homepage .hero .hero-slider .flex-control-nav {
  margin: 20px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.homepage .hero .hero-slider .flex-control-paging li a {
  background: #fff;
}
.homepage .hero .hero-slider .flex-control-paging li a.flex-active {
  background: #44546A;
}
.homepage .hero .secondary-nav-new {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
.homepage .hero .secondary-nav-new ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0;
  margin: 0;
}
.homepage .hero .secondary-nav-new ul li {
  display: inline-block;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  margin-right: 5px;
  margin-bottom: 0;
}
.homepage .hero .secondary-nav-new ul li:last-child {
  margin-right: 0;
}
.homepage .hero .secondary-nav-new ul li a {
  background-color: rgba(206, 230, 185, 0.9);
  color: #51672F;
  width: 100%;
  height: 100%;
  padding: 40px 15px;
  display: block;
  font-size: 20px;
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.homepage .hero .secondary-nav-new ul li a:hover {
  background-color: #cfe7bb;
}
.homepage .join-tema {
  position: relative;
  margin-bottom: 0;
  padding: 40px 0;
  z-index: 5;
}
.homepage .join-tema .content {
  background-color: transparent;
  padding: 40px 0;
  margin-top: 0;
}
.homepage .join-tema .content h2 {
  max-width: 90%;
  color: #7E9D62;
  margin-top: 16px;
  margin-bottom: 75px;
  font-weight: 500;
  line-height: 1.4;
}
.homepage .join-tema .two-col {
  color: #2B4426;
}
.homepage .join-tema .two-col .join .button {
  margin-top: 50px;
}
.homepage .join-tema .two-col .links {
  position: relative;
  z-index: 999;
}
.homepage .join-tema .two-col .links a {
  color: #7E9D62;
}
.homepage .join-tema .two-col .links a svg {
  stroke: #7E9D62;
}
.homepage .news-and-events {
  background-image: url("/images/heroes/telephone-line.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
  margin-bottom: 0;
}
.homepage .news-and-events:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 250, 250, 0);
}
.homepage .news-and-events .title-with-icon {
  margin-bottom: 0;
}
.homepage .news-and-events .news-card {
  float: right;
  width: 46%;
  margin-right: 0;
  margin-bottom: 4%;
  position: relative;
  z-index: 5;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.homepage .news-and-events .news-card:nth-child(4n+1) {
  float: left;
  margin: 25% 3% 4% 0;
}
.homepage .news-and-events .news-card:last-child {
  margin-bottom: 0;
}
.homepage .news-and-events .news-card img {
  width: 100%;
  height: 385px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
.homepage .news-and-events .news-card .card-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  background-color: #7E9D62;
  color: #fff;
  font-size: 24px;
}
.homepage .news-and-events .news-card .card-title a svg {
  width: 40px;
  height: 40px;
  stroke: #BCD5BC;
}
.homepage .news-and-events .news-card a:hover svg {
  stroke: #51672F;
}
.homepage .news-and-events .links {
  float: left;
  margin-top: 50px;
  position: relative;
  z-index: 5;
  font-family: brandon-grotesque, sans-serif;
  font-size: 24px;
}
.homepage .news-and-events .links a {
  display: block;
  padding: 15px 0;
}
.homepage .news-and-events .links a svg {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}
.homepage .resources {
  background-color: #fff;
  margin: 0;
  padding: 80px 0;
}
.homepage .resource-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.homepage .resource-options .option {
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
  margin-right: 4%;
  position: relative;
  -webkit-box-shadow: inset 0 0 0 7px rgba(250, 250, 250, 0.5);
          box-shadow: inset 0 0 0 7px rgba(250, 250, 250, 0.5);
}
.homepage .resource-options .option:nth-child(4n) {
  margin-right: 0;
}
.homepage .resource-options .option img {
  width: 300px;
  height: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.homepage .resource-options .option:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(126, 157, 98, 0.6);
  z-index: 2;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
  border: 12px solid rgba(188, 213, 188, 0.6);
}
.homepage .resource-options .option .option-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 3;
  opacity: 0.8;
  -webkit-transition: all ease-in-out 250ms;
  transition: all ease-in-out 250ms;
  text-transform: uppercase;
  padding: 15px;
}
.homepage .resource-options .option .option-text h4 {
  color: #fff;
  max-width: 140px;
  margin: 0 auto 10px;
}
.homepage .resource-options .option .option-text svg {
  stroke: #fff;
  width: 40px;
  height: 40px;
}
.homepage .resource-options .option:hover:after {
  background-color: rgba(81, 103, 47, 0.6);
}
.homepage .resource-options .option:hover .option-text {
  opacity: 1;
}
.homepage .membership {
  position: relative;
  background-image: url("/images/heroes/powerplant.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  margin-bottom: 0;
}
.homepage .membership:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 54, 54, 0.69);
  mix-blend-mode: multiply;
}
.homepage .membership:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 54, 54, 0.85);
  mix-blend-mode: screen;
}
.homepage .membership .title-with-icon {
  position: relative;
  z-index: 5;
}
.homepage .membership .title-with-icon span:after {
  right: auto;
  left: -5px;
  margin: 0 auto;
}
.homepage .membership .title-with-icon h3 {
  color: #fff;
  border-color: #fff;
}
.homepage .membership .title-with-icon span:after {
  background-color: #fff;
}
.homepage .membership .content {
  position: relative;
  background-color: transparent;
  color: #fff;
  padding: 0;
  margin: 0;
  z-index: 5;
}
.homepage .membership .content h2 {
  color: #fff;
  margin-bottom: 50px;
  max-width: 1000px;
  font-weight: 500;
}
.homepage .membership .content .two-col .links a {
  color: #fff;
}
.homepage .membership .content .two-col .links a svg {
  stroke: #fff;
}
.homepage .ad-banner-container {
  position: relative;
  margin: 100px auto 0;
  max-width: 970px;
  width: 100%;
}
.homepage .ad-banner-container .ad-image img {
  max-width: 100%;
  border: 1px solid #808080;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.homepage .ad-banner-container.small {
  margin: 40px auto;
}
.homepage .ad-banner-container .flex-viewport {
  height: 100% !important;
}
.homepage .ad-slider .flex-control-nav {
  display: none;
}

.main {
  margin-top: 50px;
  background-image: url("/images/bg.jpg");
  background-repeat: repeat;
  padding-bottom: 40px;
}
.main .banner {
  position: relative;
}
.main .banner img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.main .banner:before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.main .banner .banner-text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  z-index: 9;
}
.main .banner .banner-text .title, .main .banner .banner-text .subtitle {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-align: center;
}
.main .banner .banner-text .subtitle {
  margin-top: 10px;
  font-weight: 400;
}
.main .content {
  background: rgba(255, 255, 255, 0.75);
  margin: 40px auto;
  padding: 60px 40px;
}
.main .content.regional-chapters {
  margin-top: 0;
  padding: 25px 40px;
}

.regional-chapters-intro {
  text-align: center;
}
.regional-chapters-intro .regional-chapters-intro-text {
  padding: 50px 15px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

.regional-chapters-banner {
  font-family: brandon-grotesque, sans-serif;
}

.regional-chapters .regional-chapters-sidebar {
  width: 100%;
  right: 0;
  float: none;
}
.regional-chapters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -15px;
}
.regional-chapters li.regional-chapter-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333333333% - 30px);
          flex: 0 0 calc(33.3333333333% - 30px);
  margin: 15px;
}

.regional-chapters-sidebar .regional-chapter-item .bar-title a,
.regional-chapters-sidebar .regional-chapter-item .bar-title a:hover {
  font-size: 16px;
  padding: 12px 0 12px 22px;
}

.regional-chapters-sidebar .regional-chapter-item .bar-title:hover {
  background-color: #51672F;
}

.regional-chapters-sidebar .regional-chapter-item .bar-title a i {
  font-size: 20px;
}

.meeting-title {
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
}

.golf .expo-description .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.golf .expo-description .intro .intro-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* -----------------------------------------------
   MEMBERSHIP
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.membership .membership-types {
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px;
}
.membership .membership-types h4 {
  margin: 0 0 40px;
}
.membership .membership-types .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.membership .membership-types .membership-type {
  -ms-flex-preferred-size: calc(50% - 40px);
      flex-basis: calc(50% - 40px);
  margin: 20px;
}
.membership .membership-types .membership-type-title {
  font-family: "Roboto Slab", serif;
  color: #72a06c;
  font-size: 18px;
  text-align: left;
}
.membership .membership-types .membership-type-content {
  text-align: left;
  font-size: 15px;
}

/* -----------------------------------------------
   LOGIN PAGE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.login .button {
  margin-right: 20px;
}
.login .new-account {
  margin-left: 10px;
}
.login .new-account:hover {
  text-decoration: underline;
  color: #363636;
}
.login .extra-links a:hover {
  text-decoration: underline;
  color: #363636;
}

/* -----------------------------------------------
   ADMIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.admin .page-title .main-title {
  padding: 50px 0 40px;
}
.admin .contact-image-link {
  text-align: left;
}
.admin .profile .box .box-title {
  background-color: #7E9D62;
}
.admin .profile .box .box-title:before {
  background: #7E9D62;
}
.admin .profile .contact .contact-info .chapter-location span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin .profile .contact .contact-info .chapter-location span a svg {
  margin-left: 10px;
}
.admin .profile .edit-button {
  font-size: 14px;
  text-transform: uppercase;
}
.admin .profile .profile-sidebar .contact-block {
  margin-bottom: 10px;
}
.admin .profile .profile-sidebar .contact-block:last-child {
  margin-bottom: 30px;
}
.admin .profile .profile-sidebar .contact-block-title {
  font-size: 18px;
  font-weight: 700;
}
.admin .profile .profile-sidebar #spnSocialLinks .temp-text {
  margin-left: 0;
}
.admin .profile .box.development ul {
  list-style: none;
}
.admin .profile .dashboard-renewal .edit-button {
  position: relative;
  top: 0;
}
.admin .profile .dashboard-renewal .atem-renewal {
  padding: 5px 0;
}
.admin table tr td {
  font-size: 15px;
}
.admin .user-sort h6.title {
  margin-bottom: 0;
}
.admin .wrapper.list-screen-wrapper {
  max-width: 1500px;
}

/* -----------------------------------------------
   SIDEBAR NAV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.about-sidebar li a {
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about .about-sidebar .bar-title:before,
.resources .about-sidebar .bar-title:before {
  left: -60px;
  width: 60px;
  background-color: #7E9D62;
}

.about .bar-title,
.resources .bar-title {
  background-color: #7E9D62;
  font-weight: 500;
}

.about .purpose .bar-title:after,
.about .contact-form .bar-title:after,
.resources .purpose .bar-title:after {
  background: #7E9D62;
  right: -60px;
  width: 60px;
}

/* -----------------------------------------------
   FOUNDATION PAGES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.foundation-homepage.homepage img {
  max-width: 100%;
}
.foundation-homepage.homepage .hero {
  height: 52vh;
  background-image: url(/images/heroes/tema-foundation-hero.jpg);
  background-position: left -160px;
}
.foundation-homepage.homepage .hero .hero-text, .foundation-homepage.homepage .hero h1, .foundation-homepage.homepage .hero .wrapper {
  margin: 0 auto;
}
.foundation-homepage.homepage .hero h1 {
  text-align: center;
}
.foundation-homepage.homepage .ad-banner {
  background: #fff;
  margin: 0;
  padding: 100px 0;
  text-align: center;
}
.foundation-homepage.homepage .more-donors ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: 0 -10px;
}
.foundation-homepage.homepage .more-donors ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333333333% - 20px);
          flex: 0 0 calc(33.3333333333% - 20px);
  margin: 10px;
}

.donate .form-container .input-container.radiobuttonlist table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.donate .form-container .input-container.radiobuttonlist table tbody tr {
  border-bottom: 0;
  margin-right: 30px;
}
.donate .form-container .input-container.radiobuttonlist table tbody tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* -----------------------------------------------
    GOLF PAGES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.golf.content h3.centered {
  border: none;
  position: relative;
}

.golf.content h3.centered:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(49, 67, 47, 0.5);
  margin: 0 auto;
}

.golf .intro .intro-text {
  text-align: left;
}

.golf .intro .golf-course-image {
  display: inline-block;
  margin: 0 25px 10px 0;
  -ms-flex-preferred-size: 475px;
      flex-basis: 475px;
}

.golf .intro .golf-course-image img {
  width: 450px;
}

.expo .intro {
  text-align: center;
  margin: 0 0 60px;
}

.golf .photo-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 200px;
  width: 100%;
  margin: 50px 0 75px;
}

.golf .photo-divider .photo {
  width: 23%;
  margin-right: 2%;
}

.golf .photo-divider .photo:last-child {
  margin-right: 0;
}

.golf .photo-divider .photo.wide {
  width: 48%;
  margin-right: 2%;
}

.golf .photo-divider img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.golf .entryfees {
  background: #eee;
  padding: 30px 40px 60px;
  text-align: center;
  margin: 0 0 60px;
}

.golf .expo-description {
  margin: 0;
}

.golf .entryfees h3 {
  color: #31432f;
  margin-bottom: 30px;
}

.golf-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 18px;
}

.golf .entryfees .golf-list {
  display: inline-block;
}

.golf-list li {
  margin: 0 0 7px;
}

.golf .entryfees .golf-list li {
  text-align: left;
}

.golf-list .item,
.golf-list .amount {
  display: inline-block;
  vertical-align: top;
}

.golf-list .item {
  width: 340px;
}

.entryfees .disclaimer {
  font-weight: bold;
  font-style: italic;
}

.sponsorships-block {
  background: #eee;
  display: inline-block;
  vertical-align: top;
  width: 47.8%;
  padding: 20px 10px;
}

.sponsorships-block:first-child {
  margin-right: 3.5%;
}

.golf .sponsorships-block .golf-list .item {
  width: 70%;
}

.golf .sponsorships-block .golf-list li {
  margin: 0 0 7px;
  padding: 0 0 7px;
  border-bottom: 1px solid #ddd;
}

.golf .sponsorships-block .golf-list li:last-child {
  border: 0;
}

.golf .sponsorships-block .golf-list .amount {
  margin-left: 10%;
  width: 15%;
}

.golf .sponsorships-block .golf-list .item.long {
  width: 90%;
}

.golf .sponsorships-block .golf-list .item .details {
  font-size: 14px;
  line-height: 22px;
  display: block;
  margin: 7px 0 0;
  text-align: left;
  font-style: italic;
}

.golf .sponsorships {
  margin: 0 0 30px;
}

.golf .cancellation {
  text-align: center;
  margin: 0 0 40px;
}

.golf .hotels .hotel-item {
  margin-bottom: 20px;
}

.sponsorship-opp-listing {
  margin-bottom: 20px;
  font-size: 13px;
}

.sponsorship-opp-listing ul {
  list-style: none;
  vertical-align: top;
  margin: 0;
}

.sponsorship-opp-listing li {
  margin: 0;
  display: inline-block;
  width: 49.5%;
  text-align: center;
  vertical-align: top;
}

.small {
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
}

.form-note.small {
  margin-top: 20px;
}

.description {
  margin-bottom: 10px;
  font-size: 14px;
}

.gray-bg {
  background-color: #eee;
  padding: 20px 20px 5px 20px;
  margin: 20px 0;
}

.gray-bg.topgolf-registration {
  width: 48%;
  margin: 20px 2% 20px 0;
  display: inline-block;
  min-height: 340px;
  vertical-align: top;
}

.gray-bg.topgolf-registration:last-child {
  margin-right: 0;
}

.gray-bg.topgolf-registration .description {
  font-weight: bold;
}

.gray-bg.topgolf-registration .sponsorship-opp-listing li {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.gray-bg .title {
  color: #728A7C;
}

#teamRegistration > label {
  font-weight: bold;
}

.content.golf > form {
  max-width: 800px;
  margin: 0 auto;
}

.registration-details.gray-bg {
  padding: 20px 30px 30px;
  text-align: center;
  margin: 10px 0 30px;
}

.registration-details h4 {
  color: #bcd5bc;
  border-bottom: 2px solid #ddd;
  padding: 0 0 15px;
}

.registration-details .detail-section strong {
  color: #31432f;
}

.image-gallery {
  display: inline-block;
  width: 300px;
  margin: 10px;
}

.image-gallery .img {
  width: 300px;
  height: 200px;
  margin: auto;
}

.image-gallery .img img {
  max-height: 200px;
  max-width: 300px;
}

.golf .details {
  margin-bottom: 45px;
}

.golf .details ul {
  /*    display: flex;*/
  /*    flex-flow: column;*/
  /*    align-items: flex-start;*/
  /*    justify-content: center;*/
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  margin-bottom: 20px;
}

.golf .details ul li {
  /*    width: 45%;*/
}

.golf .centered {
  text-align: center;
}

.golf .details .registration-button {
  width: 100%;
  margin-left: 0;
  background: transparent;
}

.golf .details .registration-button a {
  margin-right: 0;
}

.golf .details .registration-button .button.primary {
  background-color: #31432f;
}

.golf .registration-details.gray-bg {
  margin-left: auto;
  margin-right: auto;
}

.golf #secSponsors {
  margin-bottom: 50px;
}

.golf .sponsor-box {
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  padding: 45px 35px 55px;
}

.golf .sponsor-box .top-row {
  overflow: hidden;
}

.golf .sponsor-box .meet-and-greet {
  margin: 20px 0 0;
}

.golf .sponsor-box .item-sponsors h4 {
  border-bottom: 2px solid #ddd;
  padding-bottom: 3px;
}

.golf .sponsor-box ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.golf .sponsor-box li {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  padding: 10px;
}

.golf .golf-sponsor {
  display: inline-block;
  float: left;
  text-align: center;
  width: 31.3333333333%;
  margin-right: 3%;
  /*padding: 0 30px ;*/
  margin-bottom: 75px;
}

.golf .sponsor-box h4 span {
  border-bottom: 2px solid #ddd;
  padding-bottom: 3px;
}

.golf .golf-sponsor:nth-child(3n) {
  margin-right: 0;
}

.golf .sponsor-box img {
  max-width: 175px;
  width: 100%;
  max-height: 160px;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.golf .golf-sponsor:nth-child(3) img {
  margin-bottom: 25px;
}

.golf .meet-and-greet {
  font-size: 22px;
}

.golf .meet-and-greet-sponsors {
  margin-top: 40px;
}

.golf .meet-and-greet-sponsors h5 {
  font-size: 16px;
}

.golf .meet-and-greet-sponsors a {
  display: inline-block;
  vertical-align: top;
  margin: 15px 20px 0;
}

/* -----------------------------------------------
    TOPGOLF PAGES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.topgolf.expo .header {
  position: static;
  height: 360px;
  background-image: url(/images/golf/topgolf_sponsors_2021.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  background-position: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topgolf.content .header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(49, 67, 47, 0.5)), to(rgba(49, 67, 47, 0)));
  background: linear-gradient(90deg, rgba(49, 67, 47, 0.5) 0%, rgba(49, 67, 47, 0) 100%);
}

.topgolf h2 {
  color: #fff;
  position: relative;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-left: 40px;
  font-size: 48px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.topgolf h2 span {
  font-size: 30px;
}

.topgolf.expo .intro {
  margin-bottom: 0;
}

.topgolf.golf .intro .intro-text {
  width: 100%;
  margin-bottom: 30px;
}

.topgolf .intro .event-text {
  text-align: left;
  width: 49%;
  display: inline-block;
  margin-right: 1%;
  vertical-align: top;
}

.topgolf .intro .event-text:last-child {
  margin-right: 0;
}

.topgolf .intro .event-text h3 {
  text-transform: uppercase;
  font-size: 24px;
}

.topgolf .intro .event-text h4 {
  font-size: 20px;
}

.topgolf .intro .details {
  margin-bottom: 0;
}

.topgolf .intro .details ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  margin-bottom: 0;
}

.topgolf .intro .details ul li {
  width: 100%;
  padding-left: 60px;
}

.topgolf .intro .details ul li i {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.topgolf .button.secondary {
  background: #31432f;
  color: #fff;
}

.topgolf .sponsor-link {
  width: 60%;
  text-align: center;
  margin: 0 auto 40px;
  background-color: #bcd5bc;
  padding: 40px;
  border: 4px solid #72a06c;
}

.topgolf .sponsor-link a {
  color: #31432f;
  font-size: 18px;
  text-transform: unset;
  font-family: proxima-nova, sans-serif;
}

.topgolf .sponsor-link a i {
  font-size: 26px;
  display: block;
}

.topgolf .details .registration-button {
  padding: 20px 0 30px 60px;
  text-align: left;
}

.topgolf.golf .entryfees {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

.topgolf .entryfees .photo.left {
  width: 40%;
  margin-right: 20px;
}

.topgolf .entryfees .photo.left img {
  width: 100%;
}

.topgolf.golf .entryfees .entry-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.topgolf.golf .entryfees .entry-details h3 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.topgolf.golf .entryfees .entry-details p {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

.topgolf.golf .entryfees .entry-details ul {
  width: 45%;
  padding-left: 10px;
  margin-right: 10%;
}

.topgolf.golf .entryfees .entry-details ul:last-child {
  margin-right: 0;
}

.topgolf .entryfees .entry-details .golf-list li:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topgolf .entryfees .entry-details .golf-list .item {
  -webkit-box-flex: 80%;
      -ms-flex: 80%;
          flex: 80%;
  width: unset;
  padding-right: 40px;
}

.topgolf .entryfees .entry-details li.disclaimer {
  font-size: 14px;
}

.topgolf.golf .sponsorships-block .golf-list .item.long {
  display: none;
}

.topgolf.golf .sponsorships-block {
  display: block;
  margin-right: 0;
  width: 100%;
}

.topgolf.golf .sponsorships-block .golf-list .item {
  width: 80%;
}

.topgolf.golf .sponsorships-block .golf-list li {
  padding: 10px 0;
}

.topgolf.golf .sponsorships-block .golf-list .amount {
  margin-left: 10%;
  width: 10%;
}

.topgolf .expo-registration a.block {
  padding-top: 55px;
}

.topgolf.golf.content h3.centered:after {
  content: none;
}

.topgolf #secGolfContent .button-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.topgolf #secGolfContent .button-section .button {
  margin: 0 30px;
}

.topgolf .registration-block .topgolf-location,
.topgolf .registration-block .row.last {
  margin: 0 0 40px;
}

.topgolf .registration-block .topgolf-location a.selected {
  background-color: #31432f;
  border: 5px solid #31432f;
}

.topgolf .registration-block .attendee,
.topgolf .registration-block .sponsor {
  text-align: center;
}

.topgolf .registration-block .attendee .form-row label,
.topgolf .registration-block .sponsor .form-row label {
  text-align: center;
}

.topgolf .registration-block .attendee .form-row.button-section,
.topgolf .registration-block .sponsor .form-row.button-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.topgolf .registration-block .attendee .form-row .button,
.topgolf .registration-block .sponsor .form-row .button {
  margin-bottom: 15px;
  width: 160px;
}

.topgolf .registration-block .sponsor .form-row.dropdown {
  margin: 0 120px 20px;
}

.topgolf .registration-block .sponsor .sponsorship-opp-listing li {
  margin: 0 auto;
  display: block;
}

.topgolf .registration-details .detail-section {
  text-transform: capitalize;
  margin-bottom: 25px;
}

/* Max height */
@media (max-height: 800px) {
  /* Global */
  /* Homepage */
  /* Pages */
}
@media (max-width: 1850px) {
  /* Global */
  /* Homepage */
  /* Pages */
}
@media (max-width: 1600px) {
  /* Global */
  .header .wrapper {
    max-width: 1400px;
  }
  .primary-footer .wrapper.large {
    padding: 0 2%;
  }
  .top-bar ul li {
    margin: 0 8px;
  }
  /* Homepage */
  /* Pages */
}
/* Large Desktop */
@media (max-width: 1500px) {
  /* Global */
  .top-bar ul li {
    margin: 0 2px;
  }
  /* Homepage */
  /* Pages */
}
/* Laptop */
@media (max-width: 1440px) {
  /* Global */
  .header .wrapper {
    max-width: 1280px;
  }
  .header:before {
    bottom: -10px;
  }
  .top-bar .logo-image a img {
    width: 100px;
  }
  .top-bar ul li a, .top-bar ul li .main-link {
    font-size: 14px;
  }
}
/* iPad & Small Desktop */
@media (max-width: 1320px) {
  /* Global */
  .title-with-icon span.icon-with-circle {
    position: relative;
    left: 0;
  }
  .header .wrapper {
    width: 98%;
  }
  .header .wrapper.large {
    padding: 0;
  }
  .top-bar .logo-image a img {
    width: 80px;
  }
  .top-bar ul li.has-sub-nav.right .sub-nav {
    right: 0;
  }
  .top-bar ul li.has-sub-nav.right .sub-nav li {
    margin: 0 15px 0 0;
  }
  .top-bar ul li.has-sub-nav a,
  .top-bar ul li.has-sub-nav .main-link {
    padding: 12px 0;
  }
  /* Homepage */
  .homepage .join-tema .content h2 {
    max-width: 100%;
  }
  /* Pages */
  .regional-chapters-sidebar .regional-chapter-item .bar-title a i {
    display: none;
  }
}
@media (max-width: 1200px) {
  /* Global */
  span.icon-with-circle {
    width: 38px;
  }
  span.icon-with-circle.top-right .imperfect-circle {
    top: -5px;
    right: -5px;
  }
  span.icon-with-circle svg.feather {
    width: 38px;
    height: 38px;
  }
  span.icon-with-circle svg.imperfect-circle {
    width: 38px;
    height: 36px;
  }
  .header:before {
    bottom: -12px;
  }
  .top-bar ul li {
    margin: 0;
  }
  .top-bar ul li a, .top-bar ul li .main-link {
    font-size: 13px;
    padding: 12px 4px;
  }
  .top-bar ul li #lnkLogin {
    background-color: #F6F6F6;
    color: #363636;
    padding: 12px 4px;
  }
  .disclaimer {
    text-align: center;
    width: 100%;
  }
  .footer-columns {
    padding: 50px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .footer-columns .footer-column.footer-contact {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
  .footer-columns .footer-column {
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
  }
  .primary-footer .logo-image {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact ul.contact-info {
    max-width: 100%;
    text-align: center;
    margin: 5px auto 15px;
  }
  .social-links {
    float: none;
  }
  /* Homepage */
  .homepage .hero .hero-text h1 {
    font-size: 48px;
  }
  /* Pages */
  .regional-chapters-sidebar .regional-chapter-item .bar-title a {
    padding: 6px 22px;
  }
  .main .banner .banner-text .title {
    font-size: 30px;
  }
  .main .banner .banner-text .subtitle {
    font-size: 20px;
  }
  .foundation-homepage.homepage .hero {
    background-position: top;
  }
}
/* Vert iPad */
@media (max-device-width: 1024px) and (min-height: 1320px) {
  /* Global */
  /* Homepage */
  .homepage .hero {
    background-size: cover;
    text-align: center;
    height: calc(90vh - 47px);
  }
  .homepage .hero .wrapper {
    padding: 0 5%;
    margin-bottom: 238px;
  }
  .homepage .hero .columns {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  .homepage .hero .hero-text {
    max-width: 500px;
    margin: 0 auto 60px;
  }
  .homepage .hero .hero-slider {
    max-width: 550px;
  }
  /* Pages */
}
@media (max-width: 1024px) {
  /* Global */
  h1 {
    font-size: 42px;
  }
  .footer-contact ul.contact-info {
    max-width: 100%;
    text-align: center;
    margin: 5px auto 15px;
  }
  /* Homepage */
  .homepage .news-and-events .news-card img {
    height: 285px;
  }
  /* Pages */
}
@media (max-width: 1023px) {
  .top-bar {
    padding: 3px 0;
  }
  .top-bar .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-bar .nav-expand {
    display: block;
    width: 100%;
  }
  .top-bar ul.top-links {
    display: none;
    position: absolute;
    top: 54px;
    left: 0px;
    width: 100%;
    z-index: 2;
  }
  .top-bar ul.top-links li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .top-bar ul.top-links li a, .top-bar ul.top-links li .main-link {
    background-color: #F6F6F6;
    color: #363636;
  }
  .top-bar ul.top-links li a:hover, .top-bar ul.top-links li .main-link:hover {
    background-color: #363636;
    color: #fff;
  }
  .top-bar ul.top-links li.has-sub-nav {
    position: relative;
  }
  .top-bar ul.top-links li.has-sub-nav a, .top-bar ul.top-links li.has-sub-nav .main-link {
    position: relative;
  }
  .top-bar ul.top-links li.has-sub-nav.active a, .top-bar ul.top-links li.has-sub-nav.active .main-link {
    color: #fff;
    background-color: #363636;
  }
  .top-bar ul.top-links li.has-sub-nav .sub-nav {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    top: 0;
    margin-top: 0;
  }
  .top-bar ul.top-links li.has-sub-nav .sub-nav li {
    margin: 0 auto;
  }
  .top-bar ul.top-links li.has-sub-nav .sub-nav li a {
    background-color: #ddd;
    color: #363636;
  }
  .top-bar ul.top-links li.has-sub-nav .sub-nav li a:after {
    display: none;
  }
  .top-bar ul.top-links li.has-sub-nav .sub-nav li a:hover {
    background-color: #7E9D62;
    color: #fff;
  }
  .top-bar.active ul.top-links li:not(:first-child) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .top-bar ul li.has-sub-nav.right .sub-nav {
    right: unset;
  }
  .header:before {
    bottom: -8px;
  }
  .regional-chapters li.regional-chapter-item,
  .regional-chapters-sidebar .regional-chapter-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 30px);
            flex: 0 0 calc(50% - 30px);
    width: 100%;
  }
}
/* Bootstrap lg ending*/
@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 35px;
  }
  /* Global */
  .top-bar ul li {
    margin: 0;
  }
  .top-bar ul li .main-link, .top-bar ul li a {
    padding: 12px 9px;
    font-size: 13px;
  }
  span.icon-with-circle {
    width: 30px;
  }
  span.icon-with-circle svg.feather {
    width: 30px;
    height: 30px;
  }
  span.icon-with-circle svg.imperfect-circle {
    width: 30px;
    height: 28px;
  }
  .footer-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
  .footer-columns .footer-column {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    text-align: center;
    margin: 0 auto 50px;
  }
  .footer-columns .footer-column:nth-child(4n) {
    margin: 0 auto 50px;
  }
  .footer-columns .footer-column:last-child {
    margin-bottom: 0;
  }
  .footer-columns .footer-column.footer-contact ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    text-align: center;
  }
  .footer-columns .footer-column.footer-contact ul li {
    margin-bottom: 0;
  }
  .footer-columns .footer-column.footer-contact .social-links li {
    margin-right: 15px;
  }
  .footer-columns .footer-column ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    text-align: left;
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
  }
  .footer-columns .footer-column ul li {
    margin: 0 0 10px;
  }
  /* Homepage */
  .homepage .hero .hero-text p {
    font-size: 18px;
  }
  .homepage .hero .secondary-nav-new ul li a {
    padding: 15px;
    font-size: 16px;
  }
  .homepage .join-tema .content h2 {
    font-size: 36px;
    max-width: 800px;
  }
  .homepage .news-and-events .news-card .card-title a {
    padding: 20px;
    font-size: 22px;
  }
  .homepage .resource-options .option {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    margin-right: 15px;
  }
  .homepage .resources {
    padding-bottom: 40px;
  }
  .homepage .ad-banner-container {
    margin-top: 40px;
  }
  .homepage .ad-banner-container.small {
    max-width: 100%;
    padding: 0 4%;
  }
  /* Pages */
}
/* Smaller than Vert iPad */
@media (max-width: 900px) {
  /* Global */
  /* Homepage */
  .homepage .hero {
    background-size: cover;
    text-align: center;
  }
  .homepage .hero .wrapper {
    padding: 0 5%;
    margin-bottom: 146px;
  }
  .homepage .hero .columns {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  .homepage .hero .hero-text {
    max-width: 500px;
    margin: 0 auto 25px;
  }
  .homepage .hero .hero-text h1 {
    margin-bottom: 10px;
  }
  .homepage .hero .hero-text p {
    font-weight: 400;
  }
  .homepage .hero .hero-slider {
    max-width: 550px;
  }
  /* Pages */
}
@media (max-width: 800px) {
  /* Global */
  /* Homepage */
  .homepage .join-tema .content h2 {
    font-size: 35px;
    max-width: 600px;
  }
  .homepage .join-tema svg#texasMobile {
    right: 50px;
  }
  /* Pages */
}
/* Smaller than Vert iPad */
@media (max-width: 767px) {
  /* Global */
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
  }
  .disclaimer {
    text-align: center;
    margin-bottom: 35px;
  }
  .disclaimer .links {
    display: block;
    margin: 0 0 20px;
  }
  .disclaimer .links a:first-child {
    border-left: 0;
    padding: 0;
    margin: 0;
  }
  .two-col .join {
    margin-right: 25px;
    margin-bottom: 25px;
    font-size: 20px;
    width: 100%;
  }
  .two-col .join .button {
    margin-top: 25px;
  }
  .two-col .links a {
    margin-bottom: 10px;
  }
  /* Homepage */
  .homepage section {
    margin: 0 auto 35px;
  }
  .homepage .join-tema .content h2 {
    margin: 0 0 25px;
    text-transform: unset;
  }
  .homepage .join-tema .two-col .join .button {
    margin-top: 25px;
  }
  .homepage .news-and-events .news-card img {
    height: 200px;
  }
  .homepage .news-and-events .news-card .card-title a {
    padding: 15px;
    font-size: 18px;
  }
  .homepage .news-and-events .news-card .card-title a svg {
    width: 30px;
    height: 30px;
  }
  .homepage .resource-options {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .homepage .resource-options .option {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .homepage .resource-options .option:nth-child(4n) {
    margin-right: 2%;
  }
  .homepage .resource-options .option:nth-child(2n) {
    margin-right: 0;
  }
  .homepage .membership {
    padding: 100px 0;
  }
  .homepage .membership .content h2 {
    text-transform: unset;
    margin-bottom: 25px;
  }
  .homepage .resource-options .option img {
    width: 100%;
  }
  /* Pages */
  .main .banner .banner-text .title {
    font-size: 22px;
  }
  .main .banner .banner-text .subtitle {
    font-size: 16px;
  }
  .golf .intro .intro-text,
  .golf #secSponsors {
    width: 100%;
  }
  .golf .details .registration-button {
    padding-right: 0;
    padding-left: 0;
  }
  .golf .entryfees .golf-list {
    padding: 0;
  }
  .regional-chapters li.regional-chapter-item,
  .regional-chapters-sidebar .regional-chapter-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 30px);
            flex: 0 0 calc(100% - 30px);
  }
  .membership .membership-types .membership-type {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .foundation-homepage.homepage .more-donors ul li {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
  }
}
@media (max-width: 650px) {
  /* Global */
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  /* Homepage */
  .homepage .hero .secondary-nav-new ul li a {
    font-size: 14px;
  }
  .homepage .hero .secondary-nav-new ul li a span.icon-with-circle {
    display: none;
  }
  .homepage .hero .wrapper {
    margin-bottom: 102px;
  }
  .homepage .news-and-events:after {
    background-color: rgba(250, 250, 250, 0.8);
  }
  .homepage .news-and-events .news-card .card-title a {
    font-size: 16px;
  }
  .homepage .news-and-events .news-card .card-title a svg {
    width: 20px;
    height: 20px;
  }
  /* Pages */
}
/* Horizontal Phone */
@media (max-width: 550px) {
  /* Global */
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  /* Homepage */
  .homepage .hero .hero-slider .card {
    padding: 15px 15px 5px;
  }
  .homepage .hero .hero-slider .title-section .rotator-controls a:first-child {
    margin-right: 5px;
  }
  .homepage .hero .hero-slider .title-section .rotator-controls svg {
    height: 30px;
    width: 30px;
  }
  .homepage .hero .hero-slider .flex-control-nav {
    margin: 10px 0 5px;
  }
  .homepage .hero .hero-slider .flex-control-paging li a {
    height: 7px;
    width: 7px;
  }
  .homepage .news-and-events .news-card {
    float: none;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .homepage .news-and-events .news-card:nth-child(4n+1) {
    float: none;
    margin: 0 auto 20px;
  }
  .homepage .news-and-events .links {
    float: none;
    width: 80%;
    margin: 50px auto 0;
  }
  .homepage .resource-options .option {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
  .homepage .resource-options .option img {
    height: 250px;
    -o-object-position: top;
       object-position: top;
  }
  /* Pages */
  .main {
    padding-bottom: 0;
  }
  .main .content {
    margin-top: 0;
  }
  .main .content.regional-chapters {
    padding: 30px 10px;
  }
  .regional-chapters-sidebar {
    width: 100%;
    margin-top: 25px;
  }
  .regional-chapters-intro .regional-chapters-intro-text {
    padding: 25px 15px 25px;
  }
  .foundation-homepage.homepage .hero {
    height: 25vh;
  }
  .homepage .hero .hero-text h1 {
    font-size: 30px;
  }
  .foundation-homepage.homepage .more-donors ul li {
    -ms-flex-preferred-size: calc(100% - 20px);
        flex-basis: calc(100% - 20px);
  }
}
@media (max-width: 450px) {
  /* Global */
  .footer-columns {
    padding: 50px 0 0;
  }
  .footer-columns .footer-column {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .footer-columns .footer-column ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    text-align: center;
  }
  .top-bar .logo-image img {
    height: 80px;
    width: 80px;
  }
  .title-with-icon {
    margin-bottom: 25px;
  }
  .title-with-icon a {
    float: none;
    margin-top: 25px;
    display: block;
  }
  /* Homepage */
  .homepage .hero {
    height: 100%;
  }
  .homepage .hero .wrapper {
    margin: 60px 0;
  }
  .homepage .hero .hero-text {
    margin: 0 auto;
  }
  .homepage .hero .hero-slider .title-section .rotator-controls a:first-child {
    margin-right: 4px;
  }
  .homepage .hero .hero-slider .title-section .rotator-controls svg {
    height: 25px;
    width: 25px;
  }
  .homepage .hero .scroll-down {
    padding: 15px 15px 0;
  }
  .homepage .hero .secondary-nav-new {
    display: none;
  }
  .homepage .join-tema .content {
    padding: 50px 0 0;
  }
  .homepage .join-tema .content h2 {
    font-size: 30px;
  }
  .homepage .membership {
    padding: 50px 0;
  }
  /* Pages */
}
/* iPhone 6 */
@media (max-width: 375px) {
  /* Global */
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
  /* Homepage */
  .homepage .news-and-events .news-card {
    width: 100%;
  }
  .homepage .news-and-events .news-card img {
    height: 150px;
  }
  .homepage .news-and-events .links {
    width: 100%;
  }
  .homepage .resource-options .option {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .homepage .resource-options .option:nth-child(4n) {
    margin-right: 0;
  }
  .homepage .resource-options .option img {
    width: 100%;
  }
  /* Pages */
}
/* iPhone 4/5 */
@media (max-width: 320px) {
  /* Global */
  /* Homepage */
  /* Pages */
}
/*# sourceMappingURL=style.css.map */