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;
    list-style: none;
    text-decoration: none;
}
img, video, audio{
  vertical-align: bottom;
}

body{
  font-family: 'Open Sans', sans-serif;
}

body.body-lock{
  overflow: hidden;
}

*{
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Image alignment in posts */
img.alignright { float: right; margin: 0 0 1rem 1rem; max-width: 100%; height: auto;}
img.alignleft { float: left; margin: 0 1rem 1rem 0; max-width: 100%; height: auto;}
img.aligncenter { display: block; margin-left: auto; margin-right: auto; max-width: 100%; height: auto;}
.alignright { float: right; max-width: 100%; height: auto;}
.alignleft { float: left; max-width: 100%; height: auto;}
.aligncenter { display: block; margin-left: auto; margin-right: auto; max-width: 100%; height: auto;}

@media (max-width: 900px){
  /* Image alignment in posts */
  img.alignright { float: none; margin: 1rem 0; width: 100%; max-width: 100%; height: auto;}
  img.alignleft { float: none; margin: 1rem 0; width: 100%; max-width: 100%; height: auto;}
  img.aligncenter { display: block; margin-left: auto; margin-right: auto; width: 100%; max-width: 100%; height: auto;}
  .alignright { float: none; width: 100%; max-width: 100%; height: auto;}
  .alignleft { float: none; width: 100%; max-width: 100%; height: auto;}
  .aligncenter { display: block; margin-left: auto; margin-right: auto; width: 100%; max-width: 100%; height: auto;}
}

.site-container{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

body.admin-bar .site-container{
  min-height: calc(100vh - 32px);
}

@media (max-width: 782px) {
  body.admin-bar .site-container{
    min-height: calc(100vh - 46px);
  }
}

/* Header Styles
------------------------------------------------------------------------------*/
header.site-header{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 4px solid;
  background-color: #fff;
}

#blue header.site-header{
  border-bottom-color: #e20613;
}

#red header.site-header{
  border-bottom-color: #EE2E24;
}

#black header.site-header{
  border-bottom-color: #3C3C3C;
}

#grey header.site-header{
  border-bottom-color: #A3A6A8;
}

#green header.site-header{
  border-bottom-color: #81C341;
}

#yellow header.site-header{
  border-bottom-color: #FBDA1D;
}

header.site-header img.site-logo{
  width: auto;
  height: 85px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

header.site-header a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.25));
}

/* Site Navigation */
.bar-container,
.close-btn,
.menu-icon{
  display: none;
}

nav.site-nav ul{
  font-size: 0;
}

nav.site-nav ul li{
  display: inline-block;
  position: relative;
}

nav.site-nav ul li ul.sub-menu{
  position: absolute;
  display: none;
  right: 0;
  padding-top: 4px;
  z-index: 20;
}

nav.site-nav ul li ul.sub-menu li{
  display: block;
}

nav.site-nav ul li a{
  display: block;
  padding: 4rem 1rem;
  color: #A3A6A8;
  font-size: 1rem;
}

nav.site-nav ul li ul.sub-menu li a{
  padding: 2rem 1rem;
  background-color: #fafafa;
  white-space: nowrap;
  border-bottom: 1px solid #e0e6e8;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
          box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

nav.site-nav ul li ul.sub-menu li:last-child a{
  border-bottom: none;
}

nav.site-nav ul li ul.sub-menu li:last-child a{
  border-radius: 0 0 3px 3px;
}

#blue nav.site-nav ul li.current-menu-item a,
#blue nav.site-nav ul li.current-page-ancestor a,
#blue nav.site-nav ul li a:hover{
  color: #e20613;
}

#blue nav.site-nav ul li ul.sub-menu li.current-menu-item a,
#blue nav.site-nav ul li ul.sub-menu li a:hover{
  color: #fafafa;
  background-color: #e20613;
}

#red nav.site-nav ul li.current-menu-item a,
#red nav.site-nav ul li.current-page-ancestor a,
#red nav.site-nav ul li a:hover{
  color: #EE2E24;
}

