html, body {
  font-size:16px;
  font-family:'Roboto';
  color:hsl(0, 0%, 21%);
}
h1, .h1, h2, .h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  font-family: 'Roboto Slab';
  color:hsl(0, 0%, 13%);
  font-weight:400;
}
.section-heading {
  font-size:1.875rem;
  line-height: 1.2;
  margin-top:0;
  margin-bottom:.75rem;
}
.text-lg {
  font-size:1.25rem;
}
.text-lg2 {
  font-size:1.5rem;
}
.text-sm {
  font-size:.875rem;
}
.strong, .bold {
  font-weight:700;
}

/*buttons*/
.btn {
  vertical-align: inherit;
  border-radius:0;
  padding:0.750rem 1.5rem;
  font-weight:400;
  width:100%;
  margin:1.125rem 0;
}
.banner .btn {
  font-size:1rem;
  padding:0.5rem 1.75rem;
  width:auto;
}
.btn-lg {
  font-size:1.25rem;
  padding:1.25rem 3.25rem;
}
.btn-sm {
  padding:6px 24px;
}
.btn-primary {
  font-family: 'Roboto Slab';
  background:hsla(201, 100%, 21%, 1);
  border:2px solid hsla(201, 100%, 21%, 1);
  border-radius:6px;
  color:hsl(0, 0%, 100%);
  font-weight:400;
  box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  -webkit-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  -moz-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
}
header .btn-primary {
  font-family: 'Roboto Slab';
  background:hsla(201, 100%, 21%, 1);
  border:2px solid hsla(201, 100%, 21%, 1);
  border-radius:6px;
  color:hsl(0, 0%, 100%);
  font-weight:400;
}
.btn-primary:focus, .btn-primary:active, .btn-primary:hover {
  background:hsla(201, 100%, 13%, 1);
  border:2px solid hsla(201, 100%, 13%, 1);
  border-radius:6px;
  color:hsl(0, 0%, 100%);
  box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  -webkit-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  -moz-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
}
.btn-secondary {
  font-family: 'Roboto Slab';
  background:hsla(343, 91%, 36%, 1);
  border:2px solid hsla(343, 91%, 36%, 1);
  border-radius:6px;
  color:hsl(0, 0%, 100%);
  font-weight:400;
  box-shadow: 0px 3px 2px 0px hsla(343, 100%, 26%,1);
  -webkit-box-shadow: 0px 2px 0px 0px hsla(343, 100%, 26%,1);
  -moz-box-shadow: 0px 2px 0px 0px hsla(343, 100%, 26%,1);
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary:hover {
  background:hsla(343, 100%, 26%, 1);
  border:2px solid hsla(343, 100%, 26%, 1);
  border-radius:6px;
  color:hsl(0, 0%, 100%);
}
.btn-primary:focus, .btn-primary.focus,
.btn-secondary:focus, .btn-secondary.focus {
  /*box-shadow:none !important;*/
}

.btn-custom-sm {
  padding: 0.5rem 0.875rem;
  margin-top:0.5rem !important;
  margin-bottom:0.5rem !important;
  font-size: 1rem;
  line-height: 1.5;
}
.btn-custom-pagination {
  padding: 0rem 0.5rem 0.25rem 0.5rem;
  margin-top:0.5rem !important;
  margin-bottom:0.5rem !important;
  font-size: 1.5rem;
  line-height: 1.5;
}
.pdfbtn {
  font-size:1.125rem;
  font-weight:700;
}
.pdfbtn svg {
  fill:hsla(343, 91%, 36%, 1);
}
.pdfbtn:hover svg, .pdfbtn:focus svg {
  fill:hsla(343, 100%, 26%, 1);
}

/*get rid of FF annoying link outlines*/
button:focus {
  outline: none !important;
}
/*.btn.focus, .btn:focus {
  box-shadow: none !important;
}*/
/*main {display: block;}*/
main a {
  text-decoration: none;
  color:hsla(201, 100%, 21%, 1);
}
a:focus,
a:hover {
  text-decoration: none;
  outline: none !important;
  outline-style: none !important;
  color:hsla(201, 100%, 13%, 1);
}
a, svg, path {
  transition: all 0.15s ease-in-out;
}
.center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.clear {
  margin: 0 !important;
  padding: 0;
}
.as {
  display: none;
}
.hidden {
  display: none !important;
}

/* Colors */
.white {
  color:hsl(0, 0%, 100%);
}
.bg-white {
  background:hsl(0, 0%, 100%);
}
.primary-clr {
  color:hsl(201, 100%, 21%);
}
.bg-primary-clr {
  background:hsl(201, 100%, 21%);
}
.secondary-clr {
  color:hsl(343, 91%, 36%);
}
.bg-secondary-clr {
  background:hsl(343, 91%, 36%);
}
.red {
  color:hsl(350, 100%, 46%);
}
.bg-red {
  background:hsl(350, 100%, 46%);
}
.grey {
  color:hsl(0, 0%, 21%);
}
.bg-grey {
  background:hsl(0, 0%, 21%);
}
.light-grey {
  color:hsl(0, 0%, 60%);
}
.bg-light-grey {
  background:hsl(0, 0%, 60%);
}
.black {
  color:hsl(0, 0%, 0%);
}
.bg-black {
  background:hsl(0, 0%, 0%);
}
.c-svg--primary {
  fill:hsl(201, 100%, 21%);
}
.c-svg--secondary {
  fill:hsl(343, 91%, 36%);
}
.c-svg--white {
  fill:hsl(0, 0%, 100%);
}
.c-svg--black {
  fill:hsl(0, 0%, 0%);
}
.c-svg--red {
  fill:hsl(350, 100%, 46%);
}
.c-svg--light-grey {
  color:hsl(0, 0%, 60%);
}

/* Address List */
.address_list {
  font-size:1rem;
  margin-bottom:3rem;
}
.address_list_row {
  display: flex;
  flex-flow:row nowrap;
  padding-top:0.875rem;
  padding-bottom:0.875rem;
}
.address_list_row span {
  display:inline-block;
  vertical-align:text-top;
}
.address_cell--one {
  padding-right:.5em;
}
.address_cell--one span {
  padding:0.75rem;
  border-radius:50px;
  background:hsl(0, 0%, 100%);
}
.address_cell--two {
}

/* section padding - bg's */
.pad-section--top--xl, .pad-section--top {
  padding-top:47px;
}
.pad-section--bottom--xl, .pad-section--bottom {
  padding-bottom:47px;   
}
.pad-section--top--bottom--xxl, .pad-section--top--bottom--xl, .pad-section--top--bottom {
  padding-top:47px;
  padding-bottom:47px;   
}
.diagonal-stripe-bkg {
  background: repeating-linear-gradient(45deg, #002a40, #002a40 3px, #00456a 3px, #00456a 5px);
}
.diagonal-stripe-bkg-2 {
  background: repeating-linear-gradient(-45deg, #ecf0f2, #ecf0f2 3px, #e8ebed 3px, #e8ebed 5px);
}
.diagonal-stripe-bkg,
.diagonal-stripe-bkg-2 {
  color:hsl(0, 0%, 13%);
}

/* Back To Top Button */
#back-top {
  font-size:1rem;
  display: none;
  position: fixed;
  bottom: 50px;
  z-index: 9999;
  right: 12px;
}
#back-top a {
  display: block;
  background:hsla(343, 91%, 36%, 1);
  border:none;
  border-radius:.2em;
  font-size:.875em;
  padding:.5em;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#back-top a:hover {
  background:hsla(343, 100%, 26%, 1);
  opacity: 1;
}
#back-top svg {
  fill:hsl(0, 0%, 100%); 
  height:1.5rem;
  width:1.5rem;
}
#back-top svg path {
  fill:hsl(0, 0%, 100%); 
}

