
/*Container*/
.box-wrapper {
    max-width: 1494px;
    margin: 0 auto;
    padding: 0 16px;
}

/*Color*/
.text-h-c {
    color: #526074;
}

.text-c-xl {
   color: #232C39;
}

.text-c-s-xl {
   color: #526074;
}
.text-c-a-xl {
   color: #475569;
}
.text-c-a-s-xl {
   color: #2D3745;
}

.bg-color-blue {
    background: #EBF2FA;
}

/* Button */
.btn_primary_bg {
    display: flex;
    text-decoration: none;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    border-radius: 30px;
    background: #1E55FB;
    padding: 16px 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    transition: all 0.3s ease;
    align-items: center;
    gap: 12px;
}
.btn_primary_bg:visited {
    color: #fff!important;
}
.btn_primary_bg:link {
    color: #fff!important;
}
.btn_primary_bg:hover {
    background: #2249BD;
}
/*  */
.btn_micro {
    border-radius: 14px;
    border: 1px solid #1E55FB;
    background: #FFF;
    padding: 3px 10px;
    color: #101E4D;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease;
    gap: 4px;
}
.btn_micro:visited {
    color: #101E4D;
}
.btn_micro:hover {
    color: #101E4D;
	background: #ECF5FE;
}
.btn_micro:hover svg path{
    fill: #1E55FB;
}
/*  */
.btn_tetriary {
    border-radius: 24px;
    background: #232C39;
    width: fit-content;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
    color: #FFF;
    font-size: 16px;
    font-weight: 550;
    line-height: 24px;
	transition: all 0.3s ease;
}

.btn_tetriary:hover {
	background: #3A4758
}
	
/*  */
.btn_primary_bg.middle {
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 550;
    line-height: 24px;
    gap: 8px;
}
/*  */
.hero-default__button_a {
    background: #004cff;
    border-radius: 30px;
    padding: 14px 28px 14px;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    height: 56px;
    transition: all 0.3s ease;
    min-width: 148px;
}
.hero-default__button_b {
    background: #004cff;
    border-radius: 30px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease;
}
.hero-default__button_c {
    position: absolute;
    right: 48px;
    top: 0;
	transition: all 0.3s ease;
}

.btn_extra {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 56px;
	position: relative;
	min-width: 220px;
}
.btn_extra:hover .hero-default__button_a{
	background: #2249BD;
}	
.btn_extra:hover .hero-default__button_b{
	background: #2249BD;
}
.hero-default__button_c svg path {
	transition: all 0.3s ease;
}
.btn_extra:hover .hero-default__button_c svg path {
	fill: #2249BD;
}
.btn_extra:visited {
	color: #FFF;
}
/* .hero-default__button {
	position: relative;
} */
/* .hero-default__button:after {
	content: url(/wp-content/uploads/2025/12/hero_btn_layer_.svg);
	position: absolute;
	right: 28px;
	top: 0;
	height: 60px;
} */

/*  */

.btn_link_arrow {
    color: #2D3745;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-decoration-line: underline;
	display: flex;
    align-items: center;
    gap: 12px;
	transition: all 0.3s ease;
	 width: fit-content;
}
.btn_link_arrow:visited {
    color: #2D3745;
}
.btn_link_arrow:hover {
    color: #1E55FB;
}
.btn_link_arrow svg path{
    transition: all 0.3s ease;
}
.btn_link_arrow:hover svg path{
    fill: #1E55FB;
}

/*  */
.btn-serv_csr:visited {
    color: #2D3745;
}
.btn-serv_csr {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    border: 1px solid rgba(162, 184, 211, 0.30);
    padding: 8px 16px;
    text-decoration: none;
    color: #2D3745;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s ease;
}

.btn-serv_csr:hover {
    border: 1px solid rgba(162, 184, 211, 0.30);
    background: rgba(162, 184, 211, 0.15);
    color: #1E55FB;
}
.btn-serv_csr svg path {
    transition: all 0.3s ease;
}

.btn-serv_csr:hover svg path {
    fill: #1E55FB;
}



