* {
  font-family: 'Raleway', sans-serif;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  text-decoration: none;
  color: inherit;
}

/* NAVIGATION STYLES
========================================================================== */

.top-nav  {
  width: 100%;
  height: 80px;
  background-color: rgba(0,0,0,1);
  border-bottom: 2px solid rgba(255,255,255,1);
  z-index: 50;
}

.top-nav__front {
  width: 100%;
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  position: relative;
}

/* PAB Logo */

.top-nav__logo  {
  width: 66px;
  height: 32px;
  position: absolute;
  top: 24px;
  left: 24px;
}

/* Hamburger Icon */

.top-nav__menu-button  {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 100;
  transition-duration: 0.2s;
}

.top-nav__menu-button:hover {
  cursor: pointer;
  transform: scale(0.95,0.95);
}

.menu-button__line  {
  width: 32px;
  height: 2px;
  position: absolute;
  background: white;
  top: 0px;
  transition-duration: 0.4s;
  -webkit-transform: translateZ(0);
   -moz-transform: translateZ(0);
   -ms-transform: translateZ(0);
   -o-transform: translateZ(0);
   transform: translateZ(0);
}

.menu-button__line:nth-child(2) {
  top: 15px;
}

.menu-button__line:nth-child(3) {
  top: 30px;
}

.one__active  {
  transform: translatey(15px) rotate(45deg);
}

.two__active  {
  transform: rotate(45deg);
  opacity: 0;
}

.three__active  {
  transform:  translateY(-15px) rotate(-45deg);
}

/* DESKTOP MENU STYLES
========================================================================== */

.desktop-menu {
  display: none;
}

/* MOBILE MENU OVERLAY STYLES
========================================================================== */

.mobile-menu-overlay  {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.9);
  transition-duration: 0.5s;
  opacity: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: -100;
}

.mobile-menu-active {
  transform: scale(1,1);
  display: flex;
  opacity: 1;
  z-index: 90;
}

.mobile-menu-overlay__menu-items {
  width: 100%;
  height: auto;
  z-index: 95;
  opacity: 0;
  -webkit-transform: translateZ(0);
   -moz-transform: translateZ(0);
   -ms-transform: translateZ(0);
   -o-transform: translateZ(0);
   transform: translateZ(0);
  transform: scale(0.9) translateY(300px);
  transition-duration: 0.6s;
}

.mobile-menu-overlay__visible  {
  opacity: 1;
  transform: scale(1) translateY(0px);
}

.mobile-menu-overlay__menu-items div  {
  width: auto;
  margin: 1rem 0;
  font-size: 1.5rem;
  color: white;
  display: inline-block;
  transition-duration: 0.45s;
  letter-spacing: 0.1rem;
}

.mobile-menu-overlay__menu-items div:hover  {
  cursor: pointer;
}

.scroll-lock  {
  height: 100px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* PAGE HEADER STYLES
========================================================================== */

header  {
  width: 100%;
  height: auto;
  background-color: rgba(0,0,0,1);
  padding: 1rem 0;
}

.no-photo {
  border-top: 1rem solid rgba(0,0,0,1);
  padding: 1rem;
}

.main-image {
  width: 100%;
  height: auto;
  padding: 4rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#homepage-header-image  {
  background-image: url(../links/homepage/header.jpg);
  background-size: cover;
  background-position: 50% 60%;
}

.case-study-article-header  {
  padding: 2.5rem 2.5rem;
}

.case-study-article-header h5  {
  max-width: 1248px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7rem;
}

.video-header {
  width: 100%;
  height: auto;
  padding: 0;
}

.video-header  h5 {
  margin-top: 1.5rem;
}

.video-header__thumb {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
  width: 100%;
  max-width: 1248px;
	height: 0;
  margin:2.5rem auto 0;
}
.video-header__thumb iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#privacy-header {
  border-bottom: 2px solid rgba(255,255,255,1);
}

/* Main Header Text */

h1 {
  color: rgba(255,255,255,1.00);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4rem;
  margin: 0 0 1rem;
  display: block;
  transition-duration: 0.5s;
  line-height: 2.5rem;
}

h1 span  {
  letter-spacing: 0;
}

.initial-hidden  {
  display: none;
}

.initial-hidden-2  {
  display: none;
}

.initial-hidden-480px {
  display: none;
}

h5  {
  color: rgba(255,255,255,1.00);
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2rem;
  display: block;
  transition-duration: 0.5s;
  line-height: 2.5rem;
}

h5 span {
  width: 0.2rem;
  height: auto;
}

/* Sub Header Text */

