/* 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: 130px;
    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: 410px;
    color: rgb(69, 67, 67);
}

.information{
    display: flex;
    flex-direction: row;
    margin: 10px;

}
.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 10px;
    border: 1px solid rgb(134, 131, 131);
}

.icon i{
    color: rgb(134, 131, 131);
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info p{
    color: rgb(134, 131, 131);
}

.contact{
    display: flex;
    flex-direction: row;
}
form{
    padding: 10px;
    margin: 5px;
    width: 100%;
}
input[type=text]{
    padding: 5px;
    margin: 5px;
    color: rgb(134, 131, 131);
    border-color: rgb(134, 131, 131);
    width: 90%;
    background-color:  rgb(250, 248, 250);
    font-size: 20px;
}
input[type=email]{
    padding: 5px;
    margin: 5px;
    font-size: 20px;
    width: 90%;
    color: rgb(134, 131, 131);
    background-color:  rgb(250, 248, 250);
    border-color: rgb(134, 131, 131);
}
input[type=button]{
    padding: 10px;
    margin: 5px;
    font-size: 20px;
    font-weight: boler;
    width: 40%;
    color: rgb(250, 248, 250);
    background-color:  black;
    border-color: rgb(134, 131, 131);
}

input[type=button]:hover{
    background-color: rgb(250, 248, 250);
    color: black;
    border-color: black;
}
textarea{
    padding: 5px;
    font-size: 20px;
    color: rgb(134, 131, 131);
    margin: 5px;
    border-color: rgb(134, 131, 131);
    width: 90%;
    background-color:  rgb(250, 248, 250);
}
/* footer */
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* margin-left: 25px; */
    padding-right: 59px;
    position: fixed;
    padding-top: 7px;
    background-color: white;
    z-index: 999;
    bottom: 0;
    top: 90%;
    /* 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;
}