/* navbar */
* {
    box-sizing: border-box;
    font-size: 16px;
    top: 0;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: poppin;
    src: url(../Poppins/Poppins-Bold.ttf);
}

.container {
    display: flex;
    justify-content: space-between;
    background-color: white;
    position: fixed;
    z-index: 999;
    overflow: hidden;
    width: 100%;
}

.heading h3 {
    font-weight: 500%;
    padding: 8px 4px;
    font-size: 32px;
    padding-left: 60px;
    font-weight: bolder;
}

.navbar {
    font-weight: 500%;
    width: 50%;
}

.fix {
    color: white;
    background-color: black;
    font-size: 16px;
    font-weight: bolder;
    /* padding: 16px 22px; */
}

.list {
    display: flex;
    justify-content: flex-start;
    width: 50%;
    /* padding: 16px 22px; */
}

ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: black;
    color: #fff;
    z-index: -1;
    transition: transform 0.5s;
}

ul li a:hover::after {
    transform: scaleX(1);
}

ul li a:hover {
    color: #fff;
    padding: 12px 16px;
    background-color: #000;
    font-weight: 500%;
    list-style-type: none;
}

ul li {
    list-style-type: none;
    font-size: 16px;
}

ul li a {
    float: left;
    width: 100px;
    height: 50px;
    text-decoration: none;
    color: #000;
    text-align: center;
    line-height: 50px;
    font-size: 17px;
    transition: all 500ms;
    position: relative;
    z-index: 1;
}

header nav a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: right;
    background: black;
    color: #fff;
    z-index: -1;
    transition: transform 1s;
}


/* main */
.main {
    background-color: rgb(250, 248, 250);
    align-items: center;
    display: flex;
    width: 90%;
    height: 80%;
    position: relative;
    margin: 7px;
    margin-left: 60px;
}

.left img {
    width: 480px;
    height: 520px;
    object-fit: cover;
    position: fixed;
    z-index: 999;
    top: 54px;
}

.right {
    display: flex;
    float: right;
    /* position: absolute; */
    left: 600px;
    flex-direction: column;
    left: 800px;
    width: 100%;
    padding-top: 58px;
    margin-top: 58px;
    padding-left: 500px;
    margin-left: 8px;
    margin-bottom: 40px;
    height: auto;
    overflow: hidden;
    transform: translateY(5%);
    animation: slide-up 1.5s ease-in-out forwards;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(5%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.create {
    padding: 3px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.create h1 {
    font-size: 21px;
    letter-spacing: 8px;
    position: relative;
    color: rgb(69, 67, 67);
}

.create h1::after {
    position: absolute;
    content: "";
    width: 440px;
    height: 1px;
    left: 10%;
    top: 42%;
    background-color: #7d7789;
    transform: translateX(-50%);
    margin-left: 390px;
    color: rgb(69, 67, 67);
}

.news{
    display: flex;
    flex-direction: column;
    height: 730px;
}
.lists {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
    margin-bottom: 30px;
}
.num {
    width: 16%;
    height: 75%;
    font-size: 24px;
    background-color: #c0bcbc;
    padding-top: 8px;
    padding-bottom: 15px;
    padding-left: 9px;
    padding-right: 15px;
    margin: 1px;
    border-radius: 50%;
}

.slash {
    display: inline;
    width: 80px;
    height: 3px;
    margin-top: 30px;
    margin-left: -220px;
    background-color: #c0bcbc;
    transform: rotate(100deg);

}

.read {
    display: block;
    color: #c0bcbc;
    margin-left: -350px;
}

h3 {
    list-style-type: none;
    font-size: 24px;
    z-index: 999;
}

.lists h3 {
    text-decoration: none;
    color: #000000;
    font-weight: bolder;
    font-size: 24px;
    margin-left: -20px;
    /* margin-left: -210px;
    margin-top: -150px; */
}

.lists a {
    position: relative;
}

a img {
    width: 300px;
    height: auto;
    position: absolute;
    margin-left: 10px;
    right: -490px;
    top: -25px;
    opacity: 0;
    transition: 400ms;
    z-index: -1;
}

.lists:hover img {
    opacity: 1;
}

/* footer */
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 55px;
    padding-right: 59px;
    position: fixed;
    padding-top: 7px;
    background-color: white;
    z-index: 999;
    bottom: 0;
    top: 92%;
    /* margin-top: 900px; */
    width: 100%;
    height: 10%;
}

.social-icons {
    width: 25px;
    height: auto;
    display: flex;
    padding-top: 7px;
    width: 15%;
}

i {
    padding-right: 12px;
    color: black;
}