
@font-face {
font-family: 'Akkurat';
src: url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Light.eot');
src: url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Light.eot?#iefix') format('embedded-opentype'),
url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Light.woff') format('woff');
font-weight: 200;
font-style: normal;
}

@font-face {
font-family: 'Akkurat';
src: url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Regular.eot');
src: url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Regular.eot?#iefix') format('embedded-opentype'),
url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'Akkurat';
src: url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Bold.eot');
src: url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Bold.eot?#iefix') format('embedded-opentype'),
url('//www.theatlantic.com/static/atlanticads/fonts/Akkurat/AkkuratNestWeb-Bold.woff') format('woff');
font-weight: 600;
font-style: normal;
}




/* RESET */

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

/* RESET END */


html, body {
    width:100%;
    min-height:100%; 
    padding:0; 
    margin:0; 
    overflow-x:hidden;
    font-family: 'Akkurat', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}



.loaderscreen {
    position: fixed;
    top: 0;
    z-index: 10000;
    min-height: 480px;
    width: 100%;
    height: 100%;
    background: #000;
}

.loaded .loaderscreen {
    position: absolute;
      -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
      -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes fadeOut {
    to { opacity: 0 }
}


@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

  /* WebKit and Opera browsers */
    @-webkit-keyframes spinner {
        from { -webkit-transform: rotateY(0deg);    }
        to   { -webkit-transform: rotateY(-360deg); }
    }

    /* all other browsers */
    @keyframes spinner {
        from {
            -moz-transform: rotateY(0deg);
            -ms-transform: rotateY(0deg);
            transform: rotateY(0deg);
        }
        to {
            -moz-transform: rotateY(-360deg);
            -ms-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
        }
    }
    
    #spinner {
        -webkit-animation-name: spinner;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-duration: 3s;

        animation-name: spinner;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-duration: 3s;

        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;

        position:absolute;
        top: 50%;
        left:50%;
        margin-top:-50px;
        margin-left:-50px;
    }

    #spinner img{
        width:100px;
    }
    
    #stage {
        margin: 1em auto;
        -webkit-perspective: 1200px;
        -moz-perspective: 1200px;
        -ms-perspective: 1200px;
        perspective: 1200px;
        width:100px;
        position:relative;
        height:100%;
        margin:0 auto;
    }



/* TOOLS NAV START */

.tool-nav-trigger {
position: fixed;
bottom: 0px;
right: 0;
width: 100%;
height: 26px;
background: rgba(236, 54, 5, 0.94);
/* image replacement */
overflow: hidden;
/* text-indent: 100%; */
white-space: nowrap;
z-index: 200;
color: #fff;
text-decoration: none;
text-align: center;
vertical-align: middle;
display: inline-block;
padding-top: 15px;
font-size: 12px;
}

.tool-nav-trigger.menu-is-open {
  box-shadow: none;
}
.tool-nav-trigger.menu-is-open span {
  background: rgba(232, 74, 100, 0);
}
.tool-nav-trigger.menu-is-open span::before, .cd-nav-trigger.menu-is-open span::after {
  background: #e84a64;
}
.tool-nav-trigger.menu-is-open span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tool-nav-trigger.menu-is-open span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media only screen and (min-width: 1170px) {
  .cd-nav-trigger {
    /* the the menu triger is hidden by default on desktop devices */
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
  }
  .is-fixed .cd-nav-trigger {
    visibility: visible;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation: cd-bounce-in 0.3s linear;
    -moz-animation: cd-bounce-in 0.3s linear;
    animation: cd-bounce-in 0.3s linear;
  }
}

#tool-nav ul {
  /* mobile first */
position: fixed;
width: 100%;
right: 0;
bottom: 40px;
background: white;
visibility: hidden;
/* remove overflow:hidden if you want to create a drop-down menu - but then remember to fix/eliminate the list items animation */
overflow: hidden;
z-index: 50;
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
  transition: transform 0.3s, visibility 0s 0.3s;
}
#tool-nav ul li {
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#tool-nav ul.is-visible {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
  transition: transform 0.3s, visibility 0s 0s;
  padding: 10px 0;
  background-color: #060a2f;
}
#tool-nav ul.is-visible li:nth-child(1) {
  /* list items animation */
  -webkit-animation: cd-slide-in 0.2s;
  -moz-animation: cd-slide-in 0.2s;
  animation: cd-slide-in 0.2s;
}
#tool-nav ul.is-visible li:nth-child(2) {
  -webkit-animation: cd-slide-in 0.3s;
  -moz-animation: cd-slide-in 0.3s;
  animation: cd-slide-in 0.3s;
}
#tool-nav ul.is-visible li:nth-child(3) {
  -webkit-animation: cd-slide-in 0.4s;
  -moz-animation: cd-slide-in 0.4s;
  animation: cd-slide-in 0.4s;
}
#tool-nav ul.is-visible li:nth-child(4) {
  -webkit-animation: cd-slide-in 0.5s;
  -moz-animation: cd-slide-in 0.5s;
  animation: cd-slide-in 0.5s;
}
#tool-nav ul.is-visible li:nth-child(5) {
  -webkit-animation: cd-slide-in 0.6s;
  -moz-animation: cd-slide-in 0.6s;
  animation: cd-slide-in 0.6s;
}
#tool-nav li a {
margin: 10px 1em;
padding: 12px 15px 10px;

/* line-height: 1em; */
border: 1px solid #a4dcff;

display: inline-block;
text-decoration: none;
color: #a4dcff;
text-transform: uppercase;

font-size: 12px;
letter-spacing: .08em;
}


