body {
  font-family: "Roboto", sans-serif;
  background-color: #1e202b;
  position: relative;
}
/********************* NavBar ************************/
.navbar {
  padding: 40px 0px;
}
.navbar .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}
.navbar-brand h1 {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}
.navbar-brand small {
  font-size: 10px;
  color: #bfc1c8;
  font-weight: 300;
  display: block;
}
.navbar-nav .nav-item {
  margin-left: 10px;
}
.navbar-nav .nav-item .nav-link {
  color: white;
  font-size: 14px;
  padding: 2px 25px;
  border: 2px solid transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.navbar-nav .nav-item .nav-link:hover {
  border-color: #009ad8;
  color: #009ad8;
}
.navbar-nav .nav-item .nav-link.active {
  border: 2px solid #009ad8;
  color: #009ad8;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
@media screen and (max-width: 992px) {
  .navbar-nav {
    margin-top: 30px;
    background-color: #262936;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .navbar-nav .nav-item {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0;
  }
  .navbar-nav .nav-item .nav-link {
    border: none;
  }
  .navbar-nav .nav-item .nav-link.active {
    border: none;
    color: #009ad8;
  }
}
/********************* Home ************************/
.home {
  background-image: url("../images/banner.png");
  background-size: cover;
  min-height: 350px;
  padding: 70px 0px;
}

input,.contact-input {
  background-color: #1e202b;
  color: white;
  border: none;
  outline: none;
  width: 100%;
  padding: 20px 50px 20px 20px;
  font-size: 14px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
button {
  right: -48px;
  background-color: #009ad8;
  color: white;
  font-size: 14px;
  padding: 15px 40px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

/********************* Forecasts ************************/
.forecasts {
  margin-top: -150px;
  margin-bottom: 50px;
}
.forecasts .weather-card {
  color: #bfc1c8;
}

.forecasts .weather-card .card-header {
  background-color: #2d303d;
  padding: 10px;
  font-size: 14px;
}
.forecasts .weather-card .card-body {
  background-color: #323544;
  padding: 30px 20px;
}
.forecasts .weather-card.card2 .card-body {
  background-color: #222530;
}
.forecasts .weather-card.card2 .card-header {
  background-color: #262936;
}
.forecasts .weather-card.card1 .card-header {
  border-top-left-radius: 10px;
}
.forecasts .weather-card.card3 .card-header {
  border-top-right-radius: 10px;
}
.forecasts .weather-card.card1 .card-body {
  border-bottom-left-radius: 10px;
}
.forecasts .weather-card.card3 .card-body {
  border-bottom-right-radius: 10px;
}
.forecasts .weather-card .card-body .location {
  font-size: 18px;
}
.forecasts .weather-card .card-body .temperature span {
  color: white;
  font-size: 80px;
  font-weight: 700;
}
.forecasts .weather-card .card-body .temperature img {
  width: 80px;
}
.forecasts .weather-card .card-body .Weather-condition {
  color: #009ad8;
  font-size: 14px;
  font-weight: 300;
  margin: 20px 0px;
}

.forecasts .weather-card .card-body .Weather-Details span {
  margin-right: 20px;
  font-size: 14px;
}
.forecasts .error-message{
  background-color: rgba(192, 194, 201,0.5);
}

@media screen and (max-width: 992px) {
  .forecasts .weather-card.card1 .card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .forecasts .weather-card.card1 .card-body {
    border-bottom-left-radius: 0px;
  }
  .forecasts .weather-card.card3 .card-header {
    border-top-right-radius: 0px;
  }

  .forecasts .weather-card.card3 .card-body {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .forecasts .error-message{
    width: 70%;
  }
}
@media screen and (min-width: 992px) {
  .forecasts .weather-card .card-body .temperature span {
    font-size: 70px;
  }
  .forecasts .weather-card .card-body .temperature img {
    width: 70px;
    margin-left: 5px;
  }
  .forecasts .weather-card .card-body .Weather-Details span {
    margin-right: 2px;
  }
  .forecasts .error-message{
    width: 50%;
  }
 
}
@media screen and (min-width: 1200px) {
  .forecasts .weather-card .card-body .temperature span {
    font-size: 80px;
  }
  .forecasts .weather-card .card-body .temperature img {
    width: 80px;
    margin-left: 0px;
  }
  .forecasts .weather-card .card-body .Weather-Details span {
    margin-right: 15px;
    font-size: 14px;
  }
}
/********************* Contact Page ************************/

.contact{
  padding:20px 0px 70px;
}
.contact .contact-input{
  background-color: #262936;
} 
.contact .contact-input a,.contact .contact-input span{
  color: #bfc1c8;
  font-size: 13px;
  font-weight: 300;
}
.contact .contact-details{
  background-color: #262936;
  color: #bfc1c8;
  font-size: 14px;
  font-weight: 300;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.contact .contact-details .map iframe{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 220px;
  width: 100%;

}
.contact .contact-details .contact-info{
  padding: 20px;
}
.contact-info a{
  text-decoration: none;
  color: inherit;
}
.contact-info i{
  color: #019BD8;
}
.contact .contact-right h2{
  color: white;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}
.contact .contact-right p{
  color: #bfc1c8;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 14px;
}
.contact .form-control{
  color: white;
  font-size: 14px;
  padding: 14px;
  border: 2px solid #393c48;
  background-color: transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.contact .form-control:hover{
  border: 2px solid #009ad8;

}
.contact .form-control:focus{
  border: 2px solid #009ad8;
  box-shadow: none;

}
.contact .form-control::placeholder {
  color:#757575;
}
.contact textarea{
 min-height: 150px;

}
.contact .btn{
  padding: 10px 20px;
}
.contact .btn-primary{
  color: white;
  background-color: #009ad8;
  font-size: 14px;
  border-radius: 30px;

}
.contact .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: white;
  background-color: #009ad8;
  border-color: #009ad8;
}

/********************* Footer ************************/
footer {
  background-color: #262936;
  padding: 50px 0px;
}

footer .subscribe button {
  right: -45px;
  padding: 15px 20px;
}

footer .socials ul li a {
  text-decoration: none;
  background-color: #1e202b;
  color: #009ad8;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
footer .socials ul li a:hover {
  background-color: #009ad8;
  color: white;
}
footer p {
  color: #bfc1c8;
  font-size: 14px;
  font-weight: 300;
  margin-top: 30px;
}


/********************* Loader ************************/
.loader {
  position: absolute;
  top: 0;
  height: 5px;
  width: 100%;
  --c:no-repeat linear-gradient(#009ad8 0 0);
  background: var(--c),var(--c),#f1edf7;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}