/* Custom styles
=========================================================== */
.page-heading {
  margin-bottom:1.5rem;
}
/* Slider */
.slider {
  padding-top:32px;
}
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  margin:0 6px;
  padding:6px;
}
.slick-slide img {
  margin:0;
}
.slick-slide figcaption {
  margin-top:0px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.star {
  display:inline-block;
  padding: 4px;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 0;
  font-size: 2rem;
  cursor: pointer;
  background: hsla(200, 20%, 94%, 0.9);
  color: hsla(0, 0%, 50%, 1);
  top: 47%;
  margin:0;
  padding: 0 0 5px 0;
  border: none;
  outline: none;
  border-radius:50px;
}
.slick-prev:hover,
.slick-next:hover {
  outline: none;
  background: hsla(343, 91%, 36%, 1);
  color: hsla(0, 0%, 100%, 1);
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev {
  left: 3rem;
  padding-right:2px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
/* .slick-prev:before { content: "\2039"; }
[dir="rtl"] .slick-prev:before { content: "\2039"; } */
.slick-next {
  right: 3rem;
  padding-left:2px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

/* featured clients */
.responsiveLogosSlider {
  padding-left:15px;
  padding-right:15px;
}
.responsiveLogosSlider .slick-track {
  display: flex !important;
}
.responsiveLogosSlider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
.responsiveIndicatorsSlider {
  padding-left:15px;
  padding-right:15px;
}
.responsiveIndicatorsSlider .slick-track {
  display: flex !important;
}
.responsiveIndicatorsSlider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}

/* testi */
.responsiveTestiSlider {    
}
.responsiveTestiSlider .slick-slide {
  padding:15px;
}
.responsiveTestiSlider .upper {
  max-width:400px;
  max-height:280px;
  margin:0 auto;
  border-top-left-radius:15px;
  border-top-right-radius:15px;
  overflow-y: hidden;
}
.responsiveTestiSlider .lower {
  background:hsl(0, 0%, 100%);
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;  
  padding:0 25px 25px 25px;
  max-width:400px;
  margin:0 auto;
}
.responsiveTestiSlider .lower .text {
}
.responsiveTestiSlider .lower .icon {
  position: relative;
  margin-top:-38px;
  margin-bottom:25px;
  width:76px;
  height:76px;
  border-radius:50px;
  background: url('/images/testi-quote.png') center no-repeat, hsl(343, 91%, 36%);
}
.responsiveTestiSlider .lower span:nth-of-type(1) {
  font-size:1.25rem;
  color:hsl(201, 100%, 21%);
}
.responsiveTestiSlider .lower span:nth-of-type(2) {
  font-size:0.875rem;
  color:hsl(0, 0%, 40%);
}
.show-more-leader {
  position:relative;
  font-size:0.875rem;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 53%, rgba(255,255,255,0.9247899843531162) 71%, rgba(255,255,255,0) 100%);
  margin-top:-3.5rem;
  padding:2.5rem 1.75rem 0 1.75rem;
  cursor:pointer;
  z-index:99;
  text-align:center;
}
.show-more-expand {
  height:auto !important;
  padding-bottom:4rem !important;
}

/* Header */
header {
  padding-bottom:0;
  background:hsla(0, 0%, 100%, 1) !important;
}
.js-fixed .logo--header{
  max-height:86px;
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
  -webkit-transition:margin 0.5s linear, height 0.5s linear;
  -moz-transition:margin 0.5s linear, height 0.5s linear;  
  -o-transition:margin 0.5s linear, height 0.5s linear;         
  transition:margin 0.5s linear, height 0.5s linear;  
}
header.js-fixed{
  position:fixed;
  z-index:2000;
  width:100%;
  background:hsla(0, 0%, 100%, 1);
}
.logo--header {
  display: block;
  margin:1rem auto;
}
.a-logo {text-decoration:none;}

/*main nav*/
.nav--main {
  font-family: 'Roboto Slab';
  background:hsla(0, 0%, 100%, 1);
}
.nav--main input[type="checkbox"] {
  display: none !important;
}
.ul-nav {
  display:none;
  background:hsla(0, 0%, 100%, 1);
}
.menu-dropdown {
  display:none;
}
#tm:checked + .ul-nav, input[type="checkbox"]:checked + .menu-dropdown {
  display: block;
}
.toggle-nav {
  position:relative;
  display:inline-block;
  /*width:100%;*/
  width:50px;
  z-index:2;
  border:1px solid hsla(4, 75%, 51%, 0);
  padding:.5rem;
}
.svg-toggle {
  display:inline-block;
  vertical-align: sub;
  height:1.5rem;
  width:1.5rem;
  fill:hsla(0, 0%, 21%, 1);
}
.li-nav {
  list-style-type:none;
  position:relative;
  border-bottom:solid 1px hsla(0, 0%, 19%, .3);
}
.li-nav:last-of-type {
  border-bottom:none;
}
.a-nav {
  display:inline-block;
  padding:11px 15px;
  color:hsl(0, 0%, 20%);
  text-decoration:none;
}
.a-nav:hover, .a-nav:focus, .a-nav:active {
  color:hsl(343, 91%, 36%);
}
.js-fixed .a-nav {
  display:inline-block;
  padding:11px 15px;
  color:hsl(0, 0%, 20%);
}
.js-fixed .a-nav:hover, .js-fixed .a-nav:focus, .js-fixed .a-nav:active {
  color:hsl(343, 91%, 36%);
}
.toggle-dropdown {
  position:absolute;
  right:0;
  top:0;
  font-size:2rem;
  color:hsla(343, 91%, 36%, 1);
}
.menu-dropdown {
  padding-left:18px;
}
.a-nav--lvl2 {
  padding: 7px 15px;
}
.navUnclickableLink {
  pointer-events: none;
}

/* banners */
.banner {
  z-index:1;
  background:hsla(200, 100%, 8%, 1);
  display:block;
  position:relative;
  padding:2rem 0rem;
}
.banner-home {
  padding-top:2rem;
  padding-bottom:1.25rem;
  background:hsla(200, 100%, 8%, 1);
}
.banner-inner {
  padding-top:34px;
  padding-bottom:44px;
  z-index:0;
}
.banner-inner::before {
  content:'';
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  z-index:1;
  background: url('/images/banner-inner-overlay.png') 10% center no-repeat, hsla(201, 100%, 21%, 0.1);
}
.banner-block {
  position:relative;
}
.banner .banner-heading {
  line-height:1.1;
  font-weight:400;
  font-size:2rem;
}
.banner-home .banner-heading,
.banner-inner .banner-heading,
.banner-home .text-sm,
.banner-inner .text-sm,
.banner-home .text-lg ,
.banner-inner .text-lg {
  color:hsl(0, 0%, 100%);
}
.banner-inner .banner-heading {
  margin-bottom:0;
}
.banner-home .banner-heading {
  margin-bottom:0.5rem;
}
.banner p.text-lg {
  margin-bottom:1rem;
  font-size:1.25rem;
  font-weight:400;
}
.banner-home p.text-lg:nth-of-type(2) { text-transform:uppercase;}
.s-banner-block {
  z-index:10;	
}
.zup1 {
  z-index:100;
}

/*============ footer =================*/
/*=====================================*/
footer {
  background:url('/images/footer-c-accent.png') right bottom no-repeat, hsla(0, 0%, 7%, 1); 
  color:hsla(330, 100%, 100%, 1);
  padding-top:47px;
}
footer h4 {
  color:hsla(330, 100%, 100%, 1);  
  margin-bottom:1rem;
}
footer a {
  color:hsla(330, 100%, 100%, 1);
  text-decoration:none;
}
footer a:hover, footer a:focus, footer a:active {
  color:hsla(200, 20%, 94%, 1);
}
.a-nav-footer {
  display:inline-block;
  width:100%;
}
footer .custom-footer-nav {
  padding-left: 0;
  list-style: none;
  font-size:0;
  margin-bottom:1.75rem;
  margin-left:0px;
}
footer .custom-footer-nav li {
  font-size:1rem;
  padding-top:0.250rem;
  padding-bottom:0.250rem;
}
footer .custom-footer-nav-2 {
  padding-left: 0;
  list-style: none;
  font-size:0;
  margin-bottom:1.75rem;
  margin-left:0px;
}
footer .custom-footer-nav-2 li {
  font-size:1.25rem;
  line-height: 1.1;    
  padding-top:0;
  padding-bottom:1rem;
}
footer .bottom {
  background:hsla(0, 0%, 0%, 1)
}
footer .icon--link {
  display:inline-block;
  background:hsla(201, 100%, 21%, 1);
  width:42px;
  height:42px;
  padding:8px 12px;
  margin:0 2px;
  border-radius:50px;
}
footer .icon--link:first-of-type {
  padding:8px 12px 8px 11px;
  margin-left:0;
}
footer .icon--link:last-of-type {
  margin-right:0;
}
footer .icon--link:hover, footer .icon--link:focus {
  display:inline-block;
  background:hsla(343, 100%, 26%, 1);
  width:42px;
  height:42px;
  border-radius:50px;
}
.icon--footer {  
  fill:hsla(0, 0%, 100%, 1);
}
.link-social {
  font-size:2rem;
}
.c-credit {
  font-size:13px;
  text-align: center;
}

/*============ contact forms =================*/
/*=====================================*/
.form-required-note {
  font-size:.75rem;
  color:#eee;
}
.form-group {
  margin-bottom:7px;
}
.form-control {
  margin-bottom:7px;
  font-size:1rem;
  border-radius:0;
  font-weight:300;
  padding:15px;
}
.form-control:focus {
  box-shadow:none;
  outline: 0 none;
}
.control-label {
  margin-bottom:.25rem !important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color:hsla(0, 0%, 0%, .5) !important;
}
::-moz-placeholder { /* Firefox 19+ */
  color:hsla(0, 0%, 0%, .5) !important;
  opacity:1;
}
:-ms-input-placeholder { /* IE 10+ */
  color:hsla(0, 0%, 0%, .5) !important;
}
:-moz-placeholder { /* Firefox 18- */
  color:hsla(0, 0%, 0%, .5) !important;
  opacity:1;
}
.g-recaptcha {
  display:inline-block;
}
.custom-form .form-control {
  line-height:1.1;
  padding:1rem;
  margin-bottom:1.125rem;  
}
.custom-form .btn {
  margin-top:1.875rem;
}
.contact-form-wrapper {
  background:hsla(343, 91%, 36%, 1);
  padding:30px;
  border-radius: 15px;
  border:solid 1px hsla(343, 91%, 36%, 1);
  box-shadow: 0px 0px 0px 10px hsla(343, 91%, 36%, .2);
  -webkit-box-shadow: 0px 0px 0px 10px hsla(343, 91%, 36%, .2);
  -moz-box-shadow: 0px 0px 0px 10px hsla(343, 91%, 36%, .2);
}
.form label {
  color:hsl(0, 0%, 100%);
}
.form .input-group {
  padding-bottom:15px;
}
.form .input-group .input-group-text {
  background: hsl(0, 0%, 100%);
}
.form .input-group .input-group-text svg {
  opacity: 0.2;
}
.form .form-control {
  margin-bottom:0;
  border-radius:4px !important;
}
.form .input-group .form-control {
  border-top-right-radius:0 !important;
  border-bottom-right-radius:0 !important;
  border-right:none;
}
.form .form-control::placeholder {
  opacity:0.8;
  font-size:1rem;
  font-style: italic;
}
.form textarea.form-control {
  resize: none;
}
.form textarea + .input-group-text {
  align-items:baseline;
  padding-top:15px;
}

/*  vid */
.video {
  position: relative;
  display:inline-block;
  width:100%;
  margin-bottom: 1.5rem;
}
.video--inner {
  position: absolute;
  transition: all .25s ease-in-out;
  display:-ms-flexbox;
  display: flex;
  -ms-flex-align:center;
  align-items: center;
  -ms-flex-pack:center;
  justify-content: center;
  -ms-flex-direction:column;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:0.8;
}
.video--inner + img {
  width: 100%;
}
.video:hover .video--inner {
  opacity:1;
}

/*  wysiwyg media - etc */
.wysiwyg-img-fluid img {
  max-width: 100%;
  height: auto;
}
.wysiwyg-img-fluid hr {
  height:2px;
  border-top:none;
  background: rgb(0, 69, 106);
  background:linear-gradient(90deg, rgba(0, 69, 106,0) 0%, rgba(0, 69, 106,0.8029412448573179) 50%, rgba(0, 69, 106,0) 100%);
  margin-top:2.25rem;
  margin-bottom:2.5rem;
}
iframe {
  width:100%;
}

/* content list */
.list-content-1 ul {
  list-style:none;
}
.list-content-1 ul li {
  break-inside: avoid;
  padding-bottom:5px;
}
.list-content-1 ul li::before {
  position:relative;
  margin:0 10px -2px -26px;
  display:inline-block;
  content: ' ';
  background-image: url('/images/svg/right-arrow-secondary.svg');
  background-size: 16px 16px;
  height: 16px;
  width: 16px;
}
.list-content-1 ul li ul {
  list-style: circle;
}
.list-content-1 ul li ul li::before {
  background-image: none;
}
.list-split-1 {
 -webkit-column-count: 1;
 -moz-column-count: 1;
 -o-column-count: 1;
  column-count: 1; 
}
.list-split-1 ul {
  margin-top:0;
  list-style:none;
}
.list-split-1 ul li {
  break-inside: avoid;
  padding-bottom:5px;
}
.list-split-1 ul li::before {
  position:relative;
  margin:0 10px -4px -30px;
  display:inline-block;
  content: ' ';
  background-image: url('/images/svg/check-mark.svg');
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
}

/* heading accents */
.s-h-bottom-accent {
  position: relative;
  padding-bottom:4px;
  margin-top:1.5rem;
}
.s-h-bottom-accent:after {
  content:' ';
  position: absolute;
  top:100%;
  left:50%;
  width: 60px;
  border:2px solid hsla(201, 100%, 21%, 1);
  border-radius:0px;
  box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
  transform:translateX(-50%);

}
.s-h-bottom-accent2 {
  position: relative;
  padding-bottom:1.125rem;
}
.s-h-bottom-accent2:after {
  content:' ';
  position: absolute;
  top:100%;
  left:50%;
  width: 90px;
  border:2px solid hsla(343, 91%, 36%, 1);
  border-radius:0px;
  box-shadow:inset 0 1px 1px rgba(0, 0, 0, .05);
  transform:translateX(-50%);
}

/* section bkg */
.section-bkg-1 {
  background:url('/images/cgr-c-trans.png') left no-repeat, hsla(201, 100%, 21%, 1);
}
.section-bkg-1-alt {
  background:repeating-linear-gradient(-45deg, rgba(0, 69, 106, 0), rgba(0, 69, 106, 0) 3px, rgba(0, 42, 64, 0.1) 3px, rgba(0, 42, 64, 0.1) 5px), url('/images/cgr-c-trans.png') left no-repeat, hsla(201, 100%, 21%, 1);
}
.section-bkg-2 {
  background:url('/images/cgr-c-trans-alt.png') left no-repeat, hsla(200, 20%, 94%, 1);
}
.section-bkg-2-alt {
  background:url('/images/cgr-c-trans-alt.png') left no-repeat, hsla(240, 6%, 94%, 1);
}
.section-bkg-3 {
  background:hsla(201, 100%, 21%, 1);
}
.section-bkg-4 {
  background:hsla(200, 20%, 94%, 1);
}
.section-bkg-5 {
  background:hsla(240, 6%, 94%, 1);
}
.section-bkg-snippets {
  background:url('/images/home-bkg-snippets.jpg') center / cover no-repeat;
}
.section-bkg-pcc {
  background:url('/images/pcc-bkg.jpg') bottom center no-repeat, hsla(240, 6%, 94%, 1);
}
.section-bkg-community {
  min-height: 400px;
  background:url('/images/home-bkg-community.jpg') center / cover no-repeat;
  margin-bottom:200px;
}
.section-bkg-contact {
  background:url('/images/bkg-lets-talk.jpg') center / cover no-repeat;
}
.section-bkg-newsletter {
  color:hsl(0, 0%, 100%);
  background:url('/images/home-bkg-newsletter.jpg') center / cover no-repeat;
}
.section-bkg-falls {
  background:url('/images/bkg-waterfall-blue-overlay.jpg') center / cover no-repeat;
}
.section-bkg-falls-alt { 
  background:repeating-linear-gradient(-45deg, rgba(0, 69, 106, 0), rgba(0, 69, 106, 0) 3px, rgba(0, 42, 64, 0.1) 3px, rgba(0, 42, 64, 0.1) 5px), url('/images/bkg-waterfall-blue-overlay.jpg') center / cover no-repeat;
}

/* home pg */
.home-intro-box-1 {
  position: relative;
  background:hsl(0, 0%, 100%);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding:36px 50px 30px 50px;
  margin-top:-30px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
  z-index: 1001;
}
.home-intro-box-2 {
  position: relative;
  background:hsl(0, 0%, 100%);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding:36px 50px 30px 50px;
  margin-top:-30px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
  z-index: 1001;
}
.home-overlay-block {
  position: relative;
  background: hsl(0, 0%, 100%);
  border-radius: 15px;
  margin-bottom:-200px;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.home-overlay-block hr {
  margin:25px 0;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255,255,255, 0) 0%, rgba(255,255,255, 1) 35%, rgba(255,255,255, 1) 65%, rgba(255,255,255, 0) 100%), linear-gradient(90deg, rgba(255,255,255, 0) 0%, rgba(0, 69, 106, 1) 35%, rgba(0, 69, 106,1) 65%, rgba(255,255,255, 0) 100%);
  background-size: 6px 3px, 100% 3px;
  border: none;
}
[class*="home-c-box"] {
  display: block;
  position: relative;
  height:350px;
  margin-bottom:25px;
  border-radius: 15px;
}
.home-c-box-1 {
  background: linear-gradient(0deg, rgba(0,26,39,0.9) 0%, rgba(0,26,39,0.3) 41%, rgba(0,26,39,0.1) 100%), url('/images/home-community-profiles.jpg') center / cover no-repeat;
}
.home-c-box-1:hover, .home-c-box-1:focus {
  background: linear-gradient(0deg, rgba(0,26,39,1) 0%, rgba(0,26,39,0.8) 41%, rgba(0,26,39,0.5) 100%), url('/images/home-community-profiles.jpg') center / cover no-repeat;
}
.home-c-box-2 {
  background: linear-gradient(0deg, rgba(0,26,39,0.9) 0%, rgba(0,26,39,0.3) 41%, rgba(0,26,39,0.1) 100%), url('/images/home-reports-database.jpg') center / cover no-repeat;    
}
.home-c-box-2:hover, .home-c-box-2:focus {
  background: linear-gradient(0deg, rgba(0,26,39,1) 0%, rgba(0,26,39,0.8) 41%, rgba(0,26,39,0.5) 100%), url('/images/home-reports-database.jpg') center / cover no-repeat;    
}
.home-c-box-3 {
  background: linear-gradient(0deg, rgba(0,26,39,0.9) 0%, rgba(0,26,39,0.3) 41%, rgba(0,26,39,0.1) 100%), url('/images/home-dei.jpg') center / cover no-repeat;    
}
.home-c-box-3:hover, .home-c-box-3:focus {
  background: linear-gradient(0deg, rgba(0,26,39,1) 0%, rgba(0,26,39,0.8) 41%, rgba(0,26,39,0.5) 100%), url('/images/home-dei.jpg') center / cover no-repeat;    
}
[class*="home-c-box"] div {
  position: absolute;
  bottom:25px;
  left:0;
  right:0;
  text-align: center;
  color:hsl(0, 0%, 100%);
}
[class*="home-c-box"] a, [class*="home-c-box"] h4 {
  color:hsl(0, 0%, 100%);
}
[class*="home-c-box"] a:hover, [class*="home-c-box"] a:focus, [class*="home-c-box"]:hover h4, [class*="home-c-box"]:focus h4 {
  color:hsl(343, 91%, 36%);
}
[class*="home-c-box"] a:hover .c-svg--white, [class*="home-c-box"] a:focus .c-svg--white {
  fill:hsl(343, 91%, 36%);
}

