.row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.container {
    padding-right: var(--bs-gutter-x, 15px);
    padding-left: var(--bs-gutter-x, 15px);
}
.btn-ef {
	position:relative
}
.btn-ef  .border-effect {
	mask: linear-gradient(transparent,transparent),linear-gradient(#fff,#fff);
	border: 2.5px solid transparent;
	mask-composite: intersect!important;
	mask-clip: padding-box,border-box!important;
	border-radius: inherit;
	inset: 0;
	position: absolute;
	pointer-events: none;
	z-index: 5;
}

.btn-ef   .border-effect:after {
	content: "";
	offset-path: rect(0 auto auto 0 round 250px);
	offset-anchor: 69% 32%;
	background: linear-gradient(to left, white, var(--primary-color), transparent);
	animation-delay: -9s;
	animation: border-beam 4s infinite linear;
	width: 50px;
	aspect-ratio: 1/1;
	position: absolute
}

@keyframes border-beam {
	to {
		content: "";
		offset-distance: 100%
	}
}
img {
    max-width: 100%;
}

.title {
    font-size: 16px;
    text-align: center;
}

.title h2 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
}

.title h2::after,
.title h2::before {
    flex: 0 0 auto;
    content: "";
    background: url(../images/title-line.png) center / contain no-repeat;
    width: 150px;
    height: 10px;
}

.title h2::after {
    transform: scaleX(-1);
}

div#main-wrapper {
    overflow: hidden;
}

.home-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 0 0 44px;
    font-size: 16px;
}

.home-banner h1 {
    font-weight: 700;
    font-weight: Bold;
    font-size: 48px;
    color: var(--primary-color);
}

.banner-content * {
    margin-bottom: 15px;
}

.list_service {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 25px 52px;
    border-radius: 30px;
    margin-top: -40px;
    background: #fff;
    z-index: 2;
    gap: 10px;
    position: relative;
}

.list_service-item {
    display: flex;
    align-items: center;
    border: 1px solid #8998F7;
    border-radius: 50px;
    font-size: 18px;
    gap: 10px;
    padding: 0 10px;
}

.list_service-item img {
    width: 45px;
    /* flex: 1 0 auto; */
}

.list_service-item span {
    background: url(../images/icon_arrow.png) center / contain no-repeat;
    width: 30px;
    height: 30px;
}

.list_service-item:hover {
    background: var(--button-bg);
    background: url(../images/btn_bg\ 1.png) center / 111% no-repeat;
    color: #fff;
}

.home-content {
    padding: 60px 0;
}

.home-content-item {
    border: 3px solid #FFFFFF;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5FBFF 100%);
    color: #5B5B5B;
    border-radius: 25px;
    font-size: 16px;
    display: block;
}

.home-content-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
}

.home-content-item h3 {
    color: #5B5B5B;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1;
}

.home-content-item-desc {
    padding: 16px;
    text-align: center;
}

.home-content .title {
    margin-bottom: 60px;
}

.tab_content {
    padding: 40px 0;
}

.tab_content .title {
    margin-bottom: 40px;
}

.tab_content-tab {
    box-shadow: 2px 2px 5px 0px #4D4D4D1A;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    background-color: #fff;
    padding: 35px;
}

