/*  -----------------------
    @Variables
--------------------------  */
:root {
    /*  colors */
    --color-black: #030303;
    --color-pink: #F42965;
    --color-white: #ffffff;
    /*  typography  */
    --font-family-league: 'League Gothic', sans-serif;
    --font-family-gabarito: 'Gabarito', sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 800;
    --font-size-h1: 50px;
    --font-size-h2: 46px;
    --font-size-h3: 20px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 14px;
    --font-size-p: 14px;
    --font-size-s: 12px;
    --line-height-s: 1.1;
    --line-height-m: 1.8;
    --line-height-l: 2;
    /*  various */
    --transition: 0.2s;
}
@media screen and (min-width: 768px) {
    :root {
        /*  typography  */
        --font-size-h1: 60px;
        --font-size-h2: 50px;
        --font-size-h3: 24px;
    }
}
/*  -----------------------
    @General
--------------------------  */
html,
body {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-image: url("imgs/bg-pattern.webp");
    background-repeat: repeat;
    font-family: var(--font-family-gabarito);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-p);
    line-height: var(--line-height-m);
    overflow-x: hidden;
}
.container {
    max-width: 540px;
}
@media screen and (min-width: 768px) {
    .container {
        max-width: 1400px;
    }
}
/*  typography */
h1, h2, h3, h4, h5, h6, p {
    clear: both;
    margin: 0 0 20px;
}
h1, h2, h3 {
    font-family: var(--font-family-league);
    font-weight: var(--font-weight-regular);
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
h4, h5, h6, p {
    font-family: var(--font-family-gabarito);
    font-weight: var(--font-weight-regular);
    font-optical-sizing: auto;
    font-style: normal;
}
h1, h2, h3, h4 { line-height: var(--line-height-s); }
h5, h6, p { line-height: var(--line-height-m); }
strong { font-weight: var(--font-weight-bold); }
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
    margin: 0;
}
h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }
h5 { font-size: var(--font-size-h5); }
h6 { font-size: var(--font-size-h6); }
p { font-size: var(--font-size-p); }
.font-family-league {
    font-family: "League Gothic", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.font-family-gabarito {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.font-weight-regular { font-weight: var(--font-weight-regular); }
.font-weight-semibold { font-weight: var(--font-weight-semibold); }
.font-weight-bold { font-weight: var(--font-weight-bold); }
/*  elements */
img {
    width: auto;
    max-width: 100%;
}
.image-center {
    display: block;
    margin: 0 auto;
}
a,
a:visited {
    color: var(--color-pink);
    text-decoration: underline;
}
a:hover,
a:active,
a:focus {
    color: var(--color-pink);
    text-decoration: none;
}
/*  -----------------------
    @Section-1
--------------------------  */
#section-1 .s1-graphics {
    display: block;
}
@media screen and (max-width: 768px) {
    #section-1 .s1-graphics {
        margin: 0 auto;
    }
}
#section-1-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#section-1-cta > div {
    flex: 1 0 100%;
}
@media screen and (min-width: 768px) {
    #section-1-cta {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #section-1-cta > div:nth-child(1) {
        flex: 0 0 50%;
    }
    #section-1-cta > div:nth-child(2) {
        flex: 0 0 25%;
    }
    #section-1-cta > div:nth-child(3) {
        flex: 0 0 20%;
    }
}
@media screen and (min-width: 992px) {
    #section-1-cta {
        flex-direction: column;
        height: 100%;
    }
    #section-1-cta > div {
        flex: 0 0 auto !important;
    }
}
#section-1-cta img {
    max-width: initial;
}
@media screen and (max-width: 992px) {
    #section-1-cta br { display: none; }
}
#section-1-cta img {
    max-width: calc(100% + 30px);
    transform: translateX(10%);
}
@media screen and (max-width: 600px) {
    #section-1-cta img {
        max-width: calc(100% - 30px);
    }
}
@media screen and (min-width: 768px) {
    #section-1-cta img {
        max-width: calc(100% + 30px);
        transform: translateX(0);
    }
}
#section-1-cta a#start-project {
    font-family: var(--font-family-league);
    font-size: 50px;
    text-transform: uppercase;
    line-height: 1;
}
@media screen and (min-width: 992px) {
    #section-1-cta a#start-project {
        font-size: 50px;
    }
    #section-1-cta img {
        max-width: 180px;
    }
}
@media screen and (min-width: 1200px) {
    #section-1-cta a#start-project {
        font-size: 70px;
    }
    #section-1-cta img {
        max-width: 290px;
    }
}
@media screen and (min-width: 1400px) {
    #section-1-cta a#start-project {
        font-size: 80px;
    }
    #section-1-cta img {
        max-width: 400px;
    }
}
/*  -----------------------
    @Section-2
--------------------------  */
#section-2 .container {
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}
#section-2 img {
    display: block;
    transform: scaleY(-1);
    margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
    #section-2 img {
        transform: scaleY(1);
        margin: 0 0 0 auto;
    }
    #section-2 h2 {
        font-size: 40px;
        text-align: right;
    }
}
@media screen and (min-width: 992px) {
    #section-2 h2 {
        font-size: 50px;
    }
}
@media screen and (min-width: 1200px) {
    #section-2 h2 {
        font-size: 60px;
    }
}
@media screen and (min-width: 1400px) {
    #section-2 h2 {
        font-size: 80px;
    }
}
/*  -----------------------
    @Section-3
--------------------------  */
#section-3 {
    padding: 50px 0 0;
}
#section-3 .snap-container {
    display: block;
    position: relative;
    margin: 0 0 40px 0;
}
#section-3 .snap-image,
#section-3 .snap-image img {
    position: relative;
}
#section-3 .snap-container img {
    z-index: 1;
    display: block;
    margin: 0 auto;
}
#section-3 .snap-image span {
    font-family: var(--font-family-league);
    font-size: 34px;
    color: var(--color-pink);
    text-transform: uppercase;
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
}
#section-3 .col-12:nth-child(1) .snap-image span {
    bottom: 10px;
}
#section-3 .col-12:nth-child(2) .snap-image span {
    bottom: 15px;
}
#section-3 .col-12:nth-child(3) .snap-image span {
    bottom: 15px;
}
@media screen and (min-width: 400px) {
    #section-3 .col-12:nth-child(1) .snap-image span {
        bottom: 20px;
    }
    #section-3 .col-12:nth-child(2) .snap-image span {
        bottom: 30px;
    }
    #section-3 .col-12:nth-child(3) .snap-image span {
        bottom: 25px;
    }
}
@media screen and (min-width: 500px) {
    #section-3 .col-12:nth-child(1) .snap-image span {
        bottom: 30px;
    }
    #section-3 .col-12:nth-child(2) .snap-image span {
        bottom: 40px;
    }
    #section-3 .col-12:nth-child(3) .snap-image span {
        bottom: 35px;
    }
}
@media screen and (min-width: 768px) {
    #section-3 .col-12:nth-child(1) .snap-image span {
        bottom: 15px;
    }
    #section-3 .col-12:nth-child(2) .snap-image span {
        bottom: 15px;
    }
    #section-3 .col-12:nth-child(3) .snap-image span {
        bottom: 20px;
    }
}
@media screen and (min-width: 900px) {
    #section-3 .col-12:nth-child(1) .snap-image span {
        bottom: 15px;
    }
    #section-3 .col-12:nth-child(2) .snap-image span {
        bottom: 20px;
    }
    #section-3 .col-12:nth-child(3) .snap-image span {
        bottom: 25px;
    }
}
@media screen and (min-width: 1200px) {
    #section-3 .col-12:nth-child(1) .snap-image span {
        bottom: 20px;
    }
    #section-3 .col-12:nth-child(2) .snap-image span {
        bottom: 25px;
    }
    #section-3 .col-12:nth-child(3) .snap-image span {
        bottom: 30px;
    }
}
@media screen and (min-width: 1400px) {
    #section-3 .col-12:nth-child(1) .snap-image span {
        bottom: 25px;
    }
    #section-3 .col-12:nth-child(2) .snap-image span {
        bottom: 30px;
    }
    #section-3 .col-12:nth-child(3) .snap-image span {
        bottom: 35px;
    }
}
#section-3 .col-12:nth-child(3) .snap-image img {
    transform: translateX(10px);
}
/**
#section-3 .col-12:nth-child(3) .snap-container {
    transform: rotate(-5deg);
}
**/
#section-3 .snap-container p {
    display: block;
    max-width: 80%;
    font-family: var(--font-family-gabarito);
    text-transform: uppercase;
    font-size: 26px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    margin: 0 auto;
    line-height: var(--line-height-s);
}
@media screen and (min-width: 768px) {
    #section-3 .snap-image span {
        font-size: 20px;
    }
    #section-3 .snap-container p {
        font-size: 16px;
    }
}
@media screen and (min-width: 992px) {
    #section-3 .snap-image span {
        font-size: 30px;
    }
    #section-3 .snap-container p {
        font-size: 20px;
    }
    #section-3 .col-12:nth-child(3) .snap-container {
        transform: rotate(-5deg);
    }
}
@media screen and (min-width: 1400px) {
    #section-3 .snap-image span {
        font-size: 35px;
    }
    #section-3 .snap-container p {
        font-size: 26px;
    }
}
/*  -----------------------
    @Section-4
--------------------------  */
#section-4 {
    margin: -20px 0 0;
    padding: 0 20px;
}
#section-4 img {
    display: block;
    width: auto;
    margin: 0 auto;
    transform: translateY(24%);
}
@media screen and (min-width: 992px) {
    #section-4 {
        margin: -80px 0 0;
    }
}
/*  -----------------------
    @Section-5
--------------------------  */
#section-5 {
    margin: 0;
    padding: 120px 0 50px;
    background-color: var(--color-white);
    background-image: url('imgs/section-5/section-5-bg.webp');
    background-position: 0 0;
    background-repeat: repeat-x;
    background-size: auto;
}
@media screen and (min-width: 768px) {
    #section-5 {
        padding: 150px 0 50px;
    }
}
#section-5 h2 {
    font-size: 120px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}
