*{
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
span , a ,title{
    text-decoration: none;
    display: inline-block;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-weight: bold;
    font-size: 30px;
    margin:30px ;
    align-items: center;
}
.btn{
    background-color: white;
    border: none;
    font-size: 30px;
}
.btn1{
    display: none;
}
.icon{
    color: lime;
}
.txt{
    color: blue;
    margin-right: 100px;
}
.span{
    background-color: blue;
    color: white;
    padding: 6px 5px;
    border-radius: 50%;
}
.icon1{
    background-color: yellow;
    padding: 8px  9px;
    border-radius: 50%;
}
.link{
    margin-right: 20px;
    color: black;
    text-transform: uppercase;
}
.link:hover{
    background-color: black;
    color: white;
}
.middle{
    background-color: gray;   
}
.span2{
    padding: 15px 20px;
    font-size: 22px;
    border-right: 2px solid blue;
}
.span2:hover{
    color: white;
    background-color: black;
}
.s{
    border: none;
}
@media(max-width:1150px){
    .text{
        width: 60%;
        margin-left: 50px;
    }
    .txt{
        margin: 0;
    }
    .span2{
        padding: 2px 20px;
        border: none;
    }
    .link{
        display: none;
    }
    .btn1{
        display: block;
    }
    .right{
        padding: 0;
    }

}
@media (max-width:600px) {
    .span2{
        width: 100%;
    }
}
@media (max-width:400px) {
    .text{
        width: 20%;
    }
    .span2{
        margin: 10px 0;
    }
    .middle{
        justify-content: center;
    }

}