@import url(reset.css);
@import url(fonts.css);

:root {
    --text: #000000;
    --background: #c3e2dc;
    --primary: #2C2C2C;
    --secondary: #c3e2dc;
    --accent: #7dbe55;
    --innovate: #E4E4E4;
    --shine: #FFCD00;
    --shine-alt: #00b2e2;
    --qbox: #8ba7d1;
    --padding: 1.5rem;
    --padding-btn: 0.5rem 3rem;
    --radius: 0;
    --alt-bg: #F5F5F5;
    --dark-bg: #2C2C2C;
    --white-smoke: #f7f7f7;
    --charcoal: #2c2c2c;
    --turquoise: #00d5c8;
    --white: #ffffff;
    --shine-white: #fffad9;
    --light-grey: #a6a6a6;
    --charcoal-25: rgba(44, 44, 44, .25);
}

html {
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-size: 16px;
    font-family: 'Gilroy-Regular', sans-serif;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--charcoal);
    font-weight: normal;
    line-height: 1.3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

p {
    font-size: 16px;
    font-weight: 500;
    font-family: 'GilroySemiBold', sans-serif;
    line-height: 24px;
}

.container,.container-old {
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

.container.p-0,.container-old.p-0 {
    padding: 0;
}

.container.m-0,.container-old.m-0 {
    margin: 0;
}

.container-flex {
    display: flex;
    align-items: normal;
}

a.button {
    min-width: 100px;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    text-align: center;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 20px;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 600;
    transition: background-color .25s cubic-bezier(.075, .82, .165, 1), border .75s;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-color: var(--shine);
    background-color: var(--shine);
    transition-duration: .75s, .75s;
    font-family: 'Gilroy-Medium', sans-serif;
}

a.button:hover {
    background: transparent;
    color: var(--charcoal);
}

section.cta {
    padding: 4rem 0;
}

.cs-cta-div h3 {
    font-family: 'GilroyBold', sans-serif;
}

.cs-cta-div p {
    margin-bottom: 20px;
}

.cs-cta-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.home section.cta {
    background: var(--white-smoke);
}

.cs-cta-div a.button {
    align-self: auto;
}

.bg-smoke {
    background: var(--white-smoke);
}

.intro-text p {
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 2.4rem;
    line-height: 2.8rem;
}

.intro-text {
    width: 100%;
    padding: 4rem;
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
    color: var(--primary);
}

.intro-image {
    padding: 4rem;
    width: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*header*/
.navbar-white {
    height: 115px;
    background-color: var(--white);
    color: rgba(0, 0, 0, 0);
    flex: 0 auto;
    display: block;
    position: fixed;
    bottom: auto;
    left: 0%;
    right: 0%;
    z-index: 100;
}

.nav-container {
    color: rgba(0, 0, 0, 0);
    margin-left: 40px;
    margin-right: 40px;
}

.nav-container {
    display: flex;
    align-items: baseline;
    min-height: 115px;
    justify-content: space-between;
}

.brand svg {
    width: 100%;
    height: 38.9px;
    max-width: 180px;
    color: var(--charcoal);
    fill: var(--charcoal);
}

.nav-menu {
    display: flex;
}

.menu-item {
    color: var(--charcoal);
    letter-spacing: normal;
    -webkit-text-fill-color: inherit;
    background-color: rgba(0, 0, 0, 0);
    background-clip: border-box;
    margin-top: 40px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 0 5px;
    font-size: 16px;
    font-weight: 500;
    transition: color .2s;
    overflow: visible;
}

.menu-item a {
    border-style: none none solid;
    border-width: 0 0 3px;
    border-color: white white white;
    white-space: nowrap;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    font-size: 16px;
    color: var(--charcoal);
    text-decoration: none;
    display: block;
    width: fit-content;
    font-family: 'Gilroy-Regular', sans-serif;
    font-weight: 600;
}

.menu-item:hover a {
    border-style: solid;
    border-width: 0 0 3px;
    border-color: #2c2c2c #2c2c2c var(--shine);
    color: var(--charcoal);
}

.menu-item.current-menu-item a {
    border-style: solid;
    border-width: 0 0 3px;
    border-color: #2c2c2c #2c2c2c var(--shine);
    color: var(--charcoal);
}

a:active,
a:hover {
    outline: 0;
}

.menu-item.contact {
    min-width: 124px;
    border: 2px solid var(--shine);
    background-color: var(--shine);
    text-align: center;
    border-radius: 20px;
    margin-top: 50px;
    font-size: 16px;
    padding: 5px 0 5px;
    transition: background-color .25s, opacity .75s;
    margin-bottom: 8px;
}

.menu-item.contact:hover {
    border: 2px solid var(--shine);
    background-color: var(--white);
    color: var(--charcoal);
}

.menu-item.contact a {
    border-style: none;
    width: auto;
    padding-bottom: 0;
    margin-top:1px;
}

.menu-item.contact:hover a {
    color: var(--charcoal);
}

.menu-item.contact.current-menu-item a {
    color: var(--charcoal);
}

.mt-115 {
    margin-top:115px;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/*typography*/
h2,
h3,
h4,
h5,
h6,
.bold-text {
    font-family: 'GilroySemiBold', sans-serif;
}

.page-intro-copy h3 {
    font-family: 'Gilroy-Bold', sans-serif;
}

h1 {
    color: var(--charcoal);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 70px;
    font-weight: 600;
    line-height: 75px;
}


.page-intro-block h1 {
    font-family: 'GilroySemiBold', sans-serif;
}

h2 {
    color: var(--charcoal);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'GilroySemiBold', sans-serif;
    font-size: 44px;
    line-height: 52px;
}

h3 {
    color: var(--charcoal);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
}

h4 {
    color: var(--charcoal);
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
}

h5 {
    color: var(--charcoal);
    text-transform: uppercase;
    margin-top: 0;
    font-family: 'GilroySemiBold', sans-serif;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
}

.page-template-services-page .page-content-copy h4 {
    font-family: 'GilroyBold', sans-serif;
}

a {
    color: initial;
    transition: color .2s;
}

a:hover {
    color: var(--shine);
    transition: color .2s;
}

strong {
    font-family: 'Gilroy-Bold', sans-serif;
}

/*buttons*/
button {
    border: 2px solid var(--dark-bg);
    padding: 0.5rem 1rem;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: transparent;
    color: var(--dark-bg);
}

.theme-button,
.theme-button-submit,
button {
    min-width: 100px;
    border: 2px solid var(--charcoal);
    color: var(--charcoal);
    text-align: center;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 20px;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    transition: background-color .25s cubic-bezier(.075, .82, .165, 1), border .75s;
}

/*homepage*/
.hero {
    height: 100vh;
    background-image: url('../img/Home-hero.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 115px;
    padding: 10rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-title {
    width: 50%;
    color: var(--shine-white);
}

.hero-title img {
    max-width: 36rem;
}

.hero-title h1 {
    color: var(--white);
    font-family: 'GilroySemiBold', sans-serif;
    font-weight: 500;
    letter-spacing: normal;
}

.home-intro {
    padding: 4rem 0 16rem;
}

.arrow {
    background: var(--text);
    text-align: center;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;

}

.arrow span {
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#homeCards {
    background-image: url(../img/Ribbons-1080x1920-V2-Volume-Ribbon-E-Dark-Grey.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

#homeCards .card .content {
    min-height: 22rem;
    padding: 2rem;
}

#homeCards .card .desc {
    margin-bottom: 4rem;
}

#homeCards .card-list {
    margin-top: -10rem;
    margin-bottom: 10rem;
}

#homeCards .card .image {
    height: 240px;
}

.tagline {
    background: var(--shine);
    text-align: center;
    padding: 2rem 0;
    font-size: 24px;
    font-family: 'Gilroy-Bold', sans-serif;
}


#largeCaseStudy .hero {
    height: 100vh;
    background-image: url('../img/Home-hero.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top:0;
}

#largeCaseStudy .hero p {
    color: white;
    margin-bottom: 1.5rem;
}
#largeCaseStudy .hero img {
    margin-bottom: 1.5rem;
}

#largeCaseStudy .hero a {
    margin-top:1.5rem;
}