/*TOOLS END */
.bubble{
    position: relative;
padding: 25px 30px;
border-radius: 10px;
border: 4px solid #E0CC8D;
display: inline;
top: 20px;
color: #3A3939;
font-weight: 600;
}
.bubble:after{
    content: "";
position: absolute;
bottom: -30px;
left: 80px;
border-width: 30px 0 0 30px;
border-style: solid;
border-color: #E0CC8D transparent;
display: block;
width: 0;
}
.logo{
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 1000;
    color: rgba(255, 255, 255, 1);
    background-image: url("https://cdn.theatlantic.com/assets/static/a/theatlantic/common/img/logo.511241a03fd5.svg");
    background-repeat: no-repeat;
    width: 140px;
    height: 68px;
}
.logo.black{
background-image: url("https://cdn.theatlantic.com/assets/static/a/theatlantic/common/img/logo-black.d2b72f43fb65.svg");
background-size: contain;
    }

#site-footer .logo{
    position: relative;
    top:0;
    left:0;
    width: 80px;
}

.logo.rethink{
    background-image: url('https://cdn.theatlantic.com/assets/media/files/rethink.svg');
background-position: center center;
background-repeat: no-repeat;
background-size: 90%;
height: 50px;
}
figure.logo.rethink {
    background-color: #fff;
    width: 180px;
    }

nav.menu{
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
    color: rgba(255, 255, 255, 1);
    border-radius: 25px;
    padding: 8px 8px 5px;
    background-color: rgba(232, 232, 232, 1);
}

nav.menu a{
    color: #404040;
}

nav.menu.black a{
    color: rgba(0, 0, 0, 1);
}


#menu ul li:nth-child(1){
display:none;
}


#menu.rethink ul li:nth-child(2){
display:block;
}

div#menu.subsection{
    background-color: #1f1f1f;
    min-height: 100vh;
}
div#menu.subsection.rethink{
    background-color: #53294c;

    }
#menu.rethink ul{
    position: relative;
    top:100px;
}

#menu ul{
position: relative;
top: 40px;
min-height: 75vh;

}

#menu ul li{
    text-align: left;
    padding: 3% 0;
    margin-left: 10%;
}
#menu ul li a{
color: #fff;
font-family: 'Akkurat', sans-serif;
font-size: 3em;
font-weight: 200;
letter-spacing: .02em;
text-decoration: none;
    }

div#menu.subsection.sub-in-view{
    overflow-y: hidden;
    position: fixed;
}
#menu.rethink .big-button{
background-color: #333;
    }

    #menu .big-button.brand{
background-color: #333;
    }
#menu .big-button.brand, #menu .big-button.rethink{
    min-height: 50vh;
position: relative;
z-index:-1;
}
#menu .big-button{
width: 100%;
background-color: #53294c;
text-align: center;
min-height: 25vh;
position: relative;
}
#menu .big-button a{
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1000;
}

#menu .big-button h3{
font-family: 'Akkurat', sans-serif;
font-size: 13px;
color: #fff;
text-align: center;
margin: 5px auto;
font-weight: 400;
margin-bottom: 10px;
}
#menu.rethink .big-button .atl-logo, #menu .big-button.brand .atl-logo {
background-color: #1f1f1f;
    }


#menu .big-button .atl-logo{
width: 80%;
height: 80px;
margin: 0 auto;
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
padding: 15px 0px 8px;
background-color: #6c345f;
border-radius: 2px;
}
#menu.rethink .big-button .atl-logo img{
width: 40%;
    }
#menu .big-button .atl-logo img{
    width: 60%;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
    }

.close {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-indent: 100%;
    cursor: pointer;
    -webkit-transform: translate3d(0,0,0);
    z-index:10000;
}
.close:hover::before, .close:hover::after {
  background: rgba(236, 54, 5, 1);
}
.close::before, .close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
}

.casestudy .close::before, .casestudy .close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}
.close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.material-icons{
font-size: 2em !important;
}

#frame{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display:block;
}

.subsection{
    width: 100%;
    position: absolute;
    top: 0;
    left:0;
    -webkit-transform: translate3d(0,0,0);
    /*
     -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    -webkit-transform: translateX(100%);
     transform: translateX(100%);
   
     
             -webkit-transition-timing-function: cubic-bezier(.82, .01, .77, .78);
transition-timing-function: cubic-bezier(.82, .01, .77, .78);

*/
display:block;
  background-color: #fff;
  z-index: 1000;
}



.substart{
    -webkit-transform: translateX(100%);
     transform: translateX(100%);
-webkit-transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); 
   -moz-transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); 
     -o-transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); 
        transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); /* easeInOutCirc */

-webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); 
   -moz-transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); 
     -o-transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); 
        transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); /* easeInOutCirc */
    }



#main{
    top: 0;
    left: 0;
    width: 100%;
-webkit-transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); 
   -moz-transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); 
     -o-transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); 
        transition: all 500ms cubic-bezier(0.785, 0.135, 0.150, 0.860); /* easeInOutCirc */

-webkit-transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); 
   -moz-transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); 
     -o-transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); 
        transition-timing-function: cubic-bezier(0.785, 0.135, 0.150, 0.860); /* easeInOutCirc */
}

#main section{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #ccc;
    line-height: 1em;
    position: relative;
}

#main section:nth-child(2n){
    background-color: #f1f1f1;
}

.main-out-view {
    top:0;
    left:0;
    width: 100%;
    transform: translateX(-100%);
}

.sub-in-view {
    width: 100%; 
    height: 100%;
    top:0;
    left:0;
    transform: none;
}

#main h1{
    font-weight: 800;
    font-size: 2em;
    padding: 80px 10% 0;
}

#main p{
    font-weight: 400;
    font-size: 1.2em;
    padding: 0 10%;
    }

#main.case-studies h1{
    position: absolute;
    top: 30%;
    text-align: center;
    margin: 0 auto;
    width: 80%;
    font-weight: 200;
    color: #333;
    font-family: 'Akkurat', sans-serif;
    font-size: 42px;
    letter-spacing: .04em;
}

.cs-sort-container{
    height: 80vh;
    position: relative;
    text-align: center;
}