@media screen and (max-width: 768px) {	
	.btn_extra {
		justify-content: left;
		min-width: inherit;
	}
	.hero-default__button svg {
		display:none;
	}
	.hero-default__button_b {
		display: none;
	}
	.hero-default__button_c {
		display: none;
	}
	.hero-default__button_a {
        height: 60px;
        padding: 16px 24px;
		width: inherit;
    }

}
@media screen and (max-width: 650px) {	
    .hero-default__button {
        gap: 12px;
        background: #004cff;
        border-radius: 30px;
        justify-content: center;
		padding: 16px 24px;
		width: 100%;
    }
	.hero-default__button svg {
        display: block;
    }
	.hero-default__button {
		gap: 12px;
	}
    .hero-default__button_a {
        height: auto;
        padding: 0;
        width: fit-content;
		min-width: inherit;
    }
	.hero-default__button_b {
        display: flex;
		padding: 0px;
    }
	.hero-default__button:hover {
		background: #2249BD;
	}
}

/*H1-H6 size*/
.text-1xl {
    font-size: 3.75rem;
    line-height: 4.5rem;
}
.text-2xl-a {
    font-size: 2.25rem;
    line-height: 3rem;
}
.text-2xl {
    font-size: 2rem;
    line-height: 2.67rem;
}
.text-2xl-b {
    font-size: 3rem;
    line-height: 3.75rem;
}
.text-4xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
/*Sub size*/
.text-sxl {
    font-size: 1.5rem;
    line-height: 2.25rem;
}

.text-p {
	font-size: 1rem;
	line-height: 1.55rem;
}
    



/*Margin*/
.mb-92 {
    margin-bottom: 5.75rem;   /* 56 / 16 */
}
.mb-60 {
    margin-bottom: 3.75rem;   /* 56 / 16 */
}
.mb-56 {
    margin-bottom: 3.5rem;   /* 56 / 16 */
}
.mb-48 {
    margin-bottom: 3rem;     /* 32 / 16 */
}
.mb-32 {
    margin-bottom: 2rem;     /* 32 / 16 */
}
.mb-28 {
    margin-bottom: 1.75rem;  /* 28 / 16 */
}
.mb-24 {
    margin-bottom: 1.5rem;  /* 28 / 16 */
}
.mb-12 {
    margin-bottom: 0.75rem;     /* 12 / 12 */
}
.mb-0 {
    margin-bottom: 0rem;     /* 0 / 0 */
}

.mt-160 {
	margin-top: 10rem; /*160px */
}
.mt-92 {
    margin-top: 5.75rem;   /* 56 / 16 */
}
.mt-28 {
    margin-top: 1.75rem;     /* 28 / 16 */
}
.mt-0 {
    margin-top: 0rem;
}

.mr-60 {
    margin-right: 3.75rem;   /* 60 / 16 */
}

.m-0 {
    margin: 0rem;   /* 60 / 16 */
}

/*Padding*/
.pb-92 {
    padding-bottom: 5.75rem;   /* 56 / 16 */
}
.pb-32 {
    padding-bottom: 2rem;     /* 32 / 16 */
}
.pb-28 {
    padding-bottom: 1.75rem;  /* 28 / 16 */
}
.pb-0 {
    padding-bottom: 0rem;
}
.pt-160 {
    padding-top: 10rem;   /* 56 / 16 */
}
.pt-92 {
    padding-top: 5.75rem;   /* 56 / 16 */
}

.pt-56 {
    padding-top: 3.5rem;   /* 56 / 16 */
}
.pt-28 {
    padding-top: 1.75rem;     /* 28 / 16 */
}
.pt-0 {
    padding-top: 0rem;
}

/*Font weight*/
.fw-600 {
    font-weight: 600;
}
.fw-550 {
    font-weight: 550;
}
.fw-400 {
    font-weight: 400;
}
   
/* TITLE BOX */
/* BASE */
.uni-header-wrapper {
    max-width: 792px;
    margin: 0 auto 68px;
}
.uni-header-wrapper.uni-center {
	text-align:center;
}
.uni-header-wrapper.uni-center.white {
    max-width: 720px;
    margin: 0 auto 68px;
}

