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

body {
  background-color: #252525;
  color: white;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  margin-top: 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 100px;
}

.logo a {
  color: #fff;
  text-decoration: none;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.nav-links {
  display: flex;
  list-style-type: none;
  margin-left: 100px;
  flex-grow: 1;
}

.nav-links li {
  margin-right: 100px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
} /* nav from up*/

section.lower {
  background-color: #222222;
}

.hero {
  margin-top: 20px;
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*lower section*/
.column {
  display: inline-block;
  width: 23%;
  padding: 50px;
  color: white;
  border-radius: 5px;
  box-sizing: border-box;
  vertical-align: top;
  line-height: 30px;
}

.column h4 {
  margin-bottom: 10px;
}

.useful-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.useful-links li a {
  text-decoration: none;
  color: rgb(173, 167, 167);
}

.useful-links li a:hover {
  color: white;
}

.contact-info p a {
  text-decoration: none;
  color: white;
}

.social-media a {
  display: block;
  margin-bottom: 10px;
  color: white;
  text-decoration: none;
}

.social-media a:hover {
  text-decoration: underline;
}
.instagram:hover i {
  color: #e4405f;
}

.facebook:hover i {
  color: #3b5998;
}

.twitter:hover i {
  color: #1da1f2;
}

.pinterest:hover i {
  color: #bd081c;
}

footer {
  background-color: black;
  text-align: center;
  padding: 9px;
}
