:root {
  --DefultFont: "Roboto", sans-serif;
  --SecFont: "Righteous", sans-serif;
  --ContentFont: "PT Sans Caption", sans-serif;
  --DefultColor: #009ad8;
  --defultBg: #1e202b;
  --sec-bg: #bfc1c8;
}
body {
  background-color: var(--defultBg);
  color: var(--sec-bg);
}
nav {
  background-color: var(--defultBg);
  color: #fff;
  font-family: var(--DefultFont);
}
nav .sp-text a {
  font-size: 16px;
}
nav .sp-text p {
  font-size: 10px;
  color: #bfc1c8;
}
.navbar-nav .nav-item .nav-link {
  padding: 5px 25px;
  border: 2px solid transparent;
  border-radius: 30px;
  color: #fff;
  transition: 0.3s ease;
  font-weight: 400;
  font-size: 14px;
}
.navbar-nav .nav-link.active {
  padding: 5px 25px;
  border: 2px solid var(--DefultColor);
  border-radius: 30px;
  color: var(--DefultColor);
  transition: 0.3s ease;
  font-weight: 400;
  font-size: 14px;
}
.navbar-nav .nav-item .nav-link:hover {
  padding: 5px 25px;
  border: 2px solid var(--DefultColor);
  border-radius: 30px;
  color: var(--DefultColor);
  transition: 0.3s ease;
  font-weight: 400;
}
/* 
**********Header Section Style*********
 */

.head-section {
  background-image: url("../images/banner.png");
  background-position: center;
  background-size: cover;
  height: 300px;
  padding: 70px 0;
}
.head-section button {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 15px 40px;
  background-color: var(--DefultColor);
  border-radius: 30px;
  color: white;
  border: none;
}
.head-section input {
  width: 100%;
  padding: 20px 50px 20px 20px;
  background: #1e202b;
  color: white;
  border-radius: 50px;
  border: none;
  outline: none;
}
.head-section .location-form {
  position: relative;
}

/* Weather Content Styling */

.forcast-container {
  width: 75%;
  background-color: #323544;
  border-radius: 10px;
  margin-top: -110px;
  margin-bottom: 50px;

}

.header-weather {
  background: rgba(0, 0, 0, 0.1);
  padding: 5px;
  text-align: center;
  font-weight: 400;
}
.content-weather {
  padding: 30px 15px;
}
.content-weather .temp {
  color: white;
  font-weight: 700;
  font-size: 90px;
}
.content-weather .condition {
  color: #009ad8;
  margin: 20px 0;
}
.sp-weather {
  background-color: #262936;
}
.custom-temp {
  font-size: 30px;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}
/* Footer Styling */

.site-footer {
  background: #262936;
  padding: 50px 0;
}
.site-footer .subscribe-form {
  position: relative;
  margin-bottom: 30px;
}
.site-footer .subscribe-form input[type="text"] {
  padding: 20px 100px 20px 20px;
  background: #1e202b;
  width: 100%;
  color: white;
  border: none;
  border-radius: 30px;
}
.site-footer .subscribe-form input[type="submit"] {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: none;
  background: #009ad8;
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
}
.site-footer .social-links a {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  background: #1e202b;
  color: #009ad8;
  text-align: center;
  line-height: 2;
  transition: 0.3s ease;
  font-size: 20px;
  font-size: 1.4285714286em;
}
.site-footer .social-links a:hover {
  background: #009ad8;
  color: white;
}
