@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  background-color: #ffffff;
}

nav .navbar{
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 70px;
 background-color: #ffffff;
}
nav .navbar .logo img{
    height: 60px;
    width: 180px;
    background-size: cover;
    margin-left: 20px;
}

nav .navbar .menu{
  display: flex;
}
.navbar .menu li{
  list-style: none;
  margin: 0 10px;
}
.navbar .menu li a{
  color: #000000;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.5s ease 0s;
}
.navbar .menu li a:hover{
    color: rgb(255, 0, 0);
}







.fnav .foter{
    display: flex;
    align-items: center;
    height: 100px;
  }
  .flogo img{
    height: 80px;
    width: 220px;
    background-size: cover;
    margin-left: 20px;
  }
  .fnav .foter .fmenu{
    display: flex;
    margin-left: 250px;
  }
  .foter .fmenu li{
    list-style: none;
    margin: 0 20px;
  }
  .foter .fmenu li a{
    color: #000000;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s ease 0s;
  }
  .foter .fmenu li a:hover{
    color: rgb(255, 0, 0);
  }
  .fnav .cop{
    position: absolute;
    margin-left: 600px;
    margin-top: 58px;
    color: #000000;
    opacity: 0.50;
  }