#red nav.site-nav ul li ul.sub-menu li.current-menu-item a,
#red nav.site-nav ul li ul.sub-menu li a:hover{
  color: #fafafa;
  background-color: #EE2E24;
}

#black nav.site-nav ul li.current-menu-item a,
#black nav.site-nav ul li.current-page-ancestor a,
#black nav.site-nav ul li a:hover{
  color: #3C3C3C;
}

#black nav.site-nav ul li ul.sub-menu li.current-menu-item a,
#black nav.site-nav ul li ul.sub-menu li a:hover{
  color: #fafafa;
  background-color: #3C3C3C;
}

#grey nav.site-nav ul li.current-menu-item a,
#grey nav.site-nav ul li.current-page-ancestor a,
#grey nav.site-nav ul li a:hover{
  color: #3C3C3C;
}

#grey nav.site-nav ul li ul.sub-menu li.current-menu-item a,
#grey nav.site-nav ul li ul.sub-menu li a:hover{
  color: #fafafa;
  background-color: #A3A6A8;
}

#green nav.site-nav ul li.current-menu-item a,
#green nav.site-nav ul li.current-page-ancestor a,
#green nav.site-nav ul li a:hover{
  color: #81C341;
}

#green nav.site-nav ul li ul.sub-menu li.current-menu-item a,
#green nav.site-nav ul li ul.sub-menu li a:hover{
  color: #fafafa;
  background-color: #81C341;
}

#yellow nav.site-nav ul li.current-menu-item a,
#yellow nav.site-nav ul li.current-page-ancestor a,
#yellow nav.site-nav ul li a:hover{
  color: #3C3C3C;
}

#yellow nav.site-nav ul li ul.sub-menu li.current-menu-item a,
#yellow nav.site-nav ul li ul.sub-menu li a:hover{
  color: #fafafa;
  background-color: #3C3C3C;
}

/* Image Slider */
.gallery-container{
	width: 100%;
  height: calc(100vw / 3);
  max-height: 400px;
	position: relative;
  overflow: hidden;
}

.gallery-slider{
	width: 100%;
	height: 100%;
	position: relative;
  overflow: hidden;
}

.image-holder,
.feat-image{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 100%;
}

.image-holder .image-heading-wrap{
  position: absolute;
  top: 50%;
  left: 5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% - 10rem);
}

.active{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	z-index: 10;
  left: 0;
}

.dot-container{
	position: absolute;
	bottom: 1rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 21;
}

.dot{
  position: relative;
  cursor: pointer;
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	display: inline-block;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.dot:after{
  content: '';
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.dot:not(:last-child){
	margin-right: 1rem;
}

.active-dot,
.dot:hover{
	background-color: #fff;
}

/* Slider Text Box */
.gallery-outer-box{
  position: absolute;
  width: 50vw;
  height: 50vw;
  z-index: 19;
  -webkit-transform: rotate(45deg) translate(0, -160%);
          transform: rotate(45deg) translate(0, -160%);
  top: 50%;
  right: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: gal_text_slide .25s ease forwards;
          animation: gal_text_slide .25s ease forwards;
}

@-webkit-keyframes gal_text_slide{
  to {
    -webkit-transform: rotate(45deg) translate(0, -70%);
            transform: rotate(45deg) translate(0, -70%);
  }
}

@keyframes gal_text_slide{
  to {
    -webkit-transform: rotate(45deg) translate(0, -70%);
            transform: rotate(45deg) translate(0, -70%);
  }
}

.gallery-inner-box{
  -webkit-transform: rotate(-45deg) translateX(-30%);
          transform: rotate(-45deg) translateX(-30%);
  color: #fff;
  font-size: 3vw;
  max-width: 35vw;
  text-align: center;
}

#blue .gallery-outer-box{
  background-color: rgba(226, 6, 19, 0.5);
}

#red .gallery-outer-box{
  background-color: rgba(238, 46, 36, 0.5);
}

#black .gallery-outer-box{
  background-color: rgba(60, 60, 60, 0.5);
}