h3  {
  color: rgba(255,255,255,1.00);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  display: block;
  transition-duration: 0.5s;
  line-height: 1.1rem;
}

.middle-subheading  {
  margin-bottom: 1rem;
}

.with-subheading.with-subheading  {
  margin-bottom: 1rem;
}

.main-image p {
  color: white;
}

/* BODY CONTENT STYLES
========================================================================== */

.content  {
  width: 100%;
  height: auto;
  background: rgba(241,241,241,1);
  padding-bottom: 1px;
  padding-top: 1px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.content__wrapper {
  max-width: 1248px;
  width: calc(100% - 32px);
  margin: 16px auto;
}

.content__block {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  position: relative;
}

.block__textbox {
  padding: 1.4rem;
  display: inline-block;
  background: rgba(255,255,255,1);
  margin-bottom: 16px;
}

.block__textbox-right {
  margin-bottom: 0;
}

.textbox__header  {
  font-family: 'Text Me One', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}

.textbox__text  {
  width: 100%;
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.5rem;
}

.textbox__text:last-of-type  {
  margin-bottom: 0;
}

.content__image {
  width: 100%;
  height: 300px;
  display: block;
}

.content__image-left  {
  margin-bottom: 16px;
}

.content__image-small {
  width: calc(50% - 8px);
  height: 150px;
  background: pink;
  display: inline-block;
  margin-bottom: 12px;
}

.content__image-small:first-of-type {
  margin-right: 16px;
}

.content__video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
  width: 100%;
	height: 0;
}
.content__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content__quote {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  padding: 2.5rem;
  text-align: center;
}

.quote__text  {
  font-size: 1.6rem;
  color: rgba(255,255,255,1);
  font-weight: 700;
}

.case-study-strip {
  width: 100%;
  height: auto;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-quote {
  font-size: 1.6rem;
  color: rgba(255,255,255,1);
  font-weight: 400;
}

.see-more-work  {
  height: auto;
  display: table;
  margin: 32px auto;
}

.see-more-work:hover  {
  cursor: pointer;
}

.see-more-work:hover .back-arrow {
  transform: scale(1.1);
}

.see-more-work:active .back-arrow {
  transform: scale(1);
}

.back-arrow {
  position: relative;
  width: 42px;
  height: 11px;
  display: inline-block;
  transition-duration: 0.3s;
}

.back-arrow__line {
  position: absolute;
  width: 42px;
  height: 3px;
  margin: 0;
  bottom: 4px;
  transition-duration: 0.2s;
}

.back-arrow__line-1  {
  width: 13px;
  height: 3px;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: -1px;
  transition-duration: 0.2s;
}

.back-arrow__line-2  {
  width: 13px;
  height: 3px;
  transform: rotate(45deg);
  position: absolute;
  bottom: 0;
  left: -1px;
  transition-duration: 0.2s;
}

.see-more-work__text  {
  width: auto;
  font-size: 1rem;
  display: inline-block;
  margin-left: 16px;
}

/* Form Styling */

form  {
  width: 100%;
  color: rgba(100,100,100,1);
}

form p {
  padding-left: 10px;
  margin-bottom: 1rem;
}

input {
  width: 100%;
  padding: 10px;
  background: rgba(241,241,241,1);
  border: none;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

input[type=text]  {
  color: rgba(100,100,100,1);
}

input::placeholder  {
  color: rgba(100,100,100,1);
}

.date  {
  color: rgba(100,100,100,1);
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + label {
    background: rgba(214,86,154,1);
    color: rgb(255,255,255);
}

label {
  width: calc(33.3333% - 0.6667rem);
  display: inline-block;
  position: relative;
  padding: 10px;
  background: rgba(241,241,241,1);
  border: none;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-align: center;
}

label:last-of-type {
  margin-right: 0;
}

label:hover {
  background: rgba(220,220,220,1);
  cursor: pointer;
}

textarea  {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  padding: 10px;
  background: rgba(241,241,241,1);
  color: rgba(100,100,100,1);
  border: none;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

textarea::placeholder  {
  color: rgba(100,100,100,1);
}

#form-submit  {
  margin-bottom: 0;
  background: rgba(214,86,154,1);
  color: rgba(255,255,255,1);
  font-weight: 700;
  transition-duration: 0.25s;
}

#form-submit:hover  {
  cursor: pointer;
  background: rgba(194,66,134,1);
}

/* Services images */

#services-main  {
  background-image: url(../links/services/services-main.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#analytics-1 {
  background-image: url(../links/services/analytics-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#analytics-2 {
  background-image: url(../links/services/analytics-2.jpg);
  background-position: 30% 50%;
  background-size: cover;
}

#audio-composition-1 {
  background-image: url(../links/services/audio-composition-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#audio-composition-2 {
  background-image: url(../links/services/audio-composition-2.jpg);
  background-position: 60% 50%;
  background-size: cover;
}

#content-1 {
  background-image: url(../links/services/content-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#content-2 {
  background-image: url(../links/services/content-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#display-advertising-1  {
  background-image: url(../links/services/display-advertising-1.jpg);
  background-position: 70% 40%;
  background-size: cover;
}

#display-advertising-2  {
  background-image: url(../links/services/display-advertising-2.jpg);
  background-position: 20% 40%;
  background-size: cover;
}

#event-organising-1 {
  background-image: url(../links/services/event-organising-1.jpg);
  background-position: 70% 50%;
  background-size: cover;
}

#event-organising-2 {
  background-image: url(../links/services/event-organising-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#outdoor-media-1 {
  background-image: url(../links/services/outdoor-media-1.jpg);
  background-position: 20% 50%;
  background-size: cover;
}

#outdoor-media-2 {
  background-image: url(../links/services/outdoor-media-2.jpg);
  background-position: 60% 50%;
  background-size: cover;
}

#point-of-sale-1 {
  background-image: url(../links/services/point-of-sale-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#press-adverts-1 {
  background-image: url(../links/services/press-adverts-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#radio-1 {
  background-image: url(../links/services/radio-1.jpg);
  background-position: 70% 50%;
  background-size: cover;
}

#radio-2 {
  background-image: url(../links/services/radio-2.jpg);
  background-position: 15% 50%;
  background-size: cover;
}

#sem-1 {
  background-image: url(../links/services/sem-1.jpg);
  background-position: 70% 50%;
  background-size: cover;
}