#largeCaseStudy .hero a:hover {
    color: var(--shine);
}


#largeCaseStudy .content {
    width: 30%;
}

.logo-slider .container {
    text-align: center;
    padding: 1rem;
    max-width: 44rem;
}

.logo-slider .container p {
    margin-bottom: 4rem;
}

/*services page*/
.mobile-only {
    display: none;
}

.page-intro-block {
    margin-top: 115px;
    background: #1b1b1e;
}

.archive-intro p,
.page-intro-block p {
    max-width: 70%;
    font-size: 24px;
    font-family: 'GilroySemiBold', sans-serif;
    margin-bottom: 15px;
}

.page-template-services-page .page-intro-block {
    background-image: url('../img/services_hero.png');
    background-position: center;
    background-size: cover;
    min-height: 400px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-template-services-page .page-intro-block h1 {
    color: var(--white);
}

.service-rows {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}


.sticky-nav {
    top: 115px;
    left: 0;
    width: 100%;
    background: var(--shine);
    margin: 0 auto;
    transition: position 2s;
}

.sticky-nav .service-rows {
    margin: 1rem 0 0;
}

.sticky-nav.sticky {
    position: fixed;
}

a.service-link {
    min-height: 70px;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-bg);
    color: var(--shine-white);

}

.service-item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.service-content {
    width: 100%;
    height: fit-content;
    margin-top: auto;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-copy {
    margin: 0 4rem;
}

.service-content ul {
    list-style: initial;
    margin-left: 15px;
    margin-top: 15px;
}

.page-content-copy {
    padding: 6rem 10rem;
}

.service-content ul li {
    margin-bottom: 15px;
}
.service-content ul li::marker {
    color: var(--shine);
  }

.service-content p {
    font-family: 'Gilroy-Regular', sans-serif;
}

.service-content h4 {
    font-family: 'Gilroy-Bold', sans-serif;
    margin-bottom: 15px;
}

.service-list.stuck {
    margin-top: 140px;
}

.service-list {
    background: var(--white-smoke);
}

.service-list section {
   display: flex;
   margin-bottom: 20px;
}

.service-list section:last-of-type {
    margin-bottom: 0;
}

.service-list section:nth-child(odd) {
    flex-direction: row-reverse;
}

/*about page*/
.page-template-about-page .page-intro-block {
    background: var(--white-smoke);
    padding-bottom: 3rem;
    margin-top:0;
   
}

.page-template-about-page .page-intro-block .container-flex {
    justify-content: center;
}

.page-template-about-page .careers-section {
    background: var(--white-smoke);
}

.page-template-about-page #video-content h1 {    
    font-size: 220px;
    line-height: 220px;
    color: var(--white);
}