#grey .gallery-outer-box{
  background-color: rgba(163, 166, 168, 0.5);
}

#green .gallery-outer-box{
  background-color: rgba(129, 195, 65, 0.5);
}

#yellow .gallery-outer-box{
  background-color: rgba(251, 218, 29, 0.5);
}

/* Home Page Styles
------------------------------------------------------------------------------*/
h1 span.header-span{
  color: #A3A6A8;
  font-size: 1rem;
}

/* Page Styles
------------------------------------------------------------------------------*/
.page-container{
  width: 100%;
  font-size: 1.1rem;
  flex: 1;
}

.max-width{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.page-container .max-width{
  padding: 3rem;
}

.page-container h1,
.page-container h2,
.page-container h3,
.page-container h4,
.page-container h5,
.page-container h6{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-container p{
  margin-bottom: 1rem;
  line-height: 1.6;
}

.page-container a{
  text-decoration: underline;
}

.page-container ul,
.page-container ol{
  margin-left: 1rem;
}

.page-container li{
  list-style: disc;
  margin-bottom: 1rem;
}

.page-container strong{
  font-weight: bold;
}

.page-container em{
  font-style: italic;
}

#blue .page-container h1,
#blue .page-container h2,
#blue .page-container h3,
#blue .page-container h4,
#blue .page-container h5,
#blue .page-container h6,
#blue .page-container a{
  color: #e20613;
}

#red .page-container h1,
#red .page-container h2,
#red .page-container h3,
#red .page-container h4,
#red .page-container h5,
#red .page-container h6,
#red .page-container a{
  color: #EE2E24;
}

#black .page-container h1,
#black .page-container h2,
#black .page-container h3,
#black .page-container h4,
#black .page-container h5,
#black .page-container h6,
#black .page-container a{
  color: #3C3C3C;
}

#grey .page-container h1,
#grey .page-container h2,
#grey .page-container h3,
#grey .page-container h4,
#grey .page-container h5,
#grey .page-container h6,
#grey .page-container a{
  color: #A3A6A8;
}

#green .page-container h1,
#green .page-container h2,
#green .page-container h3,
#green .page-container h4,
#green .page-container h5,
#green .page-container h6,
#green .page-container a{
  color: #81C341;
}

#yellow .page-container h1,
#yellow .page-container h2,
#yellow .page-container h3,
#yellow .page-container h4,
#yellow .page-container h5,
#yellow .page-container h6,
#yellow .page-container a{
  color: #FBDA1D;
}

/* Accreditations Styles
------------------------------------------------------------------------------*/
.accreds{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 15rem;
}

.accreds a{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(25% - 1rem);
  text-align: center;
}

.accreds a img{
  width: 100%;
  height: auto;
  max-height: 100px;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#blue .accreds a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 113, 187, 0.75));
          filter: drop-shadow(0 0 3px rgba(0, 113, 187, 0.75));
}

#red .accreds a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(238, 46, 36, 0.75));
          filter: drop-shadow(0 0 3px rgba(238, 46, 36, 0.75));
}

#black .accreds a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(60, 60, 60, 0.75));
          filter: drop-shadow(0 0 3px rgba(60, 60, 60, 0.75));
}

#grey .accreds a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(163, 166, 168, 0.75));
          filter: drop-shadow(0 0 3px rgba(163, 166, 168, 0.75));
}

#green .accreds a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(129, 195, 65, 0.75));
          filter: drop-shadow(0 0 3px rgba(129, 195, 65, 0.75));
}

#yellow .accreds a:hover img{
  -webkit-filter: drop-shadow(0 0 3px rgba(251, 218, 29, 0.75));
          filter: drop-shadow(0 0 3px rgba(251, 218, 29, 0.75));
}

/* Footer Styles
------------------------------------------------------------------------------*/
footer.site-footer{
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer.site-footer p,
footer.site-footer p a{
  color: #fff;
  font-weight: 300;
}

footer.site-footer p a:hover{
  text-decoration: underline;
}

#blue footer.site-footer{
  background-color: #e20613;
}