#sem-2 {
  background-image: url(../links/services/sem-2.jpg);
  background-position: 40% 50%;
  background-size: cover;
}

#seo-1 {
  background-image: url(../links/services/seo-1.jpg);
  background-position: 60% 50%;
  background-size: cover;
}

#seo-2 {
  background-image: url(../links/services/seo-2.jpg);
  background-position: 60% 50%;
  background-size: cover;
}

#social-media-1 {
  background-image: url(../links/services/social-media-1.jpg);
  background-position: 60% 50%;
  background-size: cover;
}

#social-media-2 {
  background-image: url(../links/services/social-media-2.jpg);
  background-position: 60% 50%;
  background-size: cover;
}

#television-1 {
  background-image: url(../links/services/television-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#television-2 {
  background-image: url(../links/services/television-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#video-1 {
  background-image: url(../links/services/video-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#video-2 {
  background-image: url(../links/services/video-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#web-development-1 {
  background-image: url(../links/services/web-development-1.jpg);
  background-position: 54% 50%;
  background-size: cover;
}

#web-development-2 {
  background-image: url(../links/services/web-development-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

/* Case Study images */

#ford-test-drive-1 {
  background-image: url(../links/case-studies/ford-test-drive-1.jpg);
  background-position: 20% 50%;
  background-size: cover;
}

#ford-test-drive-2 {
  background-image: url(../links/case-studies/ford-test-drive-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#stoneacre-3  {
  background-image: url(../links/case-studies/stoneacre-3.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

/* Blog Post images */

#pab-1  {
  background-image: url(../links/blog/pab-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#pab-2  {
  background-image: url(../links/blog/pab-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#pab-3  {
  background-image: url(../links/blog/pab-3.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

/* Meeting Room Images */

#meeting-room-2  {
  background-image: url(../links/meeting-room/meeting-room-2.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#meeting-room-3  {
  background-image: url(../links/meeting-room/meeting-room-3.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#meeting-room-4  {
  background-image: url(../links/meeting-room/meeting-room-4.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

#meeting-room-5  {
  background-image: url(../links/meeting-room/meeting-room-5.jpg);
  background-position: 70% 50%;
  background-size: cover;
}

/* Contact Images */

#contact-1  {
  background-image: url(../links/contact/contact-1.jpg);
  background-position: 50% 50%;
  background-size: cover;
}

/* Contact Page icons */

.contact-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: top;
  margin-right: 10px;
  border-radius: 50%;
}

.contact-text {
  display: inline-block;
  width: calc(100% - 30px);
}

.contact-social-media {
  width: auto;
  height: auto;
  margin: 1rem 0 0;
}

.social-media__button-small  {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  display:inline-block;
}

.social-media__button-small:last-of-type {
  margin-right: 0;
}

/* Header strips */

.header-strip {
  width: 100%;
  height: auto;
  padding: 2.5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pink {
  background: rgba(214,86,154,1);
}

.pink-text {
  color: rgba(214,86,154,1);
}

.green {
  background: rgba(212,224,141,1);
}

.green-text {
  color: rgba(212,224,141,1);
}

.red {
  background: rgba(229,39,27,1);
}

.red-text {
  color: rgba(229,39,27,1);
}

.yellow {
  background: rgba(255,214,77,1);
}

.yellow-text {
  color: rgba(255,214,77,1);
}

.blue {
  background: rgba(8,139,204,1);
}

.blue-text {
  color: rgba(8,139,204,1);
}

.black  {
  background: rgba(0,0,0,1);
}

.stoneacre-green {
  background: rgba(118,188,33,1);
}

.header-strip h6  {
  color: rgba(255,255,255,1.00);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.plain-text {
  max-width: 1248px;
  width: calc(100% - 32px);
  padding: 24px;
  background: rgba(255,255,255,1);
  margin: 16px auto;
}

.plain-text p {
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.plain-text p:last-of-type  {
  margin: 0;
}

/* GRID STYLES
========================================================================== */

.grid {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding-top: 16px;
  z-index: 0;
}

.grid-sizer,
.grid-item  {
  width: 100%;
}

.gutter-sizer {
  width: 0%;
}

.grid-item  {
  padding-top: 50%;
  float: left;
  background: rgba(255,255,255,1);
  margin-bottom: 16px;
  position: relative;
  opacity: 1;
  animation: fadein 0.65s ease 0s 1 normal;
  animation-fill-mode: backwards;
}

@-webkit-keyframes fadein {
  0%   {
    opacity: 0;
    transform: scale(0.8) translatey(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translatey(0px);
  }
}

/* .grid-item__visible {
  animation: grid-page-load 0.5s ease-in 0s 1 normal;
  animation-fill-mode: forwards;
}

.visible {
  animation: grid-page-load 0.5s ease-in 0.1s 1 normal;
  animation-fill-mode: forwards;
}

@-webkit-keyframes grid-page-load {
  0%   {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
} */

.grid-item--height2  {
  padding-top: 100%;
}

.grid-item--width2  {
  padding-top: 47.4%;
  width: 100%;
}

.grid-item__image {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}

.grid-item__text  {
  width: 100%;
  height: auto;
  padding: 1.4rem;
  position: relative;
}

.grid-item__text2 {
  height: 50%;
}

.grid-item-services  {
  padding-top: 100%;
  float: left;
  background: rgba(255,255,255,1);
  margin-bottom: 16px;
  position: relative;
  opacity: 1;
  animation: fadein 0.65s ease 0s 1 normal;
  animation-fill-mode: backwards;
}

.grid-item__text-services {
  width: 100%;
  height: auto;
  padding: 1.4rem;
  position: relative;
}

.text__wrapper  {
  width: 100%;
  height: 100%;
  position: relative;
}

.text__wrapper-services  {
  width: 100%;
  height: auto;
  position: relative;
}

.text__wrapper-services .grid-item__arrow {
  position: relative;
}

.grid-item__line  {
  width: 40px;
  height: 3px;
  margin-bottom: 1.2rem;
}

h2  {
  font-family: 'Text Me One', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: normal;
}

h4  {
  width: 100%;
  font-weight: 400;
  display: none;
  margin-bottom: 1.2rem;
}

.text__wrapper-services h4  {
  font-size: 1rem;
  line-height: 1.5rem;
}

.grid-item__arrow {
  position: relative;
  width: 42px;
  height: 11px;
  transition-duration: 0.3s;
}

.grid-item:hover  {
  cursor: pointer;
}

.pab-value:hover  {
  cursor: default;
}

.grid-item:hover .grid-item__arrow  {
  transform: scale(1.1);
}

.grid-item:active .grid-item__arrow {
  transform: scale(1);
}

.grid-item__arrow .grid-item__line {
  position: absolute;
  margin: 0;
  bottom: 4px;
  transition-duration: 0.2s;
}

.arrow__line-1  {
  width: 13px;
  height: 3px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -1px;
  transition-duration: 0.2s;
}

.arrow__line-2  {
  width: 13px;
  height: 3px;
  transform: rotate(-45deg);
  position: absolute;
  bottom: 0;
  right: -1px;
  transition-duration: 0.2s;
}

/* PAB values 10 things */

.pab-value {
  height: auto;
  padding-top: 0px;
}

.pab-values  {
  position: relative;
  width: 100%;
  padding: 1.4rem;
}

.values__pink {
  background: rgba(214,86,154,1);
}

.values__green {
  background: rgba(212,224,141,1);
}

.values__red {
  background: rgba(229,39,27,1);
}

.values__yellow {
  background: rgba(255,214,77,1);
}

.values__blue {
  background: rgba(8,139,204,1);
}

.pab-values__number  {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.6rem;
}

.pab-values__text  {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,1);
  margin-bottom: 0.6rem;
}

/* PAGE FOOTER STYLES
========================================================================== */

/* Get In Touch Block */

.get-in-touch {
  width: 100%;
  height: auto;
  background-color: rgba(0,0,0,1);
  padding: 1rem 0;
  border-bottom: 2px solid rgba(255,255,255,1);
}

#get-in-touch__image  {
  background-image: url(../links/homepage/footer.jpg);
  background-size: cover;
  background-position: 50% 60%;
}

.image__ask {
  width: auto;
  display: none;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  padding: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,1);
  text-transform: uppercase;
  margin: 1.5rem auto 0;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  letter-spacing: 0.2rem;
}

.image__ask:hover {
  cursor: pointer;
  background-color: rgba(255,255,255,0.1);
}

/* Footer below image */

footer  {
  width: 100%;
  height: auto;
  background-color: rgba(0,0,0,1);
  padding: 2rem 24px;
}

.footer__wrapper {
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
}

.footer__social-media {
  width: 100%;
  height: auto;
  margin: 0 auto 2rem;
}

.social-media__button  {
  width: 19%;
  height: auto;
  margin-right: 8%;
  display:inline-block;
}

.social-media__button:last-of-type {
  margin-right: 0;
}

.footer__address  {
  width: 100%;
  height: auto;
}

.address__text  {
  text-align: left;
  font-size: 0.8rem;
  color: rgba(255,255,255,1);
  line-height: 1.1rem;
  margin-bottom: 2rem;
}

.address__text-large  {
  font-size: 1rem;
}

.footer-nav {
  display: block;
}

.footer-nav a {
  display: inline-block;
  color: rgba(255,255,255,1);
  text-decoration: none;
  font-size: 0.8rem;
  margin-bottom: 2rem;
}

.footer-nav a:first-of-type {
  border-right: 1px solid #d7559a;
  padding-right: 10px;
}

.footer-nav a:nth-of-type(2)  {
  border-right: 1px solid #d4e08d;
  padding: 0px 10px 0px 10px;
}

.footer__copyright  {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  color: rgba(255,255,255,1);
  line-height: 1.1rem;
}

svg:hover {
  cursor: pointer;
}

svg #facebook,
svg #twitter,
svg #linkedin,
svg #instagram  {
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

svg:hover #facebook,
svg:hover #twitter,
svg:hover #linkedin,
svg:hover #instagram {
  fill: #fff;
  cursor: pointer;
}


/* MEDIUM PHONE AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 360px) {

  h2  {
    font-size: 2rem;
  }

  /* PAB values 10 things */

  .pab-values__number  {
    font-size: 4rem;
  }

}

/* LARGE PHONE AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 410px) {

  h2  {
    font-size: 2rem;
  }

  h4  {
    display: block;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  /* PAB values 10 things */

  .pab-values {
    padding: 1.6rem;
  }

  .pab-values__text {
    font-size: 1.8rem;
  }

}

/* SMALL TABLET AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 480px) {

  /* PAGE HEADER STYLES
  ========================================================================== */

  #homepage-header-image  {
    box-sizing: content-box;
    height: 102px;
    padding: 15% 0;
  }

  .initial-hidden-480px {
    display: inline;
    letter-spacing: 0.4rem;
  }

  .later-hidden-480px {
    display: inline;
    letter-spacing: 0.4rem;
  }

  /* BODY CONTENT STYLES
  ========================================================================== */

  .content__wrapper {
    width: calc(100% - 48px);
    margin: 24px auto;
  }

  .content__block {
    margin-bottom: 24px;
  }

  .block__textbox {
    width: 100%;
    margin-bottom: 24px;
  }

  .block__textbox-right {
    margin-bottom: 0;
  }

  .content__quote {
    margin-bottom: 24px;
  }

  .content__image-left  {
    margin-bottom: 24px;
  }

  .content__image-small {
    width: calc(50% - 12px);
    margin-bottom: 20px;
  }

  .content__image-small:first-of-type {
    margin-right: 24px;
  }

  /* GRID STYLES
  ========================================================================== */

  .grid {
    width: calc(100% - 48px);
    padding-top: 24px;
  }

  .grid-sizer,
  .grid-item  {
    width: calc(50% - 12px);
  }

  .gutter-sizer {
    width: 24px;
  }

  .grid-item  {
    padding-top: calc(50% - 12px);
    margin-bottom: 24px;
  }

  .grid-item--height2  {
    padding-top: 100%;
  }

  .grid-item--width2  {
    padding-top: 100%;
    width: 100%;
  }

  .pab-values .pab-values__text {
    font-size: 1.3rem;
  }

  .grid-item__image {
    width: 100%;
    position: absolute;
    top: 0;
  }

  .grid-item__image-large {
    padding-top: calc(50% - 12px);
  }

  .text__wrapper-services  {
    height: auto;
  }

  .grid-item__text  {
    height: calc(50% + 12px);
    position: absolute;
    bottom: 0;
  }

  .grid-item__text-services  {
    height: auto;
    position: relative;
    bottom: 0;
  }

  h2  {
    font-size: 1.4rem;
  }

  .grid-item__arrow {
    position: absolute;
    bottom: 0;
  }

  .pab-value {
    height: 0;
    padding-top: calc(50% - 12px);
  }

  .pab-values  {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    padding: 1.4rem;
  }

  /* PAGE FOOTER STYLES
  ========================================================================== */

  /* Footer below image */

  .clearfix::after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
  }

  .footer__social-media {
    width: 107px;
    float: right;
    margin: 0;
    display: block;
  }

  .social-media__button  {
    width: 45%;
    height: auto;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .social-media__button:nth-of-type(1),
  .social-media__button:nth-of-type(3) {
    margin-right: 10%;
  }

  .social-media__button:nth-of-type(2),
  .social-media__button:nth-of-type(4) {
    margin-right: 0;
  }

  .social-media__button:nth-of-type(3),
  .social-media__button:nth-of-type(4) {
    margin-bottom: 0;
  }

  .footer__address  {
    width: calc(100% - 107px);
    display: inline-block;
  }

  .address__text  {
    text-align: left;
    font-size: 0.8rem;
    color: rgba(255,255,255,1);
    line-height: 1.1rem;
    margin-bottom: 1rem;
  }

  .footer-nav {
    width: calc(100% - 107px);
    display: inline-block;
  }

  .footer-nav a {
    margin-bottom: 1rem;
  }

  .footer__copyright {
    width: calc(100% - 107px);
  }

}

/* MEDIUM TABLET AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 600px) {

  h2  {
    font-size: 1.8rem;
  }

  /* PAB values 10 things */

  .pab-values__number {
    font-size: 6rem;
  }

  .pab-values__text {
    font-size: 2.2rem;
  }

  .pab-values .pab-values__text {
    font-size: 1.8rem;
  }

}

@media only screen and (min-width: 600px) {

  .pab-values .pab-values__text {
    font-size: 2.2rem;
  }

}

/* LARGE TABLET AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 768px) {

  /* PAGE HEADER STYLES
  ========================================================================== */

  /* Main Header Text */

  .case-study-article-header  {
    padding: 4rem;
  }

  .case-study-article-header h5  {
    font-size: 2.4rem;
    line-height: 2.7rem;
  }

  .video-header {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .video-header  h5 {
    margin-top: 3rem;
  }

  .video-header__thumb {
    margin:4rem auto 0;
  }

  h1 {
    font-size: 2.4rem;
    letter-spacing: 0.5rem;
    line-height: 2.7rem;
  }

  h5 {
    font-size: 2.4rem;
    line-height: 2.7rem;
  }

  .initial-hidden  {
    display: inline;
    letter-spacing: 0.4rem;
  }

  .initial-hidden__small  {
    display: inline;
    letter-spacing: 0.2rem;
  }

  .later-hidden {
    display: none;
  }

  /* Sub Header Text */

  h3  {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.3rem;
  }

  /* BODY CONTENT STYLES
  ========================================================================== */

  .content__block {
    margin-bottom: 24px;
  }

  .block__textbox {
    width: calc(66.7% - 8px);
    min-height: 350px;
    height: auto;
    padding: 1.8rem;
    margin-bottom: 0;
  }

  .block__textbox-right {
    margin-left: calc(33.3% + 8px);
  }

  .block__textbox-thin {
    width: calc(33.3% - 16px);
  }

  .textbox__header  {
    font-family: 'Text Me One', sans-serif;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
  }

  .textbox__text  {
    width: 100%;
    font-weight: 400;
    margin-bottom: 1.2rem;
  }

  .content__image {
    width: calc(33.3% - 16px);
    height: auto;
    margin-top: 0;
    position: absolute;
    top: 0; bottom: 0; right: 0;
    display: inline-block;
  }

  .content__image-large  {
    width: calc(66.7% - 8px);
    margin-left: calc(33% + 8px);
  }

  .content__image-left  {
    left: 0;
    margin-bottom: 0;
  }

  .content__image-small {
    width: calc(33.3% - 16px);
    height: auto;
    padding-top: calc((((66.7% - 8px) * 0.5625) / 2) - 12px);
    background: lightblue;
    margin-bottom: 20px;
  }

  .content__image-small:first-of-type {
    margin-right: 0;
    display: block;
    margin-bottom: 24px;
  }

  .content__image-small:nth-of-type(2) {
    margin-bottom: 0px;
    display: inline-block;
  }

  .content__video {
  	position: relative;
  	padding-bottom: calc((66.7% - 8px) * 0.5625);
    margin-top: calc((((-66.7% - 8px) * 0.5625) / 2) - 8px);
    width: calc(66.7% - 8px);
  	height: 0;
    float: right;
  }

  .content__quote {
    width: calc(33.3% - 16px);
    height: auto;
    position: absolute;
    top: 0; bottom: 0; left: 0;
    display: inline-block;
    margin-bottom: 0;
  }

  .quote__text  {
    font-size: 1.4rem;
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    transform: translate(0%, -50%);
  }

  .see-more-work  {
    margin: 48px auto;
  }

  /* Contact Page icons */

  .contact-text {
    display: inline-block;
    width: calc(100% - 30px);
  }

  /* GRID STYLES
  ========================================================================== */

  .grid {
    width: calc(100% - 48px);
    padding-top: 24px;
  }

  .grid-sizer,
  .grid-item  {
    width: calc(33.3% - 16px);
  }

  .grid-item  {
    padding-top: calc(33.3% - 16px);
    margin-bottom: 24px;
  }

  .grid-item--height2  {
    padding-top: calc(66.7% - 8px);
  }

  .grid-item--width2  {
    width: calc(66.7% - 8px);
  }

  .text__wrapper-services  {
    height: auto;
  }

  h2  {
    font-size: 1.4rem;
  }

  /* PAB values 10 things */

  .pab-values__number {
    font-size: 4rem;
  }

  .pab-values__text {
    font-size: 2rem;
  }

  .pab-values .pab-values__text {
    font-size: 1.5rem;
  }

  /* PAGE FOOTER STYLES
  ========================================================================== */

  /* Footer below image */

  .footer__social-media {
    width: 190px;
    float: right;
    margin: 0 auto;
    display: inline-block;
  }

  .social-media__button  {
    width: 40px;
    height: auto;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .social-media__button:nth-of-type(1),
  .social-media__button:nth-of-type(2),
  .social-media__button:nth-of-type(3) {
    margin-right: 10px;
  }

  .social-media__button:nth-of-type(4) {
    margin-right: 0;
  }

  .footer__address  {
    width: calc(100% - 190px);
    display: inline-block;
    float: left;
  }

  .footer-nav {
    width: auto;
    float: right;
  }

  .footer-nav a {
    margin-bottom: 0;
  }

  .footer__copyright {
    width: auto;
    float: left;
  }

}

/* SMALL LAPTOP AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 1000px) {

  .grid-item__text  {
    padding: 1.8rem;
  }

  .grid-item__text-services  {
    padding: 1.8rem;
  }

  h2  {
    font-size: 1.8rem;
  }

  /* PAB values 10 things */

  .pab-values__number {
    font-size: 5rem;
  }

  .pab-values__text {
    font-size: 2.3rem;
  }

  .pab-values .pab-values__text {
    font-size: 2.3rem;
  }

}

/* MEDIUM LAPTOP AND ABOVE STYLES
========================================================================== */

@media only screen and (min-width: 1280px) {

  /* DESKTOP MENU STYLES
  ========================================================================== */

  .desktop-menu {
    color: rgba(255,255,255,1);
  }

  .desktop-menu-left  {
    display: inline-block;
    float: left;
  }

  .desktop-menu-right {
    display: inline-block;
    float: right;
  }

  .desktop-menu div {
    display: inline-block;
    padding: 0px 10px 0px 10px;
    letter-spacing: 0.05rem;
   }

  .desktop-menu div:hover {
    cursor: pointer;
  }

  .desktop-menu-left a:first-of-type  {
    border-right: 1px solid #d7559a;
    padding-left: 6px;
  }

  .desktop-menu-left a:nth-of-type(2) {
    border-right: 1px solid #d4e08d;
  }

  .desktop-menu-left a:nth-of-type(3) {
    border-right: 1px solid #dfdfdf;
  }

  .desktop-menu-left a:last-of-type  {
    border: none;
  }

  .desktop-menu-right a:first-of-type  {
    border-right: 1px solid #088acc;
  }

  .desktop-menu-right a:last-of-type  {
    padding-right: 6px;
    border: none;
  }

  /* NAVIGATION STYLES
  ========================================================================== */

  .top-nav  {
    height: 120px;
    padding-top: 74px;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
  }

  .top-nav__front {
    height: auto;
  }

  .top-nav__shrink  {
    height: 80px;
    padding-top: 31px;
    position: sticky;
    top: 0;
    outline: 1rem solid rgba(0,0,0,1);
  }

  /* PAB Logo */

  .top-nav__logo  {
    left: calc(50% - 66px);
    width: 132px;
    height: 64px;
    top: -46px;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
  }

  .logo__shrink {
    left: calc(50% - 25px);
    width: 62px;
    height: 30px;
    top: -6px;
  }

  /* Hamburger Icon */

  .top-nav__menu-button  {
    display: none;
  }

  /* MOBILE MENU OVERLAY STYLES
  ========================================================================== */

  .mobile-menu-overlay  {
    display: none;
  }

  /* PAGE HEADER STYLES
  ========================================================================== */

  #homepage-header-image  {
    width: 1248px;
    height: 476px;
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .video-header__wrapper {
    height: 906px;
  }

  .video-header__thumb {
  	height: 720px;
    width: 1248px;
  }

  .video-header__thumb iframe {
    height: 720px;
    width: 1248px;
  }

  /* Main Header Text */

  h1 {
    font-size: 2.8rem;
    letter-spacing: 0.6rem;
    line-height: 3rem;
  }

  h5 {
    font-size: 2.8rem;
    line-height: 3rem;
  }

  .initial-hidden-2  {
    display: inline;
    letter-spacing: 0.4rem;
  }

  .later-hidden-2 {
    display: none;
  }

  /* Sub Header Text */

  h3  {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

  /* BODY CONTENT STYLES
  ========================================================================== */

  .plain-text {
    margin: 2rem auto;
  }

  .content__wrapper {
    margin: 32px auto;
  }

  .content__block {
    margin-bottom: 32px;
  }

  .block__textbox {
    min-height: 400px;
    width: calc(50% - 16px);
    height: auto;
    padding: 2.2rem;
  }

  .block__textbox-right {
    margin-left: calc(50% + 16px);
  }

  .block__textbox-thin {
    width: calc(33.3% - 16px);
  }

  .content__image {
    width: calc(50% - 16px);
  }

  .content__image-large  {
    width: calc(66.7% - 16px);
    margin-left: calc(33% + 16px);
  }

  .content__image-small {
    width: calc(33.3% - 16px);
    height: auto;
    padding-top: calc((((66.7% - 16px) * 0.5625) / 2) - 16px);
    background: lightblue;
    margin-bottom: 20px;
  }

  .content__image-small:first-of-type {
    margin-right: 0;
    display: block;
    margin-bottom: 32px;
  }

  .content__video {
    position: relative;
    padding-bottom: calc((66.7% - 16px) * 0.5625);
    margin-top: calc((((-66.7% - 16px) * 0.5625) / 2) - 8px);
    width: calc(66.7% - 16px);
    height: 0;
    float: right;
  }

  .content__quote {
    width: calc(50% - 16px);
  }

  .quote__text  {
    font-size: 2.4rem;
  }

  /* GRID STYLES
  ========================================================================== */

  .grid {
    width: 100%;
    max-width: 1248px;
    padding-top: 32px;
  }

  .grid-sizer,
  .grid-item  {
    width: calc(25% - 24px);
  }

  .gutter-sizer {
    width: 32px;
  }

  .grid-item  {
    padding-top: calc(25% - 24px);
    margin-bottom: 32px;
  }

  .grid-item--height2  {
    padding-top: calc(50% - 16px);
  }

  .grid-item--width2  {
    width: calc(50% - 16px);
  }

  .grid-item__image-large {
    padding-top: calc(50% - 16px);
  }

  .text__wrapper-services  {
    height: auto;
  }

  .grid-item__text  {
    height: calc(50% + 16px);
  }

  /* .grid-item-services  {
    padding-top: calc(50% - 16px);
  } */

  h2  {
    font-size: 1.6rem;
  }

  /* PAGE FOOTER STYLES
  ========================================================================== */

  /* Get In Touch Block */

  #get-in-touch__image  {
    width: 1248px;
    margin: 0 auto;
  }

  .image__ask {
    display: block;
  }

  footer  {
    padding: 2rem 0px;
  }

  .footer__wrapper {
    padding: 0 16px;
  }

}