.cs-card img{
max-width: 100%;
margin: 40px auto;
-webkit-clip-path: circle(50% at 50% 50%);
clip-path: circle(50% at 50% 50%);
position: relative;
}



#main.case-studies h3{
    font-family: 'Akkurat', sans-serif;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: .04em;
    margin: 40px auto 10px;
    }


#main.case-studies h4{
text-align: center;
font-family: 'Akkurat', sans-serif;
letter-spacing: 0;
font-weight: 400;
font-size: 1.1em;
color: #404040;
width: 95%;
margin: 20px auto 10px;
}


#main.case-studies p.link{
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
z-index: 10;
top:0;
left:0;
}

#main.case-studies p.disc{
width: 95%;
margin: 0 auto 0px;
height: initial;
position: relative;
font-size: 14px;
line-height: 22px;
color: #333;
padding:0;
}

#main .explore {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #fff;
    padding: 15px 5px;
    width: 100px;
    height: 10px;
    z-index: 1;
}

#main .explore p{
    font-size: 14px;
    font-weight: 600;
    color: red;
    letter-spacing: .04em;
}

#main.case-studies a{
    width: 100%;
    height: 100%;
    display: block;
}

#main.case-studies ul{
    width: 100%;
    text-align: center;
}

#main.case-studies li{
width: 80%;
background-color: #d8e3ef;
display: inline-block;
margin: 0;
padding: 5%;
margin-bottom: 20px;
position: relative;
}

#main.case-studies figure{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    margin-bottom: 0px;
}

#landing{
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#landing:before{
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 280px;
background: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(255,255,255,0) 100%);
    }

#landing .container{
    width: 80%;
    left:0;
right:0;
margin: 0 auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#landing .container p{
    font-weight: 200;
    font-size: 1.6em;
    line-height: 2.2em;
    box-shadow: 12px 0 0 #fff, -12px 0 0 #fff;
    background-color: #fff;
    display: inline;
    padding: 12px 0;
    color: #333;
    font-family: 'Akkurat', sans-serif;
}
.rethink #landing .landing-caption{
    bottom: -8%;
    }
.rethink #landing .landing-caption p{
        color: #ccc;
    }
.rethink #landing .landing-caption p a{
color: rgb(255, 114, 131);
    }
#landing .landing-caption{
    position: absolute;
bottom: -8%;
left: 0;
right: 0;
margin: 0 auto;
text-align: center;
z-index: 10;
}
#landing .landing-caption p{
font-size: 10px;
line-height: 16px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: #333;
margin: 0 auto;
    }
    #landing .landing-caption p a{
        color: rgb(148, 66, 76);
    font-size: 10px;
    }

.rethink #landing .container p{
background-image: url('https://cdn.theatlantic.com/assets/media/files/green-bg.jpg');
background-repeat: repeat-x;
background-position-y: 18px;
background-size: 1.5px;
color: #742d5f;
    }

#main #landing .container i.material-icons{
    display: block;
    color: rgba(255, 255, 255, 1);
    background-color: #1c1c1c;
    width: 90px;
    text-align: center;
    margin-top: 40px;
    padding: 4px 0 0 0;
    font-size: 2.5em !important;
    top:0;
    left: -10px;
}

#main.rethink #landing .container i.material-icons{
    background-color: #ff921e;
}

#main section#about, #main section#history {
    background-color: #fff;
}
#main section#audience{
background-color: #131010;
padding-bottom: 120px;

}
#main section#audience h2{
font-family: "minion-pro-caption", georgia, serif;
color: #fff;
font-weight: 400;
font-size: 22px;
line-height: 32px;
margin: 10px 10% 40px 10%;
}
#main section#audience p{
color: #fff;
font-size: 20px;
line-height: 36px;
margin-bottom: 120px;
    }
#main section#audience figure.issue{
width: 100%;
margin: 0px auto;
text-align: center;
background-color: #131010;
padding: 80px 0 0px 0;
position: relative;
right:40px;
}
#main section#audience .issue img{
    max-width: 60%;
}

    #main section#audience .issue img.media{
position: relative;
top: -140px;
left: 80px;
    }

#main section#audience p.label{
    font-size: 14px;
    font-family: "minion-pro-caption", georgia, sans-serif;
    margin: 80px auto 20px auto;
    color: red;
    text-align:center;
    width: 60%;
}



#main section#audience p.num{
    font-size: 3em;
    margin: 0 auto 10px auto;
    color: #fff;
    text-align:center;
    width: 60%;
}

#main section#audience p.thing{
    font-size: 14px;
    margin: 0 auto 0 auto;
    color: #fff;
    font-family: "minion-pro-caption", georgia, sans-serif;
    text-align:center;
    width: 50%;
line-height: 20px;
}

#main section#audience p.source{
    font-size: 10px;
    margin: 10px auto 0 auto;
    color: #ccc;
    font-family: "minion-pro-caption", georgia, sans-serif;
    text-align:center;
    width: 60%;
    line-height: 14px;
    text-transform: uppercase;
}

#main section#awards p{
    font-size: 20px;
    line-height: 36px;
}

#about h1{
    font-size: 15px;
    color: #ff3038;
    line-height: 18px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "minion-pro-caption", georgia, serif;
}

#main section p{
    font-size: 30px;
    line-height: 46px;
    font-weight: 200;
    margin-bottom: 40px;
    margin-top: 20px;
    color: #333;
    font-family: 'Akkurat', sans-serif;
}

#main section .container{
    position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}

#main section a{
    color: #aeaeae;
    font-size: 14px;
    text-decoration: none;
    font-family: 'Akkurat', sans-serif;
    font-weight: 600;
}

#main section i.material-icons{
    color: #ff3038;
    font-size: 1em !important;
    position:relative;
    top:3px;
    left: 6px;
}

