/*==========
--- Base ---
==========*/
* {
    font-family: "Open Sans",Helvetica,Arial,sans-serif;
    font-weight: 300;
}
* a:focus {
    outline: none;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}
.animate {
    text-align: center;
}
.animate h1 {
    font-weight: 900;
    text-transform: uppercase;
    color: #2d4044;
    font-size: 52px;
    margin: 30px 0 40px;
}
.animate > a {
    display: inline-block;
    padding: 0 20px;
    line-height: 50px;
    color: #2d4044;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid #85b12c;
    text-decoration: none;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    position: relative;
    z-index: 2;
}
.animate > a:hover {
    background: #85b12c;
    color: #f6f8fa;
}
body {
    background: #f6f8fa;
}
.position-search{
    position: relative;
}
.search-content {
    position: relative;
    width: auto;
    max-width: 960px;
    margin: 80px auto 0;
}
.search-body{
    position: relative;
    width: 100%;
    height: 420px;
    z-index: 1;
    background: url("svg/search.svg") 0 0 no-repeat;
    background-size: cover;

    animation: SearchBody 2s steps(16) infinite;
    -webkit-animation: SearchBody 2s steps(16) infinite;
    -moz-animation: SearchBody 2s steps(16) infinite;
    -o-animation: SearchBody 2s steps(16) infinite;
}
.text-box{
    position: absolute;
    right: 20%;
    top: 10%;
    width: 260px;
    height: 200px;
    z-index: 9999;
}
.text-box p {
    font-size: 16px;
    font-weight: bold;
}
.text-box a {
    color: #1da0c9;
    font-size: 16px;
    font-weight: bold;
}
.text-box a:hover {
    background: none;
    color: red;
}
.position-search{
    position: relative;
}
@keyframes SearchBody-M-min { from { background-position: 0px 0px; } to { background-position: 0 -4078px; } }
@keyframes SearchBody { from { background-position: 0px 0px; } to { background-position: 0 -6991px; } }
@keyframes SearchBody-min { from { background-position: 0px 0px; } to { background-position: 0 -2330px; } }
@media (max-width: 980px){
    .search-content {
        max-width: 560px;
    }
    .text-box{
        top:5%;
        right: 0;
    }
    .search-body{
        height: 250px;
        animation: SearchBody-M-min 2s steps(16) infinite;
        -webkit-animation: SearchBody-M-min 2s steps(16) infinite;
        -moz-animation: SearchBody-M-min 2s steps(16) infinite;
        -o-animation: SearchBody-M-min 2s steps(16) infinite;
    }
}
@media (max-width: 560px) {
    .search-content {
        max-width: 320px;
    }
    .search-body{
        height: 150px;
        animation: SearchBody-min 2s steps(16) infinite;
        -webkit-animation: SearchBody-min 2s steps(16) infinite;
        -moz-animation: SearchBody-min 2s steps(16) infinite;
        -o-animation: SearchBody-min 2s steps(16) infinite;
    }
    .text-box{
        width: 160px;
    }
    .text-box p {
        font-size: 12px;
        line-height: 1;
    }
    .text-box a {
        font-size: 12px;
    }
}
.copyright {
    font-size: 12px;
    color: #2F2F4D;
    margin-top: 15px;
}
.copyright strong a {
    color: #337AB7;
    text-decoration: none;
}