
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.oes-services-box {
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 20px 24px;
}

.oes-services-wraper .card-title {
    color: #1C0F13;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.hdg_subtitle {
   color:  #374151;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.oes-services-wraper .card-text {
color:  #6B7280;
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}
.oes-toggle-btn{
    background-color: #fff;
    display: flex;
    padding: 6px 12px 6px 16px;
    align-items: center;
    gap: 6px;
    border: 1px solid #1C0F13;
}
.oes-toggle-btn span{
    color:  #1C0F13;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}
.oes-toggle-btn .explore-text {
    display: inline-block; /* Hoặc inline */
    
}
.oes-toggle-btn .collapse-text {
    display: none;
}


.oes-toggle-btn {
    transition: all 0.25s ease;
}

.oes-services-section .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    margin-top: 8px;
    margin-bottom: 16px;
    background-color: #fff;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.oes-services-section .right-section {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.oes-services-section .content {
    display: none;
    color:#6B7280;
    padding: 24px 0px;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease; 
}
.oes-services-section .content.show {
    position: relative;
    display: block;
    max-height: 300px; 
    height: auto;
    margin-top: 0px;
    padding: 0px;
}
.oes-service-card .short_expert,
.oes-service-card .short_expert a:link {
     font-family: "Poppins",sans-serif;
    font-size: 16px;
}
.oes-service-card .short_expert   {
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word; 
    word-break: break-word;
    

    color: #374151;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    
}
.oes-service-card .short_expert a:visited,
.oes-service-card .short_expert a:link {
    color: #E4B946;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.oes-service-card {
    position: relative;
    overflow: visible; 
}
.oes-service-card  img {
    border: 0;
}

.oes-service-card .oes-content {
    position: relative;
    padding: 0px;
    transition: all .25s ease;
    z-index: 30;
    visibility: hidden;
    display: none;
}
.oes-service-card .oes-services-box .oes-content-expert,
.oes-service-card .oes-services-box .oes-content {
    color: #374151;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}

/* Mặc định cho mọi nội dung tóm tắt và chi tiết: */
.oes-service-card .oes-content-expert,
.oes-service-card .oes-content {
    transition: all 0.3s ease-in-out;
    /* Có thể thêm opacity: 0; và max-height: 0; cho hiệu ứng đẹp hơn */
}

/* 1. Class để ẩn nội dung */
.oes-service-card .oes-content-expert.hidden,
.oes-service-card .oes-content.hidden {
    display: none !important; 
}

.oes-service-card .oes-content-expert.show,
.oes-service-card .oes-content.show {
    display: block !important; 
    visibility: visible; opacity: 1;
}
.oes-services-box .oes-services-short {
    color: #6B7280;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
}

.oes-services-section .arrow {
    width:10px;
    height: 10px;
    display: inline-block;
    background-image: url('../images/icon_off_svg.svg');
    background-size: cover;
    transition: all .25s ease;
}

.oes-services-section .arrow.open {
   transform: rotate(180deg);
}
