/**
*	Theme Name: Bizness Capital
*	Theme URI:
*	Author: Ktech Solutions
*	Author URI: http://ktechsol.com
*	Description: Custom theme
*	Version: 1.0
*	Text Domain:  kts_theme
**/




a {
    color: inherit;
    text-decoration: inherit;
}
*{
    transition: 0.3s all;
}
a,
a:hover {
    text-decoration: none !important;
}

p {
    margin: 0 0 20px;
}

img {
    height: auto;
    max-width: 100%
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
	outline: 0 !important
}

input[type="checkbox"],
input[type="radio"] {
	width: auto !Important
}

.searchform {
	position: relative
}

.searchform input {
	border-radius: 30px;
	border: 1px solid #ccc;
	padding: 14px 20px;
	width: 100%;
}

.searchform button {
	border: 0px;
	background-color: transparent;
	font-size: 24px;
	position: absolute;
	top: 5px;
	right: 10px;
}

.not-found {
	margin: 100px 0;
}

.not-found p {
	margin-bottom: 30px;
}

/* Navbar */
.main-navigation {
	clear: both;
	position: relative;
}
ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0;
}
.nav-bar ul.nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    list-style-type: none;
}
ul#primary-menu li{
    position: relative;
}
ul#primary-menu li a {
    color: var(--foreground);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    display: block;
}
ul#primary-menu >li > a::after{
    content: '';
    width: 0;
    height: 2px;
    display: block;
    background-color: var(--primary);
    transition: 0.3s all;
    position: absolute;
}
ul#primary-menu >li.current-menu-item > a,
ul#primary-menu >li > a:hover{
    color: var(--primary);
}
ul#primary-menu >li.current-menu-item > a::after,
ul#primary-menu >li > a:hover::after{
    width: 100%;
}
.nav-menu li:hover > a,
.nav-menu li a:hover,
.nav-menu li:focus > a,
.nav-menu li a:focus {
	color: #000;
}

.nav-menu .sub-menu,
.nav-menu .children {
	background-color: #fff;
	border: 0px;
	border-top: 0;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

ul.sub-menu li {
    margin: 0px
}

ul#primary-menu ul.sub-menu li a {
    color: var(--secondary);
    padding: 15px;
    text-align: left;
}

ul#primary-menu ul.sub-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul#primary-menu ul.sub-menu li a:hover {
    background: var(--secondary);
    color: #fff;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: #ffffff;
	margin: 0;
	width: 200px;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #ffffff;
}

.closebtn,
.openmenu,
.menuToggle,
.mobilesubmenu {
	display: none;
}

/*  Alignment  */
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
    text-align: left;
    margin: 16px 0 40px !important;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	padding: 0;
}

.wp-caption p.wp-caption-text {
    margin: 0;
    padding: 8px 0 0;
    font-family: Lato;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #626262;
}

