        .design1{
            position: relative;
            width: 136px;
            height: 78px;
            margin: 56px 72px 0px 72px;
            display: none;
        }
        
        .circle_1{
            position: absolute;
            width: 71px;
            height: 71px;
            background-image: url(images/2x/circle_1.png);
            background-size: contain;
            background-repeat: no-repeat;
            left: 22%;
            opacity:0;
            animation: circle_1 2s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        
        .circle_2{
            position: absolute;
            width: 71px;
            height: 71px;
            background-image: url(images/2x/circle_2.png);
            background-size: contain;
            background-repeat: no-repeat;
            right: 20%;
            opacity:0;
            animation: circle_2 2s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
        
        @keyframes circle_1{
            from{
                opacity:0;
            }
            to{
                opacity:1;
                left: 3%;
            }
        }
        
        @keyframes circle_2{
            from{
                opacity:0;
            }
            to{
                opacity:1;
                right: 3%;
            }
        }

    @media screen and (min-width:768px) and (max-width:1023px){
        .design1{
            width: 116px;
            height: 58px;
            margin: 168px auto 0px 22px;
            display: none;
        }
        
        .circle_1{
            width: 58px;
            height: 58px;
            opacity:0;
        }
        
        .circle_2{
            width: 58px;
            height: 58px;
            opacity:0;
        }
}

    @media screen and (min-width:1024px) and (max-width:1919px){
        .design1{
            margin: 211px auto 0px 36px;
            display: none;
        }
}

    @media screen and (min-width:1920px){
        .design1{
            margin: 198px 0px 0px 58px;
            display: none;
        }
}