/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}


body {
    background: #a4cb8f;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.banner {
    display: block;
    margin-bottom: 128px;
}

.content-container {
    max-width: 1220px;
    margin: 0 auto;
    width: 90%;
}

.icons > a {
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.icons-container {
    position: relative;
    margin-bottom: 80px;
}

.fast-car {
    width: 120px;
    position: absolute;
    z-index: 100;
    right: -100%;
    will-change: transform;
    top: 50%;
}

.fast-car.show-me {
    animation: 4.5s moveCar;
}



@keyframes moveCar {
    0% { right:  -100%}
    25% { right: 50%;}
    75% { right: 50%;}
    100% { right: 120%;}
}

@media screen and (min-width: 769px) {
    .icons {
        display: table;
        width: 100%;
        margin: 0 auto;
        max-width: 1000px;
        table-layout: fixed;
    }

    .icons > a {
        display: table-cell;
        vertical-align: middle;
        padding: 0 2.5%;

    }
}


.news-hover,
.crochet-block__hover,
.music-hover,
.gallery-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index:  3;
}

.crochet-block__hover {
    left: 13%;
}

.news-block:hover .news-hover {
    opacity:1;
}

.crochet-burst {
    position: absolute;
    top: -3%;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 347px;
    left: 0;
    width: 220%;
    opacity:0;
    z-index: -1;
}

.crochet-block:hover {
    z-index: 4;
}




.crochet-block:hover .crochet-burst,
.crochet-block:hover .crochet-block__hover{
    opacity: 1;
}

.music-block {
    position: relative;
}
.music-block:hover .icon--record {
    opacity: 1;
    animation: spinRecord 5s infinite;
}


.music-block:hover .music-hover {
    opacity: 1;
    max-width: 70%;
}

.gallery-block {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.gallery-block:hover {
    overflow: visible;
}

.gallery-block:hover .gallery-hover,
.gallery-block:hover .gallery-burst {
    opacity: 1;
}

.gallery-burst {
    position: absolute;
    top: -15%;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 372px;
    left: 0;
    width: 220%;
    opacity:0;
    z-index: -1;
}


.gallery-hover {
    max-width: 160px;
}

.icon--news {
    max-width: 90px;
    width: 100%;
}

.icon--crochet {
    max-width: 149px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.icon--music {
    max-width: 167px;
    width: 100%;
}

.icon--record {
    position: absolute;
    top: -19px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 103px;
    will-change: transform;
    opacity: 0;
    transition: .1s linear;
}

@keyframes spinRecord {
    0% { transform:  rotate(0deg);}
    100% { transform: rotate(1440deg);}
}

.icon--gallery {
    max-width: 138px;
    width: 100%;
}

.icon--email {
    max-width: 87px;
    width: 100%;
    position: relative;
}

.email--hover {
    position: absolute;
    top: 82%;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
}

.email-block {
    opacity: 4;
}

.email-block:hover .email--hover {
    opacity: 1;
}


@media screen and (min-width: 769px) {
    .gallery-burst {
        top: -15%;
        max-width: 372px;
        left: -40%;
    }

    .crochet-burst {

        top: -3%;
        max-width: 347px;
        left: -12%;
    }
}