* {
  box-sizing: border-box;
}
.twd {
  font-family: IncFile, sans-serif;
  width: 100%;
  margin: 48px 0;
}

.twd .twd__wrapper {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}

.twd .twd__wrapper .twd__inner {
  width: 100%;
  max-width: 100%;
  padding: 40px 24px 24px 24px;
  background: #FFFFFF;
  box-shadow: 0px 24px 32px #ECECEC;
  border-radius: 4px;
  position: relative;
}

.twd .twd__wrapper .twd__inner:not(:nth-last-of-type(1)) {
  margin-bottom: 24px;
}

.twd .twd__wrapper .twd__inner .twd-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.twd .twd__wrapper .twd__inner .twd-content .twd-content__top h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #1D1D1D;
  margin: 0 0 16px 0;
}

.twd .twd-content .twd-content__top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 0 40px 24px;
  border-bottom: 1px solid #F4F4F4;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  z-index: 1;
}

.twd .twd-content .twd-content__top .twd-top__container {
  display: flex;
  flex-direction: column;
  max-width: 508px;
}

.twd .twd-content .twd-content__top .top-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FCE7D0;
  box-shadow: 0px 24px 32px rgba(219, 202, 188, 0.5);
  border-radius: 50px;
  margin-right: 48px;
  position: relative;
  top: 24px;
}

.twd .twd-content .twd-content__top .top-title {
  color: #4E4E4E;
  margin-bottom: 8px;
}

.twd .twd-content .twd-content__top .top-content {
  color: #FD8550;
}

.twd .twd-content .twd-content__top .top-content .top-content__item {
  display: flex;
  flex-direction: column;
}

.twd .twd-content .twd-content__top .top-content .top-content__item:not(:nth-last-of-type(1)) {
  margin-bottom: 12px;
}

.twd .twd-content .twd-content__top .top-content span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #4E4E4E;
}

.twd .twd-content .twd-content__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 64px;
  padding: 32px 24px;
  border-bottom: 1px solid #F4F4F4;
  margin-bottom: 24px;
}

.twd .twd-content .twd-content__bottom .bottom-content__item {
  display: flex;
  flex-direction: column;
}

.twd .twd-content .twd-content__bottom .bottom-content__item .bottom-item__heading {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #4E4E4E;
  margin-bottom: 8px;
}

.twd .twd-content .twd-content__bottom .bottom-content__item .bottom-item__content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4E4E4E;
}

.twd .twd-dropdown__wrapper {
  width: 100%;
  max-width: 100%;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 24px 80px;
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0px 24px 32px rgba(236, 236, 236, 0.502021);
  border-radius: 4px;
  height: 80px;
  overflow: hidden;
  cursor: pointer;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item.active {
  height: auto;
  z-index: 1;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-arrow {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 32px;
  height: 32px;
  background-color: #FEF6ED;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item.active .dropdown-arrow {
  transform: rotate(180deg);
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__title {
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1D;
  font-weight: 400;
  margin-top: 4px;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item.active .dropdown-item__title {
  font-weight: 700;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__content {
  padding-top: 32px;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__content .content-group:not(:nth-last-of-type(1)) {
  margin-bottom: 32px;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__content .content-group .content-group__heading {
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1D;
  font-weight: 700;
  margin-bottom: 4px;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__content .content-group .content-group__content {
  font-size: 16px;
  line-height: 24px;
  color: #4E4E4E;
  font-weight: 400;
  margin: 0;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__content .content-group .content-group__content p {
  font-size: 16px;
  line-height: 24px;
  color: #4E4E4E;
  font-weight: 400;
  margin: 0;
}

.twd .twd-dropdown__wrapper .twd-dropdown__item .dropdown-item__content .content-group .content-group__content p:not(:last-of-type(1)) {
  margin-bottom: 24px;
}

/* OVAL */
.twd .twd__wrapper .twd__inner .twd-inner__oval {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%
  max-width: 180px;
}

.twd .twd__wrapper .twd__inner .twd-inner__oval svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
}

/* MEDIA */
@media (min-width: 992px) and (max-width: 1199px) {
  .twd .twd-content .twd-content__top .top-icon {
    top: 0;
    margin-bottom: 24px;
  }
}

@media (max-width: 991px) {
  .twd .twd-content .twd-content__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
  .twd .twd-content .twd-content__top .top-icon {
    width: 64px;
    height: 64px;
    top: 0;
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .twd .twd-content .twd-content__bottom {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .twd .twd-content .twd-content__top .top-title {
    margin-right: 24px;
  }
  
  .twd .twd-content .twd-content__top {
    flex-direction: colum;
    padding: 0 0 24px 0;
  }
  
  .twd .twd-content .twd-content__bottom {
    padding: 24px 0;
  }
  
  .twd .twd__wrapper .twd__inner .twd-content .twd-content__top h3 {
    margin-bottom: 24px;
  }
  
  .twd .twd__wrapper .twd__inner {
    padding: 16px;
    border-radius: 8px;
  }
  .twd .twd__wrapper .twd__inner .twd-inner__oval {
    width: 100%;
    max-width: 120px;
  }
  .twd .twd__wrapper .twd__inner .twd-inner__oval svg {
    width: 120px;
    height: 120px;
  }
  .twd .twd-content .twd-content__bottom .bottom-content__item {
    flex-direction: row;
  }
  .twd .twd-content .twd-content__bottom .bottom-content__item .bottom-item__heading {
    width: 100%;
    max-width: 140px;
    margin: 0 8px 0 0;
  }
  .twd .twd-content .twd-content__bottom {
    gap: 24px;
  }
}