.page-template-about-page .page-intro-block p {
    max-width: none;
}

.page-template-gallery-page .page-intro-block,
.page-template-contact-page .page-intro-block {
    padding-bottom: 3rem;
}

.page-template-gallery-page .page-intro-block {
    background-image: url('../img/gallery_hero.png');
    background-position: center;
    background-size: cover;
    min-height: 400px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-gallery-page .page-intro-block h1 {
    color: var(--white);
    margin-bottom: 0;
}

.page-template-gallery-page .page-content-copy {
    text-align: center;
}

.bg-dark {
    background: var(--dark-bg);
    color: var(--white);
    padding-top: 150px;
    padding-bottom: 150px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-dark h1 {
    color: var(--white);
}

.page-template-about-page .about-copy strong {
    font-size: 18px;
}

.page-template-about-page .page-content-copy {
    text-align: center;
}

.page-template-about-page .bg-dark h1 {
    width: 55%;
    margin: 20px auto;
    font-family: 'GilroySemiBold', sans-serif;
}

.page-template-about-page .video-intro {
    background: rgba(16,30,41,0.27);
}

.about-copy {
    column-count: 2;
    width: 55%;
    margin: 0 auto;
    column-gap: 3rem;
}

.about-copy h4 {
    margin-bottom: 20px;
}

.about-copy {
    column-count: 2;
}


.about-copy p {
    font-family: 'GilroySemiBold', sans-serif;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.team-members {
    display: flex;
}

.team-member {
    margin: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    background:var(--white);
}

.team-member p {
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.team-member img {
    max-width: 220px;
    background-color: var(--shine);
}

.team-info {
    padding: 1rem;
}

.team-name {
    display: flex;
    align-items: center;
}

.team-name a {
    margin-top: 0;
    margin-left: 1rem;
}

.team-name i {
    color: var(--dark-bg);
    font-size: 1.5rem;
}

.team-name p {
    font-size: 18px;
    font-family: 'GilroySemiBold', sans-serif;
    margin-bottom: 0;
}

.team-member a button {
    margin-top: 1rem;
}

.team-member a button {
    background: var(--dark-bg);
    color: var(--shine-white);
}

.team-member a:hover button {
    background: transparent;
    color: var(--dark-bg);
}

.team-social .social-content svg {
    color: var(--charcoal);
    margin-right: 1rem;
}

.team-social .social-content a {
    text-decoration: none;
    border-style: none none solid;
    border-width: 0 0 3px;
    border-color: black black transparent;
    white-space: nowrap;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    display: block;
    width: fit-content;
    color: var(--charcoal);
}

.team-social .social-content a:hover {
    border-style: solid;
    border-width: 0 0 3px;
    border-color: #2c2c2c #2c2c2c var(--shine);
    color: var(--charcoal);
}

.equal-statement {
    max-width: 20rem;
    width: 100%;
}

.equal-statement h4 {
    font-family: 'GilroySemiBold', sans-serif;
    margin-bottom: 1rem;
    font-weight: 600;
}

.equal-statement p {
    margin-bottom: 1rem;
}

#careers {
    min-height: 100vh;
    background-color: var(--white-smoke);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
}

#careers .container-flex > div {
    margin-right: 80px;
}

#careers h1 {
    max-width: 40rem;
}

.jd-card {
    background-color: var(--white);
    transition: transform .2s;
    display: block;
    margin-top:2rem;
    transition: transform .2s;
}

.jd-card:hover {
    transform: translate(0, -10px);
    box-shadow: 0 10px 15px 2px rgba(0, 0, 0, .15);
}

.jd-card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem 3rem;
}

