/*
INSPO:
https://ideabaragency.com/
https://www.hugeinc.com/
*/
*, *:before, *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --primary: #ea178c;
}

.d-none {
    display: none !important;
}

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 {
    border: 0;
    font-size: 100%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

body {
    color: #484848;
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: auto;
    padding: 0;
}

h1, h2, h3 {
    color: #333;
    font-family: 'Nunito-sans', sans-serif;
    font-weight: 900;
    margin: 0;
}
h2 {
    font-size: 2.5rem;
    letter-spacing: -.125rem;
    line-height: 1.1;
    line-height: 1.1;
    margin-bottom: 4rem;
}
h2 span.period,
h2 span.colon {
    color: var(--primary);
    font-family: 'Lora', serif;
    position: relative;
}
h2 span.colon {
    margin-left: 4px;
}
h2 span.colon::before {
    content: '.';
    display: inline;
    position: absolute;
    bottom: 14px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -.0625rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    h2 {
        font-size: 3rem;
        letter-spacing: -.25rem;
        line-height: 1.05;
    }
    h2 span.colon::before {
        bottom: 18px;
    }
}
@media (min-width: 992px) {
    h2 {
        font-size: 4rem;
        letter-spacing: -.25rem;
        line-height: 1.05;
    }
    h2 span.colon::before {
        bottom: 26px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.link {
    color: var(--primary);
    text-decoration: underline;
}
a.link:hover {
    color: var(--primary);
    text-decoration: none;
}

ul.list-disc {
    list-style: none; /* Remove default bullets */
    margin: 1em 0;
    padding-left: 40px;
}

ul.list-disc li {
    font-weight: 600;
}
ul.list-disc li::before {
    content: "\2022";
    color: var(--primary);
    display: inline-block; /* Needed to add space between the bullet and the text */
    font-weight: bold; /* If you want it to be bold */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
    width: 1em; /* Also needed for space (tweak if needed) */
}

.two-lists ul {
    margin: 0
}
.two-lists ul:first-of-type {
    margin-top: 1em;
}
.two-lists ul:last-of-type {
    margin-bottom: 1em;
}
@media (min-width: 768px) {
    .two-lists ul {
        display: inline-block;
        float: left;
        margin: 1em 0;
        width: 50%;
    }
}

/*
| -------------------------------------------------------------------------
| Sections
| -------------------------------------------------------------------------
*/

section {
    padding: 70px 25px;
}
section.gray {
    background: #f4f7f9;
}
section .container {
    max-width: 100%;
    margin: 0 auto;
    width: 1200px;
}
section .container.small {
    width: 800px;
}

@media (min-width: 768px) {
    section {
        padding: 9.375rem 6.25rem;
    }
}

/*
| -------------------------------------------------------------------------
| MAIN
| -------------------------------------------------------------------------
*/

main {}


/* --------------------------------------------------------------------- */

section.intro {}
@media (min-width: 992px) {
    section.intro p {
        font-size: 24px;
        max-width: 820px;
    }
}

/* --------------------------------------------------------------------- */

section.services {}
.service-grid {
    display: block;
    margin: 35px 0 0 0;
    width: 100%;
}
.service-wrap {
    padding: 0;
    width: 100%;
}
.service-wrap img {
    width: 100%;
}

.service-wrap h3 {
    font-size: 2rem;
}
.service-wrap p {}
.service-wrap a {}

@media (min-width: 768px) {
    .service-grid {
        align-items: stretch;
        display: flex;
        flex-wrap: wrap;
        margin: 4rem -1.5625rem;
        width: calc(100% + 3.125rem);
    }
    .service-wrap {
        align-content: center;
        padding: 1.5625rem;
        width: 50%;
    }
}
@media (min-width: 992px) {

}

/* --------------------------------------------------------------------- */

section.featured-work {}

.work-grid {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    margin-top: 50px;
    width: calc(100% + 30px);
}
.work-grid .work-tile,
.work-grid .work-ajax-tile {
    width: 50%;
    padding: 15px;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.work-grid .work-tile .inner,
.work-grid .work-ajax-tile .inner {
    width: 100%;
    background-size: cover;
    background-position: center;
    padding-top: 60%;
    position: relative;
}
.work-grid .work-tile .inner:before,
.work-grid .work-ajax-tile .inner:before {
    content: '';
    background: rgba(35, 31, 32, 0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.work-grid .work-tile:hover .inner:before,
.work-grid .work-ajax-tile:hover .inner:before,
.work-grid .work-tile:focus .inner:before,
.work-grid .work-ajax-tile:focus .inner:before {
    opacity: 1;
}
.work-grid .work-tile .copy,
.work-grid .work-ajax-tile .copy {
    bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    z-index: 1;
}
.work-grid .work-tile .copy p,
.work-grid .work-ajax-tile .copy p {
    color: #fff;
    font-family: 'Nunito-sans', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.7em;
}
.work-grid .work-tile .copy p.description,
.work-grid .work-ajax-tile .copy p.description,
.work-grid .work-tile .copy a.description,
.work-grid .work-ajax-tile .copy a.description {
    color: #fff;
    font-family: 'Nunito-sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    margin-top: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}
.work-grid .work-tile:hover .copy p.description,
.work-grid .work-ajax-tile:hover .copy p.description,
.work-grid .work-tile:focus .copy p.description,
.work-grid .work-ajax-tile:focus .copy p.description,
.work-grid .work-tile:hover .copy a.description,
.work-grid .work-ajax-tile:hover .copy a.description {
    margin-top: 10px;
    opacity: 1;
}
.work-grid .work-tile:hover .copy a.description:hover,
.work-grid .work-ajax-tile:hover .copy a.description:hover {
    text-decoration: underline;
}


@media (min-width: 768px) {

}

/* --------------------------------------------------------------------- */

section.cta {
    text-align: center;
}
section.cta .subtitle {
    color: #8d9ba0;
    font-family: 'Nunito-sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    line-height: 1.2rem;
    position: relative;
    text-transform: uppercase;
}
section.cta p:not(.subtitle) {
    color: #231f20;
    font-family: 'Nunito-sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5em;
    margin-top: 1rem;
}
section.cta a {
    color: var(--primary) !important;
    display: block;
    font-size: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    section.cta {
        padding-top: 11.5625rem;
        padding-bottom: 11.5625rem;
    }
}


/*
| -------------------------------------------------------------------------
| SLIDES
| -------------------------------------------------------------------------
*/

#slide-block {
    background: #2e2f33;
    color: #fff;
    height: 100vh;
    padding: 0;
    position: relative;
    width: 100%;
}

#slide-block .slides {
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
#slide-block .slide-content {
    display: none;
    height: 100%;
    width: 100%;
}
#slide-block .slide-content.show {
    display: flex;
}

/* --------------------------------------------------------------------- */

#slide-block .slide {
    align-items: center;
    display: block;
    height: 100%;
    padding: 110px 25px 25px 25px;
    position: relative;
    width: 100%;
}
@media (min-width: 768px) {
    #slide-block .slide {
        display: flex;
        padding: 9.375rem 6.25rem;
    }
}

/* --------------------------------------------------------------------- */

#slide-block .slide .copy {
    left: -20px;
    max-width: 100%;
    opacity: 0;
    position: relative;
    transition: all 0.5s ease;
    width: 100%;
    z-index: 2;
}
#slide-block .slide-content.show .copy {
    opacity: 1;
    left: 0;
    transition: all 0.5s ease;
}
@media (min-width: 768px) {
    #slide-block .slide .copy {
        max-width: 500px;
    }
}
@media (min-width: 1140px) {
    #slide-block .slide .copy {
        max-width: 575px;
    }
}

