{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

body
{
    margin: 0;
    padding: 0;
    background-image: url("images/wallpaper-boxes-2.jpg");
    overflow: hidden;
}

header {
    width: 100%;
    height: 80px;
    background-color: #061ab1;
    line-height: 80px;
    border-bottom: 5px solid #ffd100;
    position: fixed;
    font-family: 'Raleway', sans-serif;
}

.logo {
    padding-left: 30px;
    padding-top: 25px;
	width: 100%;
    height: auto;
    max-width: 100px;
}

h2 {
    font-size: 35px;
    font-weight: 100;
    text-transform: uppercase;
    color: white;
    float: right;
    margin: 0;
    padding-right: 30px;
    letter-spacing: 5px;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Raleway', sans-serif;
}

.container {
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transition: 0.5s;
}

.container .card {
    position: relative;
    width: 300px;
    height: 300px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    margin: 0 10px;
}

.container:hover .card {
    filter: blur(3px);
    transform: scale(.9);
}

.container .card:hover {
    filter: blur(0px);
    transform: scale(1);
}

.container .card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
/*    background: #b1b1db;*/
    background: #6e81ec47;
    z-index: 1;
    transition: 0.2s;
}

.container .card:hover:before {
    background: white;
    transform: scaleY(1.2);
    box-shadow: 0 5px 5px white;
}

.container .card .content {
    text-align: center;
    z-index: 2;
    padding: 30px 10px;
    transition: 0.5s;
}

.container .card:nth-child(3) .content {
    text-align: center;
    z-index: 2;
    padding: 30px 10px;
    transition: 0.5s;
    transform: translateY(-6%);
}

.container .card:hover .content {
    color: #061ab1;
}

.container .card .content h3 {
    font-size: 2em;
}

.content .fa {
    font-size: 90px;
}

.container .card:nth-child(1) .content .fa {
    transform: translateY(20%);
}

.container .card:nth-child(3) .content .fa {
    transform: translateY(20%);
}

.container .card:hover:nth-child(2) .content .fa {
    transform: none;
    transition: 0.5s;
    color: #061ab1;
}

.container .card:hover:nth-child(3) .content .fa {
    transform: none;
    transition: 0.5s;
    color: #061ab1;
}

.container .card .content a {
    display: inline-block;
    margin-top: 40px;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
    border: 2px solid #061ab1;
    border-radius: 20px;
    transform: scale(0);
    font-size: 18px;
}

.container .card:hover .content a {
    background: #061ab1;
    transform: scale(1);
    transition: 0.7s;
    text-transform: uppercase;
}

.container .card .content p {
    transform: scale(0);
    margin: 0;
}

.container .card:hover .content p {
    transform: scale(1);
    transition: 0.7s;
    margin-top: 24px;
/*
    border: 2px solid blue;
    border-radius: 20px;
*/
    padding: 5px 10px;
    font-weight: bold;
    color: #061ab1;
}

footer {
    width: 100%;
    height: 40px;
    background: white;
    line-height: 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 3px solid #061ab1;
}

footer ul {
    margin: 0;
    text-align: center;
}

footer ul li {
    list-style-type: none;
    display: inline-block;
}

footer ul li a {
    text-decoration: none;
    color: black;
    padding: 0px 20px;
    text-transform: uppercase;
    font-size: 12px;
}

footer ul li a img {
    margin: 2px;
    height: 35px;
    width: 35px;
}

@media (max-width: 480px) {
    body {
        overflow: scroll;
    }
    .main-container {
        margin-top: 100px;
    }
    header {
        z-index: 3;
        top: 0;
    }
    header img {
        display: block;
        width: 50%;
        margin: auto;
        margin-top: 10px;
        padding: 0;
    }
    header h2 {
        display: none;
    }
    .container {
        width: 100%;
        float: none;
        height: 1050px;
    }
    .container .card .content a {
        transform: scale(1);
    }
    .container .card {
        height: 300px;
        width: 300px;
    }
    footer {
        z-index: 3;
    }
}