* {
  padding: 0;
  margin: 0;
  outline: 0;
}

body {
  font-family: "Open Sans";
}

:root {
  --theme-color: #3697D1;
}

section {
  display: block;
  width: 100%;
}

.m {
  width: 100%;
  height: 100vh;
}

.map {
  width: 100%;
  height: 100%;
  background-color: #c4c4c4;
  background-image: url(../img/banner.jpg);
  background-position: center;
  background-size: cover;
}

.map-d {
  display: flex;
}

.search {
  display: flex;
  position: absolute;
  top: 0;
  background-color: #fff;
  margin: 20px 0 0 20px;
  padding: 10px;
  width: 40%;
  border-radius: 50px;
}

#logo {
  width: 30%;
  margin-top: 5px;
}

#logo p {
  font-size: 30px;
  color: var(--theme-color);
  font-weight: 600;
  text-align: center;
}

#form {
  width: 70%;
}

#form svg {
  position: absolute;
  top: 28px;
  margin-left: 15px;
  vertical-align: middle;
}

#form #btn {
  margin-top: -13px;
  margin-left: -45px;
  cursor: pointer;
}

#search {
  padding: 15px;
  width: 90%;
  border: 1px solid #c4c4c4;
  border-radius: 50px;
  box-shadow: inset 1px 1px 2px rgb(0 0 0 / 8%);
  text-indent: 25px;
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}

.map-details {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px 20px 0 0;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 20px 0;
  min-height: 200px;
}

.map-details #temp {
  font-size: 2rem;
  color: var(--theme-color);
  margin-top: -5px;
  padding: 1rem 0;
  font-weight: 600;
}

#location {
  font-size: 20px;
  color: var(--theme-color);
  font-weight: 500;
  margin-top: -5px;
}

.w {
  position: absolute;
  bottom: 0;
  display: flex;
  margin-left: 20px;
  justify-content: space-between;
}

.t {
  background-color: rgba(57, 54, 54, 0.74);
  border-radius: 50px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.t p {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}

.t:hover {
  background-color: rgb(110 164 202 / 74%);
}

#desc {
  text-transform: capitalize;
  color: #fba02a;
}

#date {
  padding-top: 20px;
  color: var(--theme-color);
}

@media screen and (max-width:768px) {
  .search {
    width: 60%;
  }
}

@media screen and (max-width:600px) {
  .w {
    flex-direction: column;
  }

  .search {
    width: 80%;
  }

  .map-details {
    width: 50%;
    min-height: 100px;
    margin-top: 27vh;
  }
}