#main section h1{
    font-size: 15px;
    color: #ff3038;
    line-height: 18px;
    font-weight: 500;
    padding: 80px 10% 0;
        text-transform: capitalize;
    font-family: "minion-pro-caption", georgia, serif;
}
#main section h2{
    font-family: "minion-pro-caption", georgia, serif;
color: #333;
font-weight: 400;
font-size: 22px;
line-height: 32px;
margin: 10px 10% 40px 10%;
}
#main section#about p{
    font-size: 20px;
line-height: 36px;
margin:0 auto;
}
#main section#about p:first-of-type{
margin-bottom: 20px;
  }

#main section#history h1{
position: absolute;
top: 6%;
z-index: 1000;
padding-left: 10%;
color: #ffa1a1;
}

#history li{
    list-style-type: none;
}
#history .slick-slider {
    margin-bottom: 0;
    position:relative;
}
#history .historyslides  {
    padding-left:0;
    max-width:100%;
}
#history .slick-slider .slick-track {
    min-width:100%;
}
#history .slick-list{
    padding: 0 !important;
}

#history .slick-dots button img {
    width:100%;
    height:auto;
}
#history  .slick-dots {
   /* top:50%; */
   /* transform: translateY(-50%); */
   bottom: 0;
    left: 0;
    position: absolute;
    line-height: 0;
    width: 100%;

}
#history ul.slick-dots{
    margin: 0;
}
#history li.slick-active img{
    opacity: .5;
    background-color: red;
}

#history  .slick-dots li, #history  .slick-dots li button:before {
   /* width: 100px;
    height:100px; */
    margin:0;
    padding:0;
}
#history  .slick-dots li {
    display:inline-block; 
    width:40px;
    height:auto;
}
#history .slick-dots li.slick-active{
    width: 60px;
}

#history .historyslides .slick-track {
    min-width:100%;
}
#main #history .historyslides p{
padding: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 80%;
left: 10%;
color: #fff;

}

#main #history .historyslides p span{
font-family: "minion-pro-caption", georgia, serif;
  }

#history .hslide{
background-color: #fffaf7;
background-position: bottom center;
background-size: cover;
width: 100%;
height: 100vh;
background-repeat: no-repeat;

}

#history .slick-dots li button {
    margin:0;
    height:auto;
    width:100%;
    padding:0;
    border-radius: 0;
    background-color: red;
}
.slick-dots li button.tab { clear:both;   display:block;}
.slick-dots li button img { width:100%; max-width:80px; height:auto;   }
.slick-dots li button:before {
    content:''; 
    display:block; 
    width:100%;  
    max-width:30px; 
    overflow:hidden; 
    float:none;  
    position:absolute;
    width:100%;
    height:100%
}

.slick-slide, .slick-slide *{ outline: none !important; }

#main .quotes p.slick-slide{
padding: 0 2.5%;
}


.history-thumbs {
    position:absolute;
    left: -9999px;
}

#main section#work {
    background-color: #fff;
} 

#main section#work a{
text-align: center;
display: block;
color: #fff;
font-weight: 400;
letter-spacing: .04em;
}

#main section#work p{
font-size: 20px;
line-height: 36px;

}
/*
#main section#work p.button{
    background-color: #000;
padding: 10px 0;
margin-bottom: 0;
}
*/

#main section#studio p.button a{
    padding: 15px 20px 12px;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: .04em;
    font-size: 13px;

}

#main section#work p.button a, #main section#rethink-case-studies p.button a{
    padding: 15px 20px 12px;
    background-color: #000;
    border-radius: 10px;
    color: #fff;
    font-weight: 400;
    line-height: 1em;
    letter-spacing: .04em;
    font-size: 13px;
    display: inline-block;
}

#main section#work p.button{
text-align: center;
margin-bottom: 120px;
margin-top: 60px;
}

#main section#work h2.case{
    margin: 80px auto 0px auto;
    text-align: center;
    font-weight: 200;
    font-size: 28px;
    letter-spacing: .04em;
    font-family: 'Akkurat', sans-serif;
}


#main section#rethink-case-studies h2{
    margin: 0px auto 40px auto;
    padding-top: 80px;
    text-align: center;
    font-weight: 200;
    font-size: 28px;
    letter-spacing: .04em;
    position: relative;
    display: inline-block;
    z-index: 1000;
    color: #742d5f;
    width: initial;
    padding: 80px 0 0 0;
    font-family: 'Akkurat', sans-serif;
}

#main section#rethink-case-studies h2:after{
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0 auto;
    height: 15px;
    background-color: #b1dfdd;
    margin-top: 80px;
    z-index: -1;
    width: 100%;
}


#partners figure{
max-width: 100px;
height: 100px;
background-color: #9f9f9f;
border-radius: 100px;
margin: 20px;
text-align: center;
}

/*
#rethink-case-studies li{
    width: 90%;
    min-height: 100px;
    background-color: #b5b5b5;
    text-align: center;
    margin: 10px auto;
   position: relative;
}
*/

#main section#rethink-case-studies a{
     color: #000;
}

#main section#rethink-case-studies{
    background-color: #fff;
    text-align: center;
}

footer{
    color: #fff;
    background-color: #333;
    overflow: hidden;
}
footer a{
    color: #59a6cc;
    text-decoration: none;
}
footer a:hover{
text-decoration: underline;
    }
footer .container{
width: 80%;
padding: 40px 0;
margin: 0 auto;
max-width: 700px;
    }

    /* SLIDER START */

    #main p.slick-slide{
        margin: 0 auto;
        padding:0 5%;
    }
    
