@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root{
    --header-height: 100px;
    --font-inter: "Inter", sans-serif;
    --font-roboto: "Roboto", sans-serif;
}

body {
    font-family: var(--font-inter) !important;
    background: #ffffff !important;
    color: #323232 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 1px !important;
}
h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
    font-family: var(--font-roboto) !important;
    font-weight: 600 !important;
    color: #323232 !important;
    line-height: 1.4 !important;
}
h1,.h1{
    font-size: 48px !important;
}
h2,.h2{
    font-size: 42px !important;
}
h3,.h3{
    font-size: 36px !important;
}
h4,.h4{
    font-size: 30px !important;
}
h5,.h5{
    font-size: 24px !important;
}
h6,.h6{
    font-size: 20px !important;
}
.container{
    width: 100%;
    max-width: 1310px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}

/* header */
.main-header{
    width: 100%;
    display: flex;
    background-color: #F9FAFB;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}
.main-header .main-header-inner{
    display: flex;
    height: 100px;
    gap: 20px;
}
.main-header .header-left{
    width: 100%;
    max-width: 244px;
    height: 100%;
    display: flex;
    flex-grow: 1;
}
.main-header .header-left a{
    display: flex;
    flex-grow: 1;
    align-items: center;
}
.main-header .header-left a img{
    max-width: 100%;
    height: auto;
}
.main-header .header-right{
    width: 100%;
    max-width: calc(100% - 244px - 20px);
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.main-header .header-work{
    display: flex;
    width: 100px;
}
.main-header .header-work img{
    max-width: 100%;
}
.main-header .header-nav{
    display: flex;
    width: 100%;
    max-width: calc(100% - 100px - 20px);
    justify-content: flex-end;
    gap: 40px;
}
.main-header .header-menu{
    display: flex;
}
.main-header .header-menu > ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-header .header-menu > ul > li{
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.main-header .header-menu ul li:hover{
    cursor: pointer;
}
.main-header .header-menu > ul > li > a{
    color: #696969;
    padding: 4px 10px;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}
.main-header .header-menu > ul > li > a::after{
    content: '';
    display: none;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563EB;
}
.main-header .header-menu > ul > li:hover > a::after{
    display: unset;
}
.main-header .header-menu > ul > li > ul{
    list-style: none;
    position: absolute;
    left: -99999px;
    /* left: 0px; */
    top: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    margin: 0;
    min-width: 260px;
    background-color: #ffffff;
    border-radius: 10px;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    border: 1px solid #e7e7e7;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 99;
}
.main-header .header-menu > ul > li:hover > ul{
    left: 0;
}
.main-header .header-menu > ul > li > ul > li{
    display: flex;
    padding: 7px 12px;
    margin: 0;
    list-style: none;
    border-left: 2px solid #2563EB;
}
.main-header .header-menu > ul > li > ul > li:hover{
    background-color: #fafafa;
}
.main-header .header-menu > ul > li > ul > li:hover > a{
    color: #2563EB;
}
.main-header .header-menu > ul > li > ul > li > a{
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 4px 10px 4px 4px;
    white-space: nowrap;
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
}
.main-header .header-menu > ul > li > ul > li > a span{
    width: 26px;
    height: 26px;
    display: flex;
}
.main-header .header-menu > ul > li > ul > li > a span img{
    max-width: 100%;
}
.main-header .header-menu > ul > li > ul > li:hover > a span img{
    filter: invert(32%) sepia(85%) saturate(2600%) hue-rotate(210deg);    
}
.main-header .header-cta{
    display: flex;
    align-items: center;
}
.main-header .header-cta a{
    background-color: #2563EB;
    border: 1px solid #2563EB;
    color: #ffffff;
    font-size: 15px;
    padding: 12px 10px;
    border-radius: 4px;
    box-shadow: 1px 1px 5px 0px #0000002E inset, 0px 1px 2px 0px #00000033;
    text-decoration: none;
}
.main-header .mobile-nav-wrap{
    display: none;
    align-items: center;
    justify-content: center;
}

/* Blog Banner */
.blog-banner{
    width: 100%;
    /* padding-top: calc(var(--header-height) + 10px); */
    padding-top: 80px;
}
.blog-banner .blog-banner-inner{
    width: 100%;
    display: flex;
    min-height: 154px;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.blog-banner .h1{
    margin: 0;
    text-align: center;
}

/* Blog List */
.blog-list{
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.blog-list .blog-list-inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 80px;
    border-bottom: 1px solid #323232;
}
.blog-list .blog-list-single{
    width: 100%;
    max-width: calc(50% - 20px);
    display: flex;
    border-radius: 12px;
    border: 0.2px solid #36609440;
    box-shadow: 0px 2px 4px 0px #0000002E, 0px 0px 2px 0px #00000029 inset;
    overflow: hidden;
}
.blog-list .blog-list-single-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #F9FAFB;
}
.blog-list .blog-list-single-thumb{
    display: flex;
    aspect-ratio: 605/367;
    border-bottom: 0.2px solid #36609440;
    box-shadow: 0px 2px 4px 0px #0000002E, 0px 0px 2px 0px #00000029 inset;
}
.blog-list .blog-list-single-thumb > a{
    display: flex;
    width: 100%;
}
.blog-list .blog-list-single-thumb a img{
    width: 100%;
    height: auto;
    aspect-ratio: 605/367;
    object-fit: cover;
    object-position: top;
}
.blog-list .blog-list-single-content{
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.blog-list .blog-list-single-meta{
    display: flex;
    gap: 10px;
    color: #475569;
}
.blog-list .blog-list-single-meta span{
    color: #475569;
}
.blog-list .blog-list-single-title{
    display: flex;
    padding-top: 14px;
}
.blog-list .blog-list-single-cta{
    display: flex;
    padding-top: 4px;
}
.blog-list .blog-list-single-cta a{
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-roboto) !important;
    font-size: 16px;
    color: #2563EB;
    border: 1px solid #2563EB;
    padding: 4px 12px;
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
}
.blog-list .blog-list-single-cta a:hover{
    transform: translateY(-1px);
}
.blog-list .blog-list-single-cta a span.icon{
    display: flex;
    width: 8.33px;
    height: 8.33px;
    background-image: url(../image/link-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
.blog-list .blog-list-pagination{
    width: 100%;
    display: flex;
    padding-top: 50px;
}
.blog-list .pagination{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.blog-list .pagination .prev,
.blog-list .pagination .next{
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-roboto) !important;
    font-size: 20px;
    color: #2563EB;
    border: 1px solid #2563EB;
    padding: 9px 12px;
    font-weight: 400;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
}
.blog-list .pagination .prev:hover,
.blog-list .pagination .next:hover{
    transform: translateY(-1px);
}
.blog-list .pagination .prev {
    display: flex;
    order: 1;
    position: relative;
    padding-left: 50px;
}
.blog-list .pagination .prev::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    top: calc(50% - 2px);
    left: 16px;
    border: 2px solid #2563EB;
    border-top: unset;
    border-right: unset;
    transform: rotate(45deg) translateY(-50%);
}
.blog-list .pagination .prev.desable{
    pointer-events: none;
    color: #323232;
    border-color: #323232;
    opacity: 0.5;
}
.blog-list .pagination .prev.desable::before{
    border-color: #323232;
}
.blog-list .pagination .next.desable{
    pointer-events: none;
    color: #323232;
    border-color: #323232;
    opacity: 0.5;
}
.blog-list .pagination .next.desable::before{
    border-color: #323232;
}
.blog-list .pagination .page-numbers-wrap{
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-grow: 1;
    order: 2;
}
.blog-list .pagination .next {
    display: flex;
    order: 3;
    position: relative;
    padding-right: 50px;
}
.blog-list .pagination .next::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    top: calc(50% - 2px);
    right: 26px;
    border: 2px solid #2563EB;
    border-bottom: unset;
    border-left: unset;
    transform: rotate(45deg) translateY(-50%);
}
.blog-list .pagination .page-numbers-wrap .page-numbers:not(.dots){
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-roboto) !important;
    font-size: 20px;
    color: #323232;
    border: 1px solid #323232;
    padding: 4px 10px;
    font-weight: 400;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.2;
}
.blog-list .pagination .page-numbers-wrap a.page-numbers:hover{
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-1px);
}
.blog-list .pagination .page-numbers-wrap .page-numbers.current{
    background-color: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
}
.blog-list .pagination .page-numbers-wrap .page-numbers.dots{
    font-size: 62px;
    line-height: 0;
    color: #D9D9D9;
    padding-top: 10px;
}

/* Blog - Talk To ERP Expert */
.talk-to-epm-expert{
}
.ttee{
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.ttee .ttee-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ttee .ttee-head{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.ttee .ttee-title{
    width: 100%;
    display: flex;
    justify-content: center;
}
.ttee .ttee-title span{
    color: #2563EB;
}
.ttee .ttee-sub-title{
    padding-top: 10px;
    color: #475569;
    text-align: center;
}
.ttee .ttee-body{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    gap: 30px;
}
.ttee .ttee-left{
    width: 100%;
    max-width: calc(100% - 512px - 30px);
    display: flex;
    flex-direction: column;
}
.ttee .ttee-left-list{
    width: 100%;
    display: flex;
}
.ttee .ttee-left-list ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.ttee .ttee-left-list ul li{
    display: flex;
    padding: 5px 0 5px 50px;
    margin: 0;
    list-style: none;
    position: relative;
}
.ttee .ttee-left-list ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-image: url(../image/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.ttee .ttee-left-label{
    padding-top: 70px;
    font-size: 22px;
    color: #475569;
}
.ttee .ttee-left-mail{
    padding-top: 6px;
}
.ttee .ttee-left-mail a{
    text-decoration: underline;
}

.ttee .ttee-right{
    width: 100%;
    max-width: 512px;
    display: flex;
    flex-direction: column;
}
.ttee .ttee-right-title{
    width: 100%;
    display: flex;
    justify-content: center;
}
.ttee .ttee-right-title span{
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 1px solid #666666;
}
.ttee .ttee-right-form{
    width: 100%;
    display: flex;
    padding-top: 34px;
}
.ttee .ttee-right-form form{
    width: 100%;
    display: flex;
}
.ttee .ttee-right-form-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px 0px;
}
.ttee .ttee-right-form-row{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 12px);
    margin-left: -6px;
    margin-right: -6px;
}
.ttee .ttee-right-form-cell{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 50%;
    padding-left: 6px;
    padding-right: 6px;
}
.ttee .ttee-right-form-cell .error{
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}
.ttee .ttee-right-form-cell.form-cell-6{
    max-width: 50%;
}
.ttee .ttee-right-form-cell.form-cell-12{
    max-width: 100%;
}
.ttee .ttee-right-form-cell input[type=text],
.ttee .ttee-right-form-cell input[type=email],
.ttee .ttee-right-form-cell textarea{
    width: 100%;
    border: 1px solid #47556940;
    border-radius: 4px;
    font-family: var(--font-roboto) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 12px;
}
.ttee .ttee-right-form-cell textarea{
    height: 145px;
}
.ttee .form-success-message{
    color: green;
    font-size: 14px;
}
.ttee .ttee-right-form-cell button{
    width: 100%;
    border: 1px solid #2563EB;
    background-color: #2563EB;
    color: #ffffff;
    box-shadow: 0px 2px 2px 0px #0000002E, -1px 1px 2px 0px #0000002E inset;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 11px 20px;
    margin-top: 10px;
    cursor: pointer;
    position: relative;
}
.ttee .ttee-right-form-cell button:hover{
    transform: translateY(-1px);
}
.ttee .ttee-right-form-cell button span.icon{
    background-image: url(../image/point-right.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 14px;
    display: inline;
}
.ttee .ttee-right-form-cell button .btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Blog Details Section */
.blog-details-section{}
.bds{
    width: 100%;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
}
.bds .bds-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.bds .bds-meta{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.bds .bds-date{
    font-size: 30px;
    color: #475569;
    line-height: 1;
}
.bds .bds-social-share{
    display: flex;
    gap: 20px;
}
.bds .bds-social-share a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #66666680;
}
.bds .bds-social-share a:hover{
    border-color: #2563EB;
}
.bds .bds-social-share a img{
    max-width: 50%;
}
.bds .bds-title{
    width: 100%;
    padding-top: 70px;
}
.bds .bds-title .h1{
    margin: 0;
}
.bds .bds-banner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    padding-top: 30px;
}
.bds .bds-banner-image{
    width: 100%;
    max-width: calc(65.44% - 25px);
}
.bds .bds-banner-image-wrap{
    width: 100%;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 12px 32px 0px #0F172A14;
}
.bds .bds-banner-image-wrap img{
    width: 100%;
    aspect-ratio: 818/552;
    object-fit: cover;
    object-position: top;
}
.bds .bds-table-of-contnet{
    display: flex;
    width: 100%;
    max-width: calc(34.56% - 25px);
    flex-grow: 1;
    border: 1px solid #2563EB33;
    padding: 20px 12px 20px 4px;
    border-radius: 4px;
    box-shadow: 0px 12px 32px 0px #0F172A14;
    max-height: 535.13px;
}
.bds .bds-table-of-contnet .table_contents{
}
.bds .bds-table-of-contnet .table_contents .counter-hierarchy{
    display: flex;
    flex-direction: column;
    padding-top: 0 !important;
    margin: 0 !important;
}
.bds .bds-table-of-contnet .ez-toc-title-container{
    color: #2563EB;
    font-weight: 700;
    padding-bottom: 14px;
}
.bds .bds-table-of-contnet nav{
    width: 100%;
    display: flex;
}
.bds .bds-table-of-contnet nav ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}
.bds .bds-table-of-contnet nav ul li{
    /* display: flex; */
    border-top: 1px solid #69696940;
}
.bds .bds-table-of-contnet nav ul li a{
    width: 100%;
    padding: 14px 16px;
    color: #2563EB !important;
    text-decoration: none !important;
}
.bds .bds-table-of-contnet nav ul li a:hover{
    color: #0e3c9e !important;
}
.bds .bds-content{
    padding-top: 40px;
    display: flex;
    flex-direction: column;
}
.bds .bds-content-inner{
    width: 100%;
}
.bds .bds-content .card{
    display: none !important;
}

.bds .bds-content h1,
.bds .bds-content h1 strong,
.bds .bds-content h1 b,
.bds .bds-content h2,
.bds .bds-content h2 strong,
.bds .bds-content h2 b,
.bds .bds-content h3,
.bds .bds-content h3 strong,
.bds .bds-content h3 b,
.bds .bds-content h4,
.bds .bds-content h4 strong,
.bds .bds-content h4 b,
.bds .bds-content h5,
.bds .bds-content h5 strong,
.bds .bds-content h5 b,
.bds .bds-content h6,
.bds .bds-content h6 strong,
.bds .bds-content h6 b{
    font-weight: 600;
    margin-bottom: 20px;
}
.bds .bds-content ul{
    list-style: none;
    padding: 10px 0 30px 0;
    margin: 0;
}
.bds .bds-content ul li{
    list-style: none;
    position: relative;
    padding: 10px 0 10px 56px;
    color: #323232;
}
.bds .bds-content ul li::before{
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url(../image/double-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bds .bds-content p{
    color: #475569;
    line-height: 1.7;
    /* margin-bottom: 20px; */
}
.bds .bds-content p:last-child{
    margin-bottom: 0;
}
.bds .bds-content img{
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

/* Footer */
footer.site-main-footer{
    width: 100%;
    padding-top: 48px;
}
footer .site-main-footer-top{
    border-top: 1px solid #e5e7eb;
    padding-bottom: 70px;
}
footer .footer-info{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
    padding-top: 80px;
    padding-bottom: 20px;
}
footer .footer-info-left{
    width: 100%;
    max-width: calc(100% - 750px - 30px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .footer-info-logo{
    display: flex;
    width: 100%;
}
footer .footer-info-logo a{
    display: flex;
}
footer .footer-info-logo a img{
    width: 244px;
    max-width: 100%;
}
footer .footer-info-logo-text p{
    font-size: 14px;
    color: #666666;
    font-weight: 400;
}
footer .footer-info-follow-us{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
footer .footer-info-follow-us .h6{
    font-size: 16px !important;
    text-decoration: underline;
    margin: 0;
}
footer .footer-info-follow-us ul{
    display: flex;
    list-style: none;
    gap: 7px;
    padding: 0;
    margin: 0;
}
footer .footer-info-follow-us ul li{
    list-style: none;
    display: flex;
}
footer .footer-info-follow-us ul li a{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #66666680;
    width: 24px;
    height: 24px;
}
footer .footer-info-follow-us ul li a:hover{
    transform: translateY(-1px);
}
footer .footer-info-follow-us ul li a img{
    max-width: 60%;
    max-height: 60%;
}
footer .footer-info-right{
    width: 100%;
    max-width: 750px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
footer .footer-address{
    width: 100%;
    max-width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
footer .footer-address .h5{
    font-size: 22px;
    margin: 0;
}
footer .footer-address p{
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
footer .footer-address a{
    color: #323232;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 10px;
}
footer .footer-address a:hover{
    text-decoration: underline;
}
footer .footer-links{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}
footer .footer-links-left{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: calc(100% - 850px - 30px);
}
footer .footer-links-contact{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}
footer .footer-links-contact .h5{
    font-size: 20px !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #323232;
    line-height: 1 !important;
    margin: 0;
}
footer .footer-links-contact ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .footer-links-contact ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
footer .footer-links-contact ul li a{
    color: #666666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
footer .footer-links-contact ul li a img{
    width: 15px;
}
footer .footer-links-right{
    width: 100%;
    max-width: 850px;
    display: flex;
    gap: 54px;
}
footer .footer-links-list{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
footer .footer-links-list .h5{
    font-size: 22px !important;
    font-weight: 500 !important;
    margin: 0;
}
footer .footer-links-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .footer-links-list ul li{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
footer .footer-links-list ul li a{
    color: #666666;
    font-size: 12px;
    font-weight: 400;
}
footer .footer-links-list ul li a:hover{
    text-decoration: none;
    color: #2563EB;
}
footer .site-main-footer-bottom{
    width: 100%;
    background-color: #2563EB;
}
footer .site-main-footer-bottom-inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 43px;
}
footer .site-main-footer-bottom-left p{
    color: #ffffff;
    font-size: 14px;
    font-weight: 300 !important;
    text-align: center;
    margin: 0;
}
footer .site-main-footer-bottom-right{
    display: flex;
}
footer .site-main-footer-bottom-right ul{
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
footer .site-main-footer-bottom-right ul li{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
}
footer .site-main-footer-bottom-right ul li::after{
    content: '';
    height: 100%;
    width: 1px;
    background-color: #fff;
    position: absolute;
    right: -10px;
}
footer .site-main-footer-bottom-right ul li:last-child::after{
    display: none;
}
footer .site-main-footer-bottom-right ul li a{
    display: flex;
    position: relative;
    font-size: 14px;
    font-weight: 300 !important;
    color: #ffffff;
    line-height: 1;
}