#red footer.site-footer{
  background-color: #EE2E24;
}

#black footer.site-footer{
  background-color: #3C3C3C;
}

#grey footer.site-footer{
  background-color: #A3A6A8;
}

#green footer.site-footer{
  background-color: #81C341;
}

#yellow footer.site-footer{
  background-color: #3C3C3C;
}

footer.site-footer .footer-right{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.orknet-logo{
  position: relative;
  color: #fff;
}

.orknet-logo span{
  position: absolute;
  top: -2px;
  right: -8px;
  font-size: .5rem;
}

.orknet-logo img{
  width: 115px;
  height: auto;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

/* Bio Styles
------------------------------------------------------------------------------*/
.bio-container{
  width: 100%;
  background-color: #E3E4E5;
  margin-bottom: 3rem;
}

.bio-container.associates{
  background-color: white;
}

.bio-services{
  background-color: #209FD5;
  color: #fff;
}

.bio-container .max-width{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  padding: 3rem 1rem;
}

.bio-container.associates .max-width.associates{
  display: block;
  text-align: center;
  padding: 0;
}

.bio-container.associates .max-width.associates h2{
  font-size: 1.5rem;
  color: #e20613;
}

.bio-box{
  width: calc(50% - 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 1.25rem;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bio-image-container,
.bio-details{
  width: 100%;
}

.bio-image-container a{
  margin: 0 auto;
}

.bio-details{
  text-align: center;
  padding: 1rem;
}

.bio-image{
  display: block;
  width: 20vw;
  height: 20vw;
  max-width: 270px;
  max-height: 270px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  margin-right: 2rem;
}

.bio-box a{
  color: #e20613;
}

.bio-services .bio-box a{
  color: #3C3C3C;
}

.bio-box a:hover{
  text-decoration: underline;
}

.bio-page-pic{
  -webkit-shape-outside: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          shape-outside: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
          clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  margin: 0 0 1rem 1rem;
  width: 100%;
  max-width: 400px;
  height: auto;
  float: right;
}

.bio-contact-details{
  width: 100%;
  text-transform: lowercase;
  padding-left: 1rem;
  margin-top: 2rem;
}

.bio-contact-details-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bio-contact-details-box span.icon-container{
  width: 40px;
  height: 40px;
  line-height: 32px;
}

.bio-contact-details-box span.icon-container img{
  max-height: 1.5rem;
}

.bio-contact-details-box p{
  margin-left: 2rem;
  color: #95989A;
}

/* Services Styles
------------------------------------------------------------------------------*/
/* .page-services .page-container > .max-width{
  display: none;
} */

.services-container{
  background-color: #E3E4E5;
  position: relative;
}

.services-container .max-width{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 3rem 1rem;
}

.services-title{
  text-align: center;
  padding-top: 5rem;
  line-height: 1;
}

.services-arrow{
  position: absolute;
  width: 50px;
  height: 50px;
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #fff;
  -webkit-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  top: -8px;
  left: 50%;
}

.service-box{
  width: calc(20% - 1rem);
  background-color: #fff;
  padding: 1rem;
  text-align: center;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
          box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  position: relative;
  margin-bottom: 1rem;
  border-bottom: .5rem solid;
}

.service-box:hover{
  -webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
          box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.service-box svg{
  width: 100%;
  height: auto;
  max-width: 100px;
}

.service-box h2{
  font-size: 1.25rem;
}

.service-box p{
  font-size: 1rem;
  margin-bottom: 4rem;
  color: #000;
}

.service-box a.read-more{
  text-decoration: none;
  display: block;
  border: 1px solid;
  padding: .5rem;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
}

.service-box a.read-more:hover{
  color: #fff !important;
}

#blue-box .icon-path,
#blue-box h2.service-title,
#blue-box a.read-more,
#blue-box.service-box{
  fill: #e20613;
  color: #e20613;
  border-color: #e20613;
}

#red-box .icon-path,
#red-box h2.service-title,
#red-box a.read-more,
#red-box.service-box{
  fill: #EE2E24;
  color: #EE2E24;
  border-color: #EE2E24;
}

#black-box .icon-path,
#black-box h2.service-title,
#black-box a.read-more,
#black-box.service-box{
  fill: #3C3C3C;
  color: #3C3C3C;
  border-color: #3C3C3C;
}

#grey-box .icon-path,
#grey-box h2.service-title,
#grey-box a.read-more,
#grey-box.service-box{
  fill: #A3A6A8;
  color: #A3A6A8;
  border-color: #A3A6A8;
}

#green-box .icon-path,
#green-box h2.service-title,
#green-box a.read-more,
#green-box.service-box{
  fill: #81C341;
  color: #81C341;
  border-color: #81C341;
}