.back{
    display: block;
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    left:10px;
    z-index: 1000;
        -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.next{
    display: block;
    width: 30px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    right:10px;
    z-index: 1000;
    -webkit-transform: translateY(-50%) scaleX(-1);
    transform: translateY(-50%) scaleX(-1);
}

.slick-slide{
    position: relative;
}

ul.slick-dots {
    width: 100%;
    padding: 0;
    text-align: center;
    margin-top: 30px;
}
    
    
.slick-dots li { 
         position: relative;
    display: inline-block;
    height: 10px;
    width: 10px;
    /* margin: 0 10px; */
    padding: 5px;
    cursor: pointer;
    margin: 0 5px;
 }

.slick-dots li button { 
    border: 0;
    background: #aaa;
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 8px;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 0;
    cursor: pointer;
    margin: 0;
  }
  
  

.slick-dots li button:hover, .slick-dots li button:focus 
 { outline: none; }

.slick-dots li button:hover:before, 
.slick-dots li button:focus:before 
 { opacity: 1; }

.slick-dots li.slick-active button {
    background-color: #000;
}

.slick-list:focus{
    outline: none;
}


#work .slick-slide figure, #rethink-case-studies .slick-slide figure{
    margin: 0px auto 0;
    max-width: 300px;
}

#work .slick-slide img, #rethink-case-studies .slick-slide img{
max-width: 80%;
margin: 40px auto;
-webkit-clip-path: circle(50% at 50% 50%);
clip-path: circle(50% at 50% 50%);
position: relative;
}

#main section#work .slick-slide a, #main section#rethink-case-studies .slick-slide a{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#main section#work .explore, #main section#rethink-case-studies .explore{
font-family: 'Akkurat', sans-serif;
color: #dc1f26;
font-size: 12px;
letter-spacing: .04em;
text-align: center;
margin: 40px auto 10px auto;
position: relative;
}

#main section#work h3, #main section#rethink-case-studies h3{
font-family: 'Akkurat', sans-serif;
text-align: center;
    font-size: 24px;
    padding-top: 10px;
font-weight: 400;
}
#main section#work h4, #main section#rethink-case-studies h4{
text-align: center;
font-family: "minion-pro-caption", georgia, serif;
letter-spacing: 0;
font-weight: 400;
color: #404040;
width: 80%;
margin: 20px auto 20px;
    }

#main section#studio{
    background-color: #f9f9f1;
}

#main section#studio figure img{
    max-width: 100%;
}

#main section#awards .awards-container{
padding: 80px 0;
background-color: #ca362e;
color: #fff;
}

#main section#awards .awards-container h1{
font-weight: 400;
color: #fff;
text-align: center;
    }
#main section#awards .awards-container .quote span{
    display: block;
    margin-top: 60px;
font-size: .5em;
font-weight: 500;
}
#main section#awards .awards-container .quote:before{
content: '\201C';
display: block;
font-size: 4em;
position: relative;
top: 20px;
}
#main section#awards .awards-container .quote:after{
content:'\201D';
display: block;
font-size: 4em;
position: relative;
top: -60px;
}

#main section#rethink-testimonials .highlight-container .quote span{
    display: block;
    margin-top: 60px;
font-size: .5em;
font-weight: 500;
}
#main section#rethink-testimonials .highlight-container .quote:before{
content: '\201C';
display: block;
font-size: 4em;
position: relative;
top: 20px;
}
#main section#rethink-testimonials .highlight-container .quote:after{
content:'\201D';
display: block;
font-size: 4em;
position: relative;
top: -60px;
}

#main section#awards{
    background-color: #fff;
}
#main section#awards .slick-track{
      display: flex;
  justify-content: center;
  align-items: center;
}
#main section#awards .quotes{
    padding: 20px 0;
    background-color: #ca362e;
}

#main section#awards .quotes p{
color: #fff;
text-align: center;
font-weight: 200;
font-size: 24px;
line-height: 38px;
letter-spacing: .04em;
padding: 0 15px;
    }

#main section#awards .quotes ul.slick-dots{
    margin-top: -40px;
}
#main section#awards .quotes .slick-dots li button{
    background: #eb9093;
}

#main section#awards .quotes .slick-dots li.slick-active button{
    background:#fff;
}

#main section#rethink-case-studies .slick-dots li button{
    background: #b996af;
}

#main section#rethink-case-studies .slick-dots li.slick-active button{
    background:#742d5f;
}

#main section#rethink-case-studies ul.slick-dots{
    margin-top: 0;
    padding-bottom: 60px;
}


.highlights{
    padding: 0;
    background-color: #ca362e;
}

.highlights p{
color: #fff;
text-align: center;
font-weight: 200;
font-size: 24px;
line-height: 38px;
letter-spacing: .04em;
    }

.highlights .slick-dots li button{
    background: #eb9093;
}

.highlights .slick-dots li.slick-active button{
    background:#fff;
}

.highlights .slick-track{
      display: flex;
  justify-content: center;
  align-items: center;
}

.subsection.casestudy.ad-product.substart.sub-in-view{
position: absolute;
height: 100%;
background-color: #d8e3ef;
text-align: center;
}

    .subsection.casestudy.ad-product.substart.sub-in-view figure{
      padding: 0 0 0 2.5%;
width: 150%;
left: -25%;
position: relative;
display: block;
margin: 2% auto;
z-index: -1;
    }

    .subsection.casestudy.ad-product .about-container{
background-color: #fff;
display: inline-block;
width: 100%;
vertical-align: top;
text-align: left;
max-width: 580px;
margin-left: 0px;
margin-top: 5.5%;
min-height: 400px;
    }

footer#site-footer h3{
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 20px;
}

footer#site-footer ul li{
    margin: 30px 0 0 0;
    font-size: 14px;
    color: #ccc;
}

p.copyright{
    width: 90%;
    margin: 40px auto 80px auto;
    text-align: center;
    font-size: 10px;
    line-height: 22px;
    color: #ccc;
    letter-spacing: .02em;
}

#rethink-partners figure{
width: 30%;
margin: 6%;
display: inline-block;
text-align: center;
margin-top: 40px;
max-width: 120px;
}
#rethink-partners figure img{
    max-width: 100%;
        -webkit-filter: grayscale(1);
    -webkit-filter: grayscale(100%);
    filter: gray;
    filter: grayscale(100%);
    }
