@import url("https://fonts.googleapis.com/css2?family=Delius&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

Body {
  font-family: "delius";
  margin: 0;
  padding: 0;
}

.GV__nav {
  min-height: 45px;
  background-color: #3d855c;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.GV__nav--list {
  padding-left: 0;
  margin: auto 16px;
  display: flex;
}

.GV__nav--list2 {
  align-content: center;
}

.GV__nav--logo {
  width: 50px;
  height: auto;
}

.GV__nav--item {
  color: white;
  margin: auto 8px;
  display: inline-block;
  text-decoration: none;
}

.GV__nav--Dropdown {
  position: relative;
  display: inline-block;
}

.GV__nav--item .DropBtn {
  border: none;
  cursor: pointer;
}

.GV__nav--Dropdown-Content {
  display: none;
  position: absolute;
  background-color: #66de9a;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.GV__nav--Dropdown-Content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.GV__nav--Dropdown-Content a:hover {
  background-color: #6ca986;
}

.GV__nav--Dropdown:hover .GV__nav--Dropdown-Content {
  display: block;
}

.GV__nav--Dropdown:hover .GV__nav--item .DropBtn {
  background-color: #3e8e41;
}

.GV__nav--Dropdown-mobile {
  position: relative;
  display: none;
}

.GV__nav--item DropBtn-mobile {
  border: none;
  cursor: pointer;
}

.DropBtn-mobile {
  color: white;
  margin-left: 10px;
}

.GV__nav--Dropdown-Content-mobile {
  display: none;
  position: absolute;
  background-color: #66de9a;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.GV__nav--Dropdown-Content-mobile a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.GV__nav--Dropdown-Content-mobile a:active {
  background-color: #6ca986;
}

.GV__nav--Dropdown-mobile:hover .GV__nav--Dropdown-Content-mobile {
  display: block;
}

.GV__nav--Dropdown-mobile:hover .GV__nav--item .DropBtn-mobile {
  background-color: #3e8e41;
}

.GV__nav--SContainer {
  display: flex;
  border: 2px solid #093915;
  border-radius: 20px;
  background-color: white;
  width: 200px;
  height: 25px;
}

.GV__nav--search {
  border: none;
  flex: 1;
  padding: 10px;
  border-radius: 20px 0 0 20px;
  font-size: 16px;
  width: 150px;
  height: 25px;
}

.GV__nav--SBtn {
  background-color: white;
  border: none;
  border-radius: 0 20px 20px 0;
  width: 50px;
  height: 25px;
  cursor: pointer;
  margin-left: 3px;
}

.GV__detail {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 150px auto;
}

.GV__detail--img {
  width: auto;
  height: 600px;
  border: 1px solid #3d855c;
  margin-right: 15px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}

.GV__detail--allinfo {
  width: 50vw;
  height: auto;
}

h1 {
  color: #161673;
  font-weight: 800;
}

h2 {
  font-weight: 600;
}

h3 {
  color: #7a889f;
  font-weight: 400;
}

.GV__detail--info {
  display: flex;
  flex-direction: row;
}

.GV__detail--directions {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: 180px;
}

.GV__detail--allBtn {
  display: flex;
  flex-direction: column;
}

.GV__detail--button--buy {
  background-color: #763e3e;
  color: white;
  border: none;
  height: 50px;
  width: 400px;
  margin-top: 5px;
  margin: 2px;
  box-sizing: border-box;
  border-radius: 5px;
}

.GV__detail--button--add {
  background-color: #141a24;
  color: white;
  border: none;
  height: 50px;
  width: 400px;
  margin-top: 5px;
  margin: 2px;
  box-sizing: border-box;
  border-radius: 5px;
}

.GV__detail--line {
  max-width: 1800px;
  margin: 0 auto;
  border-bottom: 1px solid black;
}

.GV__detail--PInfo {
  margin-left: 120px;
}

.GV__footer {
  min-height: 45px;
  background-color: #3d855c;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: white;
  width: 100%;
}

.GV__footer--brand {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.GV__footer--link {
  display: flex;
  flex-direction: row;
}

.GV__footer--about {
  margin-right: 20px;
  text-decoration: none;
  color: white;
}

@media only screen and (max-width: 1200px) {
  .GV__detail {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
  }
  .GV__detail--img {
    height: 500px;
    margin-left: 50px;
  }
  .GV__detail--allinfo {
    width: 40vw;
  }
  .GV__detail--line {
    max-width: 900px;
  }
  .GV__footer {
    min-height: 45px;
    background-color: #3d855c;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

@media only screen and (max-width: 992px) {
  .GV__detail {
    display: flex;
    flex-direction: row;
    max-width: 900px;
  }
  .GV__detail--img {
    height: 330px;
    margin-left: 45px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 16px;
  }
  .GV__detail--info {
    width: 400px;
  }
  .GV__detail--button--buy,
  .GV__detail--button--add {
    width: 385px;
  }
  .GV__detail--line {
    max-width: 800px;
  }
  .GV__detail--allinfo {
    width: 100%;
  }
  .GV__detail--line {
    max-width: 700px;
  }
}

@media only screen and (max-width: 576px) {
  .GV__nav--Dropdown-mobile {
    display: inline-block;
  }

  .GV__header {
    display: none;
  }

  .GV__nav--list a {
    font-size: 15px;
  }

  .GV__detail {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .GV__detail--img {
    height: 200px;
    margin: 0 auto;
  }

  .GV__detail--allinfo {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .GV__detail--button--buy,
  .GV__detail--button--add {
    width: 150px;
  }

  .GV__detail--line {
    max-width: 380px;
  }
  .GV__detail--line {
    max-width: 230px;
  }
  .GV__nav {
    max-width: 100%;
  }
  .GV__footer {
    max-width: 100%;
  }
  .GV__nav--SContainer {
    display: none;
  }
  /* .GV__header {
    display: none;
  } */
  h1,
  h2,
  h3,
  input {
    margin-left: 20px;
  }
  .GV__detail--allBtn {
    justify-content: center;
    align-items: center;
  }
  .GV__detail--button--buy,
  .GV__detail--button--add {
    width: 355px;
  }
  .GV__detail--PInfo {
    margin-left: 0;
    margin-bottom: 150px;
  }

  .GV__nav--Dropdown-mobile {
    display: inline-block;
  }
}
