/*  ==========================================================================
    www.arnovandevijver.be
    BELGIUM - WEB DESIGN & FRONT END DEVELOPMENT
    ==========================================================================  */

/*  ==========================================================================
    Base styles: opinionated defaults
    ==========================================================================  */

    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;
    }
    a {
    	text-decoration: none;
    	color: inherit;
    }
    table {
    	border-collapse: collapse;
    	border-spacing: 0;
    }
    iframe {
    	border: 0;
    	margin: 0;
    	padding: 0;
    }
    /*
    ::-moz-selection {
    	background: $color-medium-1;
    	color: $color-light-1;
    	text-shadow: none;
    }
    ::selection {
    	background: $color-medium-1;
    	color: $color-light-1;
    	text-shadow: none;
    }
    */
    *, *:before, *:after {
    	-webkit-box-sizing: border-box;
    	   -moz-box-sizing: border-box;
    			box-sizing: border-box;
    }

    .img_100 {
        display: block;
        width: 100%;
    }

/*  ==========================================================================
    Main
    ==========================================================================  */

    body {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #000;
        background: #f6f6f6;
    }

    .btn {
        display: inline-block;
        padding: 20px 50px;
        text-align: center;
        color: #fff;
        background: #60bfea;
        border-radius: 5em;
    }

    img {
        pointer-events: none;
    }

/*  ==========================================================================
    Agency
    ==========================================================================  */

    .agency {
        margin: 200px 0;
        text-align: center;
    }

    .agency__text {
        margin-bottom: 30px;
        font-size: 50px;
        font-weight: 800;
    }

    @media all and (max-width: 800px) {
        .cases__center {
            font-size: 30px;
        }
    }

/*  ==========================================================================
    Cases
    ==========================================================================  */

    .cases__center {
        max-width: 1360px;
        margin: 0 auto;
        padding: 0 80px;
    }

    .cases__item {
        margin: 100px 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0px 20px 50px rgba(0, 0, 0, .1);
    }

    @media all and (max-width: 1100px) {
        .cases__center {
            padding: 0 40px;
        }

        .cases__item {
            margin: 50px 0;
            border-radius: 15px;
        }
    }

    @media all and (max-width: 800px) {
        .cases__center {
            padding: 0 10px;
        }

        .cases__item {
            margin: 30px 0;
            border-radius: 10px;
        }
    }