#brand-case .slick-track{
    display: flex;
justify-content: center;
align-items: center;
}

.subsection.casestudy h1{
    font-size: 15px;
    color: #ff3038;
    line-height: 18px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Akkurat', sans-serif;
margin: 80px auto 10px;
}
.subsection.casestudy h3{
    margin: 0 auto;
    text-transform: capitalize;
    font-weight: 400;
    font-family: 'Akkurat', sans-serif;
    font-size: 24px;
    letter-spacing: .04em;
}

.subsection.casestudy h4{
    font-size: 32px;
    line-height: 42px;
    font-weight: 200;
    color: #333;
    font-family: 'Akkurat', sans-serif;
    margin: 15px auto;
    letter-spacing: .04em;
}

.subsection.casestudy.ad-product h4{
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 2.6em;
  margin:0;
  }

.subsection.casestudy p.category{
    display: inline;
    font-size: 15px;
    color: #ccc;
    line-height: 18px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Akkurat', sans-serif;
    width: 80%;
    margin-right: 10px;
}

.subsection.casestudy  .intro-container{
    width: 80%;
    margin: 0 auto;
}
.subsection.casestudy .about-container{
background-color: #ca362e ;
width: 100%;
}
.subsection.casestudy .about-container h1{
    color: rgb(255, 163, 172);
    width: 80%;
    margin: 0 auto 10px auto;
    padding-top: 120px;
    }
.subsection.casestudy .about-container p{
color: #fff;
margin: 0 auto 0px auto;
width: 80%;
font-weight: 200;

font-size: 20px;
line-height: 36px;
font-family: 'Akkurat', sans-serif;
padding-bottom: 25px;
    }

    .subsection.casestudy .about-container p:last-child{
      padding-bottom: 100px;
    }

    .subsection.casestudy .about-container.ad-product h1{
    letter-spacing: .05em;
    font-weight: 600;
    font-size: .7em;
    text-transform: uppercase;
    color: #f05241;
    width: 80%;
    margin: 0 auto 10px auto;
    padding-top: 40px;
    max-width: 600px;
}

.subsection.casestudy img{
    max-width: 100%;
}

.subsection.casestudy.ad-product img{
    max-width: 48%;
    display: inline-block;
}

.subsection.casestudy figure.main-img{
    padding: 10%;
    background-color: #f7f7f7;
    margin-top: 80px;

}

.subsection.casestudy .area{
width: 100%;
-webkit-transform: translate3d(0,0,0);
}

.subsection .areas li:nth-of-type(2n){
    background-color: #f1f1f1;
}

.subsection .areas li:nth-of-type(1) {
    background-color: #fff;
}
.subsection .areas li:nth-of-type(2) {
    background-color: #f1f1f1;
}

.subsection .areas li:nth-of-type(3) {
    background-color: #000;
    color: #fff;
}


.subsection.casestudy .area figure{
        width: 95%;
        margin: 0 auto;
        padding-top: 20px;
        text-align: center;
    }
    .subsection.casestudy .area h1{
        width: 80%;
        margin: 0px auto 0 auto;
        padding-top: 120px;
    }
    .subsection.casestudy .area p{
        width: 80%;
        margin: 40px auto 0px auto;
        font-weight: 200;
        font-size: 20px;
        line-height: 36px;
        font-family: 'Akkurat', sans-serif;
        padding-bottom: 120px;
    }

.subsection.casestudy .links{
    text-align:center;
    padding-bottom: 80px;
}

.subsection.casestudy .links h1{
    font-size: 32px;
line-height: 42px;
font-weight: 200;
color: #333;
font-family: 'Akkurat', sans-serif;
margin: 120px auto 80px;
letter-spacing: .04em;
text-align: center;
}

.subsection.casestudy .linkbox{
width: 80%;
background-color: #f6f6f6;
display: inline-block;
margin: 0 auto;
border: 1px solid #e8e8e8;
padding: 4%;
margin-bottom: 20px;
position: relative;
border-radius:2px;
    }
    .subsection.casestudy .linkbox h1{
font-size: 28px;
color: #333;
line-height: 32px;
font-weight: 500;
text-transform: capitalize;
font-family: 'Akkurat', sans-serif;
margin: 10px auto 40px;
    }

    .subsection.casestudy .linkbox h3{
font-size: 15px;
font-family: 'Akkurat', sans-serif;
margin-top: 40px;
    }

    .subsection.casestudy .linkbox a{
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: 100;
    }
.subsection.casestudy .linkbox p.explore{
color:red;
font-size: 12px;
text-align: center;
}

.subsection.casestudy .highlight-container{
padding: 120px 0;
background-color: #ca362e;
color: #fff;
}
.subsection.casestudy .highlight-container h1{
    font-size: 32px;
    line-height: 42px;
    font-weight: 200;
    color: #fff;
    font-family: 'Akkurat', sans-serif;
    margin: 40px auto 0px;
    letter-spacing: .04em;
    text-align: center;
    }
.subsection.casestudy .highlights figure{
    width: 100%;
    max-height: 150px;
    text-align: center;
    margin: 20px auto;
}
.subsection.casestudy .highlights figure img{
max-height: 100%;
margin: 0 auto;
    }
  .subsection.casestudy .highlights p{
    width: 80%;
    margin: 0 auto;
  }  
 .subsection.casestudy .highlights .slick-track{
    display: flex;
justify-content: center;
align-items: center;
  }

#main section#rethink-about-us{
    background-color: #742d5f;
    color: #fff;
    min-height: 100vh;
}
#main section#rethink-about-us p.intro{
    color: #fff;
    margin: 20% auto;
    text-align: center;
}
#main section#rethink-about-us p.about{
font-size: 20px;
line-height: 36px;
color: #fff;
margin: 20% auto;
  }

