@charset "UTF-8";

* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: '';
  content: none;
}

q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 16px;
}

a {
  color: #005289;
  text-decoration: none;
}

a:hover {
  color: #009845;
  text-decoration: none;
}

/*
a:visited {
  color: #005289;
  text-decoration: none;
}
*/

p {
  font-size: 1rem;
  line-height: 1.6875rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 2.99rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 2.25rem;
}

h3 {
  font-size: 1.3125rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}

h5,
h6 {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}



hr {
  padding: 0;
  border: none;
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5), transparent);
  height: 1px;
  margin: 50px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

hr:after {
  content: "§";
  display: inline-block;
  position: relative;
  top: -0.5rem;
  font-size: 1.5rem;
  padding: 0 0.25rem;
  background: #ededed;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.nav {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
}

.nav__container {
  height: 55px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .nav__container {
    height: auto;
  }
}

.nav__logo {
  position: absolute;
  height: 55px;
  margin-left: 15px;
  width: 195px;
}

.nav__sub-menu:not(.nav__sub-menu--1) {
  border: 1px solid #ddd;
}

@media (max-width: 1024px) {
  .nav__sub-menu:not(.nav__sub-menu--1) {
    display: none;
  }
}

.nav__sub-menu--1 {
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  overflow: hidden;
  text-align: center;
  top: 55px;
  transition: max-height 0.5s linear;
}

.nav.active .nav__sub-menu--1 {
  max-height: 100vh;
}

@media (min-width: 1024px) {
  .nav__sub-menu--1 {
    background-color: transparent;
    max-height: 100vh;
    margin-left: 165px;
    overflow: visible;
    top: 0;
    width: calc(100% - 165px);
  }
}

.nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  height: 15px;
  outline: none;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 20px;
  transition: all 0.5s linear;
  width: 25px;
}