.jd-general-card-title {
    background-color: var(--dark-bg);
    padding: 20px 30px;
}

.jd-general-card-title h4 {
    color: var(--white);
}

.jd-card-content p {
    margin-bottom: 1rem;
    margin-right: 2rem;
}

.jd-card-button .button {
    border-color: var(--charcoal);
    color: var(--charcoal);
    background: transparent;
    transition: background-color .25s cubic-bezier(.075, .82, .165, 1), border .75s;
}
.jd-card-button .button:hover {
    border-color: var(--shine);
    transition: background-color .25s cubic-bezier(.075, .82, .165, 1), border .75s;
}
/*work archive aka index page*/
.archive-intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 115px;
    text-align: center;
}

.post-type-archive-work .page-intro-block {
    background-image: url('../img/work_hero.png');
    background-position: center;
    background-size: cover;
    min-height: 400px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-type-archive-work .cta {
    background: var(--white);
}

.post-type-archive-work .page-intro-block h1 {
    color: var(--white);
}

.post-type-archive-work .card-list {
    margin-bottom: 8rem;
}

.post-type-archive-work .page-content-copy {
    text-align: center;
}

.page-template-gallery-page .page-content-copy p, .post-type-archive-work .page-content-copy p {
    font-size: 18px;
}

.single-work .archive-intro {
    padding-top: 0;
    padding-bottom: 0;
}

.post-hero {
    min-height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.work-post-graphic img {
    width: 100%;
}

.work-post-content {
    padding: 1rem 4rem;
}

.graphic img {
    width: 100%;
    height: auto;
}

.work-post-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    align-items: center;
}

.work-post-logo img {
    width: auto;
    max-width: 32rem;
    max-height: 10rem;
}

.work-post-top .work-post-content {
    padding: 1rem 4rem;
    min-height: 22rem;
}

.work-post-content ul {
    list-style: disc;
    margin-left: 1rem;
}

.work-post-content ul li {
    margin: 0.5rem 0;
    font-family: 'Gilroy-Bold', sans-serif;
}

.work-post-bottom {
    background: var(--alt-bg);
}

.work-post-top {
    background: var(--white);
}

.back-to-work {
    background: var(--text);
    text-align: left;
    height: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.back-to-work a {
    text-decoration: none;
    color: var(--white);
    margin-right: 1rem;
    margin-top: 0;
    padding: 0;
    font-size: 20px;
}

.back-to-work a span {
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 2rem;
    transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
    margin-bottom: 2px;
}

/*single work v2*/
.work .entry-content .container {
    max-width: 960px;
}

.video-intro {
    min-height: 600px;
    margin-top: 115px;
    height:100vh;
}
#video-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    top: -600px;
}

#video-content img {
    width: 340px;
}