#main section#rethink-about-us .vid {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    margin-top: 25px;
    height: 0;
}
#main section#rethink-about-us .vid iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




  #main.rethink section h1{
    font-family: 'Akkurat', sans-serif;
  }

#main section#rethink-testimonials .highlight-container{
padding: 80px 0;
background-color: #742d5f;
color: #fff;
}
#main section#rethink-testimonials .highlights{
    background-color: #742d5f;
}

#main section#rethink-testimonials p{
        color: #fff;
    padding-top: 40px;
    margin-bottom: 0;
}
#main section#rethink-testimonials p.quote{
font-size: 1.4em;
line-height: 1.6em;
padding-left: 15px;
padding-right: 15px;
}
#main section#rethink-testimonials h1{
    padding: 80px 0 0 0;
    color: #fff;
    text-align: center;
}
#main section#rethink-testimonials .slick-slide h1{
padding-top: 10px;
    }

#main section#rethink-partners{
    background-color: #fff;
    text-align: center;
    max-width: 768px;
}
#main section#rethink-partners h1{
margin: 80px auto 40px auto;
    text-align: center;
    font-weight: 200;
    font-size: 28px;
    letter-spacing: .04em;
    color: #742d5f;
    position: relative;
    z-index: 10000;
    display: block;
    width: 250px;
    background-image: url(https://cdn.theatlantic.com/assets/media/files/green-bg.jpg);
    background-repeat: repeat-x;
    background-position-y: 2px;
    background-size: 1.8px;
    color: #742d5f;
    padding: 0;
}

#brand-case .slick-slide{
    margin: 0 -1.1%;
}


.intro-container li{
    color: #bcbcbc;
    font-size:14px;
    line-height: 25px;
    display: inline;
}
.intro-container li span{
    padding: 0 3px 0 5px;
    font-weight: 600;
    color: #e0e0e0;
}

.intro-container li:last-child span{
display: none;
}


/*ADDDED*/


#main.case-studies h1{
  position: initial;
  padding-top: 15vh;
}

#main.case-studies select{
font-family: 'Akkurat', sans-serif;
font-size: 12px;
font-weight: 600;
border: 0;
border-radius: 0;
-webkit-appearance: none;
background-color: #f1f1f1;
padding: 10px 25px 8px 15px;
color: #ababab;
display: inline-block;
position: relative;
}

#main.case-studies .select-cont:after{
content: '▼';
display: inline;
font-size: 8px;
color: #ababab;
position: absolute;
top: 14px;
right: 10px;
}

#main.case-studies .select-cont{
  position: relative;
display: inline-block;
}

#main.case-studies #filters{
  margin: 60px auto;
}
#main.case-studies #filters p{
font-size: 12px;
font-weight: 600;
color: #707070;
padding-bottom: 10px;
}
#main.case-studies .cs-sort-container{
  height: 40vh;
}

.gutter-sizer { width: 4%; }

@media (min-width: 46em){
.gutter-sizer { width: 1%; }
}

#main.case-studies ul{
    width: 100%;
    text-align: center;
    margin-left: 5%;
    margin-bottom: 5%;
}
@media (min-width: 46em){
#main.case-studies ul{
    margin-left: 3%;
}
}

@media (min-width: 80em){
#main.case-studies ul{
    margin-left: 1%;
}
}



/* mobile css */
@media (min-width: 46em) {
    #main section{
        min-height: initial;
    }
        #landing .container{
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        right: 0;
        left: 0;
    }
    #main section .container{
        width: 100%;
        margin: 0 auto;
    }
    #main section p, #main section h1{
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

        #main section#rethink-about-us p.about{
                font-size: 1.5em;
        line-height: 1.8em;
  }
  
    #main section#about p{
                font-size: 1.6em;
        line-height: 1.8em;
    }
    #landing .container p{
        font-size: 2.6em;
    }
    #main #landing .container i.material-icons{
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        position: relative;
        top: 30vh;
    }
        #main section#landing, #main section#about{
        min-height: 100vh;
    }
    #main section#audience h2, #main section h2{
        max-width: 700px;
        margin: 10px auto 40px auto;
        padding: 0 10%;
    }
    #studio figure{
        text-align: center;
    }
    #main.case-studies li{
    width: 35%;
    margin: 1%;
    vertical-align: top;
    }
    .cs-sort-container{
        height: 30vh;
    }
    .subsection.casestudy .intro-container{
        max-width: 700px;
    }
            .subsection.casestudy.ad-product .intro-container{
        /*max-width: 600px;*/
        width: 80%;
        text-align: left;
        max-width: 1020px;
    }
    .subsection.casestudy figure.main-img{
        padding: 4%;
        background-color: #f7f7f7;
        margin: 80px auto 0 auto;
        text-align: center;
    }
    .subsection.casestudy img{
        max-width: 700px;
    }

    .subsection.casestudy.ad-product img{
    max-width: 400px;
    width: 100%;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    }


    .subsection.casestudy .about-container h1{
        max-width: 700px;
    }
    .subsection.casestudy .about-container p{
        max-width: 700px;
        font-size: 1.6em;
        line-height: 1.8em;
    }
       .subsection.casestudy .about-container.ad-product p{
      max-width: 600px;
      font-size: 1.5em;
      line-height: 1.4em;
      color: #000;
      font-weight: 500;
      letter-spacing: .02em;
    }
    .subsection.casestudy .area h1{
         max-width: 700px;
    }
    .subsection.casestudy .area p{
        max-width: 700px;
              font-size: 1.6em;
        line-height: 1.8em;
    }
    .subsection.casestudy .links img{
        max-width: 100%;
    }
    .subsection.casestudy .linkbox{
        width: 30%;
        vertical-align: top;
    }
    .subsection.casestudy .linkbox h1{
        letter-spacing: 0;
line-height: 34px;
    }
    #main section#history h1{
        max-width: 700px;
        width: 100%;
        left: 0;
        right: 0;
        text-align: center;
        color: #cc8f93;
    }
    #main #history .historyslides p{
        left: 0;
        max-width: 700px;
        right: 0;
        color: #fff;
        text-align: center;
        font-size: 2.5em;
        line-height: 1.4em;
    }

    #main section#audience figure.issue{
        height: 100vh;
        right: 0;
            width: 80%;
    max-width: 1000px;
    padding:0;
    }

    #main section#audience .issue img{
        max-width: 40%;
        position: absolute;
        top: 5%;
        left: 15%;
    }
    #main section#audience .issue img.media{
        position: absolute;
        top: 30%;
        left: 45%;
    }

    .rethink #landing .container p{
        background-position-y: 20px;
        background-size: 3px;
    }

    #history .slick-dots{
        top: 50%;
        transform: translateY(-50%);
        bottom: 0;
        left: 0;
        position: absolute;
        line-height: 0;
        width: 40px;
        height: 360px;
    }
    div#menu.subsection{
        width: 20%;
        -webkit-transform: translateX(100%);
     transform: translateX(100%);
             right:0;
        left: initial;
    }

    div#menu.subsection.main-out-view-menu {
        top:0;
        left:0;
        width: 25%;
        transform: translateX(-100%);
    }
    div#menu.subsection.sub-in-view{
        position: fixed !important;
        width: 25%; 
        top:0;
        right:0;
        left: initial;
        transform: none;
    }
    .main-out-view-menu {
    top:0;
    left:0;
    width: 100%;
    transform: translateX(-25%);
}
.subsection.casestudy .linkbox{
    width: 20%;
vertical-align: top;
margin: 1%;
}
.tool-nav-trigger{
    width: 30%;
}
#tool-nav ul {
    width: 30%;
    }
    #tool-nav li a:hover{
        background-color: #036083;
    }
