/* 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: 90px;
    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;
}

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

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


.boxes{
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
    justify-content: center;
    margin-top: 35px;
}
.box{
    width: 95%;
    padding-top: 90px;
    padding-bottom: 90px;
    padding-right: 12px;
    padding-left: 12px;
    margin-top: 20px;
    margin-left: -6;
    cursor: pointer;
    border: 1px solid rgb(168, 161, 161);
    transition: background-color 0.3s, color 0.3s;
}

.box h1{
    font-size: 26px;
    font-weight: bolder;
    padding: 10px;
    margin: 7px;
    color: rgb(69, 67, 67);
}
.para p{
    font-size: 18px;
    color: rgb(69, 67, 67);

}
.icon i{
    font-size: 62px;
    color:   rgb(69, 67, 67);
    transition: 400ms;

}
 .box:hover{
    background-color: rgb(87, 85, 85);
    color: rgb(202, 196, 196);
    font-weight: bolder;
}

.box:hover .icon{
    filter: brightness(0) saturate(100%) invert(100%)sepia(0) saturate(5016%) hue-rotate(174deg) brightness(122%) contrast(108%);
}
.box:hover h1{
    filter: brightness(0) saturate(100%) invert(100%)sepia(0) saturate(5016%) hue-rotate(174deg) brightness(122%) contrast(108%);
}
.box:hover .para{
    filter: brightness(0) saturate(100%) invert(100%)sepia(0) saturate(5016%) hue-rotate(174deg) brightness(122%) contrast(108%);
}

/* footer */
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 55px;
    padding-right: 55px;
    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;
}