* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


html,
body {
    font-family: century-gothic, Arial, Helvetica, sans-serif;
}

body {
    font-size: 18px;
    text-align: left;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #545054;
    background: url(./images/hero-banner.jpg) top center no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    body {
        background-size: 125% auto;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    body {
        background-size: 150% auto;
        background-position: 32% 0;
    }
}

@media screen and (max-width: 440px) {
    body {
        font-size: 16px;
    }
}


img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: century-gothic, Arial, Helvetica, sans-serif;
    margin: 0 0 25px;
    line-height: normal;
    color: #8e3a80;
}

h1 {
    font-size: 2.75em;
    margin-bottom: 30px
}

h2 {
    font-size: 1.85em;
    margin-bottom: 30px
}

h3 {
    font-size: 1.4em
}

h4 {
    font-size: 1.2em
}

h5 {
    font-size: 1.15em
}

p {
    margin-bottom: 25px;
    line-height: 1.7em
}

p:last-child {
    margin-bottom: 0;
}

.leader {
    font-size: 1.2em;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

/* = Buttons
----------------------------------------------------------------------------------------------------------------- */
.btn {
    padding: 0.75em 1.65em;
    display: inline-block;
    vertical-align: top;
    color: #8e3a80;
    border: 1px solid #8e3a80;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.btn--green {
    color: #fff;
    background-color: #8ea52b;
    border-color: #8ea52b;
}

.btn--download {
    padding-left: 4em;
    background-image: url(./icons/download-arrow.svg);
    background-position: left 1.5em center;
    background-repeat: no-repeat;
    background-size: 20px;
}


.btn:hover,
.btn:focus {
    outline: none;
    background-color: #8e3a80;
    border-color: #8e3a80;
    color: #fff;
}


.btn+.btn {
    margin-left: 25px;
}

p+p .btn {
    margin-top: 35px;
}


@media screen and (max-width: 750px) {
    .buttons .btn {
        display: block;
        margin: 40px 0 0;
    }
}

@media screen and (max-width: 400px) {
    .btn {
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .buttons .btn {

        margin: 35px 0 0;
    }
}


/* = Flex
----------------------------------------------------------------------------------------------------------------- */
.flx {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flx-inl {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.flx--col {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flx--jc {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flx--jc-sb {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flx--jc-sa {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flx--jc-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flx--ac {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.flx--ai {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flx--ai-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flx--wr {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flx--noSh {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}



/* = Sections and containers
----------------------------------------------------------------------------------------------------------------- */
section {
    padding: 100px 0
}

.section--white + .section--white {
    padding-top: 0;
}

@media screen and (max-width: 600px) {
    section {
        padding: 80px 0
    }
}

@media screen and (max-width: 440px) {
    section {
        padding: 70px 0
    }
}

@media screen and (max-width: 400px) {
    section {
        padding: 65px 0
    }
}


.section--purple {
    background-color: #ba41a6;
}

.section--dark-purple {
    background-color: #8e3a80;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px
}

@media screen and (max-width: 600px) {
    .container {
        padding: 0 8%;
    }
}

@media screen and (max-width: 440px) {
    .container {
        padding: 0 6.5%;
    }
}

.inner {
    max-width: 700px;
    margin: 0 auto;
}

.inner--800 {
    max-width: 800px;
}

.inner--900 {
    max-width: 900px;
}

.inner--1000 {
    max-width: 1000px;
}

.inner--1100 {
    max-width: 1100px;
}




/* = Columns
----------------------------------------------------------------------------------------------------------------- */
.cols {
    margin: 50px 0;
}

.col {
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.15);
}

.cols:first-child {
    margin-top: 10px;
}

.cols:last-child {
    margin-bottom: 10px;
}


.cols--half {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cols .col {
    padding: 9% 8%;
    margin-top: 50px;
}

.cols .col:first-child {
    margin-top: 0;
}

@media screen and (min-width: 801px) {
    .cols {
        margin: 60px auto;
    }

    .cols--half .col {
        width: calc(50% - 25px);
        margin: 50px 50px 0 0;
        padding: 5% 4%;
    }

    .cols--half .col:nth-child(even) {
        margin-right: 0;
    }

    .cols--half .col:nth-child(-n+2) {
        margin-top: 0;
    }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
    .cols--fourth .col {
        width: calc(50% - 25px);
        margin: 50px 50px 0 0;
        padding: 5% 4%;
    }

    .cols--fourth .col:nth-child(2n+2) {
        margin-right: 0;
    }

    .cols--fourth .col:nth-child(-n+2) {
        margin-top: 0;
    }
}

@media screen and (min-width: 1201px) {
    .cols--fourth .col {
        width: calc(25% - 18.75px);
        margin: 25px 25px 0 0;
        padding: 3% 2%;
    }

    .cols--fourth .col:nth-child(4n+4) {
        margin-right: 0;
    }

    .cols--fourth .col:nth-child(-n+4) {
        margin-top: 0;
    }
}

/* = Logo and title
----------------------------------------------------------------------------------------------------------------- */
.logo-title {
    margin: 0 0 50px;
}

.logo-title h1 {
    margin: 0 0 0 50px;
}

@media screen and (min-width: 751px) and (max-width: 1000px) {
    .logo-title img {
        width: 15%;
    }

    .logo-title h1 {
        font-size: 4.75vw;
    }
}

@media screen and (max-width: 750px) {
    .logo-title {
        flex-wrap: wrap;
    }

    .logo-title img {
        width: 21%;
        min-width: 100px;
    }

    .logo-title h1 {
        font-size: 6vw;
        width: 100%;
        margin: 30px 0 0;
    }
}

@media screen and (max-width: 480px) {
    .logo-title h1 {
        font-size: 9vw;
    }
}

/* = Video container
----------------------------------------------------------------------------------------------------------------- */
.youtube-wrap {
    position: relative;
    padding-top: 56.6%;
    height: 0;
}

.youtube-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* = Icon quality
----------------------------------------------------------------------------------------------------------------- */
.icon-quality {
    width: 130px;
    margin: 0 auto 30px;
}

/* = Header
----------------------------------------------------------------------------------------------------------------- */
header {
    padding-top: 275px;
    padding-bottom: 100px;
}

@media screen and (min-width: 2001px) {
    header { 
        padding-top: 300px;
    }
}

@media screen and (max-width: 1600px) {
    header { 
        padding-top:17%;
    }
}

@media screen and (max-width: 750px) {
    header {
        padding-top: 23%;
    }
}

@media screen and (max-width: 600px) {
    header {
        padding-bottom: 80px;
    }
}

@media screen and (max-width:480px) {
    header {
        padding-top: 28%;
    }
}

@media screen and (max-width: 440px) {
    header {
       padding-bottom: 70px;
    }
}

@media screen and (max-width: 440px) {
    header {
        padding-bottom: 65px;
    }
}

/* = Footer
----------------------------------------------------------------------------------------------------------------- */
footer {
    padding: 25px 0 100px;
}

.footer-strip {
    padding: 15px 0 0;
    border-top: 1px solid #666;
}

.footer-social a {
    width: 50px;
    margin-left: 10px;
    position: relative;
}

.footer-social a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: transparent;
    transition: all .3s ease;
}

.footer-social a:hover:after {
    width: 100%;
    background-color: #8e3a80;
}

.footer-links a {
    color: #545054;
    text-decoration: underline;
    margin: 0 15px;
}

.footer-links a:first-child {
    margin-left: 0;
}

.footer-links a:last-child {
    margin-right: 0;
}


.footer-links a:hover {
    color: #8e3a80;
}

@media screen and (max-width: 750px) {

    .footer-strip {
        flex-wrap: wrap;
    }

    .footer-links,
    .footer-social {
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }

    .footer-social a:first-child {
        margin-left: 0;
    }

}

@media screen and (max-width: 400px) {
    .footer-links a {
        font-size: 14px;
    }
}