/* staff highlights */
.staff-highlight-box {
  display: block;
  background:url('/images/cgr-c-blue-trans.png') bottom left no-repeat, hsla(0, 0%, 100%, 1);
  padding: 2.5rem 0 0 3rem;
  border-radius: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.staff-highlight-box .upper-wrap {
  display: block;    
  padding: 0 3rem 0 0;
}
.staff-highlight-box .upper-wrap p:last-of-type {
  margin-bottom:0;
}
.staff-highlight-box .lower-wrap {
  display: block;    
}
.staff-highlight-box .lower-wrap .half {
  display: inline-block;
  width:50%;
}
.staff-highlight-box .lower-wrap .half p:first-of-type {
  margin-bottom:0.25rem;
}
.staff-highlight-box .lower-wrap .half p:last-of-type {
  margin-bottom:1.5rem;
}
.staff-highlight-box .lower-wrap .half:nth-of-type(1) {
  vertical-align: bottom;
  padding-bottom:3.5rem;
}
.staff-highlight-box .lower-wrap img {
  margin-bottom:0;
}
.staff-highlight-box span:nth-of-type(1) {
  font-family: 'Roboto Slab';
  font-size:2rem;
  color:hsl(343, 91%, 36%);
}
.staff-highlight-box span:nth-of-type(2) {
  font-size:1.125rem;
  color:hsl(0, 0%, 40%);
}
.section-bkg-contact .staff-highlight-box span:nth-of-type(1) {
  font-family: 'Roboto Slab';
  font-size:1.375rem;
  color:hsl(343, 91%, 36%);    
}
.section-bkg-contact .staff-highlight-box {
  display: block;
  background:url('/images/cgr-c-blue-trans.png') center center no-repeat, hsla(0, 0%, 100%, 1);
  background-size: cover;
  padding: 2.5rem 0 0 3rem;
}

/* custom hr */
.hr-s2 {
  border: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 69, 106,0) 0%, rgba(0, 69, 106,1) 35%, rgba(0, 69, 106,1) 65%, rgba(0, 69, 106,0) 100%);
  margin-top:30px;
  margin-bottom:44px;
}
.hr-s2-alt {
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255,255,255, 0) 0%, rgba(255,255,255, 1) 35%, rgba(255,255,255, 1) 65%, rgba(255,255,255, 0) 100%), linear-gradient(90deg, rgba(255,255,255, 0) 0%, rgba(0, 69, 106, 1) 35%, rgba(0, 69, 106,1) 65%, rgba(255,255,255, 0) 100%);
  background-size: 6px 3px, 100% 3px;
  border: none;
}
.hr-s2-alt-w {
  height: 3px;
  background-image: linear-gradient(90deg, rgba(0, 69, 106, 0) 0%, rgba(0, 69, 106, 1) 35%, rgba(0, 69, 106, 1) 65%, rgba(0, 69, 106, 0) 100%), linear-gradient(90deg, rgba(0, 69, 106, 0) 0%, rgba(255,255,255, 1) 35%, rgba(255,255,255,1) 65%, rgba(0, 69, 106, 0) 100%);
  background-size: 6px 3px, 100% 3px;
  border: none;
}

