body {
  font-family: "Trebuchet MS", serif;
  line-height: 1.6;
}

.icon {
  /* border-radius: 50px; */
  width: 35px;
  height: 35px;
}

.icon2 {
  /* border-radius: 50px; */
  width: 32px;
  height: 32px;
}

.container {
  margin: 0;
  padding: 0;
}

ul.tabs {
  position: absolute;
  left: calc(100% / 2 - 40px);
  margin-top: 30px;
  display: flex;
  padding: 0px;
  list-style: none;
  justify-content: center;
  gap: 30px;
  z-index: 1;
}
ul.tabs li {
  background: white;
  border-radius: 50px;
  color: #222;
  display: inline-block;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px 15px; */
  cursor: pointer;
  box-shadow: 0px 3px 5px #6d6d6d74;
  transition: 0.3s;
}

ul.tabs li:hover {
  background: #e8f5fd;
}

ul.tabs li.current {
  background: #c7e3f4;
  color: #222;
  border-radius: 50px;
}

.tab-content {
  display: inherit;
}

.dropdown {
  background: white;
  border-radius: 50px;
  color: #222;
  display: inline-block;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 3px 5px #6d6d6d74;
  transition: 0.3s;
  z-index: 1;
}

.dropdown:hover {
  background: #ffe09d;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 0px;
  left: 280px;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 2;
}

.dropdown:hover .dropdown-content {
  display: inline-block;
}

.infoimg {
  border-radius: 5px;
  width: 450px;
}

.btn {
  border: none;
  width: 65px;
  height: 65px;
  background: none;
}