/* Slider */
.slick-list.draggable {
	padding: 0px !important;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.nopd {
    padding: 0 !Important
}

.fw-container-fluid.nopd .fw-row {
    margin: 0;
}

/* Pagination  */
.pagination {
    display: inline-block;
    margin: 30px 0 0;
    width: 100%;
}

.sub-pagenation-div li {
	display: inline-block;
    border-radius: 4px;
    width: auto;
}

.sub-pagenation-div li a {
    border-radius: 4px;
    color: #333333;
    display: block;
    padding: 10px 20px;
}

.sub-pagenation-div li.current a,
.sub-pagenation-div li:hover a {
    background: #394e8c;
    color: #ffffff;
}
.background-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.close_menu_icon{
    display: none;
}
/* MAIN CSS  */
.container::after,
.blogdetail::after,
.fw-container::after,
.entry-content::after {
	content: '';
	clear: both;
	display: block;
}

.blogdetail {
	display: block;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

/* site-wide */
.container-large {
    max-width: 1400px !important;
    padding: 0 32px;
    margin-left: auto;
    margin-right: auto;
}
.container{
    max-width: 1280px !important;
    padding: 0 32px;
}
div#wrapper {
    max-width: 1440px;
    max-width: 1920px;
    margin: 0 auto;
}

.site_content h1{
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: -1.8px;
}
.site_content h1 strong,
.site_content h1 b{
    color: #83b4ff;
    font-weight: 700;
}
.site_content h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 24px;
    color: #83b4ff;
}
.site_content.h2_sm h2{
    font-size: 36px;
    line-height: 40px;
}
.site_content.h2_xs h2{
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 8px;
}
.site_content h3 {
    color: #83b4ff;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 12px;
}
.site_content h4{
    color: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.home_banner .site_content p:first-child {
    color: inherit;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 16px;
    letter-spacing: 0.45px;
    display: inline-block;
    border-bottom: 1px solid #ffffff4d;
}
.site_content li, 
.site_content p {
    color: #f8fafccc;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: var(--Inter);
}
.site_content li b, 
.site_content p b,
.site_content li strong, 
.site_content p strong{
    font-weight: 600;
    color: inherit;
}
.site_content.text_xl p{
    font-size: 24px;
    line-height: 32px;
}
.site_content.text_lg p{
    font-size: 20px;
    line-height: 28px;
}
.site_content.text_sm p{
    font-size: 14px;
    line-height: 20px;
}
.site_content.text_xs p{
    font-size: 12px;
    line-height: 16px;
}
.text_dark p,
.text_dark li{
    color: var(--primary);
}
.font_black h1,
.font_black h2{
    font-weight: 900 !important;
}
.site_content p{
    margin-bottom: 24px;
}
.site_content.m-p-sm p{
    margin-bottom: 16px;
}
.site_content p:last-of-type {
    margin-bottom: 0 !important;
}
.w-full{
    width: 100%;
}
.site_btn {
    border: none;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    display: inline-flex;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    text-decoration: none !important;
}
.site_btn svg{
    width: 16px;
    height: 16px;
}
.btn_primary{
    background: #3d7dd8;
    color: #fff;
    fill: #fff;
}
.btn_primary:hover{
    background: #1e4d8c;
    color: #fff;
    fill: #fff;
}
.btn_secondry{
    background-color: #f8f3e9e6;
    color: #134e4a;
    fill: #134e4a;
    box-shadow: none;
}
.btn_secondry:hover {
    background-color: #f8f3e9;
    box-shadow: none;
}
a.site_btn._secondry {
    padding: 10px 32px;
    border-radius: 100px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
a.site_btn._secondry:hover {
    box-shadow:0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}
.shadow_lg{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.shadow_md{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
}
/* header */
.site-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #83b4ff33;
    transition: 0.3s all cubic-bezier(.4,0,.2,1);
    backdrop-filter: blur(4px);
}
.irs--flat .irs-bar{background-color:#fff!important;}
.irs--flat .irs-line{background-color: #ffffff3d!important;}
.irs--flat .irs-handle i, .irs-min,.irs-max,.irs-from,.irs-single{display:none!important;}
.irs--flat .irs-handle {
    height: 25px!important;
    width: 25px!important;
    background: #3d7dd8!important;
    border-radius: 50%!important;
    border: 2px solid #fff;
	top: 18px!important;
}
header.site-header.header-fixed{
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.header_row-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 16px;
}
.site-logo img {
    max-height: 58px;
    width: auto;
}
._action_menu{
    display: flex;
    align-items: center;
    gap: 16px;
}
._action_menu a._number{
    color: #fff;
    padding: 0;
    font-size: 16px;
    stroke: #fff;
}
._action_menu a._number:hover{
    color: #e6f0ff;
    stroke: #e6f0ff;
}
._action_menu a._number svg {
    width: 16px;
    height: 16px;
    
}
/* banner */
.site_banner {
    padding: 160px 0 96px;
    background: #0a2242;
    position: relative;
    overflow: hidden;
}

.animation_wrapper{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.animation_wrapper .object{
    position: absolute;
    color: #3d7dd84d;
}
@keyframes fall{
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.2;
    }
}
.banner_wrapper{
    padding: 64px 144px;
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}
.banner_wrapper >div{
    max-width: calc(50% - 32px);
    width: 100%;
    flex: 0 0 auto;
}
.banner_content p{
    color: #f8fafcb3;
    max-width: 672px;
}
.site_btn.btn_lg {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    padding: 14px 31px;
}
._cash_widget {
    background-color: #1e4d8c4d;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #3d7dd833;
    backdrop-filter: blur(4px);
}
._cash_widget h2{
    color: #83b4ff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}
._cash_widget .site_btn.w-full:hover {
    gap: 12px;
}
._cash_widget p.form_caption {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    font-style: italic;
    margin: 24px 0 0;
    font-weight: 400;
    padding: 0 8px;
}
.secure_points {
    border-top: 1px solid #3d7dd84d;
    margin-top: 40px;
    padding-top: 16px;
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
}
.secure_points div{
    display: flex;
    align-items: center;
    gap: 8px;
}
.secure_points div ._icon{
    background: #3d7dd8;
    border-radius: 100px;
    width: 28px;
    height: 28px;
    stroke: #fff;
    display: grid;
    place-content: center;
}
.secure_points div ._icon svg{
    width: 16px;
    height: 16px;
    stroke: #fff;
}
.secure_points div span{
    color: #f8fafccc;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #4b6cb7 0%, #182848 100%);
    background: #ffffff4d;
    outline: none;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #3d7dd8;
    border: 2px solid #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #4b6cb7;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.value-display {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    color: #83b4ff;
    margin: 24px 0 20px;
}


.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
}
.slider-labels span{
    color: #f8fafccc;
}

.sba_works{
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background-image: linear-gradient(to bottom, #0A2242 , #1E4D8C);
}
.testimonials .absolute_bottom_layer,
.sba_works .absolute_bottom_layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 88px;
}
.sba_works .absolute_bottom_layer svg{
    color:#0a2242;
    height: 88px;
}
.sba_works .absolute_layer {
    background-color: #0a2242;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    transform: scaleX(1.5);
    height: 88px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    max-width: 100%;
}
.site_content.h2_divider h2::after,
.testimonials .site_content h2::after,
.features .site_content h2::after,
.sba_works .site_content h2::after{
    content: '';
    display: block;
    width: 128px;
    height: 4px;
    background-color: #3d7dd8;
    margin: 16px auto 0;
}
.sba_works .site_content p{
    color: #e6f0ffb3;
}
.works_grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
    margin: 48px auto;
    max-width: 1152px;
}
.works_grid .work_card{
    border-radius: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    background-color: #1e4d8c4d;
    border: 2px solid #3d7dd833;
    padding: 32px;
    text-align: center;
    color: #fff;
    transition: 0.3s all cubic-bezier(.4,0,.2,1);
}
.works_grid .work_card:hover{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    transform: translateY(-.25rem);
}
.works_grid .work_card span.count{
    width: 64px;
    height: 64px;
    display: grid;
    place-content: center;
    border-radius: 100px;
    background-color: #3d7dd833;
    margin: 0 auto 16px;
    color: #83b4ff;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    display: block;
}
.site_btn.btn_md {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    padding: 10px 32px;
}
.features{
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
    background-color: #0a2242;
}
.features .absolute_layer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
}
.features .absolute_layer svg{
    color:#fff;
    height: 64px;
}
.max-w-3xl{
    max-width: 768px;
    margin: 0 auto;
}
.features_grid{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
    margin: 32px auto 0;
}
.features_grid .feature_card{
    border-radius: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    background-color: #1e4d8c66;
    border: 1px solid #3d7dd833;
    padding: 16px;
}
.features_grid .feature_card h3{
    margin-bottom: 4px;
}
.features_grid .feature_card ._icon{
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    background-color: #3d7dd84d;
    border-radius: 6px;
    display: grid;
    place-content: center;
}
.features_grid .feature_card ._icon svg{
    width: 24px;
    height: 24px;
    color: #83b4ff;
}
.features .absolute_bottom_layer{
    background-color: #060d18;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    transform: scaleX(1.5);
    height:64px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    max-width: 100%;
}

.testimonials{
    padding: 104px 0;
    background-color: #0a2242;
    position: relative;
    overflow: hidden;
}
.testimonial_wrapper{
    max-width: 1424px;
    margin: 0 auto;
    padding: 0 20px;
}
.testimonials_grid{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 12px;
    margin: 32px auto;
}
.testimonials_grid .testimonial_card{
    padding: 16px 8px 12px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    border-radius: 8px;
    background-color: #1e4d8c66;
    border: 1px solid #1e4d8c4d;
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}
.testimonials_grid .testimonial_card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px #0000001a;
}
.testimonials_grid .testimonial_card h4{
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}
.testimonials_grid .testimonial_card ._icon{
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    background-color: #3d7dd84d;
    border-radius: 100px;
    padding: 12px;
    display: grid;
    place-content: center;
}
.testimonials_grid .testimonial_card ._icon svg{
    width: 32px;
    height: 32px;
    color: #83b4ff;
}
.max-w-4xl{
    max-width: 896px;
    margin: 0 auto;
}
.testimonials .absolute_bottom_layer svg {
    color: #060d18;
    height: 64px;
}

.cta{
    position: relative;
    background-color: #060d18;
}
.cta_wrapper{
    padding: 80px 24px;
    background-color: #1e4d8c99;
}
.cta_grid{
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 32px 0;
}
.cta_grid .cta_card{
    backdrop-filter: blur(4px);
    background-color: #83b4ff26;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}
.cta_grid .cta_card span{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #83b4ff;
    margin-bottom: 4px;
}
.cta_grid .cta_card > span{
    display: block;
}
.cta_grid .cta_card span.label{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #e6f0ff;
}

.site-footer {
    background-color: #0a2242;
    padding: 40px 0 24px;
    /* background-image: radial-gradient(circle, rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 20px 20px; */
    border-top: 1px solid #1e4d8c33;
}
.footer_row_wrap {
    display: flex;
    justify-content: space-between;
}
.logo_disclaimer p {
    max-width: 320px;
    color: #f8fafcb3;
    margin: 0;
}
.footer-logo {
    margin-bottom: 50px;
}
.footer-logo {
    margin-bottom: 16px;
    max-width: 128px;
    height: 120px;
    display: grid;
    place-content: center;
}
.footer-logo img {
    max-height: 58px;
    width: auto;
}
.contact_details {
    border-top: 1px solid #1e4d8c33;
    border-bottom: 1px solid #1e4d8c33;
    padding: 12px 0;
    background-color: #0a224280;
    margin: 48px 0 24px;
    backdrop-filter: blur(4px);
}
ul.contact_info.site_content {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
ul.contact_info.site_content li svg {
    width: 20px;
    height: 20px;
    color: #83b4ff;
}
ul.contact_info.site_content li a, ul.contact_info.site_content li p {
    display: flex;
    align-items: center;
    gap: 8px;
}
ul.contact_info.site_content li a:hover, 
.copy_right a:hover{
    color: #83b4ff;
}
.copy_right p, .copy_right a{
    color: #f8fafc99;
}
.copy_right p{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-template-content #wrapper {
    background-image: linear-gradient(to bottom, #0A2242, #1e4d8cf2);
}
.content_page {
    padding: 96px 0 64px;
}
.content_pages_wrapper {
    max-width: 896px;
    margin: 0 auto;
    color: #fff;
}
.content_pages_wrapper p, 
.content_pages_wrapper li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #f8fafce6;
}
.content_pages_wrapper li:not(:first-child){
    margin-top: 8px;
}
.content_pages_wrapper h1.page_title{
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #83b4ff;
    margin: 24px 0;
}
.content_pages_wrapper h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #83b4ff;
    margin: 32px 0 16px;
}
.content_pages_wrapper h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #83b4ff;
    margin: 24px 0 12px;
}

.banner_content.site_content h1 {
    font-size: calc( 36px + (72 - 36) * (100vw - 360px) / (1920 - 360) );
    line-height: calc( 36px + (72 - 36) * (100vw - 360px) / (1920 - 360) );
}

/* mobile-menu */
@media( max-width: 1536px ){
    .banner_wrapper {
        padding: 64px 112px;
    }
}

@media( max-width: 1280px ){
    .banner_wrapper {
        padding: 64px;
        gap: 32px;
    }
    .site_banner {
        padding: 72px 0 0;
    }
    .banner_wrapper >div {
        max-width: calc(50% - 16px);
    }
    .site_content.text_xl p {
        font-size: 20px;
        line-height: 30px;
    }
}
@media( max-width: 991px ){
    .banner_wrapper {
        padding: 60px 24px 40px;
        gap: 32px;
    }
    .testimonials .absolute_bottom_layer, .sba_works .absolute_bottom_layer,
    .sba_works .absolute_bottom_layer svg, .sba_works .absolute_layer{
        height: 64px;
    }
    .container-large,
    .container {
        padding: 0 24px;
    }
    .sba_works {
        padding: 90px 0;
    }
    .features {
        padding: 90px 24px;
    }
    .testimonials {
        padding: 60px 0 90px;
    }
    .cta_wrapper {
        padding: 60px 24px;
    }
    .cta_grid .cta_card span {
        font-size: 28px;
        line-height: 32px;
    }
    .header_row-wrap {
        padding: 7px 0;
    }
    .site_btn.btn_md,
    .site_btn.btn_lg {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 25px;
    }
    .value-display {
        font-size: 26px;
        line-height: 32px;
        margin: 18px 0 14px;
    }
    .site_btn {
        margin-top: 20px;
    }
    .secure_points {
        margin-top: 24px;
        gap: 12px;
    }
    ._cash_widget h2 {
        margin-bottom: 10px;
    }
    .site_content.h2_sm h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .site_content.text_lg p {
        font-size: 18px;
        line-height: 26px;
    }
    .site_content h2 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .site_content h1 {
        font-size: 42px;
        line-height: 42px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }
}

@media( max-width: 767px ){
    /* Menu */
        .nav-bar ul.nav-menu {
            gap: 0;
            flex-direction: column;
        }
        .header_row-wrap{
            position: relative;
        }
        .menu_wrap {
            width: 88px;
        }
        .close_menu_icon:hover,
        #menuToggle:hover{
            background-color: var(--accent);
            color: var(--accent-foreground);
        }
        .close_menu_icon svg,
        #menuToggle svg{
            width: 16px;
            height: 16px;
        }
        #menuToggle svg{
            margin-bottom: 4px;
        }
        #menuToggle:not(.open) .close_menu_icon{
            opacity: 0;
        }
        #menuToggle.open .show_menu_icon{
            opacity: 0;
        }
        .close_menu_icon,
        #menuToggle {
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-user-select: none;
            user-select: none;
            z-index: 9;
            width: 40px;
            height: 40px;
            cursor: pointer;
            background: transparent;
            border-radius: 40px;
        }
        ul:not(#secondry-menu ) ul.sub-menu{
            display: none !Important;
            position: relative !Important;
            top: -100% !Important;
        }
        .mobilesubmenu i {
            position: relative;
            top: 13px;
            right: 18px;
        }
        ul#primary-menu li {
            display: block;
        }
        .mobilesubmenu {
            display: block;
            position: absolute;
            top: 0;
            cursor: pointer;
            color: #ffffff;
            right: 0;
            z-index: 9999;
            border-left: 1px solid var(--secondary);
            padding-left: 36px;
            height: 100%;
        }
        body .overlayer {
            content: '';
            display: block;
            position: fixed;
            left: 0;
            top: 0;
            background-color: hsl(var(--background-w) / .8);
            width: 100%;
            height: 100%;
            backdrop-filter: blur(4px);
            z-index: 9;
        }
        body.menu_open{
            overflow: hidden;
        }
        body.menu_open .site-logo{
            opacity: 0.5;
        }
        i.fa_minus_icon{
            background: url('./images/minus.svg') no-repeat center;
            width: 20px;
            height: 20px;
            background-size: contain;
            display: block;
        }
        i.fa_plus_icon {
            background: url('./images/plus.svg') no-repeat center;
            width: 20px;
            height: 20px;
            background-size: contain;
            display: block;
        }
        .nav-menu .sub-menu, .nav-menu .children {
            width: 100%;
        }
        ul.sub-menu li {
            display: block;
        }
        ul#primary-menu li.open ul.sub-menu {
            display: block !important;
            height: auto;
            padding: 0 0 0 15px;
        }
        ul#primary-menu ul.sub-menu li a{
            padding: 15px 0;
        }
        ul#primary-menu li a:hover,
        ul#primary-menu ul.sub-menu li a:hover{
            background-color: transparent;
            color: var(--secondary);
        }
        ul.sub-menu,
        .open-submenu{
            transition: all 1s;
        }
        .openmenu {
            display: inline-block;
            font-size: 30px;
            cursor: pointer;
            color: #333333;
            float: right;
        }
        .nav-bar.open {
            right: 0;
        }
        ul#primary-menu li a {
            font-weight: 500;
            font-size: 18px;
            padding: 8px 0;
            line-height: 28px;
            width: 100%;
            display: block;
        }
        ul#primary-menu >li.current-menu-item > a{
            color: var(--card-foreground);
        }
        ul#primary-menu >li.current-menu-item > a:hover, 
        ul#primary-menu >li > a:hover{
            color: var(--primary);
        }
        ul#primary-menu ul.sub-menu li:last-child{
            border: 0px;
        }
        ul#primary-menu >li.menu-item-has-children > a::after{
            display: none
        }
        ul.sub-menu li{
            margin: 0px
        }
        ul#primary-menu li:last-child{
            border: 0px;
        }
        .nav-menu li:last-child a,
        .nav-menu .sub-menu, .nav-menu .children{
            left: 0;
            width: 100% !important;
        }
        .nav-bar {
            background-color:var(--card);
            height: 100vh;
            position: fixed;
            top: 0;
            right: -100%;
            padding: 24px;
            padding-bottom: 85px;
            transition: cubic-bezier(.4,0,.2,1) 0.3s;
            max-width: 384px;
            width: 75%;
            text-align: left;
            z-index: 999;
        }
        .mobile_detail.book_now_btn {
            margin: 0;
            width: 100%;
        }
        .mobile_detail.book_now_btn .site_btn {
            width: 100%;
        }
        .mobile_detail.book_now_btn {
            margin: 0;
            width: calc(100% - 48px);
            position: absolute;
            bottom: 24px;
        }
    /* Menu */
}