#section-5 h2 span {
    display: block;
    color: var(--color-pink);
}
#section-5 ul.clients-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
#section-5 ul.clients-list li {
    flex: 0 0 auto;
    margin: 0 20px 20px;
}
@media screen and (min-width: 992px) {
    #section-5 h2 {
        text-align: left;
    }
    #section-5 ul.clients-list {
        justify-content: flex-start;
        max-width: 500px;
    }
    #section-5 ul.clients-list li {
        margin: 0 50px 20px 0;
    }
}
#section-5 .list-container {
    display: inline-block;
    margin: 50px auto -100px;
    transform: rotate(-3deg);
}
@media screen and (max-width: 300px) {
    #section-5 .list-container {
        transform: rotate(-3deg) translateX(-20%);
    }
}
@media screen and (max-width: 400px) {
    #section-5 .list-container {
        transform: rotate(-3deg) translateX(0%);
    }
}
#section-5 .list-container,
#section-5 .list-container > img {
    position: relative;
}
#section-5 .list-container > img {
    z-index: 1;
    min-width: min(100%, 500px);
}
#section-5 .list-content {
    position: absolute;
    z-index: 2;
    top: 15%;
    left: 16%;
    width: 65%;
    height: 75%;
    display: flex;
    flex-direction: column;
}
#section-5 .list-content h4 {
    flex: 0 0 auto;
    text-transform: uppercase;
    font-size: 26px;
    font-family: var(--font-family-gabarito);
    font-weight: var(--font-weight-semibold);
    margin: 0 0 20px 0;
}
#section-5 .list-content ul {
    flex: 1 0 auto;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