#yellow-box .icon-path,
#yellow-box h2.service-title,
#yellow-box a.read-more,
#yellow-box.service-box{
  fill: #FBDA1D;
  color: #FBDA1D;
  border-color: #FBDA1D;
}

#blue-box a.read-more:hover{
  background-color: #e20613;
}

#red-box a.read-more:hover{
  background-color: #EE2E24;
}

#black-box a.read-more:hover{
  background-color: #3C3C3C;
}

#grey-box a.read-more:hover{
  background-color: #A3A6A8;
}

#green-box a.read-more:hover{
  background-color: #81C341;
}

#yellow-box a.read-more:hover{
  background-color: #FBDA1D;
}

/* Contact Styles
------------------------------------------------------------------------------*/
.contact-container h2.contact-title{
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
}

.contact-details{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 3rem 0;
}

.contact-details a{
  color: #e20613;
}

.contact-details a:hover{
  text-decoration: underline;
}

.contact-box{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

span.icon-container{
  background-color: #e20613;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 50px;
}

span.icon-container img{
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
  max-height: 2rem;
  height: auto;
}

.contact-box p{
  margin-left: 2rem;
  color: #95989A;
  font-size: 2rem;
}

.bio-container.bio-contact{
  background-color: #fff;
  margin-bottom: 6rem;
}

/* Slider Titles
------------------------------------------------------------------------------*/
.slider-titles-container{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  overflow: hidden;
}

.slider-title{
  max-width: 50%;
  display: block;
  color: #fff;
  font-size: 3vw;
  font-weight: bold;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  width: 100%;
  position: absolute;
  bottom: 3rem;
  left: 0;
  padding-left: 2rem;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 1s cubic-bezier(.25,.8,.25,1);
  transition: all 1s cubic-bezier(.25,.8,.25,1);
  -webkit-filter: blur(15px);
          filter: blur(15px);
}

.slider-title.active-title{
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}


/* Client List
------------------------------------------------------------------------------*/
.client-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.client-list.client-list-front{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client-list .client{
  width: calc(20% - 1rem);
  margin: 0 .5rem 2rem;
}

.client-list .client h3{
  font-size: 1rem;
  margin: .25rem 0;
}

.client-list .client p{
  font-size: .75rem;
  color: #878787;
}

.client-list .client img{
  max-width: 100% !important;
  height: auto;
  display: block;
  margin: 0 auto;
}

.rb-button{
  border: 1px solid #e20613;
  text-decoration: none !important;
  padding: .5rem 1rem;
  border-radius: 3px;
  display: table;
  margin: 0 auto 1rem;
  -webkit-transition: all .22s;
  transition: all .22s;
}

.rb-button:hover{
  background-color: #e20613;
  color: #fff !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.20);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.20);
}

/* Client List - Slider
------------------------------------------------------------------------------*/
.client-slider .client-slider-title h2{
  color: #e20613;
  font-size: 2rem;
}

@media (max-width: 1024px){
  .service-box{
    width: calc(30% - 1rem);
    margin-bottom: 3rem;
  }
}

@media (max-width: 850px){
  header.site-header{
    padding: 1rem 2rem 1rem 1rem;
  }

  header.site-header img.site-logo{
    height: 55px;
  }

  .menu-main-menu-container{
    width: 100%;
  }

  nav.site-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9000;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    overflow-y: scroll;
  }

  nav.site-nav.active{
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .menu-icon{
    position: absolute;
    display: block;
    top: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .menu-icon svg{
    width: 100%;
    height: 100%;
    max-width: 80px;
  }

  #blue .menu-icon svg path.icon-path{
    fill: #e20613;
  }

  #red .menu-icon svg path.icon-path{
    fill: #EE2E24;
  }

  #black .menu-icon svg path.icon-path{
    fill: #3C3C3C;
  }

  #grey .menu-icon svg path.icon-path{
    fill: #A3A6A8;
  }

  #green .menu-icon svg path.icon-path{
    fill: #81C341;
  }

  #yellow .menu-icon svg path.icon-path{
    fill: #FBDA1D;
  }

  .close-btn{
    display: block;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    color: #EE2E24;
    cursor: pointer;
  }

  nav.site-nav ul.menu{
    padding-top: 7rem;
  }

  nav.site-nav ul li{
    display: block;
  }

  nav.site-nav ul li a{
    padding: 2rem;
    border-bottom: 1px solid #e0e6e8;
    text-align: center;
  }

  nav.site-nav ul li ul.sub-menu{
    display: block !important;
    position: relative;
    padding-top: 0;
  }

  nav.site-nav ul li ul.sub-menu li a{
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #fff;
  }

  nav.site-nav ul li ul.sub-menu li:last-child a{
    border-radius: 0;
    border-bottom: 1px solid #e0e6e8;
  }

  nav.site-nav ul > li:last-child a{
    border-bottom: none;
  }

  .admin-bar nav.site-nav{
    height: calc(100vh - 32px);
    top: 32px;
  }

  .bar-container{
    display: block;
    width: 35px;
    cursor: pointer;
  }

  .bar{
    width: 100%;
    height: 5px;
  }

  .bar-container .bar:not(:last-child){
    margin-bottom: 5px;
  }

  #blue .bar{
    background-color: #e20613;
  }

  #red .bar{
    background-color: #EE2E24;
  }

  #black .bar{
    background-color: #3C3C3C;
  }

  #grey .bar{
    background-color: #A3A6A8;
  }

  #green .bar{
    background-color: #81C341;
  }

  #yellow .bar{
    background-color: #FBDA1D;
  }


  #blue nav.site-nav ul li.current-menu-item a,
  #blue nav.site-nav ul li.current-page-ancestor a,
  #blue nav.site-nav ul li a:hover,
  #blue nav.site-nav ul li a{
    color: #e20613;
  }

  #blue nav.site-nav ul li ul.sub-menu li.current-menu-item a,
  #blue nav.site-nav ul li ul.sub-menu li a:hover,
  #blue nav.site-nav ul li a:hover,
  #blue nav.site-nav ul li.current-menu-item > a{
    color: #fafafa;
    background-color: #e20613;
  }

  #red nav.site-nav ul li.current-menu-item a,
  #red nav.site-nav ul li.current-page-ancestor a,
  #red nav.site-nav ul li a:hover,
  #red nav.site-nav ul li a{
    color: #EE2E24;
  }

  #red nav.site-nav ul li ul.sub-menu li.current-menu-item a,
  #red nav.site-nav ul li ul.sub-menu li a:hover,
  #red nav.site-nav ul li a:hover,
  #red nav.site-nav ul li.current-menu-item > a{
    color: #fafafa;
    background-color: #EE2E24;
  }

  #black nav.site-nav ul li.current-menu-item a,
  #black nav.site-nav ul li.current-page-ancestor a,
  #black nav.site-nav ul li a:hover,
  #black nav.site-nav ul li a{
    color: #3C3C3C;
  }

  #black nav.site-nav ul li ul.sub-menu li.current-menu-item a,
  #black nav.site-nav ul li ul.sub-menu li a:hover,
  #black nav.site-nav ul li a:hover,
  #black nav.site-nav ul li.current-menu-item > a{
    color: #fafafa;
    background-color: #3C3C3C;
  }

  #grey nav.site-nav ul li.current-menu-item a,
  #grey nav.site-nav ul li.current-page-ancestor a,
  #grey nav.site-nav ul li a:hover,
  #grey nav.site-nav ul li a{
    color: #3C3C3C;
  }

  #grey nav.site-nav ul li ul.sub-menu li.current-menu-item a,
  #grey nav.site-nav ul li ul.sub-menu li a:hover,
  #grey nav.site-nav ul li a:hover,
  #grey nav.site-nav ul li.current-menu-item > a{
    color: #fafafa;
    background-color: #A3A6A8;
  }

  #green nav.site-nav ul li.current-menu-item a,
  #green nav.site-nav ul li.current-page-ancestor a,
  #green nav.site-nav ul li a:hover,
  #green nav.site-nav ul li a{
    color: #81C341;
  }

  #green nav.site-nav ul li ul.sub-menu li.current-menu-item a,
  #green nav.site-nav ul li ul.sub-menu li a:hover,
  #green nav.site-nav ul li a:hover,
  #green nav.site-nav ul li.current-menu-item > a{
    color: #fafafa;
    background-color: #81C341;
  }

  #yellow nav.site-nav ul li.current-menu-item a,
  #yellow nav.site-nav ul li.current-page-ancestor a,
  #yellow nav.site-nav ul li a:hover,
  #yellow nav.site-nav ul li a{
    color: #3C3C3C;
  }

  #yellow nav.site-nav ul li ul.sub-menu li.current-menu-item a,
  #yellow nav.site-nav ul li ul.sub-menu li a:hover,
  #yellow nav.site-nav ul li a:hover,
  #yellow nav.site-nav ul li.current-menu-item > a{
    color: #fafafa;
    background-color: #3C3C3C;
  }

  .home-text-wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .home-text-wrap div{
    width: 100%;
  }

  footer.site-footer{
    padding: 3rem 1rem;
  }

}