.tab_content-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tab_content-nav li {
    background: url(../images/btn_bg_3.png) center / 110% no-repeat;
    border-radius: 50px;
    height: 40px;
    min-width: 96px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tab_content-nav li.active {
    background: url(../images/btn_bg.png) center / 110% no-repeat;
    color: #fff;
}

.tab_content-item {
    font-size: 16px;
}

.tab_content-item * {
    margin-bottom: 15px;
}

.tab_content-item h3 {
    font-size: 32px;
    color: #5B5B5B;
}

.value-ss {
    padding: 50px 0;
}

.value-ss .title {
    margin-bottom: 40px;
}

.value-item {
    text-align: center;
    color: #5B5B5B;
    margin-bottom: 20px;
}

.value-item-num {
    background-color: #fff;
    aspect-ratio: 1/1;
    width: 100%;
    position: relative;
    border-radius: 100%;
    max-width: 120px;
    margin: 0 auto 20px;
}

.value-item-num::after {
    content: "";
    position: absolute;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    background: linear-gradient(180deg, #18D0F5 0%, #218CFF 100%);
    border-radius: 100%;
    left: -5px;
}

.value-item-num-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 100%;
    position: relative;
    aspect-ratio: 1/1;
    z-index: 2;
    background-color: #fff;
}

.value-item-num span {
    font-weight: 700;
    font-style: Bold;
    font-size: 52px;
    background: linear-gradient(180deg, #18D0F5 0%, #218CFF 100%);
    color: transparent;
    background-clip: text;
    line-height: 1;
}

.value-item-num b {
    font-weight: normal;
    font-size: 12px;
}

.value-item h3 {
    font-size: 16px;
    font-weight: bold;
}

.value-item p {
    font-size: 13px;
}

.service-list {
    margin-top: 40px;
}

.service-item {
    padding: 30px;
    padding-left: 130px;
    position: relative;
    box-shadow: 1px 2px 4px 0px #00000040;
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 10px;
}

.service-item h3 {
    margin-bottom: 10px
}

.service-item img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    object-position: bottom;
}

.fqas-ss {
    padding: 40px 0;
}

.fqas-ss .title {
    margin-bottom: 30px;
}

.fqas-item {
    background-color: #fff;
    box-shadow: 2px 2px 5px 0px #4D4D4D1A;
    border-radius: 30px;
    margin-bottom: 15px;
}

.fqas-item-title {
    padding: 18px 27px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
}

.fqas-item-title::after {
    content: url(../svg/arr-down.svg);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.fqas-item.active .fqas-item-title::after {
    transform: translateY(-50%) rotate(-180deg);
}

.fqas-item-desc {
    padding: 20px 50px;
    border-top: 1px solid #ffffff25;
    display: none;
}

.news_box {
    box-shadow: 2px 2px 5px 0px #4D4D4D1A;
    overflow: hidden;
    border-radius: 20px;
    color: #888888;
}

.news_box img {
    margin: 0 auto;
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: contain;
}

.news_box-body {
    padding: 18px;
    font-size: 16px;
}

.news_box-desc {
    font-size: 14px;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;

}

.news_box-bottom a {
    display: block;
    font-size: 14px;
    text-align: right;
    color: var(--primary-color);
}

.news_box-bottom a::after {
    content: "";
    background: url(../images/icon_arrow.png) center / contain no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: 4px;
}

.news-ss {
    padding: 40px 0;
}

.news-ss .title {
    margin-bottom: 30px;
}

.news-ss .row {
    --bs-gutter-x: 25px;
    --bs-gutter-y: 25px;
}

.footer-main {
    padding: 40px 0;
    background: #3B3B3B;
}

.footer-main-desc * {
    color: #fff;
    font-size: 16px;
}

.footer-main-desc *:not(:last-child) {
    margin-bottom: 20px;
}

.page-main-title h1 {
    text-align: center;
    padding-top: 50px;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.cat-banner {
    padding: 100px 0;
    text-align: center;
    font-size: 16px;
    background-repeat: no-repeat;
    background-size: cover;

}

.cat-banner-desc {
    max-width: 1056px;
    margin: 0 auto;
}

.cat-banner h1 {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.archive_main {
    padding: 50px 0;
}

.archive_main .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.re-ss {
    box-shadow: 2px 2px 5px 0px #4D4D4D1A;
    background-color: #fff;
    padding: 26px 22px;
    border-radius: 20px;
}

.re-ss h3 {
    font-size: 18px;
    font-weight: bold;
    color: #5B5B5B;
    margin-bottom: 15px;
}

.latest-posts-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
    margin-bottom: 10px;
}

.latest-posts-item img {
    width: 87px;
    height: 75px;
    object-fit: cover;
}

.latest-posts-item p {
    flex: 1 0 0;
    color: #5B5B5B;
}

@media screen and (min-width: 1200px) {

    .service-list .row {
        --bs-gutter-x: 80px;
        --bs-gutter-y: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .list_service {
        justify-content: center;
        padding: 25px;
    }

    .home-content .title {
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 768px) {
    .home-banner {
        padding: 40px 0;
        font-size: 14px;
    }

    .home-banner h1 {
        font-size: 24px;
    }

    .title {
        font-size: 14px;
    }

    .title h2 {
        font-size: 24px;
    }

    .title h2::after,
    .title h2::before {
        width: 50px;
        height: 10px;
    }

    .home-content {
        padding: 40px 0;
    }

    .tab_content-nav {
        justify-content: center;
        gap: 5px;
    }

    .tab_content-nav li {
        min-width: unset;
        padding: 0 10px;
        font-size: 11px;
    }

    .tab_content-tab {
        padding: 20px;
    }

    .tab_content-item {
        font-size: 12px;
    }

    .tab_content-item h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 575px) {
    .list_service {
        padding: 10px;
    }
	.list_service-item img{
		width: 23px;
	}
    .list_service-item {
        width: calc(50% - 5px);
        font-size: 14px;
        padding: 5px 10px;
        gap: 5px;
        justify-content: space-between;
    }
	.list_service-item span{
		width:20px
	}
	

    .value-item-num {
        max-width: 90px;
    }

    .value-item-num span {
        font-size: 30px;
    }

    .value-item h3 {
        font-size: 14px;
    }

    .service-item {
        padding: 20px;
        padding-left: 90px;
    }

    .service-item img {
        width: 50px;
        height: 50px
    }

    .fqas-item-title {
        padding: 15px 20px;
        padding-right: 42px;
        font-size: 14px;
    }

    .fqas-item-desc {
        padding: 20px 30px;
    }

    .page-main-title h1 {
        padding-top: 30px;
        font-size: 30px;
    }
}