/* --------------------------------------------------------------------- */

#slide-block .slide .copy .subtitle {
    color: #fff;
    font-family: 'Nunito-sans', sans-serif;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.2em;
    position: relative;
    text-transform: uppercase;
}
#slide-block .slide .copy .subtitle.divider {
    align-items: flex-start;
    display: flex;
}

/* --------------------------------------------------------------------- */

#slide-block .slide .copy .titleLarge {
    font-size: 2.125rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1em;
    margin: 0;
}
#slide-block .slide .copy .subtitle + .titleLarge {
    margin-top: 15px;
}
@media (min-width: 768px) {
    #slide-block .slide .copy .titleLarge {
        font-size: 3.125rem;
    }
}

@media (min-width: 992px) {
    #slide-block .slide .copy .titleLarge {
        font-size: 3.75rem;
    }
}

@media (min-width: 1140px) {
    #slide-block .slide .copy .titleLarge {

    }
}

/* --------------------------------------------------------------------- */

#slide-block .slide .copy .titleLarge + p {
    color: #fff;
    font-size: 1.125rem;
    margin-top: 15px;
}
@media (min-width: 768px) {
    #slide-block .slide .copy .titleLarge + p {
        font-size: 1.25rem;
    }
}


/*
| -------------------------------------------------------------------------
| HEADER
| -------------------------------------------------------------------------
*/