.cat-list {
    display: flex;
    margin-top: 2rem;
    flex-wrap: wrap;
}

a.cat-link {
    text-decoration: none;
    border: 3px solid;
    padding: 0.5rem 1rem;
    text-align: center;
    text-transform: uppercase;
    margin-right: 1rem;
    min-width: 100px;
}

.border-box {
    width: 100%;
    border: 6px solid var(--turquoise);
    margin: 2rem 0;
    padding: 40px;
    color: var(--charcoal);
    align-self: flex-start;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}

.side-bar .border-content:nth-of-type(1) {
    margin-top: 0;
}

.border-content {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 40px;
    color: var(--charcoal);
    align-self: flex-start;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    min-width: 295px;
}

.border-content h5 {
    text-transform: none;
}

.border-content h2 {
    padding-top: 0;
    padding-bottom: 5px;
}

article#post-116 .border-content {
    padding: 1rem 2rem;
}

.type-work .top-content {
    padding: 4rem 0 0;
}

.type-work .top-titles {
    margin-bottom: 3rem;
    font-family: 'GilroySemiBold', sans-serif;
}

.type-work .top-titles h4 {
    width: 50%;
}

.type-work .top-content h5 {
    font-family:'Gilroy-Bold', sans-serif;
    color: #2c2c2c;
    font-weight: 500;
}

.type-work .main-copy {
    padding-right: 6rem;
    margin-bottom: 4rem;
}

.type-work .main-copy h5 { 
    text-transform: none;
    font-family:'Gilroy-Bold', sans-serif;
    font-weight: 100;
}

.type-work .main-copy h4 {
    margin-top: 0;
    margin-bottom: 40px;
    font-family:'Gilroy-Bold', sans-serif;
}

.type-work .main-copy p,.type-work .side-bar p {
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.type-work .main-copy ul {
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    list-style: disc;
    margin-left: 18px;
    font-family:'GilroySemiBold', sans-serif;
    line-height: 1.4rem;
}

.type-work .main-copy ul li {
    margin-bottom: 0.8rem;
}

/*gallery*/
ul.work-gallery {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

 ul.work-gallery li {
    width:50%;
 }
 
 ul.work-gallery li.vid {
    width: 100%;
 }

 ul.work-gallery li img {
    width: 100%;
    padding: 0.5rem;
    height: 550px;
 }

 ul.work-gallery li video {
    width: 100%;
 }

 .work-gallery img {
    width: 100%;
    height: auto;
    max-height: 58rem;
    margin-bottom:10px;
    margin-top: 10px;
 }

 .work-gallery video {
    width: 100%;
    margin-top:10px;
    margin-bottom: 10px;
 }

 .half-gallery {
    display: flex;
    width: 100%;
}

.right-gallery,.left-gallery {
    width: 100%;
    display: flex;
}

.right-gallery {
    padding: 0 20px 0 10px;
}
.left-gallery {
    padding:0 10px 0 20px;
    
}

.full-video iframe {
    width: 100%;
    height: 100vh;
}

/*slider*/
#slider-container, #slider-right-container {
    width: 100%;
    overflow: hidden;
    margin: auto;
  }

  #slider, #slider-right {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide,.right-slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  #slider-full-container {
    width: 100%;
    overflow: hidden;
    margin: auto;
  }

  #slider-full {
    display: inline-flex;
    transition: transform 0.5s ease-in-out;
  }

  .slide-full {
    min-width: 50%;
    box-sizing: border-box;
    padding:1rem 0.5rem;
  }

  .full-slider {
    padding: 0 0.5rem;
}


