*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.wrapper{
    width: 100%;
}
nav{
    width: 100%;
    position: relative;
}
.logo{
    position: absolute;
    top: 40%;
    padding-left: 20px;
    z-index: 1;
}
.logo img{
    border: 2px solid salmon;
    width: 150px;
}
.nav-top{
    width: 100%;
    height: 70px;
    border-top: 3px solid salmon;
    padding: 15px 30px 15px 200px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: whitesmoke;
    background: black;
}

.nav-top ul{
    font-size: 13.5px;
    font-weight: 600;
    list-style: none;
    display: flex;
    gap: 20px;
    text-transform: uppercase;
}
.nav-top ul i{
    margin-left: 5px;
}
.nav-top li{
    cursor: pointer;
}
.nav-top li:hover{
    font-size: 14.5px;
    color: salmon;
}
.nav-btn{
    margin-left: auto;
    display: flex;
    gap: 15px;
}
.nav-btn button{
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    color: whitesmoke;
    cursor: pointer;
}

nav form{
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
}
nav input{
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
}

.more-container{
    position: absolute;
    width: 100%;
    height: 100px;
    background: rgb(36, 36, 36);
    padding: 15px;
    display:none;
    align-items: center;
    justify-content: center;
}
/*toggle class*/
.more-active{
    display: flex;

}
.more-container ul{
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
}
.more-container li{
    cursor: pointer;
}

.nav-bottom{
    width: 100%;
    height: 50px;
    padding: 15px 30px 15px 200px;
    display: flex;
    gap: 50px;
    justify-content: flex-start;
    align-items: center;
}
.breaking-title{
    padding-right: 10px;
    border-right: 3px solid black;
}
.breaking-title h5{
    font-size: 16px;
    font-weight: 600;
}
.breaking-content{
    display: flex;
    align-items: center;
    gap: 200px;
    width: 100%;
    justify-content: space-between;
}
.breaking-content ul{
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: auto;
}
.breaking-content li{
    padding: 5px 8px;
    border-radius: 10px;
    background: salmon;
    color: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}
.breaking-content li:hover{
    background: lightsalmon;
    color: whitesmoke;
}
.content-icons{
    display: flex;
    gap: 15px;
}
.content-icons button{
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

footer{
    width: 100%;
    
    color: whitesmoke;
}
.about{
    background: black;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
}

.about img{
    width: 150px;
    margin-bottom: 15px;
    border: 2px solid salmon;
}
.about p{
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 1px;
    width: 800px;
}

.socials h5{
    font-size: 30px;
    color: white;
    border-bottom: 2px solid salmon;
    margin-bottom: 10px;
}

.social-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.social-container a{
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.quick-links{
    width: 100%;
    background: rgb(104, 103, 103);
    padding: 30px 50px;
}
.quick-links ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}
.quick-links li{
    cursor: pointer;
}