header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 25px;
    position: fixed;
    top: 0;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 9999;
}
header.nav-up {
    top: -85px;
}
header.nav-down {
    top: 0;
}
header.small {
    background: #fff;
}

@media (min-width: 768px) {
    header {
        padding: 3.125rem;
    }
    header.small {
        background: transparent;
    }
    header.nav-up {
        top: 0;
    }
}

/*
| -------------------------------------------------------------------------
| HEADER - Logo
| -------------------------------------------------------------------------
*/

header .logo {
    position: relative;
    width: auto;
    z-index: 9999;
}
header .logo img,
header .logo svg {
    width: 100%;
}

/* --------------------------------------------------------------------- */

header .logo .main-logo {
    transition: all 0.2s ease;
    width: 120px;
}
header.small .logo .main-logo {
    opacity: 0;
}

/* --------------------------------------------------------------------- */

header .logo .small-logo {
    opacity: 0;
    position: absolute;
    height: 39px;
    left: 0;
    top: 0;
    transition: all 0.2s ease;
    width: 120px;
}
header .logo .small-logo svg {
    height: 39px;
    width: 120px;
}
header.small .logo .small-logo {
    opacity: 1;
}
.st0 {
    fill:#EA178C;
}

@media (min-width: 768px) {
    header .logo .main-logo {
        width: auto;
    }
    header .logo .small-logo {
        width: 148px;
    }
    header .logo .small-logo svg {
        height: 48px;
        width: 148px;
    }
}

/*
| -------------------------------------------------------------------------
| HEADER - Nav Toggle
| -------------------------------------------------------------------------
*/

header .nav-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    width: 25px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

/* --------------------------------------------------------------------- */

header .nav-toggle i {
    width: 23px;
    height: 2px;
    background-color: #231f20;
    display: block;
    transition: all 0.2s ease;
}
header.white .nav-toggle i,
body.home header .nav-toggle i {
    background-color: #fff;
}
body.home header.small .nav-toggle i {
    background-color: #231f20;
}

header .nav-toggle i + i {
    margin-top: 5px;
}

body.nav-expanded header .nav-toggle i:nth-of-type(1) {
    opacity: 0;
}
body.nav-expanded header .nav-toggle i:nth-of-type(2) {
    transform: rotate(-45deg);
}
body.nav-expanded header .nav-toggle i:nth-of-type(3) {
    margin-top: -2px;
    transform: rotate(45deg);
}

body.nav-expanded header .nav-toggle i {
    /*background-color: #fff;*/
}

header.white .nav-toggle i,
body.home header .nav-toggle i {
    background-color: #fff;
}


/*
| -------------------------------------------------------------------------
| HEADER - Main Menu
| -------------------------------------------------------------------------
*/

header .main-menu {
    visibility: hidden;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 0;
    height: 800px;
    min-height: 100vh;
    z-index: 999;
    overflow: hidden;
    transition: width 0.3s ease;
}

/*
| -------------------------------------------------------------------------
| FOOTER
| -------------------------------------------------------------------------
*/
.footer {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

section.footer a:not(.logo) {
    background-image: linear-gradient(#fff 50%, rgba(255, 255, 255, 0) 50%);
    background-size: 100% 2px;
    background-position: 100% 100%;
    padding-bottom: 2px;
    background-repeat: no-repeat;
    display: inline-block;
}
section.footer a:not(.logo):hover,
section.footer a:not(.logo):focus {
    color: var(--primary);
    outline: none;
    background-image: linear-gradient(#ea178c 50%, rgba(234, 23, 140, 0) 50%);
    -webkit-animation: underline-hover 0.5s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1 normal none running;
    animation: underline-hover 0.5s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1 normal none running;
}

.sosumi {
    padding-top: 10px;
}

@media (min-width: 768px) {
    section.footer .container {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

img.special {
    border: 3px solid #484848;
    -moz-box-shadow:    2rem 2rem 0 0 #d3edee;
    -webkit-box-shadow: 2rem 2rem 0 0 #d3edee;
    box-shadow:         2rem 2rem 0 0 #d3edee;
    display: block;
    max-width: calc(100% - 2rem);
    width: auto;
}


/*
| -------------------------------------------------------------------------
| ANIMATIONS
| -------------------------------------------------------------------------
*/