nav {
  width: 85.1%;
  margin: 0%;
  padding: 0px 100px;
  background-color: rgba(0, 0, 0, 0.768627451);
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
}
@media screen and (max-width: 1165px) {
  nav {
    width: 87.5%;
    margin: 0%;
    padding: 10px 50px;
  }
}
@media screen and (max-width: 600px) {
  nav {
    width: 91%;
    margin: 0%;
    padding: 5px 20px;
  }
}
nav ul {
  display: flex;
  position: relative;
}
nav ul li {
  list-style: none;
  margin-left: 70px;
}
@media screen and (max-width: 600px) {
  nav ul li {
    margin-left: 10px;
  }
}
nav ul li:hover .dropdown {
  display: block;
}
nav .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  nav .logo {
    width: 30px;
    height: 30px;
    margin-top: 5px;
  }
}
nav .dropdown {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.768627451);
  margin: 0%;
  padding: 13px 10px;
  left: 100;
  border-radius: 0px 0px 5px 5px;
}
nav .dropdown li {
  margin: 0%;
  padding: 7px 0px;
}
nav a {
  color: white;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 600px) {
  nav a {
    font-size: 12px;
  }
}
nav a::before {
  content: "";
  background-color: #FF8639;
  position: absolute;
  top: 100%;
  left: 0%;
  width: 0%;
  height: 2px;
  transition: 0.3s;
}
nav a:hover::before {
  width: 100%;
}
nav a:hover {
  color: #FF8639;
}

footer {
  background-color: black;
  padding: 0px 100px;
}
@media screen and (max-width: 1165px) {
  footer {
    padding: 0px 50px;
  }
}
@media screen and (max-width: 600px) {
  footer {
    padding: 10px 20px;
  }
}
footer .footer-container1 {
  display: flex;
  justify-content: space-between;
}
footer .footer-container1 .footer-logo {
  width: 200px;
  height: 100px;
}
@media screen and (max-width: 1165px) {
  footer .footer-container1 .footer-logo {
    width: 150px;
    height: 70px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer-container1 .footer-logo {
    width: 60px;
    height: 30px;
  }
}
footer .footer-container1 div {
  display: flex;
  justify-content: center;
}
footer .footer-container1 .content {
  margin-top: 60px;
}
@media screen and (max-width: 1165px) {
  footer .footer-container1 .content {
    margin-top: 47px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer-container1 .content {
    margin-top: 20px;
  }
}
footer .footer-container1 .content a {
  margin: 0px 10px;
}
@media screen and (max-width: 1165px) {
  footer .footer-container1 .content a {
    margin: 0px 5px;
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer-container1 .content a {
    margin: 0px 2.5px;
    font-size: 8px;
  }
}
footer .footer-container1 .social img {
  width: 30px;
  margin: 0px 10px;
  margin-top: 45px;
}
@media screen and (max-width: 1165px) {
  footer .footer-container1 .social img {
    width: 20px;
    margin: 0px 5px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer-container1 .social img {
    width: 15px;
    margin: 0px 2.5px;
    margin-top: 15px;
  }
}
footer .footer-container1 .social .tw {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  margin-top: 35px;
}
@media screen and (max-width: 1165px) {
  footer .footer-container1 .social .tw {
    width: 35px;
    height: 35px;
    margin: 0px 5px;
    margin-top: 38px;
  }
}
@media screen and (max-width: 600px) {
  footer .footer-container1 .social .tw {
    width: 25px;
    height: 25px;
    margin: 0px 2.5px;
    margin-top: 11px;
  }
}

a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

body {
  background-color: black;
}

* {
  margin: 0%;
}

.bg {
  width: 100%;
  height: 100vh;
  background-image: url(/image/contactus/sky-coffe-cup-sunrise-thumbnail.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg .navbar {
  font-family: sans-serif;
}
.bg .navbar ul {
  margin-top: 15px;
}
@media screen and (max-width: 1165px) {
  .bg {
    width: 100%;
    height: 100%;
    padding: 250px 0 200px 0;
  }
}
@media screen and (max-width: 600px) {
  .bg {
    background-image: url(/image/contactus/phone.jpg);
    padding: 0;
    margin: 0;
  }
}

.contact {
  display: flex;
  justify-content: space-around;
  margin-top: 70px;
}
@media screen and (max-width: 1165px) {
  .contact {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
}
.contact .news {
  background-color: rgba(236, 164, 101, 0.193);
  width: 400px;
  height: 170px;
  padding: 20px;
  margin: 100px 30px 0 50px;
}
@media screen and (max-width: 1165px) {
  .contact .news {
    width: 350px;
  }
}
@media screen and (max-width: 600px) {
  .contact .news {
    height: 50%;
    width: 70%;
    margin: 90px 40px 0 40px;
  }
}
.contact .news h3 {
  color: white;
  font-size: 30px;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1165px) {
  .contact .news h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact .news h3 {
    font-size: 20px;
  }
}
.contact .news p {
  color: white;
  font-size: 20px;
}
@media screen and (max-width: 1165px) {
  .contact .news p {
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  .contact .news p {
    font-size: 13px;
  }
}
.contact form {
  width: 400px;
  margin: 70px 50px 0 20px;
}
@media screen and (max-width: 1165px) {
  .contact form {
    width: 390px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact form {
    width: 94%;
    margin: 50px 20px 50px 20px;
  }
}
.contact form h3 {
  color: white;
  font-size: 25px;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1165px) {
  .contact form h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .contact form h3 {
    font-size: 23px;
  }
}
.contact form .index-Box {
  color: white;
  width: 84%;
  margin: 10px 0 0 21px;
}
@media screen and (max-width: 1165px) {
  .contact form .index-Box {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact form .index-Box {
    margin: 4px;
  }
}
.contact form .index-Box h4 {
  padding: 5px 0;
  margin: 0px;
}
.contact form .index-Box input {
  background-color: rgba(0, 0, 0, 0.356);
  color: white;
  width: 100%;
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px;
}
@media screen and (max-width: 1165px) {
  .contact form .index-Box input {
    width: 105%;
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .contact form .index-Box input {
    width: 105%;
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  .contact form .index-Box input textarea {
    height: 35px;
  }
}
.contact form .index-Box #messege {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  width: 100%;
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px;
}
@media screen and (max-width: 1165px) {
  .contact form .index-Box #messege {
    background-color: rgba(31, 30, 30, 0.4196078431);
  }
}
@media screen and (max-width: 600px) {
  .contact form .index-Box #messege {
    background-color: rgba(31, 30, 30, 0.4196078431);
  }
}
.contact form .rating-star h4 {
  color: white;
  padding: 10px 0 0 23px;
  margin: 0;
}
.contact form .rating-star .rating {
  width: 150px;
  display: flex;
  gap: 20px;
  margin: 5px 0 0 23px;
}
@media screen and (max-width: 600px) {
  .contact form .rating-star .rating {
    gap: 5px;
  }
}
.contact form button {
  background-color: rgba(0, 0, 0, 0.541);
  color: white;
  width: 89%;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
  border: 1px solid white;
  padding: 10px;
  margin: 10px 21px;
}
@media screen and (max-width: 1165px) {
  .contact form button {
    width: 103%;
    padding: 15px;
    margin: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 600px) {
  .contact form button {
    width: 95%;
    padding: 10px;
    margin-top: 10px;
  }
}/*# sourceMappingURL=contactus.css.map */