.quote-lozenge {
  width: 100%;
  max-width: 1027px;
  height: 130px;
  margin: auto;
  margin-top: 140px;
  background-color: #FFF;
  border-radius: 500px;
  box-sizing: border-box;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .quote-lozenge {
    display: none;
  }
}
.quote-lozenge.show {
  border-radius: 500px 500px 500px 0;
}
.quote-lozenge-dropdown {
  position: relative;
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #212226;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 600;
}
.quote-lozenge-dropdown p, .quote-lozenge-dropdown li {
  display: flex;
  align-items: center;
  padding: 1.5rem 4rem;
  margin: 0;
  cursor: pointer;
}
.quote-lozenge-dropdown i {
  font-size: 1.2em;
  margin-left: 1rem;
  margin-right: 1rem;
  color: var(--global-palette1);
}
.quote-lozenge-dropdown p {
  position: relative;
  width: 100%;
}
.quote-lozenge-dropdown p i.fa-chevron-down {
  font-size: 0.8em;
  font-weight: 600;
  color: var(--global-palette3);
  margin-left: auto;
}
.quote-lozenge-dropdown ul {
  margin: 0 auto;
  padding: 10px 0;
  display: none;
  position: absolute;
  top: 100%;
  background-color: #FFF;
  z-index: 100;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 15px 29px 0px;
  border-radius: 0 0 60px 60px;
}
.show .quote-lozenge-dropdown ul {
  display: block;
}
.quote-lozenge-dropdown ul li {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.quote-lozenge-dropdown ul li span {
  transition: all 0.3s ease-in-out;
}
.quote-lozenge-dropdown ul li:hover span {
  padding-left: 10px;
}
.quote-lozenge-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 100%;
  background-color: var(--global-palette1);
  color: white;
  font-weight: 900;
  font-size: 1.125rem;
  text-align: center;
  border-radius: 0 500px 500px 0;
  transition: all 0.3s ease-in-out;
}
.quote-lozenge-button:hover {
  color: white;
  background-color: #444;
}