@media (max-width: 800px){
  .contact-container h2.contact-title{
    font-size: 2rem;
  }

  .contact-details{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .contact-details .contact-box:first-child{
    margin-bottom: 2rem;
  }

  span.icon-container{
    width: 30px;
    height: 30px;
    line-height: 26px;
  }

  span.icon-container img{
    max-height: 1.5rem;
  }

  .contact-box p{
    margin-left: 1rem;
  }
}

@media (max-width: 782px){
  .admin-bar nav.site-nav{
    height: calc(100vh - 46px);
    top: 46px;
  }

  .service-box{
    width: calc(50% - 1rem);
  }
}

@media (max-width: 650px){
  .bio-page-pic{
    float: none;
    display: block;
    margin: 1rem auto;
  }

  .bio-title{
    text-align: center;
  }

  .bio-container .max-width{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .bio-container .max-width .bio-box:first-child{
    margin-bottom: 2rem;
  }

  .bio-box{
    width: 100%;
  }

  .bio-image{
    width: 40vw;
    height: 40vw;
  }

  .service-box{
    width: 100%;
  }

  .page-container .max-width{
    padding: 3rem 1rem;
  }
}

@media (max-width: 600px){
  .dot-container{
    -webkit-transform: none;
            transform: none;
    left: .5rem;
    bottom: .25rem;
  }

  .dot{
    width: .5rem;
    height: .5rem;
  }

  .slider-title{
    padding-left: .3rem;
    bottom: 1.5rem;
    font-size: 5vw;
  }

}

@media (max-width: 500px){
  .accreds{
    padding-bottom: 18rem;
  }

  footer.site-footer{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }

  footer.site-footer > div{
    width: 100%;
  }

  footer.site-footer .footer-right{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
  }

  .client-list .client{
    width: calc(50% - 1rem);
  }

}

@media (max-width: 400px){
  header.site-header{
    padding: 1rem;
  }

  header.site-header img.site-logo{
    height: 40px;
  }

  .close-btn{
    right: 1rem;
  }
}
