div.volets {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  div.volets {
    flex-wrap: wrap;
  }
}
div.volets div.left-nav {
  background-color: white;
  flex: 1;
  border-right: 1px solid var(--e-global-color-text);
  border-bottom: 1px solid var(--e-global-color-text);
}
@media screen and (max-width: 1024px) {
  div.volets div.left-nav {
    flex: 1 0 100%;
    border-right: 0;
    border-bottom: 1px solid var(--e-global-color-text);
  }
}
div.volets div.left-nav span {
  font-size: 14px;
  font-weight: 600;
  padding: 40px 20px;
}
@media screen and (max-width: 1024px) {
  div.volets div.left-nav span {
    padding: 20px;
  }
}
div.volets div.left-nav span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--e-global-color-text);
}
div.volets div.left-nav span svg {
  flex-shrink: 0;
}
div.volets div.left-nav span:last-child {
  border-bottom: 0;
}
div.volets div.left-nav span.active {
  background-color: var(--e-global-color-primary) !important;
  color: white;
}
div.volets div.left-nav span:hover {
  background-color: rgb(242.25, 242.25, 242.25);
}
div.volets div.right-volet {
  flex: 0 0 75%;
  padding: 10px 10px 10px 50px;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  div.volets div.right-volet {
    flex: 1 0 100%;
    padding: 20px;
  }
}
div.volets div.right-volet div.volet {
  height: 100%;
  display: none;
  gap: 20px;
  justify-content: space-between;
}
div.volets div.right-volet div.volet.active {
  display: flex;
}
@media screen and (max-width: 767px) {
  div.volets div.right-volet div.volet {
    flex-wrap: wrap;
  }
}
div.volets div.right-volet div.volet div.left-content {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  div.volets div.right-volet div.volet div.left-content {
    flex: 1 0 100%;
  }
}
div.volets div.right-volet div.volet div.left-content h3 {
  text-transform: uppercase;
  margin-bottom: 20px;
}
div.volets div.right-volet div.volet div.left-content div.description p {
  margin-bottom: 20px;
}
div.volets div.right-volet div.volet div.left-content div.description p:last-child {
  margin-bottom: 0;
}
div.volets div.right-volet div.volet div.left-content div.description ul {
  list-style: none;
  padding: 0;
}
div.volets div.right-volet div.volet div.left-content div.description ul li {
  display: flex;
  gap: 10px;
}
div.volets div.right-volet div.volet div.left-content div.description ul li:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.396' height='10.061' viewBox='0 0 10.396 10.061'%3E%3Cpath id='Path_1348' data-name='Path 1348' d='M16.4,11.03l-5.03,5.03V13.042H6V9.018h5.366V6Z' transform='translate(-6 -6)' fill='%231d1d1b'/%3E%3C/svg%3E%0A");
  display: block;
  width: 10px;
}
div.volets div.right-volet div.volet div.left-content div.description ul li {
  margin: 15px 0;
}
div.volets div.right-volet div.volet div.right-image {
  flex: 0 0 40%;
}
@media screen and (max-width: 767px) {
  div.volets div.right-volet div.volet div.right-image {
    flex: 1 0 100%;
  }
}
div.volets div.right-volet div.volet div.right-image div.img-sizer {
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  div.volets div.right-volet div.volet div.right-image div.img-sizer {
    padding-bottom: 62.5%;
  }
}
div.volets div.right-volet div.volet div.right-image div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