@media (min-width: 1024px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger:after,
.nav__hamburger:before {
  background-color: #005289;
  content: '';
  display: block;
  position: absolute;
  height: 2px;
  transition: all 0.5s linear;
  width: 100%;
}

.nav__hamburger:after {
  top: 0;
}

.nav__hamburger:before {
  top: calc(100% - 2px);
}

.nav.active .nav__hamburger:after {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.nav.active .nav__hamburger:before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.nav__hamburger--lines {
  background-color: #005289;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  transition: all 0.5s linear;
  width: 100%;
}

.nav.active .nav__hamburger--lines {
  opacity: 0;
}

.nav__item--1 {
  font-size: 1.125rem;
  overflow: hidden;
  padding: 10px 25px;
}

@media (min-width: 1024px) {
  .nav__item--1 {
    display: inline-block;
    position: relative;
    vertical-align: top;
  }

  .nav__item--1:hover {
    overflow: visible;
  }

  .nav__item--1:hover > .nav__sub-menu {
    max-height: 50vh;
  }
}

.nav__item:not(.nav__item--1) {
  background-color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .nav__item:not(.nav__item--1) {
    max-height: initial;
    padding: 5px;
  }
}

.nav__item:not(.nav__item--1):hover {
  overflow: visible;
}

@media (min-width: 1024px) {
  .nav__sub-menu--2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 0;
    min-width: 150px;
    overflow: hidden;
    transition: max-height 0.5s linear;
  }

  .nav__sub-menu--2:hover {
    overflow: visible;
  }
}

.nav__item--2:hover > .nav__sub-menu {
  max-width: 100vw;
}

@media (min-width: 1024px) {
  .nav__sub-menu--3 {
    position: absolute;
    left: 100%;
    top: -1px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .nav__item--active {
    position: absolute;
    left: 100%;
    width: 100%;
    top: 100%;
  }
}

.nav__item {
  line-height: 35px;
  transition: all 0.2s linear;
}

.nav__item:hover {
  background-color: #005289;
}

.nav__item:hover > .nav__link {
  color: #fff;
}

.footer {
  margin-top: 25px;
  padding: 25px 0;
  text-align: center;
}

.footer.footer__home {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid #eee;
  padding: 10px 0 5px 0;
}

@media (min-width: 1024px) {
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #eee;
    padding: 10px 0 5px 0;
  }
}

.contact__item {
  margin: 5px 0;
}

@media (min-width: 640px) {
  .contact__item {
    display: inline-block;
    margin: 0;
  }
}

.contact__item i {
  padding-left: 15px;
}

.contact__item span {
  margin: 5px 0;
  padding: 0 15px;
}

@media (min-width: 640px) {
  .contact__item span {
    border-right: 1px solid #ddd;
  }

  .contact__item span:last-child {
    border-right: none;
  }
}

.contact__item .suite {
  display: block;
}

@media (min-width: 640px) {
  .contact__item .suite {
    display: inline;
  }
}

.footer__copyright {
  color: #aaa;
  font-size: 0.75rem;
  margin: 10px 0;
}

@media (min-width: 1024px) {
  .footer__copyright {
    margin-bottom: 0;
  }
}

.footer__copyright .copyright-year {
  padding-right: 5px;
}

.page__title {
  position: absolute;
  color: #ededed;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 3rem;
  line-height: 3rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: -0.2em;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .page__title {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}

.page__background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
}

@media (min-width: 1024px) {
  .page__background {
    height: 400px;
  }
}

@media (min-width: 1280px) {
  .page__background {
    height: 500px;
  }
}

.home {
  position: relative;
  height: 100vh;
  width: 100vw;
}

.home__background {
  position: absolute;
  left: 0;
  top: 0;
  background: url("https://apexoneip.com/_/website/home.png");
  background-size: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.home__blurb {
  position: relative;
  color: #fff;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  text-shadow: 1px 0 10px rgba(0, 0, 0, 0.5);
  top: 50%;
  transform: translateY(calc(-50% - 115px));
  width: 100%;
}

@media (min-width: 640px) {
  .home__blurb {
    width: 500px;
  }
}

.charity .page__background {
  background-image: url("https://apexoneip.com/_/img/67_banner.jpg");
}


.about .page__background {
  background-image: url("https://apexoneip.com/_/website/v4_1.png");
}

.about__values--title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.333333333333333rem;
  margin: 0.66666666rem 0;
}

.about__values--item {
  font-size: 1rem;
  line-height: 1.6875rem;
  margin-bottom: 2rem;
}

.about__values--item ul {
  list-style-type: disc;
}

.about__values--item li {
  margin-left: 25px;
}

.our-team .page__background {
  background-image: url("https://apexoneip.com/_/website/leadership.png");
}

.our-team__wrapper {
  text-align: center;
}

.our-team__member {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  padding: 0 15px;
  width: 40%;
}

@media (min-width: 640px) {
  .our-team__member {
    width: 25%;
  }
}

@media (min-width: 1024px) {
  .our-team__member {
    width: 20%;
    padding: 0 10px;
  }
}

.our-team__image {
  overflow: hidden;
  width: 100%;
}

.our-team__image--zoom {
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100%;
  transition: transform 0.3s linear;
  width: 100%;
}

.our-team__image--zoom:hover {
  transform: scale(1.1);
}

.our-team__name {
  color: #666;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3rem;
  padding: 5px;
}

.our-team__title {
  font-weight: 400;
  padding-bottom: 25px;
}

.team_member {
  padding-top: 55px;
}

.team_member__portrait {
  display: inline-block;
  float: left;
  margin-right: 15px;
  vertical-align: top;
}

.team_member__portrait-right {
  display: inline-block;
  float: right;
  margin-left: 15px;
  vertical-align: top;
}

.team_member__info {
  display: inline-block;
  vertical-align: top;
}

.team_member__info--item {
  line-height: 1.5rem;
}

.team_member__info--item > i {
  margin-right: 10px;
}

.team_member__info--name {
  line-height: 1.75rem;
}

.team_member__info--name span {
  font-size: 1.5rem;
  font-weight: 600;
}

.team_member__info--title {
  color: #009845;
  line-height: 1.5rem;
}

.team_member__info--title span {
  font-size: 1.2rem;
  font-weight: 400;
}

.team_member__info--phone-number {
  color: #aaa;
}

.team_member__info--email-address {
  display: inline-block;
}

.team_member__info--email-address a:after {
  content: '';
  background-color: #005289;
  display: block;
  height: 1px;
  width: 0;
  transition: all 0.3s ease;
}

.team_member__info--email-address:hover a:after {
  width: 100%;
}

.team_member__bio {
  margin-top: 50px;
}

.team_member__bio h3 {
  font-weight: 400;
  margin-bottom: 15px;
}

.team_member__bio li {
  background: #ddd;
  display: inline-block;
  line-height: 1.1rem;
  margin-top: 5px;
  padding: 5px 15px;
}

.news .page__background {
  background-image: url("https://apexoneip.com/_/website/v3_01.png");
}

.news .container {
  max-width: 1024px;
}

.news__item {
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  margin: 25px 0;
  transform-style: flat;
  transition: box-shadow 0.1s linear, transform 0.1s linear;
}

.news__item:hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -2px, 0);
}

.news__item:after,
.news__item:before {
  display: table;
  content: '';
  line-height: 0;
}

.news__item:after {
  clear: both;
}

.news__item--date {
  padding: 25px 25px 0 25px;
}

@media (min-width: 1024px) {
  .news__item--date {
    float: left;
    padding: 25px;
    width: 110px;
  }
}

.news__item--title {
  font-weight: 600;
  padding: 25px 0 25px 25px;
}

@media (min-width: 1024px) {
  .news__item--title {
    border-left: 1px solid #ededed;
    float: left;
    padding: 25px;
  }
}


.content {
  padding-top: 55px;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
}

.container:after,
.container:before {
  display: table;
  content: '';
  line-height: 0;
}

.container:after {
  clear: both;
}

body {
  color: #333;
  font-family: 'Open Sans', arial, sans-serif;
  font-weight: 400;
  line-height: 1;
  background-color: #ededed;
}

.clear {
  clear: both;
  padding: 10px 0;
}