.uni-header-wrapper.colm {
    max-width: inherit;
    margin: inherit;
}
.uni-header-wrapper-horiz {
    margin-bottom: 24px;
}
.uni-header-text.uni-header-text--top {
    color: #0080CE;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
}
.uni-header-text.uni-header-text--top.white {
    color: #fff;
}
.uni-header-text.uni-header-text--top.blue {
    color: #DFF1FF;
}
.uni-header-text.uni-header-text--top.wblue {
    color: #EFFAFF;
}
.uni-header-text.uni-header-text--sub.white {
    color: #fff;
}
.uni-header-text.uni-header-text--title {
    color: #232C39;
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
    text-transform: inherit;
}
.uni-header-text.uni-header-text--title.white {
    color: #fff;
}
.uni-header-text.uni-header-text--sub {
    color: #526074;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
}
/* BASE */
/* HORIZ */
.uni-header-wrapper.horiz {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
	max-width: inherit;
}
.uni-header-wrapper.colm{
	margin-bottom: 48px;
}

.uni-header-wrapper.horiz .uni-header-wrapper-horiz {
    margin-bottom: 0px;
    max-width: 720px;
}
.uni-header-text.uni-header-text--sub.horiz {
    max-width: 620px;
    flex: 0 0 43%;
}

@media screen and (max-width: 1650px) {
    .uni-header-text.uni-header-text--title {
        font-size: 44px;
        line-height: 56px;
    }
	.uni-header-wrapper.horiz .uni-header-wrapper-horiz {
		max-width: 588px;
	}
	.uni-header-text.uni-header-text--sub.horiz {
		max-width: 486px;
	}
	.uni-header-text.uni-header-text--sub {
		font-size: 18px;
		line-height: 28px;
	}
	/* 	 */
	.box-wrapper {
		max-width: 1232px;
	}
	/* 	 */
	.text-1xl {
		font-size: 3.5rem;
		line-height: 4.25rem;
	}
}

@media screen and (max-width: 1264px) {
    .uni-header-text.uni-header-text--title {
        font-size: 36px;
        line-height: 48px;
    }
		/* 	 */
	.box-wrapper {
		max-width: 926px;
	}
	/* 	 */
	.text-1xl {
        font-size: 2.75rem;
        line-height: 3.5rem;
    }
	.text-sxl {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
}


@media screen and (max-width: 958px) {
	.box-wrapper {
		max-width: 722px;
	}
	/* 	 */

}

@media screen and (max-width: 768px) {
	.text-1xl {
        font-size: 2.25rem;
        line-height: 3rem;
    }
	.text-2xl-b {
		font-size: 1.75rem;
		line-height: 2.5rem;
	}
	.text-2xl {
		font-size: 1.75rem;
		line-height: 2.5rem;
	}
	.text-4xl {
		font-size: 1.125rem;
		line-height: 1.75rem;
	}
	.pt-92 {
		padding-top: 3.75rem;
	}
	.pb-92 {
		padding-bottom: 3.75rem;
	}
	.mb-92 {
		margin-bottom: 5rem;
	}
	.mb-60 {
		margin-bottom: 2.5rem;
	}
	.mb-48 {
		margin-bottom: 2.5rem;
	}
	.mb-32 {
		margin-bottom: 1.25rem;
	}
	.mt-160 {
		margin-top: 7.5rem;
	}
	.pt-160 {
		padding-top: 7.5rem;
	}

}

@media screen and (max-width: 680px) {
	.uni-header-text.uni-header-text--title {
		font-size: 28px;
		line-height: 40px;
		margin-bottom: 12px;
	}
	.uni-header-wrapper.horiz {
		flex-wrap: wrap;
	}
	.uni-header-text.uni-header-text--sub.horiz {
		max-width: inherit;
		flex: 0 0 100%;
	}
	.uni-header-wrapper {
		margin-bottom: 40px;
	}
	.uni-header-wrapper.uni-center.white{
		margin-bottom: 40px;
	}
	.uni-header-wrapper.colm{
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 360px) {

}