/*card*/
.post-type-archive {
    background: var(--alt-bg);
}

.card-list {
    display: flex;
    flex-flow: wrap;
}

.card-list a {
    text-decoration: none;
}

.card-list a:hover {
    text-decoration: none;
    color: inherit;
}

.card {
    max-width: 350px;
    width: 350px;
    background-color: var(--white);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin: 0 1rem 1rem;
    transition: transform .2s;
}

.card h4 {
    margin-bottom: 20px;
}

.rmt {
    margin-bottom:2rem;
}

.read-more .card-list .card:nth-child(1) {
    margin-left: 0;
}

.read-more .card-list .card:nth-child(3) {
    margin-right: 0;
}

.read-more .card-list {
    justify-content: space-between;
}

.card .content {
    padding: 1.1rem;
    min-height: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
}

.card .image {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 350px;
}

.card .title {
    color: var(--light-grey);
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.card .desc {
    font-family: 'Gilroy-Regular', sans-serif;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.grey-arrow {
    color: var(--light-grey);
    font-size: 26px;
    font-weight: 400;
}

.card:hover {
    transform: translate(0, -10px);
    box-shadow: 0 10px 15px 2px rgba(0, 0, 0, .15);
}

.div-line-cta {
    width: 100%;
    height: 2px;
    background-color: var(--charcoal-25);
    margin-top: 50px;
    margin-bottom: 50px;
}

/*logo cards*/

.client-logos {
    padding: 5rem 0;
}

.client-logos h1 {
    text-align: center;
}

.logo-list {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}

.logo-card {
    max-width: 280px;
    width: 280px;
    background-color: var(--white);
    margin: 1rem 0;
}

.logo-card .image {
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 120px;
    background-repeat: no-repeat;
}

/*gallery page*/
.video-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin-bottom: 10rem;
}

.video-item {
    display: flex;
    margin: 1rem;
    width: 89%;
    background: white;
}

.video-item body.vp-center {
    display: flex;
    align-items: flex-start !important;
    justify-content: left !important;
}

.video-item h5 {
    text-transform: none;
}

.video-item iframe,
.video-item object,
.video-item embed {
    width: 100%;
}

.video-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
}

.video-details .title {
    color: var(--light-grey);
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

/*logo slider*/
.logo-slider {
    margin: 10rem 0;
}

.logo-slider h2 {
    margin-bottom: 24px;
    font-family:'GilroySemiBold', sans-serif;
}

/*footer*/
footer {
    background-color: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem 1rem;
    bottom: 0;
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-around;
}

.footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.footer-rows {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: min-content min-content min-content;
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    justify-content: center;
    align-self: stretch;
}

.footer-row {
    font-family: 'Gilroy-Regular', sans-serif;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.footer-row h5 {
    color: white;
    text-transform: uppercase;
    align-self: flex-start;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
}

.social-content {
    display: inline-flex;
    align-items: self-start;
    color: white;
}

.social-content svg {
    height: 20px;
    width: 20px;
    max-height: 100%;
    color: white;
    margin-right: 20px;
}

footer a {
    border-style: none none solid;
    border-width: 0 0 3px;
    border-color: black black #2c2c2c;
    color: white;
    white-space: nowrap;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    display: block;
    width: fit-content;
}

footer a:hover {
    border-style: solid;
    border-width: 0 0 3px;
    border-color: #2c2c2c #2c2c2c var(--shine);
    color: white;
}

.footer-row address {
    font-size: 16px;
    color: white;
    white-space: nowrap;
    margin-bottom: 5px;
    font-weight: 400;
    display: block;
    line-height: 24px;
    font-style: normal;
}

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: baseline;
    text-align: left;
    margin-top: 3rem;
    justify-content: end;
}

.footer-bottom p {
    font-size: 10px;
    line-height: 1.4;
    padding-bottom: 0;    
    font-weight: 100;
    font-family: 'Gilroy-Regular', sans-serif;
}

nav.footer-links ul {
    display: inline-flex;
}

nav.footer-links ul li {
    margin-top: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 10px;
}

nav.footer-links ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 10px;
    margin-left: 5px;
    text-decoration: none;
    border-style: none none solid;
    border-width: 1px 1px 3px;
    border-color: black black #2c2c2c;
    text-decoration: none;
    transition: box-shadow .8s cubic-bezier(.075, .82, .165, 1);
    padding: 0;
    display: inline;
    font-weight: 100;
    font-family: 'Gilroy-Regular', sans-serif;
}