/* team */
.team-listings-section { 
  background:repeating-linear-gradient(-45deg, rgba(0, 69, 106, 0), rgba(0, 69, 106, 0) 3px, rgba(0, 42, 64, 0.1) 3px, rgba(0, 42, 64, 0.1) 5px
), url('/images/cgr-c-trans.png') top left no-repeat, url('/images/bkg-waterfall-blue-overlay.jpg') bottom center no-repeat, hsla(201, 100%, 21%, 1);
}
#team-supporting.team-listings-section {
  background:repeating-linear-gradient(-45deg, rgba(0, 69, 106, 0), rgba(0, 69, 106, 0) 3px, rgba(0, 42, 64, 0.1) 3px, rgba(0, 42, 64, 0.1) 5px), url('/images/bkg-waterfall-blue-overlay.jpg') center / cover no-repeat;
}
.team-listings-section .wrap {
  margin:0 auto;
}
.team-listings-section .upper {
  max-width:290px;
  max-height:300px;
  margin:0 auto;
  border-top-left-radius:20px;
  border-top-right-radius:20px;
  overflow-y: hidden;
}
.team-listings-section .lower {
  background:hsl(0, 0%, 100%);
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;  
  padding:25px;
  max-width:290px;
  margin:0 auto;
  text-align: center;
}
.team-listings-section .lower span:nth-of-type(1) {
  font-size:1.25rem;
  color:hsl(201, 100%, 21%);
}
.team-listings-section .lower span:nth-of-type(2) {
  font-size:0.875rem;
  color:hsl(0, 0%, 40%);
}
.team-listings-section .board-wrap {
  margin:0 auto;
}
.team-listings-section .board-wrap .lower span:nth-of-type(1) {
  font-size:1.5rem;
  color: hsl(343, 91%, 36%);
}
.team-listings-section .board-wrap .lower span:nth-of-type(2) {
  font-size:1.25rem;
  color:hsl(201, 100%, 21%);
}
.team-listings-section .board-wrap .lower span:nth-of-type(3) {
  font-size:0.875rem;
  color:hsl(0, 0%, 40%);
}
.team-listings-section .board-box {
  background:hsl(0, 0%, 100%);
  border-radius:20px;
  padding:15px;
  margin:0 auto;
  text-align: center;
  height:100%
}
.team-listings-section .board-box span:nth-of-type(1) {
  font-size:1.5rem;
  color: hsl(343, 91%, 36%);
}
.team-listings-section .board-box span:nth-of-type(2) {
  font-size:1.25rem;
  color:hsl(201, 100%, 21%);
}
.team-listings-section .board-box span:nth-of-type(3) {
  font-size:0.875rem;
  color:hsl(0, 0%, 40%);
}
.team-detail-role {
  font-size:1rem;
  font-style: italic;
}
.team-detail-img-wrap {
  max-width: 300px;
  margin-bottom:25px;
}
.team-detail-img-wrap img {
  border-radius:20px;
  box-shadow:rgba(0, 0, 0, 0.175) 0px 16px 48px 0px;
}
.team-contact-list {
  list-style:none;
  margin:1rem 0 2rem 0;
  padding:0;
}
.team-contact-list li {
  padding:5px;
  line-height:2;
}
.team-contact-icon-span {
  float:left;
  width:28px;
  height:28px;
  margin:0 8px 0 0;
  background:hsla(343, 91%, 36%, 1);
  box-shadow: 0 0 0 4px hsla(343, 91%, 36%, .2);
  border-radius:50%;
  padding:4px 6px;
  display:inline-flex;
  text-align: center;
  align-content: center;
  align-items: center;
}

