*{
  font-family: 'K2D', sans-serif;
}

body {

  margin: 0;
  padding: 0;
  background-color: black;
}
.nav-menu ul{
  display: flex;
}
.nav-menu ul li{
  list-style-type: none;
}
.nav-menu li .link{
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  padding-bottom: 15px;
  margin: 0 25px;
}
.link:hover, .act{
  border-bottom: 2px solid #fff;
}

.nav-button {
  display: flex;
  justify-content: right;
  align-items: center;
}
.nav-button .btn {
  width: 130px;
  margin: 5px;
  height: 40px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: .3s ease;
}
.user-btn{
  display: flex;
  height:50px;
  width:50px;
  margin-top: 30px;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn.white-btn {
  background: rgba(255, 255, 255, 0.7);
}
.btn.btn.white-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
.nav-menu-btn {
  display: none;
}

.dropdown ul li{
  display: inline-block;
  position:relative;
}

ul li a{
  display:block;
  margin: 0;
  text-decoration: none;
  text-align: left;
  font-size: 20px;
  color: red;
}

ul li ul.dropdown li{
  display:block;
}

ul li ul.dropdown{
  background: rgba(0, 0, 0 0.6);
  position:absolute;
  z-index: 999;
  display:none;
}

ul li:hover ul.dropdown{
  display: block;
}
.nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 100px;
  line-height: 100px;
  background: linear-gradient(rgba(88, 70, 70, 0.6), transparent);
  
}
.nav-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.nav-logo img {
  margin-top: 10px;
  color: white;
  width: auto;
  height: 80px;
  display: flex;
}

.container {
  max-width: 600px;
  margin: 50px auto;
  padding: 60px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color:black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  
}

h1 {
  text-align: center;
  color: white;
}

.contact-info {
  margin-top: 35px;
}

.contact-info p {
  margin: 20px 0;
  color: white;
}

.contact-info strong {
  font-weight: bold;
  
}

.contact-form {
  margin-top: 35px;
}

.contact-form label {
  display: block;
  font-weight: bold;
  color: white;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0 20px 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
}

.input-field{
  font-size: 15px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  height: 50px;
  width: 100%;
  padding: 0 10px 0 45px;
  border: none;
  border-radius: 30px;
  outline: none;
  transition: .2s ease;
}

.input-field:hover, .input-field:focus{
  background: rgba(255, 255, 255, 0.25);
}
.contact-form textarea {
  resize: none;
}

.contact-form button {
  font-size: 15px;
  font-weight: 500;
  color:  black;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  border-radius: 30px;
  outline: none;
  
  cursor: pointer;
  transition: .3s ease-in-out;
}

.contact-form button:hover {
  background: rgba(255, 255, 255, 0.5);
    box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.2);
}




footer{
  position:relative;
  bottom: 1;
  left: 0;
  right: 0;
  background: #111;
  height: auto;
  width: 100vw;
  font-family: "Open Sans";
  padding-top: 40px;
  color: #fff;
}
.footer-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.footer-content h3{
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 3rem;
}
.footer-content p{
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}
.socials{
  list-style: none;
  display: flex;
  padding-left: 0;
  
  margin: 1rem 0 3rem 0;
}
.socials li{
  margin: 0 10px;
}
.socials a{
  text-decoration: none;
  color: #fff;
}
.socials a i{
  font-size: 1.1rem;
  transition: color .4s ease;

}
.socials a:hover i{
  color: aqua;
}

.footer-bottom{
  background: #000;
  width: 100vw;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p{
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}
.footer-bottom span{
  text-transform: uppercase;
  opacity: .4;
  font-weight: 200;
}