nav.footer-links ul li a:hover {
    border: 0px solid var(--charcoal);
    box-shadow: inset 0 -25px 0 0 var(--shine);
    color: var(--charcoal);
}

/*custom widgets*/
.widget h3 {
    color: var(--shine);
}

.widget h3 i {
    color: initial;
}

.footer-sidebar {
    width: 100%;
}

.widget_phone_widget a,
.widget_email_widget a {
    text-decoration: none;
    border-bottom: 2px solid var(--charcoal);
    font-size: 24px;
    color: var(--charcoal);
}

.widget_phone_widget a:hover,
.widget_email_widget a:hover {
    border-bottom-color: var(--shine);
}

/*404*/
.fof-message {
    min-height: 500px;
    margin-top: 115px;
    text-align: center;
}

#post-1871 .border-content {
    width: 80%;
    margin-left: auto;
}

/*form*/
.contact-container {
    max-width: 800px;
    min-width: 800px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 auto;
}

.wpforms-container .wpforms-field {
    float: left;
    width: 100%;
    text-align: left;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    max-width: 698px;
}

.wpforms-container input.wpforms-field-medium, .wpforms-container select.wpforms-field-medium, .wpforms-container .wpforms-field-row.wpforms-field-medium {
    max-width: none !important;
}

button#wpforms-submit-1503,button#wpforms-submit-164,button#wpforms-submit-125 {
    float: left;
    width: auto;
    background: transparent;
    border-radius: 1.5rem;
    color: var(--dark-bg);
    border:2px solid var(--dark-bg);
    transition: background-color .25s cubic-bezier(.075, .82, .165, 1), border .75s;
}

button#wpforms-submit-1503:hover,button#wpforms-submit-164:hover,button#wpforms-submit-125:hover {
    background: transparent;
    color: var(--dark-bg);
    border-color: var(--shine);
    transition: background-color .25s cubic-bezier(.075, .82, .165, 1), border .75s;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
    max-width: 100% !important;
}

div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea {
    border: 0 !important;
    border-radius: 0 !important;
}

.wpforms-container .wpforms-required-label {
    color: var(--dark-bg) !important;
}

.burger-toggle {
    display: none;
}


/* post particular mods*/
.postid-1771 #video-content, .postid-113 #video-content {
    top: -426px;
}


/* Responsive Styles */
@media (max-width: 820px) {

    h1 {
        font-size: 65px;
    }

    .hero {
        padding: 10rem 2rem;
    }

    .video-list {
        display: flex;
        flex-direction: column;
    }

    .work-post-logo img {
        width: 100%;
    }

    .post-hero {
        min-height: 400px;
        background-position: bottom;
    }

    label,
    .wpforms-field-description {
        text-wrap: balance;
    }

    .archive-intro p,
    .page-intro-block p {
        max-width: 80%;
    }

    .service-content {
        width: 60%;
    }

    .page-template-about-page .container-flex {
        flex-direction: column;
    }

    #largeCaseStudy .hero {
        padding: 1rem;
        height: auto;
    }

    #largeCaseStudy .content {
        width: 77%;
    }
    .page-content-copy {
        padding: 1rem;
    }

    .service-list section:nth-child(odd),.service-list section {
        flex-direction: column;
    }

    .service-item {
        height: 200px;
    }

    .service-list section {
        margin-bottom: 0;
    }

    .full-video iframe {
        height: 50vh;
    }

}

