.secSiteMap {
    float:left;
	width:100%;
	background-color:#ffffff;
}
nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.forSiteMap {
    width: 692px;
    margin: 50px auto;
    text-align: center;
    font-weight: bold;
}
.forSiteMap a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    margin: 0 5px;
    border-radius: 7px;
    text-align: center;
    position: relative;
}
.forSiteMap a.active {
    color: #000;
}
@media (min-width: 701px) {
    .first > li > a {
        background: tomato;
        width: 150px;
        height: 70px;
        line-height: 70px;
        display: block;
        margin: auto;
    }
    .first > li > a:after {
        content: "";
        position: absolute;
        left: 50%;
        width: 1px;
        height: 10px;
        background: #9e9e9e;
        top: 100%;
    }
  
    .second {
        padding-top: 20px;
    }
    .second > li {
        display: inline-block;
        vertical-align: top;
    }
    .second a {
        background: Dodgerblue;
        font-size: 14px;
        width: 125px;
        height: 50px;
        line-height: 50px;
        z-index: 10;
    }
    .second a:before {
        content: "";
        position: absolute;
        border: 1px solid #9e9e9e;
        border-left: none;
        border-bottom: none;
        height: 9px;
        top: -10px;
        left: -76px;
        width: 139px;
    }
    .second li:first-child a:before {
        border-top: none;
    }

    .third {
        margin-left: 16px;
        padding-top: 20px;
    }
    .third a {
        background: #32CD32;
        width: 100px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
        z-index: 5;
        font-size: 15px;
    }
    .third a:before {
        border: 1px solid #9e9e9e;
        border-right: none;
        border-top: none;
        height: 55px;
        top: -35px;
        left: -8px;
        width: 7px;
    }
}

@media (max-width: 700px) {

    .forSiteMap {
        width: 360px;
        margin: 50px auto;
      }
    .first a {
        background: tomato;
        font-size: 14px;
        width: 125px;
        height: 50px;
        line-height: 50px;
        z-index: 10;
    }
    .first a:before {
        content: "";
        position: absolute;
        height: 9px;
        top: -10px;
        left: -76px;
        width: 139px;
    }
      
    .second {
        margin-left: 16px;
        padding-top: 20px;
    }
    .second a {
        background: Dodgerblue;
        width: 100px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
        z-index: 5;
        font-size: 10px;
    }
    .second a:before {
        border: 1px solid #9e9f9e;
        border-right: none;
        border-top: none;
        height: 55px;
        top: -35px;
        left: -8px;
        width: 7px;
    }
    
    .second > li:nth-child(3) > a:before {
        border: 1px solid #9e9e9e;
        border-right: none;
        border-top: none;
        height: 220px;
        top: -200px;
        left: -8px;
        width: 7px;
    }

    .second > li:last-child > a:before {
        border: 1px solid #9e9e9e;
        border-right: none;
        border-top: none;
        height: 320px;
        top: -300px;
        left: -8px;
        width: 7px;
    }

    .third {
        margin-left: 26px;
        padding-top: 20px;
    }
    .third a {
        background: #32CD32;
        font-weight: bold;
        width: 100px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
        z-index: 5;
        font-size: 15px;
    }
    .third a:before {
        border: 1px solid #9e9e9e;
        border-right: none;
        border-top: none;
        height: 55px;
        top: -35px;
        left: -8px;
        width: 7px;
    }
}
.img_and_anim {
    background-color: #ffc107;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0,0,0,0.5) , rgba(0,0,0,0.7) , rgba(0,0,0,0.5)) , url(../img/animation/site-map.png);
    animation: animation 100s linear infinite;
}
@keyframes animation {
    100%{
        background-position:0px 3000px;
    }
}