/* custom pills */
.custom-pills {
  padding:15px 15px 25px 15px;
}
.custom-pills .nav-pills .nav-link {
  font-size:1.5rem;
  color:#fff;
  background:hsla(343, 91%, 36%, 0);
}
.custom-pills .nav-pills {
  border-radius:8px;
  border:solid 1px hsla(0, 0%, 100%, 0.9);
  padding:3px;
}
.custom-pills .nav-pills .nav-link.active {
  background:hsla(343, 91%, 36%, 1);
}
.custom-pills .nav-pills .nav-item .nav-link {
  border-radius:6px;
}

/* box */
.box {
  background:hsla(0, 0%, 100%, 1);
  padding: .5rem 1.25rem 1rem 1.25rem;
  height:100%;
  text-align:center;
  border-radius: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.box-primary-clr {
  height:100%;
  border-radius:15px;
  background:hsl(201, 100%, 21%);
  box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  -webkit-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  -moz-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
}
.box-secondary-clr {
  height:100%;
  border-radius:15px;
  background:hsl(343, 91%, 36%);
  box-shadow: 0px 3px 0px 0px hsla(343, 100%, 26%,1);
  -webkit-box-shadow: 0px 2px 0px 0px hsla(343, 100%, 26%,1);
  -moz-box-shadow: 0px 2px 0px 0px hsla(343, 100%, 26%,1);
}
.box-primary-clr,
.box-secondary-clr {
  color:#fff;
  padding:40px 50px;
}
.box-primary-clr ul,
.box-secondary-clr ul {
  margin-top:1rem;
  list-style:none;
}
.box-primary-clr ul li,
.box-secondary-clr ul li {
  break-inside: avoid;
  padding-bottom:5px;
  margin-left:25px;
  margin-bottom:15px;
}
.box-primary-clr ul li strong,
.box-secondary-clr ul li strong {
  font-family: 'Roboto Slab';
  font-size:1.25rem;
  font-weight: 500;
}
.box-primary-clr ul li::before,
.box-secondary-clr ul li::before {
  margin:6px 20px 0px -53px;
  position: absolute;
  display:inline-block;
  content: ' ';
  background-image: url('/images/checkmark-light.png');
  background-size: 33px 30px;
  background-repeat: no-repeat;
  height: 30px;
  width: 33px;
}
.box-primary-clr ul li ul,
.box-secondary-clr ul li ul {
  list-style: none;
}
.box-primary-clr ul li ul li::before,
.box-secondary-clr ul li ul li::before {
  background-image: none;
}

/* circle - box top center */
[class*="circle-icon-span"] {
  width:140px;
  height:140px;
  margin:-78px auto 30px auto;
  box-shadow: 0 0 0 10px hsla(343, 91%, 36%, .3);
  border-radius:50%;
  padding:15px;
  background:hsla(343, 91%, 36%, 1);
}
.circle-icon-span-cgr {
  background:url('/images/cgr-c-icon-w.png') 28px center no-repeat, hsla(343, 91%, 36%, 1);
}

/* featured work */
.featured-work-box {
  position: relative;
  display: block;
  max-width: 300px;
  height:450px;
  overflow: hidden;
  margin:0 auto 25px auto;
}
.featured-work-box .img-box img {
  position: relative;
  z-index: 1000;
}
.featured-work-box .img-box::after {
  content: '';
  position: absolute;
  z-index: 1001;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(0deg, rgba(0,26,39,0.9) 0%, rgba(0,26,39,0.3) 41%, rgba(0,26,39,0.1) 100%)
}
.featured-work-box .txt-box {
  color:#fff;
  padding:10px 25px;
  bottom:0;
  position: absolute;
  z-index: 1002;
}

.donors-box {
  background:hsl(0, 0%, 100%);
  border-radius:20px;
  padding:30px 40px 25px 40px;
  margin:0 auto;
  height:100%
}

/*============ media queries =================*/
/*============================================*/
@media print {
  .noprint {
    visibility: hidden;
  }
}
/* Bootstrap - No media query for `xs` since this is the default in Bootstrap */
@media (min-width:450px){
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 500px){
}
@media (min-width: 576px) { 
  .btn {
    width:auto;
    margin-left:0;
    margin-right:0;
  }
  .banner {
    padding-left:1rem;
    padding-right:1rem;
  }
  .banner-home {
    padding-top:1.5rem;
    padding-bottom:1rem;
  }
  .banner-inner {
    padding-top:54px;
    padding-bottom:74px;
  } 
  .slick-prev {
    left: -1rem;
  }
  .slick-next {
    right: -1rem;
  } 
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
  header {
    padding-bottom:0;
  } 
  .js-fixed {
    position: fixed;
    z-index:1000;
    top:0;
    right:0;
    left:0;
    width:100%;
    background:hsla(0, 0%, 100%, 1);
  }
  .banner .banner-heading,
  .banner-home .banner-heading,
  .banner-inner .banner-heading {
    font-size:2.50rem;
  }
  .banner p.text-lg {
    margin-bottom:0.75rem;
  }
  .section-heading {
    font-size:2.75rem;
  }
  .slick-prev {
    left: -2rem;
  }
  .slick-next {
    right: -2rem;
  }
  .list-split-1 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -o-column-count: 2;
    column-count: 2; 
  }
  .list-split-1 li {
    padding-right:1.5rem;
  }
}

