:root {
  --color-text: #313131;
  --color-text-2: #526fa7;
}
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-item {
  flex: 0 0 30%;
  margin-left: 40px;
}

.post {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
}

.post-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #000;
  text-decoration: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.image-post {
  width: 45%;
  height: 399px;
}
.post-content {
  width: 52%;
  height: 399px;
  font-size: 14px;
  margin-bottom: 30px;
  background-color: #ededed;
  padding: 36px;
}
.post-content p {
  height: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-content a {
  text-decoration: unset !important;
  font-weight: bold;
  color: var(--color-text-2);
  cursor: pointer;
}
.menu-item-demo {
  cursor: pointer;
}
.menu-list {
  list-style: none;
}
.menu-list li {
  transition: transform 0.3s ease;
}
.menu-list li:hover {
  transform: translateX(20px);
}
.component-menu-content {
  border-left: solid 1px #d9d9d9;
  padding-left: 20px;
}
.position-relative {
  position: relative;
}
.position-sticky {
  position: sticky !important;
  top: 50px;
}
.menu-title {
  display: flex;
  justify-content: center;
  padding: 10px;
  border: solid 1px #808080;
}
.post-content h2,
.menu-title h2 {
  color: var(--color-text) !important ;
  font-weight: bold;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  max-width: 999px;
  height: max-content;
  border-radius: 5px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 30px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.background-popup {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  max-height: 215px;
  z-index: 0;
}
.content-popup {
  margin-top: 216px;
  z-index: 99;
}
.close {
  z-index: 99;
}
.logo-popup {
  max-width: 200px;
  max-height: 160px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .post-content {
    width: 100%;
  }
  .image-post {
    width: 100%;
    height: 100%;
  }
  .background-popup {
    display: none;
  }
  .content-popup {
    margin-top: unset;
  }
}
.component-menu-list{
    z-index : 1;
}
.menu-list .fa-caret-right{
    display: none;
}
.menu-item-demo:hover .fa-caret-right{
     display: inline-block;
}
.menu-title .fa-angle-down{
    display: none !important;
}
.post-content p {
   text-align: justify;
}
@media (max-width: 767px) {

.component-menu-list{
        background-color: #ffffff;
        padding: 10px;
        border: solid 1px #808080;
         box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
    
.menu-list {
    display: none;
    min-width: 100%;
    z-index: 1;
    padding: 10px;
}
.menu-title {
    border: unset;
}
.position-sticky{
      position: sticky !important;
  top: 0px;
}
.menu-item-demo {
    border-top: solid 1px  rgba(0,0,0,0.2);
    padding: 5px;
}
.menu-title .fa-angle-down{
    display: inline-block !important;
}
.component-menu-content{
    border: unset;
}
}