*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}


body {
    background-color: rgb(53, 53, 193);
    font-family: arial;
    background-image: url(img/pexels-jplenio-1435075.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;

}

/* navbar */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 20px 50px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    font-family: arial;
    color: #fff;
}

ul {
    list-style: none;
}

ul li {
    display: inline-block;
    padding: 0px 18px;

}

li a {
    text-decoration: none;
    font-size: 16px;
    font-family: arial;
    color: #fff;
    font-weight: 500;
    padding-bottom: 5px;
}

li a:hover {
    border-bottom: solid 3px brown;
    color: brown;
}

.home-nav {
    border-bottom: solid 3px brown;
}

/* end of navbar */


.flex-content {
    display: flex;
    justify-content: space-between;
    padding:10px 50px;
    gap: 50px;
}

.flex-content > .text-content > p{
font-size: 20px;
font-weight: 400;
color: rgb(236, 236, 229);
padding-bottom: 20px;
}

.text-content > h1 {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 10px;
}

span {
    color: rgb(226, 226, 4);
}

.down-text, .icon-text {
    font-size: 16px;
    color: rgb(227, 227, 220);
}

.icon-text {
    padding-top: 10px;
    font-size: 16px;
}

i {
    height: 50px;
}

/*  end of navbar */

/* form */



#form-name {
    margin-bottom: 20px;
}

#form-name > label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.name {
    width: 550px;
    height: 45px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;

}

#form-cont {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.form-email {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.form-email > label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
}

  .email {
    width: 268px;
    height: 45px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    color: #000000;
    font-size: 16px;
}

textarea {
    width: 550px;
    height: 200px;
    border-radius: 8px;
    padding: 10px;
    outline: none;
    border: none;
    color: #000;
    font-size: 16px;
}

.btn {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    background-color: rgb(242, 242, 10);
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 500;
}

.btn:hover {
    background-color: rgb(234, 108, 108);
    transition: .5s;
}

/* Amination keyframe */



.logo, p, a, h1 {
    animation: slideRight 3s ease-in forwards;
    transition: .5s;
    /* transform: translateX(150px); */
}

@keyframes slideRigft {
    0% {
        transform: translateX(100px);
       opacity: 0;
    }

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