/*  Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
  h1, .h1 {
    font-size:2.625rem;
    margin-bottom:1.25rem;
    line-height:1.1;
  }
  h2, .h2 {
    font-size:2rem;
    line-height:1.1;
    margin-top:0.75rem;
    margin-bottom:1.25rem;
  }
  .page-heading {
    font-size:3rem;
    margin-top:0;
    margin-bottom:1.5rem;
    line-height: 3.5rem;
  }
  header {
    padding-bottom:0;
    position: relative;  /*absolute if not sticky */
    z-index:9999;
    top:0;
    right:0;
    left:0;
    width:100%;
    /*background:none !important;*/
    padding-left: 0;
    padding-right: 0;
    box-shadow: 1px 2px 7px -5px hsla(240, 5%, 26%, 1);
  }
  /* Reponsive Nav */
  .nav--main {
    display:block;
    text-align: center;
  }
  .nav--main input[type="checkbox"] {
    display: none !important;
  }
  .nav--main input[type="checkbox"]:checked + .menu-dropdown {
    display: none;
  }
  /* move toggle nav to trigger at larger size */
  .toggle-nav { 
    display: none;
  }
  .c-toggle_path {
    fill:hsl(200, 18%, 97%);
  }
  .ul-nav {
    display:block !important;
    margin:0;
    padding: 0;
    font-size:0;
  }
  .ul-nav li {
    font-size:1rem;
  }
  .li-nav {
    border-bottom:none;
  }
  .li-nav:hover > input[type="checkbox"] + .menu-dropdown {
    display: block;
  }  
  .li-nav--lvl1 {
    display:inline-block;
    vertical-align: middle;
    padding:1rem 0;
  }
  .li-nav--lvl1:hover > .svg-toggle {
    transform:rotate(90deg);
    fill:hsl(343, 91%, 36%);
  }
  .li-nav--lvl2 {
    border-bottom:solid 1px hsla(0, 0%, 7%, .15);
  }
  .li-nav--lvl2:last-of-type {
    border-bottom:none;
  }
  .a-nav, .js-fixed .a-nav {
    display:inline-block;
    padding:1rem 1.25rem 1rem 1.25rem;
    line-height:1.2;
    color:hsl(0, 0%, 21%);
  }
  .a-nav:hover, .a-nav:focus,
  .js-fixed .a-nav:hover, .js-fixed .a-nav:focus {
    background:hsla(0, 0%, 100%, 1);
  }
  .li-nav--lvl1:hover > a,
  .li-nav--lvl1:hover > a.haschild {
    color:hsl(343, 91%, 36%);
  }
  .a-nav--lvl2, .js-fixed .a-nav--lvl2 {
    color: hsl(0, 0%, 21%);
    background:hsl(0, 0%, 100%);
    text-align:left;
    display:block !important;
    padding:.75rem .75rem .75rem  1.5rem;
  }
  .a-nav--lvl2:hover, .a-nav--lvl2:focus,.a-nav--lvl2:active {
    color: hsl(343, 91%, 36%) !important;
    background:hsl(0, 0%, 95%) !important;
  }  
  .toggle-dropdown {
    font-size:1.375rem;
    padding-top:0;
    padding-right:0.125rem;
    color:hsla(343, 91%, 36%, 1);
    top:31%;
  }
  .menu-dropdown {
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 22rem;
    z-index: 3000;
    background:hsla(0, 0%, 100%, 1);
    padding:8px 0 8px 0;
    box-shadow:1px 4px 5px -3px hsla(0, 0%, 17%, 1);
    border-left: 2px solid hsl(0, 0%, 135%);
  }
  .menu-dropdown--lvl1 {
    border-top:solid 2px hsl(343, 91%, 36%);
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .menu-dropdown--lvl1:before {
    content:"";
    position: absolute;
    left: calc(50% - 10px);
    top: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent hsl(343, 91%, 36%) transparent;
    z-index:9999;    
  }
  .menu-dropdown--lvl1:after {
    content:"";
    position: absolute;
    left: calc(50% - 5px);
    top: -22px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 17px 17px 17px;
    border-color: transparent transparent #ffffff transparent;
    z-index:9998;
  }
  .menu-dropdown .menu-dropdown--lvl2 {
    top:0;
    left:100%;
  }
  .a-nav--lvl1--contact-override {
    font-family: 'Roboto Slab';
    color:hsla(0, 0%, 100%, 1) !important;
    background:hsla(201, 100%, 21%, 1) !important;
    border:solid 1px hsla(201, 100%, 21%, 1);
    border-radius:6px;
    padding-top:10px !important;
    padding-bottom:10px !important;
    padding-left:15px !important;
    padding-right:15px !important;
    margin-left:1.125rem !important;
    margin-top:0;
    margin-bottom:0;
    box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%,1);
    -webkit-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%,1);
    -moz-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%,1);
  }
  .a-nav--lvl1--contact-override:hover {
    color:hsla(0, 0%, 100%, 1) !important;
    background:hsla(201, 100%, 13%, 1) !important;
    border:solid 1px hsl(201, 100%, 13%) !important;
    box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
    -webkit-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
    -moz-box-shadow: 0px 2px 0px 0px hsla(201, 100%, 13%, 1);
  }
  /* Responsive Nav End */

  .pad-section--top--xl {
    padding-top:76px !important;
  }
  .pad-section--bottom--xl {
    padding-bottom:76px !important;   
  }
  .pad-section--top--bottom--xl {
    padding-top:76px !important;
    padding-bottom:76px !important;   
  }
  .pad-section--top--bottom--xxl {
    padding-top:180px !important;
    padding-bottom:180px !important;   
  }
  .pad-section--top {
    padding-top:47px !important;
  }
  .pad-section--bottom {
    padding-bottom:47px !important;   
  }
  .pad-section--top--bottom {
    padding-top:47px !important;
    padding-bottom:47px !important;   
  }  
  .banner p.text-lg {
    margin-bottom:1.5rem;
  }
  .banner-home {
    padding-top:64px;
    padding-bottom:84px;
  }
  .banner .banner-heading, 
  .banner-home .banner-heading, 
  .banner-inner .banner-heading {
    font-size:3rem;
  }
  .banner-inner {
    padding-top:54px;
    padding-bottom:84px;
  }
    
  .home-intro-img-1 {
    position: relative;
    float:right;
    max-width:650px;
    z-index: 1000;
  }
  .home-intro-img-2 {
    position: relative;
    float:left;
    max-width:650px;
    z-index: 1000;
  }
  .home-intro-box-1 {
    float:left;
    padding:50px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width:450px;
    margin-top:-330px;
  }
  .home-intro-box-2 {
    float:right;
    padding:50px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width:450px;
    margin-top:-330px;
  }
  .home-c-box-1 {
    height:260px;
  }
  .home-c-box-2 {
    height:260px; 
  }
  .home-c-box-3 {
    height:260px;
  }
  .team-detail-img-wrap {
    float:left;
    margin-right:50px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
  .logo--header {
    margin:1rem;
  }
  .nav--main {
    text-align: right;
  }
    
  .banner {
    margin:0 auto;
  }
  .banner-home {
    padding-top:134px;
    padding-bottom:164px;
  }
  .banner-inner {
    padding-top:74px;
    padding-bottom:104px;
  }
  .banner .banner-heading, 
  .banner-home .banner-heading, 
  .banner-inner .banner-heading {
    font-size:3.250rem;
  }
  .slick-prev {
    left: -3rem;
  }
  .slick-next {
    right: -3rem;
  }
  .list-split-1 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -o-column-count: 2;
    column-count: 2; 
  }
  [class*="home-intro-img"] {
      max-width:950px;
  }
  [class*="home-intro-box"] {
      margin-top:-500px;
  }
  [class*="home-c-box"] {
    height:300px;
  }
  .featured-work-box .txt-box {
    padding:15px 35px;
  }
  .hr-s2 {
    margin-top:50px;
    margin-bottom:60px;
  }
}
@media (min-width: 1400px) { 
  [class*="home-c-box"] {
    height:340px;
  }
}

@media (min-width: 1600px) { 
  .banner-home {
    padding-top:175px;
    padding-bottom:200px;
  }
  .banner-inner {
    padding-top:106px;
    padding-bottom:134px;
  }
  .banner .banner-heading, 
  .banner-home .banner-heading, 
  .banner-inner .banner-heading {
    font-size:3.875rem;
  }
}