#section-5 .list-content ul li {
    flex: 1 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    border-bottom: 1px solid var(--color-black);
}
#section-5 .list-content ul li span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
#section-5 .list-content ul li span:nth-child(1) {
    flex: 0 0 20px;
}
#section-5 .list-content ul li span:nth-child(2) {
    flex: 1 1 auto;
    text-align: center;
}
#section-5 .list-content ul li a {
    color: var(--color-black);
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    #section-5 .list-content ul li a {
        font-size: 18px;
    }
}
@media screen and (min-width: 1200px) {
    #section-5 .list-content ul li a {
        font-size: 20px;
    }
}
/*  -----------------------
    @Section-6
--------------------------  */
#section-6 {
    background-image: url('imgs/section-6/section-6-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 0;
}
#section-6 img {
    display: block;
    margin: 0 auto 50px; 
}
#section-6 #contact-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
#section-6 #contact-us h2 {
    color: var(--color-white);
    font-size: 60px;
    text-align: center;
}
#section-6 #contact-us h2 br {
    display: none;
}
#section-6 #contact-us h4 {
    font-family: var(--font-family-league);
    color: var(--color-white);
    font-size: 30px;
    text-align: center;
}
#section-6 #contact-us h4 a {
    font-size: 40px;
    display: block;
}
@media screen and (min-width: 768px) {
    #section-6 #contact-us h2 {
        font-size: 60px;
        text-align: left;
    }
    #section-6 #contact-us h2 br {
        display: block;
    }
    #section-6 #contact-us h4 {
        font-size: 36px;
        text-align: left;
    }
    #section-6 #contact-us h4 a {
        font-size: 40px;
    }
}
@media screen and (min-width: 992px) {
    #section-6 #contact-us h2 {
        font-size: 100px;
    }
    #section-6 #contact-us h4 a {
        font-size: 60px;
    }
}
@media screen and (min-width: 1400px) {
    #section-6 #contact-us h2 {
        font-size: 120px;
    }
    #section-6 #contact-us h4 a {
        font-size: 80px;
    }
}
#section-6 p.copyright {
    color: var(--color-white);
    opacity: 0.5;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    font-family: var(--font-family-league);
}