@media (max-width: 576px) {

    .type-work .top-content {
        padding:2rem 0 0;
    }

    .contact-container {
        min-width: auto;
        max-width: 100%;
        padding: 1rem;
    }

    a.cat-link {
        margin-top:1rem;
    }

    .video-intro {
        min-height: 444px;
        margin-top: 115px;
        height: 50vh;
    }

    #video-content {
        top: -325px;
    }

    .type-work .main-copy {
        padding-right: 0;
    }

    .top-content {
        padding: 2rem 0 0;
    }

    ul.work-gallery li {
        width: 100%;
    }

    ul.work-gallery li img {
        width: 100%;
        padding: 0.5rem;
        height: auto;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    /*mobile menu*/
    .burger-toggle {
        display: none;
    }

    .burger-icon {
        display: block;
        cursor: pointer;
        padding: 15px;
        color: var(--charcoal);
    }

    .bar {
        width: 30px;
        height: 4px;
        background-color: var(--charcoal);
        margin: 6px 0;
        transition: 0.4s;
    }

    .menu-main-container {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--white);
        transition: 0.3s ease;
        z-index: 999999;
    }

    /* Show menu when checkbox is checked */
    .burger-toggle:checked+.burger-icon .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 9px);
    }

    .burger-toggle:checked+.burger-icon .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle:checked+.burger-icon .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .burger-toggle:checked~.menu-main-container {
        right: 0;
    }

    .nav-container,
    .navbar-white {
        min-height: 80px;
        height: 80px;
    }

    .widget_phone_widget a,
    .widget_email_widget a {
        font-size: 16px;
    }

    .widget h3 {
        margin-top: 0;
        font-size: 20px;
        ;
    }

    .widget h3 i {
        font-size: 16px !important;
        margin-right: 0.5rem;
    }

    .nav-container {
        margin-left: 1rem;
        margin-right: 1rem;
        ;

    }

    .brand svg {
        width: 120px;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero {
        margin-top: 80px;
        height: 20rem;
        padding: 1rem;
        align-items: end;
    }

    .hero-title img {
        max-width: 14rem;
    }

    .hero-title {
        width: 100%;
        font-size: 20px;
        color: var(--shine-white);
    }

    .intro-text {
        font-size: 18px;
        padding: 2rem;
        ;
    }

    .container-flex {
        flex-direction: column;
    }

    .post-hero {
        min-height: 4rem;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .card-list {
        display: flex;
        flex-direction: column;
    }

    .card-list .work {
        width: 100%;
        display: flex;
        margin-bottom: 1rem;
        align-items: center;
        justify-content: center;
    }

    .work-post-content,
    .work-post-logo {
        padding: 1rem;
    }

    .work-post-top .work-post-content {
        padding: 2rem;
    }

    .sticky-nav {
        display: none;
    }

    .service-grid {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .service-grid img {
        width: 100%;
        height: auto;
    }

    .service-content {
        width: 100%;
    }

    .service-list.stuck {
        margin-top: 0;
    }


    .team-members {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 1rem 0;
    }

    .team-member {
        margin: 2rem;
        width: 220px;
    }

    .work-post-logo img {
        max-width: 15rem;
    }

    .archive-intro p,
    .page-intro-block p {
        max-width: 100%;
        font-size: 20px;
    }

    .footer-rows {
        display: block;
    }

    .footer-row h5 {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .footer-row:first-of-type h5 {
        margin-top: 0;
    }

    h1 {
        font-size: 40px;
        line-height: normal;
    }

    h3 {
        font-size: 24px;
    }

    .menu-item a {
        width: 100%;
    }

    .video-item {
        margin-bottom: 2rem;
        flex-direction: column;
        width: 100%;
    }

    .video-item h5 {
        margin-bottom: -4rem;
    }

    .video-item iframe {
        margin-top: -5rem;
    }

    .video-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 1rem;
        justify-content: center;
        margin-bottom: 5rem;
        margin-top: -4rem;
    }

    #video-content img {
        width: 215px;
    }

    .full-video iframe {
        width: 100%;
        height: 300px;
    }
    .page-template-about-page #video-content h1 {
        font-size: 83px;
        line-height: 93px;
        color: var(--white);
    }

    .bg-dark {
        padding-top: 1rem;
        padding-bottom: 1rem;
        height: auto;
    }

    .about-copy {
        column-count: 1;
    }

    .page-content-copy {
        padding: 1rem;
    }


}