.example-container {
  width: 100%;
}

.example-desc {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.example-desc-img {
  width: 27.5%;
}

.example-desc-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.example-desc-text {
  width: 70%;
  font-size: .875rem;
  color: #444;
  line-height: 1.75;
}

.example-list {
  display: flex;
  flex-direction: column;
}

.example-list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: .0625rem solid rgb(226, 226, 226);
  padding-top: .375rem;
  padding-bottom: .375rem;
  cursor: pointer;
}

.example-list-item:hover {
  border-bottom: .0625rem solid #0072b8;
}

.example-list-item:hover .example-list-item-name {
  color: #0072b8;
}

.example-list-item:hover .example-list-item-togger {
  border-top: .0625rem solid #0072b8;
  border-right: .0625rem solid #0072b8;
}

.example-list-item-icon {
  height: 100%;
  padding-top: .25rem;
  margin-right: .5rem;
}

.example-list-item-icon > img {
  height: 100%;
  object-fit: contain;
}

.example-list-item-name {
  flex: 1;
  font-size: 1rem;
}

.example-list-item-togger {
  width: .375rem;
  height: .375rem;
  border-top: .0625rem solid #242424;
  border-right: .0625rem solid #242424;
  transform: rotate(135deg);
}

.example-list-sub-item {
  display: none;
  width: 100%;
}

.example-list-sub-item > img {
  width: 100%;
}

@media screen and (max-width: 1920px) {
  .example-desc {
    margin-bottom: 40px;
  }
  
  .example-desc-text {
    font-size: 16px;
  }
  
  .example-list-item {
    border-bottom: 1px solid rgb(226, 226, 226);
    padding-top: 6px;
    padding-bottom: 6px;
  }
  
  .example-list-item:hover {
    border-bottom: 1px solid #0072b8;
  }
  
  .example-list-item:hover .example-list-item-togger {
    border-top: 1px solid #0072b8;
    border-right: 1px solid #0072b8;
  }
  
  .example-list-item-icon {
    padding-top: 4px;
    margin-right: 8px;
  }
  
  .example-list-item-name {
    font-size: 18px;
  }
  
  .example-list-item-togger {
    width: 6px;
    height: 6px;
    border-top: 1px solid #242424;
    border-right: 1px solid #242424;
  }
}