#main section#rethink-partners{
    max-width: 700px;
margin: 0 auto 80px auto;
}
.highlights{
    padding: 20px 0;
margin-bottom: 80px;
}
#brand-case{
    margin-bottom: 80px;
}
#menu ul li a{
    font-size: 2em;
line-height: 1.5em;
}
#menu .big-button h3{
    padding: 0 20px;
line-height: 1.2em;
}
.audience-stats{
    width: 32.5%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 120px;
}
#main section#audience p.label{
    margin-top: 0;
}
#studio figure{
    line-height: 0;
}

footer .container{
    padding-top: 120px;
}
footer .container{
    text-align: center;
}
#site-footer .logo{
    margin: 0 auto;
}


.subsection.casestudy.ad-product.substart.sub-in-view figure{
text-align: center;
background-color: #d8e3ef;

padding: 0;
width: 40%;
display: inline-block;
margin-top: 5.5%;
left: 0;
border-top: 2px solid #fff;
border-bottom: 2px solid #fff;
max-width: 398px;
}

.subsection.casestudy.ad-product .about-container{
background-color: #fff;
display: inline-block;
width: 55%;
vertical-align: top;
text-align: left;
max-width: 600px;
margin-top: 5.5%;
margin-left: 20px;
}

}
@media (min-width: 80em) {
    #main.case-studies li{
    width: 20%;
    }
    #main section#rethink-partners{
    background-color: #fff;
    text-align: center;
    max-width: 1280px;
}
}


/*ADDDED*/






.subsection.casestudy.ad-product h1{
letter-spacing: .05em;
font-weight: 600;
font-size: .7em;
color: #f05241;
}

.subsection.casestudy.ad-product h4{
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 2.6em;
  margin:0;
  }
.subsection.casestudy .about-container.ad-product h1{
    letter-spacing: .05em;
    font-weight: 600;
    font-size: .7em;
    text-transform: uppercase;
    color: #f05241;
    width: 80%;
    margin: 0 auto 10px auto;
    padding-top: 40px;
    max-width: 600px;
}


    .subsection.casestudy .about-container.ad-product p{
        max-width: 700px;
        font-size: 1.4em;
        line-height: 1.4em;
        color: #000;
        padding-bottom: 0;
        padding-top: 60px;
    }

   .subsection.casestudy .about-container.ad-product p.btn{
font-size: 1em;
line-height: 1.2em;
/* padding: 10px 15px; */
/* background-color: #f1f1f1; */
position: relative;
/* width: 90px; */
margin: 0px 0 60px 10%;
    }

       .subsection.casestudy .about-container.ad-product p.btn a{
font-size: 14px;
font-weight: 600;
color: red;
letter-spacing: .04em;
text-decoration: none;
position: absolute;
background-color: #f1f1f1;
padding: 10px 15px;
top: 20px;
left: 0;
    }

    .subsection.casestudy .about-container.ad-product ul{
        max-width: 600px;
        width: 80%;
        margin: 20px auto 0 auto;
        padding-bottom: 0px;
    }
    .subsection.casestudy .about-container.ad-product li{
        list-style-type: none;
        margin-left: 0px;
        padding-bottom: 14px;
        line-height: 1.4em;
        font-size: .9em;
        letter-spacing: .02em;
    }

.subsection.casestudy.sub-in-view .about-container.ad-product ul:last-child{
  padding-bottom: 60px;
}

.case-studies.ad-products .cs-card img{
max-width: 100%;
margin: 0 auto;
-webkit-clip-path: initial;
clip-path: initial;
position: relative;
}


#main.case-studies.ad-products h3{
font-size: 28px;
font-weight: 600;
letter-spacing: 0.04em;
margin: 20px auto 0;
    }

    #main.case-studies.ad-products h4{
text-align: center;
font-family: 'Akkurat', sans-serif;
letter-spacing: .05em;
font-weight: 600;
font-size: .7em;
color: #f05241;
width: 100%;
margin: 20px auto 10px;
}





