header {
    z-index: 100;
    position: absolute;
    top: 0px;
    width: 98%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    margin: 0px 1% 08px 1%;
    background-color: #272727;
    border-radius: 0px 0px 20px 20px;
}

.main-header-logo {
    width: fit-content;
    height: 100%;
    padding-left: 30px;
    display: flex;
}

.main-header-logo img {
    height: 50px;
    padding-top: 5px;
    align-self: center;
}

.main-nav-itms {
    margin-left: 330px;
    width: fit-content;
    height: 100%;
}

.main-nav-itms ul {
    list-style: none;
}

.main-nav-itms ul li {
    display: inline;
    float: left;
}

.main-nav-itms ul li a {
    text-decoration: none;
    padding: 0 10px;
    font-family: 'Samsung Sharp Sans', sans-serif;
    color: white;
    line-height: 60px;
    font-size: 18px;
    display: block;
    height: 100%;

}

.main-nav-itms ul li a:hover {
    color: white;
}

.main-nav-itms ul li a:after {
    content: "";
    position: relative;
    background-color: white;
    height: 3px;
    width: 0%;
    bottom: 10px;
    display: block;
    transition: all 200ms;
}

.main-nav-itms ul li a:hover:after {
    width: 100%;
}

.main-header-sm {
    width: fit-content;
    height: 100%;
    margin-right: 30px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.main-header-sm a {
    border-radius: 70px;
}

.main-header-sm a:hover {
    background-color: blue;
}

.main-header-sm .gmail {
    width: 30px;
    height: 30px;
    background-image: url(imgs/gmail.png);
    background-repeat: no-repeat;
    background-size: cover;

}

.main-header-sm .wp {
    width: 30px;
    height: 30px;
    background-image: url(imgs/whatsapp.png);
    background-repeat: no-repeat;
    background-size: cover;
}