html{
    scroll-behavior:smooth;
}

body{
    color:#4A5568;
    background:#FCFAF7;
}
body.blog, body.archive.category{margin-top:76px;}
img{
    width:100%;
    display:block;
}
a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1440px;
    margin:auto;
    padding:0 40px;
}
.wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.grid2 {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 2%;
}

/*==================================================
COLORS
==================================================*/
:root{
    --blue:#192B4F;
    --gold:#D59A2A;
    --bg:#F7F3EC;
    --text:#4A5568;
    --border:#E6DCCB;
}
/*==================
Blog listing page
==============*/
.blog-hero{grid-template-columns:49.19% auto; gap:20px; height:100%; padding:32px 0 ;}
.blog-hero a{display:block;}
.blog-hero img{
  object-fit:cover;
  -o-object-fit:cover;
  object-position:top;
  border-radius:12px;
  height:350px;
}
.modern-tech .systems h2{padding:8px 0px 0px 0px;}
/* right part */
.blog-hero .hero-content{
	padding:0 36px 0 0;
	height:100%;
	display:flex; flex-direction:column; justify-content:center; align-items:flex-start; gap:8px;
}
.blog-category .blog-cat-name{
	font-family:'Inter',sans-serif; font-weight:600;
	font-size:14px; line-height:130%;
	text-transform:uppercase;
	color:#7612FA;
}
.blog-hero .hero-content h1{margin:0; font-size:36px; line-height:46px;}
.blog-hero .hero-content h2 a{color:#090C1d;}
.blog-hero .hero-content p{font-size:16px; line-height:125%; margin-bottom:24px;}
.blog-excerpt{font-size:16px; line-height:130%; text-align:left; padding-top:16px;}
.featuredThumb{border-radius:12px; padding:8px; border:1px solid #e5e5e5;}
.entry-title .featuredThumb img{border-radius:10px;}
.categoryName{padding:8px 0 0 0;}
.postMeta{
	color: #848484;
	font-size:14px; line-height:120%; /*font-weight:600;*/
	display:flex; gap:13px; align-items:center; flex-wrap:wrap;
	width:100%;
}
.postMeta .author{display:flex; align-items:center; gap:5px;}
.postMeta .author img{width:16px; height:16px; border-radius:50px;}
.postMeta .author a{color: #6271FF;}
.postMeta svg{fill: #a6a6a6;}
.postMeta .postDate{color: #848484;}
.postMeta .posted-on{gap:5px;}
.postMeta .posted-on a{color: #848484;}
.postMeta .updated-on{gap:5px;}
.postMeta .updated-on a{color: #848484;}
.postMeta .reading-time{gap:5px;}

/* all blogs style */
.blog-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; padding-top:28px;}
.blog-grid-item{
	background-color:#fff;
	border-radius:16px; border:1px solid #e5e5e5;
	padding:16px;
}
.blog-featured-image img{
	width:100%; height:auto;
	object-fit:cover;
	-o-object-fit:cover;
	object-position:center;
	border-radius:12px 12px 0 0; border:1px solid #faf0fc;
}
.blog-content{padding-top:24px;}
.title-clamp{
	color: #090c1d;
	display: -webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
	font-size:21px; line-height:1.4em;
	max-height:80px;
	padding:16px 0 24px 0;/*margin-bottom:16px;*/
}

.blog-flex-container{display:flex; flex-direction:column;}
.blog-featured-image{order:2; overflow:hidden; height:270px;}
.blog-content{order:1;}
.breadcrumb{
	display:block;
	padding:32px 0 0 0;
	color:#090C1D;	
	font-size:18px; line-height:120%;
	font-family:'Inter',sans-serif;
	font-weight:500;
	cursor:context-menu;
	margin-top:76px;
}
.breadcrumb a{
	color:#090C1D;
	font-size:16px; line-height:120%;
	font-family:'Inter',sans-serif; font-weight:500;
	margin:0;
}
.breadcrumb a:hover{text-decoration:underline;}
.breadcrumb span{color:#646464;}
.breadcrumb .wrapper{gap:10px;}
@media (min-width: 768px)
{
    .blog-flex-container{flex-direction:column;}
    .blog-featured-image{order:1;}
    .blog-content{order:2;}
}

.custom-pagination{
    display:flex; justify-content:center; gap:16px;
    list-style: none;
    padding:64px 0;
}
.custom-pagination li{display:inline-block;}
.custom-pagination li a, .custom-pagination li span{
    padding:8px 14px;
    text-decoration:none;
    border:1px solid #ccc; border-radius:4px;
    color:#333;
	font-size:16px; font-weight:600;    
}
.custom-pagination li.active span{
    background:#181B34;
    color:white;
    border-color:#181B34;
}

.custom-pagination li.disabled span {
    color: #999;
    border-color: #eee;
    cursor: not-allowed;
}
/* blog contents */
.box-low-cost{
	width: 882px;
	background: #FAF6FF;
	border: 2px solid #C7D2FE;
	border-radius: 16px;
	margin: 0px auto;
	padding: 24px;
	height: max-content;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start;
	gap:24px;
}
.icon-logo-box{
	width:200px;
	height: 55.93px;
	margin: 0px auto;
	display:flex;
	justify-content:center;
	align-items:center;
}
.icon-logo-box img{width:100%;height:max-content;}
.box-low-cost h2{
	color: #090C1D;
	font-size: 36px;
	line-height: 140%;
	font-weight: 700;
	font-family:'Inter',sans-serif;
	text-align:center;
}
.box-low-cost p{
	color: #090C1D;
	font-size: 24px;
	line-height: 140%;
	font-weight: 500;
	text-align: center;
	max-width: 594px;
	font-family:'Inter',sans-serif;
}
.box-low-cost .button{
	width: 680px;
	height: 64px;
	background: linear-gradient(92.22deg, #7612FA 12.78%, #CA44FA 60.37%, #FA12E3 100.02%);
	border-radius: 8px;
	padding: 10px 20px;
	color: #FFFFFF;
	font-size: 24px;
	line-height: 142%;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family:'Inter',sans-serif;
}
.box-low-cost label{
	color: #373737;
	font-size: 18px;
	line-height: 120%;
	font-weight: 500;
	font-family:'Inter',sans-serif;
}
.cards-blog-info{
	width:882px;
	margin:0px auto;
}
.cards-blog-info ul{flex-direction:column;gap:36px;align-items:flex-start;}
.cards-blog-info ul .card-cart{
	width: 800px;
	height:max-content;
	border: 2px solid #C7D2FE;
	border-radius: 8px;
}
.card-head-info{
	background: linear-gradient(219.84deg, #EAECFF 39.82%, #F6ECFC 126.01%);
	padding: 9px 16px;
	border-radius: 8px 8px 0px 0px;
	gap: 8px;
}
.card-head-icons{
	width:24px;height:24px;
	background: linear-gradient(90.28deg, #6271FF 0.34%, #275DF5 94.06%, #275DF5 133.63%);
	border-radius: 4px;
	display:flex;align-items:center;
	justify-content:center;
}
.card-head-info label{
	color: #090C1D;
	font-size: 16px;
	line-height: 160%;
	font-weight: 400;
	font-family:'Inter',sans-serif;
}
.writer-box{
	padding: 16px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 8px;
}
.writer-box p{
	color: #090C1D;
	font-size: 18px;
	line-height: 160%;
	font-weight: 400;
	font-family:'Inter',sans-serif;
}
.cards-blog-info ul .pro-tip{
	border-color: #FFF3BE;
}
.cards-blog-info ul .pro-tip .card-head-info{
	background:#FFFBEB;
}
.cards-blog-info ul .pro-tip .card-head-info .card-head-icons{
	background:#E5C640;
}
.cards-blog-info ul .sales-box-card{
	background: linear-gradient(180deg, #DFEEFB 0%, rgba(223, 238, 251, 0.5) 100%);
	padding: 16px;
	border-color: #BFDBFE;
}
.combind-box-texts{
	align-items: flex-start;
	gap: 8px;
}
.combind-box-texts .quotes-icons-card{
	width: 27px;
	height: 46px;
	display: flex;
	align-items: flex-start;
}
.combind-box-texts p{
	color: #090C1D;
	font-size: 18px;
	line-height: 160%;
	font-weight: 400;
}
.cards-blog-info ul .high-light-normal{
	background: #FAF5FF;
	border-color: #E9D5FF;
}
.key-boxs{padding:32px;}
.key-boxs h2{
	color: #090C1D;
	font-size: 24px;
	line-height: 160%;
	font-weight: 500;
	padding-bottom: 24px;
}
.learing-points{
	display:flex;
	flex-direction:column;
	gap:14px;
}

.learing-points li{
	color: #090C1D;
	font-size: 18px;
	line-height: 160%;
	font-weight: 400;
	list-style-type: disc;
	margin-left:20px;
}
/* table template */
.table-template{
	width: 882px;
	margin: 0px auto;
}
.table-head h2{
	color: #090C1D;
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	margin: 0px 0px 36px 0px;
}
.table-box {
	width: 100%;
	height: max-content;
	border: 2px solid #D19FE8;
	border-radius:12px;
	display:flex;
	flex-direction:column;
}
.table-head-lists{
	background: linear-gradient(91.64deg, #2B4FD8 -31.04%, #9A54DB 76.02%);
	border-radius: 10px 10px 0px 0px;
	width: 100%;
	display: table-caption;
}
.table-head-lists tr{
	display: grid;
	grid-template-columns: 25% 25% 30% 20%;
}
.table-head-lists tr th {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 160%;
	font-weight: 600;
	border: none;
	padding:12px;
	font-family:'Inter',sans-serif;
}
.table-data tr{
	display: grid;
	grid-template-columns: 25% 25% 30% 20%;
}
.table-data tr td{
	color: #333333;
	font-size: 15px;
	line-height: 160%;
	font-weight: 400;
	padding: 12px;
	border: none;
	border-right:1px solid #E7D1FB;
	font-family:'Inter',sans-serif;
}
.table-data tr td:last-child{border-right:none;}
.table-data tr .high-txt{
	color: #440385;
	font-weight: 500;
}
.audit-bg{background:#F6ECFC;border:1px solid #E7D1FB;border-left:none;border-right:none;}
.feat-texts{gap:6px;}
.feat-texts .scorm{width:15px;}
.tag-table-lists{display:none;}
.tab-tablet{display:none;}
.table-data .tab-info-updown{display:none;}
.btn-tabs-tablet{
	width: 24px;
	height: 24px;
	background: rgba(25, 102, 238, 0.12);
	border: 1px solid #E6EBF4;
	border-radius: 6px;
	justify-content: center;
	transition:all 0.3s;
}
.btn-tabs-tablet:hover{background: #7C52DB;border-color:#7C52DB;}
.btn-tabs-tablet:hover img{filter:brightness(6);}

/* table css */
.custom-table-wrapper{
	max-width:100%;
	overflow-x: auto;
	margin:25px 0; padding:0;
	border-radius:12px; border:2px solid #d19fe8;
	background:#FBF9FA;  
}
.custom-table{
	width:100%;
	border-collapse:collapse;
	font-family:Inter, Arial, sans-serif; font-size:15px;
	table-layout:fixed; /* 👈 force equal column width */
}
.custom-table thead{background:linear-gradient(219.84deg, #9A54DB 39.82%, #2B4FD8 126.01%); color:#fff;}
.custom-table th{padding:12px; text-align:left; font-weight:600; font-size:16px;}
.custom-table td{padding:10px 12px; border-bottom:1px solid #e5d9f2; color:#333; width:25%; vertical-align:top;}
.custom-table tbody tr:nth-child(even) td{background:#F6ECFC;}
.custom-table a{color:#440385; font-weight:500; text-decoration:none;}
.custom-table a:hover{color:#710695; text-decoration:underline;}


/* ==================
catlog Categpry listing page
=========== */

/*==================================================
HERO
==================================================*/
.aboutHero{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:600px;
    display:flex;
    align-items:center;
}
.aboutHero .hero-container{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}
.aboutHero .hero-content{width:52%;}
.aboutHero .hero-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:34px;
}
.aboutHero .hero-top .line{
    width:55px;
    height:1px;
    background:var(--gold);
}
.aboutHero .hero-top .small-title{
    color:var(--gold);
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:500;
}
.aboutHero h1{
    font-family: 'Playfair Display', serif;
    color:var(--blue);
    font-size:82px;
    line-height:1.08;
    font-weight:400;
    margin-bottom:32px;
}
.aboutHero h1 span{
    color:var(--gold);
    font-style:italic;
}
.aboutHero p{
    max-width:580px;
    color:var(--text);
    font-size:17px;
    line-height:1.9;
}

/*==================================================
SECTION SPACE
==================================================*/
section{
    position:relative;
}
.catalog-filter{
    padding:48px 0;
    background:#FCFAF7;
}
.catalog-section{
    padding-bottom:80px;
}

/*==================================================
FILTER TABS
==================================================*/

.filter-menu{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:32px;
}

.filter-menu li{
    position:relative;
    cursor:pointer;
    font-size:14px;
    font-weight:500;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#2B4471;
    padding-bottom:8px;
    transition:.35s;
	list-style-type: none;
}

.filter-menu li:hover{
    color:var(--gold);
}
.filter-menu li::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:1px;
    background:var(--gold);
    transition:.35s;
}
.filter-menu li:hover::after{width:100%;}
.filter-menu li.active{
    color:var(--gold);
    font-weight:600;
}
.filter-menu li.active::after{width:100%;}

/*==================================================
CATALOG GRID
==================================================*/
.catalog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}
.catalog-card{
    background:#fff;
    border:1px solid #ECECEC;
    transition:.4s;
    overflow:hidden;
	border-radius:12px;
}
.catalog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.18);
}

/*==================================================
IMAGE
==================================================*/
.card-image{
    overflow:hidden;
    background:#f3f3f3;
	width:100%; height:265px;
}
.card-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.6s;
	border-radius:12px 12px 0 0;
}
.catalog-card:hover img{transform:scale(1.04);}

/*==================================================
CONTENT
==================================================*/
.card-content{padding:16px 20px;}
.card-content h3{
	font-family: 'Playfair Display', serif;
    font-size:24px;
    line-height:1.2;
    font-weight:400;
    color:var(--blue);
    margin-bottom:16px;
}
.card-content p{
    font-size:16px;
    line-height:1.9;
    color:var(--text);
}

/*==================================================
CARD BUTTON
==================================================*/
.card-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:25px;
    color:var(--gold);
    font-weight:600;
    letter-spacing:.05em;
    text-transform:uppercase;
    font-size:13px;
    transition:.35s;
}
.card-btn:hover{
    letter-spacing:.12em;
}

/*==================================================
IMAGE RATIO
==================================================*/
.card-image{
    aspect-ratio:8/5;
}
.card-image img{
    height:100%;
}

/*==================================================
GRID SPACING
==================================================*/
.catalog-section{
    padding-top:20px;
    padding-bottom:100px;
}
.catalog-grid>.catalog-card:nth-child(n){
    animation:fadeUp .7s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*==================================================
CARD BORDER EFFECT
==================================================*/
.catalog-card{position:relative;}
.catalog-card::before{
    content:"";
    position:absolute; left:0; top:0;
    width:100%; height:4px;
    background:var(--gold);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}
.catalog-card:hover::before{transform:scaleX(1);}

/*==================================================
TEXT SELECTION
==================================================*/
.catalog-card h3::selection, .catalog-card p::selection{
    background:var(--gold);
    color:#fff;
}
/*==================================================
pagination
==================================================*/
.pagination{
	display: flex;
	align-content: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}
.pagination a{font-size:18px;}

/*==========================================
Large Desktop (1400px)
==========================================*/
@media (max-width:1400px){
	.container{max-width:1200px;}
	.hero h1{font-size:72px;}
	.hero-container{gap:60px;}
	.card-image img{ height:380px;}
}

/*==========================================
Laptop (1200px)
==========================================*/
@media (max-width:1200px){
	.container{padding:0 30px;}
	.hero{padding:120px 0 70px;}
	.hero h1{font-size:62px;}
	.hero p{font-size:16px;}
	.hero-container{gap:50px;}
	.catalog-grid{grid-template-columns:repeat(3,1fr); gap:30px;}
	.card-content{padding:22px;}
	.card-content h3{font-size:30px;}
	.card-image img{height:330px;}
}

/*==========================================
Tablet Landscape
==========================================*/
@media (max-width:992px){
	.hero{padding:100px 0 60px;}
	.hero-container{
		flex-direction:column;
		text-align:center;
		gap:60px;
	}
	.hero-content{width:100%; max-width:700px;}
	.hero-top{justify-content:center;}
	.hero h1{font-size:54px;}
	.hero p{max-width:100%;}
	.hero-image{width:80%;}
	.filter-menu{gap:20px;}
	.filter-menu li{font-size:13px;}
	.catalog-grid{
		grid-template-columns:repeat(2,1fr);
		gap:30px;
	}
	.card-image img{height:340px;}
	.cta h2{font-size:52px;}
}

/*==========================================
Tablet Portrait
==========================================*/
@media (max-width:768px){

.container{

    padding:0 20px;

}

.hero{

    padding:80px 0 50px;

}

.hero h1{

    font-size:46px;

    line-height:1.15;

}

.hero p{

    font-size:15px;

    line-height:1.8;

}

.hero-top{

    flex-wrap:wrap;

    gap:12px;

}

.hero-top .small-title{

    letter-spacing:2px;

    font-size:13px;

}

.hero-image{

    width:100%;

}

.catalog-filter{

    padding:32px 0;

}

.filter-menu{

    justify-content:center;

    gap:16px;

}

.filter-menu li{

    padding:8px 14px;

    border:1px solid #ddd;

    border-radius:30px;

}

.filter-menu li.active{

    background:#D59A2A;

    color:#fff;

    border-color:#D59A2A;

}

.filter-menu li.active::after{

    display:none;

}

.catalog-grid{

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.card-image img{

    height:280px;

}

.card-content{

    padding:18px;

}

.card-content h3{

    font-size:26px;

}

.card-content p{

    font-size:15px;

}

.page-btn{

    width:40px;

    height:40px;

}

}

/*==========================================
Mobile
==========================================*/

@media (max-width:576px){

.hero{

    padding:70px 0 40px;

}

.hero h1{

    font-size:36px;

}

.hero p{

    font-size:14px;

}

.hero-top{

    justify-content:flex-start;

}

.hero-image{

    width:100%;

}

.filter-menu{

    display:flex;

    overflow-x:auto;

    justify-content:flex-start;

    flex-wrap:nowrap;

    gap:12px;

    padding-bottom:10px;

    scrollbar-width:none;

}

.filter-menu::-webkit-scrollbar{

    display:none;

}

.filter-menu li{

    white-space:nowrap;

    flex-shrink:0;

    font-size:13px;

}

.catalog-grid{

    grid-template-columns:1fr;

    gap:25px;

}

.card-image img{

    height:360px;

}

.card-content{

    padding:20px;

}

.card-content h3{

    font-size:28px;

}

.card-content p{

    font-size:15px;

}

.cta{

    padding:70px 0;

    text-align:center;

}

.cta-small{

    justify-content:center;

}

.cta h2{

    font-size:38px;

}

.contact{

    flex-direction:column;

    gap:10px;

}

}

/*==========================================
Small Mobile
==========================================*/

@media (max-width:420px){

.hero{

    padding:60px 0 35px;

}

.container{

    padding:0 15px;

}

.hero h1{

    font-size:32px;

}

.hero p{

    font-size:14px;

}

.hero-top .small-title{

    font-size:12px;

    letter-spacing:1.5px;

}

.card-image img{

    height:300px;

}

.card-content h3{

    font-size:24px;

}

.card-content{

    padding:16px;

}

.pagination{

    gap:8px;

}

.page-btn{

    width:36px;

    height:36px;

    font-size:14px;

}

}

/* blog detail page */
.blogDetailWrapper.grid2{grid-template-columns:auto 250px;}
/* right CTA css */
.blogDetailWrapper .blogDetailRight{
	position:sticky; top:150px;
	width:250px; max-height:87vh; height:max-content;
	background:#fff;
	padding:24px 16px;
	background-color:#ffffff;
	border:2px solid #E0C798; border-radius:10px;
	overflow:hidden;
	font-family:'Inter', Arial, sans-serif;
}
.blogDetailRight .textwidget{text-align:center;}
.blogDetailRight img{width:133px; height:auto;}
.blogDetailRight .textwidget span{
	font-size:22px; line-height:132%;
	color:var(--primary-color);
	font-family:'Inter',sans-serif; font-weight:700;
	margin-bottom:16px;
}
.blogDetailRight p{
	color:var(--primary-color)
	font-size:14px; line-height:130%;
	font-family:'Inter',sans-serif; font-weight:400;
	margin-bottom:20px !important;
}
.blogDetailRight a{
	font-size:15px; line-height:40px;
	font-family:'Inter',sans-serif; font-weight:500;
	border-radius:5px;
	padding:0; margin:0;
	color:#fff !important;
	display:block !important;
	width:100%; height:48px;
	text-align:center;
	transition:all .2s ease-in-out;
	background:#192B4F;
	border:1px solid #192B4F;
}
.blogDetailRight a:hover{
	transform: scale(0.97);
	box-shadow:4px 4px 8px 0 #FFC26240;
}
.blogDetailRight .term{
	font-size:12px; font-weight:500; line-height:14.5px;
	margin-top:8px;
}

.post-navigation.grid2{padding:24px 0;}
.post-navigation.grid2 .next-post{display:flex; justify-content:flex-end;}

/* hide pfd name from blog details */
.wp-block-file a:not(.wp-block-file__button) {
    display: none;
}

/* category listing page */
.archive.category .hero-content{display:block; text-align:center; padding-top:24px;}
.archive.category .hero-content p{width:70%; margin:16px auto 0 auto;}
.archive.category .hero-image{display:none;}

/* blog details page >> related post */
.relatedPosts{margin-top:56px;}
.relatedPosts .relatedPostTitle{display:flex; gap:40px; align-items:center; justify-content:center;}
.relatedPosts .subtitle-line{height:3px; border-radius:20px;}
.relatedPosts h2{text-align:center;}

/* Blog details page left aprt */
.blogDetailLeft h2{font-weight:600; font-size:24px; line-height:150%;}
.blogDetailLeft h3{font-weight:600; font-size:20px; line-height:150%;}
.blogDetailLeft p{margin:0 0 .8em; font-size:17px; line-height:150%; color: #373737;}
.blogDetailLeft ol, .blogDetailLeft ul{margin:1rem 0; padding-left:1.7rem;}
.blogDetailLeft ul{list-style:disc;}
.blogDetailLeft ol{list-style:decimal;}
.blogDetailLeft li{margin:.4rem 0; line-height:1.6;}
.blogDetailLeft a{color: #0A2C70; text-decoration:underline; text-underline-offset:2px;}