@media( max-width: 767px ){
    .banner_wrapper {
        flex-wrap: wrap;
        padding: 60px 24px 0;
    }
    .banner_wrapper >div {
        max-width: 100%;
    }
    .works_grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 24px;
        margin: 32px auto;
    }
    .testimonials_grid,.cta_grid,
    .features_grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 16px;
    }
    .site_content h2 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 12px;
    }
    .site_content.text_xl p {
        font-size: 18px;
        line-height: 28px;
    }
    .footer_row_wrap {
        flex-direction: column;
        gap: 24px;
        justify-content: center;
        align-items: center;
    }
    .footer-logo {
        max-width: initial;
        width: auto;
        height: auto;
    }
    .logo_disclaimer.site_content {
        text-align: center;
    }
    ul.contact_info.site_content {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .cta_grid{
        margin: 32px 0 0;
    }
    ._action_menu a._number span {
        display: none;
    }
    .site_btn.btn_md, .site_btn.btn_lg {
        font-size: 16px;
        line-height: 24px;
        padding: 12px 20px;
    }
    .site_btn{
        padding: 8px 18px;
    }
    ._action_menu a._number svg {
        width: 18px;
        height: 18px;
    }
    ._action_menu a._number {
        background: #3d7dd8;
        color: #fff;
        padding: 11px 11px;
    }
    ._action_menu {
        gap: 10px;
    }
    .content_pages_wrapper h2 {
        font-size: 22px;
        line-height: 28px;
        margin: 24px 0 14px;
    }
    .content_pages_wrapper h3 {
        font-size: 18px;
        line-height: 26px;
        margin: 16px 0 12px;
    }
    .content_pages_wrapper ul, .content_pages_wrapper ol {
        padding-left: 20px;
    }
    .content_pages_wrapper p {
        margin-bottom: 12px;
    }
    .content_pages_wrapper h1.page_title {
        font-size: 28px;
        line-height: 32px;
        margin: 16px 0 24px;
    }
}

@media( max-width: 440px ){
    .cta_grid .cta_card span {
        font-size: 24px;
        line-height: 26px;
    }
    .cta_grid .cta_card {
        padding: 16px 10px;
    }
    .features_grid {
        grid-template-columns: repeat(1,minmax(0,1fr));
        gap: 16px;
    }
    .site_content.h2_xs h2 {
        font-size: 26px;
        line-height: 32px;
    }
    .works_grid .work_card{
        padding: 16px;
    }
}
@media(max-width: 385px){
	.site_btn.btn_md, .site_btn.btn_lg{font-size:14px;}
}
/* mobile-menu */

