body {
    font-family: 'Poppins', sans-serif;
}

.partner-wrap ul li img {
    height: 80px;
}

.bt-roadmap-item {
    width: 420px;
}

.contact-info-item .icon a {
    font-size: 28px;
    color: #FF9700;
}

.contact-info-wrap .row [class*="col-"]:nth-child(2) .icon a {
    color: #FF4581;
}

.contact-info-wrap .row [class*="col-"]:nth-child(3) .icon a {
    color: #00C4F4;
}

.bt-roadmap-wrap {
    justify-content: center;
}

.bt-roadmap_x::before {
    width: 100%;
}

.ul-content .ul-list li {
    font-size: 18px;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    padding-left: 15px;
}

.ul-content .ul-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.section-title .sub-title::after, .section-title .sub-title::before {
    left: -15px;
    width: 20px;
    height: 20px;
}

.section-title .sub-title::after {
    left: auto;
    right: -15px;
}

.project-list li {
    list-style: disc;
    line-height: initial;
}

.choose-item {
    min-height: 715px;
    padding: 30px 40px;
}

.slick-track {
    min-width: 1250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-slide {
    min-width: 400px;
}

.document-content .solution-list {
    font-size: 18px;
    color: #fff;
    position: relative;
    margin-bottom: 15px;
    padding-left: 15px;
}

.document-content .solution-list li {
    list-style: disc;
}

.document-content .solution-list li::before {
    content: none;
}

@media (max-width: 1199.98px) {
    .about-content, .socialfund {
        text-align: center;
    }
}

hr.part-line {
    border: 0;
    height: 2px;
    /* background-image: linear-gradient(to right, #f0f0f0, #00b9ff, #59d941, #f0f0f0); */
    background-image: linear-gradient(to right, #f0f0f0, #235ba8, #0d8c7d, #f0f0f0);
}

.list-wrap a {
    cursor: pointer;
}

.counter-icon {
    margin: 0 auto !important;
    font-size: 2em;
}

.counter-item, .counter-content .count {
    display: block;
    text-align: center;
    font-size: 35px;
}

.counter-content .count span{
    line-height: 1.5em;
    text-transform: none;
}

.logo-sroi img {
    width: 250px;
}

/*------------------ Progress Bar --------------------*/

.progress-bars {
    list-style: none;
    /* padding: 1.5em;
    color: #fff;
    background: #111;
    border-radius: 15px;
    width: 700px;
    box-shadow: 0 0 15px #050505;
    margin: 2em auto; */
}

.progress-bars h4 {
    font-size: 20px;
    color: #484848;
}

.progress-bars li {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar {
    width: 85%;
    height: 0.5em;
    background: #111;
    box-shadow:
        inset -1px -1px #5c5c5c,
        inset 1px 4px 8px #050505;
    border-radius: 10px;
    margin: 0 0 2em 0;
}

.progress {
    background: linear-gradient(90deg, #235ba8, #0d8c7d);
    width: 0;
    height: 100%;
    border-radius: inherit;
    position: relative;
    box-shadow: 0 0 3px #70adff;
}

.progress::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 100%;
    background: #fff;
    border-radius: inherit;
    box-shadow: 0 0 20px #fff;
    filter: blur(2px);
}

.percentage {
    font-weight: 700;
    margin-bottom: 2em;
    color: #484848;
    /* text-shadow: 0 0 5px #305e9c; */
}

@media screen and (max-width: 800px) {
    .progress-bars {
        width: 80%
    }

    ;
}

/*------------------ End Progress Bar --------------------*/

/*----------------- Slide Gallery -------------------------*/

.gallery-container {
    width: 100%;
    /* กำหนดความกว้างเป็น 100% */
    overflow: hidden;
    position: relative;
    height: 250px;
}

.gallery-slide {
    height: 100%; /* ให้ slide สูงเท่า container */
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide img {
    width: 33.33%;
    /* ปรับความกว้างเป็น 33.33% (100% / 3 ภาพ) */
    height: 100%; /* ให้รูปภาพสูงเท่า slide */
    flex-shrink: 0;
    padding: 0 2.5px;
    /* เพิ่ม padding ด้านซ้ายและขวา 2.5px */
    box-sizing: border-box;
    /* ทำให้ padding รวมอยู่ในขนาด width */
    object-fit: cover; /* ปรับขนาดภาพให้พอดีกับกรอบ โดยอาจมีการ crop */
    cursor: pointer;
}

.gallery-dots {
    text-align: center;
    margin-top: 10px;
}

.gallery-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 5px;
    cursor: pointer;
}

.gallery-dots .dot.active {
    background-color: #717171;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup img {
    max-width: 80%;
    max-height: 80%;
    position: absolute;
    /* เพิ่ม position: absolute; */
    top: 50%;
    /* กำหนด top เป็น 50% */
    left: 50%;
    /* กำหนด left เป็น 50% */
    transform: translate(-50%, -50%);
    /* เลื่อนภาพให้ตรงกลาง */
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

/*----------------- End Slide Gallery -------------------------*/