@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Monda:wght@400..700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Archivo", sans-serif;
}

.container {
	width: 100%;
	max-width: 1500px;
	margin: auto;
}

/* ===================== */
/* TOP BAR */
/* ===================== */
.top-bar {
	background: #151515;
	padding: 5px 0;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 8px 0;
}

.top-left {
	font-size: 14px;
	line-height: 14px;
	display: flex;
	color: #fff;
	align-items: center;
	font-weight: 600;
}

.top-left p {
	margin-right: 5px;
}

.top-left a {
	color: #fff;
	margin-right: 7px;
	text-decoration: none;
}

.top-left a svg {
	width: 18px;
	height: 18px;
}

.top-right span {
	margin-left: 16px;
}

.top-right {
	display: flex;
	align-items: center;
}

.top-right a svg {
	width: 16px;
	height: 16px;
}

.top-right a {
	color: #fff;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 9px;
}

.top-right span:nth-child(1) {
	padding-right: 16px;
	border-right: 1px solid #fff;
	margin: 0;
}

/* ===================== */
/* MAIN HEADER */
/* ===================== */
.main-header {
	background: #fff;
	border-bottom: 1px solid #eee;
	position: relative;
	position: sticky;
	top: 0;
	vertical-align: top;
	z-index: 99;
}

.main-header .logo img,
.contact-row .left-col img {
	width: 100%;
}

.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}


/* ===================== */
/* NAVIGATION */
/* ===================== */
nav.nav-menu {
	margin-left: auto;
	margin-right: 30px;
}

.nav-menu ul {
	list-style: none;
	display: flex;
	/*gap: 30px;*/
}

.nav-menu ul li a.active {
	color: #35A6E3;
	font-weight: 700;
}

.nav-menu ul li a {
	text-decoration: none;
	color: #000000;
	font-size: 18px;
	line-height: 19px;
	font-weight: 400;
}

.nav-menu ul li a i {
	font-size: 12px;
}


/* ===================== */
/* BUTTON */
/* ===================== */
a.btn-primary {
	background: #35A6E3;
	border-radius: 80px;
	border: 1px solid #35A6E3;
	color: #fff;
	transition: 0.3s ease;
	display: inline-block;
	padding: 13px 28px;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	gap: 12px;
	align-items: center;
}

a.btn-primary:hover {
	background: #000;
	border: 1px solid #000;
}

a.btn-primary svg {
	background: #fff;
	padding: 5px;
	border-radius: 50%;
	width: 19px;
	height: 19px;
}

/* ===================== */
/* HAMBURGER */
/* ===================== */
.menu-toggle {
	width: 30px;
	height: 22px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.menu-toggle span {
	height: 3px;
	width: 100%;
	background: #000;
	border-radius: 3px;
	transition: all 0.4s ease;
}

/* Cross animation */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}


/* hero section */
.hero {
	background-image: url('../images/hero.png');
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	padding: 60px 0;
	color: #fff;
}

.hero-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
	overflow: hidden;
}

.hero-content h1 {
	font-size: 58px;
	line-height: 68px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.hero-content h1 span {
	color: #C7102D;
}

.hero-points {
	font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.hero-points li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 2px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 9px;
    width: 32%;
}

.hero-actions.hero-rev {
	display: flex;
	align-items: center;
	gap: 20px;
}

.hero-content p {
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 25px;
	padding: 0;
	max-width: 68%;
}

.hero-content {
	flex: 1.2;
}

h2.custom-heading {
	font-size: 32px;
	line-height: 44px;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
}

.hero-actions {
	margin: 20px 0 0 0;
	transition: 0.4s ease;
	width: fit-content;
}

.hero-actions a:nth-child(1):hover {
	transform: translateY(-5px);
}

/* .hero-actions a.btn-primary {
    background: #35A6E3;
    font-size: 20px;
    border-color: #35A6E3;
} */
.right-banner-col {
	width: 38%;
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 25px 0 rgba(71, 69, 69, 0.05);
}

.right-banner-col h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
	color: #1E1E1E;
	margin-bottom: 6px;
}

span.diffrent-color {
	color: #C70F2D;
}

.right-banner-col p {
	font-size: 14px;
	color: #000000;
	margin-bottom: 0;
}

.form-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.right-banner-col label {
	font-size: 15px;
	font-weight: 400;
	color: #1E1E1E;
	display: block;
	margin: 18px 0 7px 0;
}

.right-banner-col textarea {
	width: 100%;
	border: 1px solid #D4D4D4;
	border-radius: 5px;
	padding: 11px;
	height: 70px;
}

label.upload-label {
	border: 2px dashed #DACEF9;
	padding: 13px;
	border-radius: 5px;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	display: flex;
	cursor: pointer;
	align-items: center;
	gap: 10px;
	justify-content: center;
	color: #8DCAFF;
}

.form-flex input {
	width: 100%;
	border: 1px solid #D4D4D4;
	border-radius: 5px;
	padding: 13px;
}

.form-flex .form-field {
	width: 48%;
}

label.upload-label p {
	margin: 0 !important;
}

.form-submit {
	margin-top: 22px;
}

.form-submit p input {
	background: #269CDC;
	color: #fff;
	padding: 10px 20px;
	border-radius: 100px;
	display: flex;
	width: fit-content;
	text-decoration: none;
	border: 1px solid #269CDC;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
	transition: 0.3s ease;
	z-index: 1;
	cursor: pointer;
}

.get-a-quate:hover {
	background: #000;
	border: 1px solid #000;
}

.get-a-quate:hover path {
	fill: #1E1E1E;
	transition: 0.5s;
}

.get-a-quate:hover ellipse {
	fill: #fff;
	transition: 0.5s;
}

.get-a-quate svg {
	width: 34px;
	height: 34px;
	margin-left: 12px;
	transition: 0.5s;
}

label.upload-label img {
	width: 16px;
}


/* about section */

section.about {
	background: #fff;
	padding: 70px 0;
}

.about-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 80px;
	width: 1350px;
	max-width: 100%;
	margin: 0 auto;
}

.about-flex>div {
	width: calc(50% - 40px);
}

.about-left img {
	width: 100%;
}

h2.custom-heading {
	font-size: 36px;
	line-height: 46px;
	font-weight: 600;
	color: #000;
	margin-bottom: 12px;
}

p.custom-para {
	font-size: 17px;
	line-height: 28px;
	font-weight: 400;
	color: #000;
}

ul.icon-box {
	list-style: none;
}

ul.icon-box li {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.about-right h3 {
	font-size: 22px;
	line-height: 28px;
	font-weight: 500;
	margin: 15px 0 20px 0;
	color: #1E1E1E;
}

.hero-actions a.btn-primary.blue {
	background: #022269;
	border-color: #022269;
}

ul.icon-box li h5 {
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
	color: #1E1E1E;
	margin-bottom: 12px;
}

/* financial section */
.financial-section {
	padding: 60px 0;
	background: #FBF9FF;
}

/* TOP */
.top-bar-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}


.financial-section .quote-btn {
	background: #1da1f2;
	color: #fff;
	padding: 10px 20px;
	border-radius: 25px;
	text-decoration: none;
}

/* SLIDER */
.financial-slider {
	position: relative;
}

/* CARD FIXED HEIGHT */
.financial-section .card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	display: flex;
	padding: 10px;
	flex-direction: column;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* IMAGE SAME SIZE */

.financial-section .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CONTENT SAME HEIGHT */
.financial-section .content {
	padding: 15px 10px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.financial-section .content h3 {
	font-size: 24px;
	line-height: 31px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #000;
}

.financial-section .content p {
	font-size: 17px;
	line-height: 28px;
	font-weight: 400;
	color: #000;
	margin-bottom: 10px;
}

.financial-section .content a {
	color: #35A6E3;
	font-size: 17px;
	line-height: 18px;
	font-weight: 500;
	margin-top: 10px;
	text-decoration: none;
}

.swiper-wrapper {
	padding-bottom: 60px;
}

/* ARROWS */
.financial-section .nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 15px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 99999999;
	overflow: visible !important;
}

.financial-section .prev,
.financial-section .next {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #259BDB;
	display: flex;
	color: #259BDB;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s ease;
}

.financial-section .prev:hover,
.financial-section .next:hover,
.financial-section .prev:active,
.financial-section .next:active,
.financial-section .prev:focus,
.financial-section .next:focus {
	background: #259BDB;
	color: #fff;
}

/* PAGINATION LINE STYLE */
.financial-section .swiper-pagination {
	position: relative;
	text-align: left;
}

.swiper-pagination-bullet {
	width: 47px;
	height: 4px;
	border-radius: 2px;
	background: #cfd8dc;
	opacity: 1;
	margin-right: 6px !important;
}

.swiper-pagination-bullet-active {
	background: #1da1f2;
}

.swiper-wrapper {
	transition-timing-function: linear !important;
}

/* LINE PAGINATION */


/* service section */
section.service-section {
	padding: 60px 0;
}

.service-section h2,
.service-section p.custom-para.para-main,
.text-center {
	text-align: center;
}

.service-box h3 {
	font-size: 24px;
	line-height: 31px;
	font-weight: 600;
	color: #000;
	margin: 13px 0 10px 0;
}

.service-box {
	background: #FBF9FF;
	border: 1px solid #D0EFFF;
	border-radius: 18px;
	padding: 20px;
	width: 24%;
}

.service-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.service-section p.custom-para.para-main{
	width: 40%;
	margin: 0 auto;
	margin-bottom: 25px;
}

.banking-service-section p.custom-para.para-main{
	width: 40%;
	margin: 0 auto;
	margin-bottom: 25px;
}

section.service-section .hero-actions,
section.flag-section .hero-actions {
	width: auto;
	text-align: center;
	margin-top: 40px;
}


/* call to action section */
section.call-section {
	background-image: url('../images/call.png');
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	padding: 90px 0;
	color: #fff;
}

section.call-section h2,
section.call-section p {
	color: #fff;
}

section.call-section p {
	width: 41%;
}

.hero-actions a.btn-primary.btn-white {
	background: #fff;
	color: #000;
}

section.call-section .container {
	width: 1300px;
}


/* ===== SECTION SCOPED CSS ===== */
.financial-tabs-section {
	background: #fff;
	padding: 60px 0;
}

.financial-tabs-section .container {
	text-align: center;
	background: #FBF9FF;
	padding: 55px;
	border-radius: 18px;
}

.financial-tabs-section h2 {
	margin-bottom: 10px;
}

section.financial-tabs-section p.custom-para.main-para-tab {
	width: 50%;
	margin: 0 auto;
	margin-bottom: 25px;
}

.financial-tabs-section .card {
	display: flex;
	gap: 90px;
	background: #fff;
	min-height: 417px;
	padding: 30px;
	border-radius: 14px;
}

/* SIDEBAR */
.financial-tabs-section .sidebar {
	width: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.financial-tabs-section .sidebar .arrows {
	position: absolute;
	top: 25px;
	z-index: 9999;
}

.financial-tabs-section .arrows span {
	cursor: pointer;
	color: #259BDB;
	font-size: 32px;
	margin: 5px 6px;
	transition: 0.3s;
}

.financial-tabs-section .arrows span:hover {
	transform: scale(1.2);
}

.financial-tabs-section .line {
	width: 4px;
	height: 342px;
	background: #e0e0e0;
	margin: 0;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.financial-tabs-section .progress {
	width: 100%;
	background: linear-gradient(to top, #2f8edc, #6bbcff);
	position: absolute;
	top: 0;
	height: 33%;
	transition: height 0.5s ease;
}

.financial-tabs-section .count {
	font-size: 18px;
	color: #259BDB;
	position: absolute;
	bottom: 20px;
	display: flex;
	gap: 18px;
}

/* TABS */
.financial-tabs-section .tabs {
	width: 377px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.financial-tabs-section .tab {
	padding: 20px;
	font-size: 22px;
	line-height: 31px;
	font-weight: 600;
	color: #000;
	border-radius: 10px;
	background: #f1f2f6;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.financial-tabs-section .tab:hover {
	transform: translateX(5px);
}

.financial-tabs-section .tab.active {
	background: #259BDB;
	color: #fff;
}

/* CONTENT */
.financial-tabs-section .content-wrapper {
	flex: 1;
	position: relative;
}

.financial-tabs-section .tab-content {
	position: absolute;
	width: 100%;
	display: flex;
	gap: 40px;
	align-items: center;
	border: 1px solid #D0EFFF;
	padding: 20px;
	border-radius: 12px;
	background: #FBF9FF;
	opacity: 0;
	transform: translateX(40px);
	transition: all 0.5s ease;
}

.financial-tabs-section .tab-content h3 {
	font-size: 22px;
	line-height: 31px;
	font-weight: 600;
	color: #000;
	text-align: left;
	margin-bottom: 8px;
}

.financial-tabs-section .tab-content p {
	text-align: left;
}

.financial-tabs-section .tab-content.active {
	opacity: 1;
	transform: translateX(0);
	position: relative;
}

.financial-tabs-section .tab-content img {
	border-radius: 10px;
}

.left-sidebar {
	display: flex;
	gap: 20px;
}

/* Flag Section */
section.flag-section {
	background: #259CDC;
	padding: 60px 0;
	text-align: center;
}

section.flag-section .container {
	max-width: 1200px;
}

.flag-boxes {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 30px;
	margin: 34px 0;
}

section.flag-section h2,
section.flag-section p {
	color: #fff;
}

section.flag-section .hero-actions {
	margin-top: 24px;
}

/* security about */
ul.hero-points-security {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 18px;
}

ul.hero-points-security li {
	list-style: none;
	font-size: 17px;
	line-height: 18px;
	font-weight: 400;
	display: flex;
	gap: 10px;
	color: #000;
}

section.about.about-nw .container {
	width: 1200px;
}


/* Testimoinials */
/* slider section */
.testimonial-section {
	padding: 60px 20px 40px;
	background: #fff;
	text-align: center;
}

.testimonial-section .container {
	max-width: 1280px;
	margin: 0 auto;
}

.title {
	font-size: 32px;
	margin-bottom: 40px;
}

.testimonial-card {
	background: #fff;
	/* border: 1px solid #F0E4E4; */
	border-radius: 16px;
	padding: 30px;
	margin: 0 15px;
	box-shadow: 0 0 10px #f0e4e4;
	text-align: left;
}

.slick-track {
	padding: 10px 0;
}

.quote {
	font-size: 40px;
	color: #0d2c6c;
	margin-bottom: 10px;
}

.testimonial-card p {
	font-size: 17px;
	line-height: 28px;
	color: #000;
	font-weight: 400;
	margin-bottom: 15px;
}

.testimonial-card h4 {
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 3px;
	font-weight: 700;
	color: #1E1E1E;
}

/* arrows */

.slick-prev,
.slick-next {
	width: 40px;
	height: 40px;
	background: #e9edf5;
	border-radius: 50%;
}

.slick-next {
	background: #259BDB;
	color: #fff;
}

.slick-prev:before {
	left: 10px;
	transform: rotate(180deg);

}

.slick-prev:before,
.slick-next:before {
	content: "" !important;
	position: absolute;
	background-image: url('../images/slide-arrow.svg');
	width: 18px;
	height: 13px;
	background-position: center center;
	top: 14px;
	opacity: 1;
}

.slick-next:before {
	right: 10px;
}


.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: #fff !important;
	outline: none;
	fill: #fff;
	background: #259BDB;
}

/* dots */

.slick-dots li button:before {
	font-size: 7px;
	color: #bbb;
	width: 18px;
	height: 18px;
}

.slick-dots li.slick-active button:before {
	color: #259BDB;
	border: 1px solid #259BDB;
	border-radius: 50%;
}

.testimonial-section .slick-prev,
.blog-section .slick-prev {
	left: -40px !important;
}

.testimonial-section .slick-next,
.blog-section .slick-next {
	right: -40px !important;
}

.testimonial-section ul.slick-dots {
	display: none !important;
}

.testimonial-section h2.custom-heading {
	margin-bottom: 16px;
}

/* hidden text inline */
.testimonial-section .ts-more {
	display: none;
}

/* dots */
.testimonial-section .ts-dots {
	display: inline;
}

/* active state */
.testimonial-section .ts-text.active .ts-more {
	display: inline;
}

.testimonial-section .ts-text.active .ts-dots {
	display: none;
}

/* read more button inline */
.testimonial-section .ts-read-more {
	font-size: 17px;
	line-height: 28px;
	font-weight: 400;
	text-decoration: underline;
	border: none;
	background: none;
	color: #000;
	cursor: pointer;
	display: inline;
	margin-left: 5px;
	padding: 0;
}

p.ts-text {
	margin: 20px 0;
}

.testimonial-section .ts-user {
	display: flex;
	gap: 10px;
	align-items: center;
}

.testimonial-section .ts-avatar {
	font-size: 19px;
	line-height: 23px;
	font-weight: 400;
	color: #1D1D1D;
	background: #f1f1f1;
	padding: 15px 13px;
	border-radius: 50%;
}

.testimonial-section .ts-user span {
	color: #7E7E7E;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
}

.testimonial-section .ts-user-list {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #F0E4E4;
	padding-top: 20px;
	margin-top: 20px;
	align-items: center;
}

.review i {
	color: #FFC107;
}

.faq-section {
	background: #FBF9FF;
	padding: 60px 20px;
}

.faq-container {
	display: flex;
	flex-wrap: wrap;
	gap: 65px;
	align-items: center;
}

/* LEFT IMAGE */
.faq-left img {
	width: 100%;
	border-radius: 12px;
}

/* RIGHT */
.faq-right {
	flex: 1;
}

.faq-right h2 {
	margin-bottom: 20px;
}

/* ITEM */
.faq-item {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid transparent;
	transition: 0.3s;
}


.faq-item.active span.faq-icon {
	transform: rotate(180deg);
}

/* QUESTION */
.faq-question {
	font-size: 22px;
	line-height: 30px;
	color: #000;
	padding: 15px 20px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}

/* ANSWER */
.faq-answer {
	font-size: 17px !important;
	line-height: 28px;
	color: #000 !important;
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	font-size: 14px;
	color: #555;
	transition: all 0.4s ease;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
	max-height: 226px;
	padding: 10px 20px 20px;
	width: 90%;
}

/* ICON */
.faq-icon {
	font-size: 18px;
}


/* SERVICE PAGE */
section.hero.hero_service {
	background-image: url(../images/service/service-hero.png);
}

section.hero.hero_service .hero-content h1 {
	font-size: 52px;
	line-height: 63px;
}

section.hero.hero_service .hero-content p {
	max-width: 37%;
}

ul.service-points {
	margin: 16px 0;
}

/* service boxes */
section.banking-service-section {
	background-color: #FBF9FF;
	padding: 60px 0;
	text-align: center;
}

section.banking-service-section h2 {
	margin-bottom: 25px;
}

.banking-boxes-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.banking-box {
	width: 31%;
	box-shadow: 0 0 8px #ebebeb;
	border-radius: 14px;
	padding: 10px 10px 25px 10px;
	text-align: center;
	background: #fff;
}

.banking-box img {
	width: 100%;
}

.banking-box h3 {
	font-size: 24px;
	line-height: 31px;
	font-weight: 600;
	color: #000000;
	margin: 20px 0 8px;
}

.banking-box .box-content {
	padding: 0 20px;
}

section.banking-service-section .hero-actions {
	width: auto;
	margin-top: 40px;
}

/* Icon Box Section */
.translate-boxes .icon-box {
	background: #FBF9FF;
	border-left: 2px solid #259CDC;
	border-radius: 5px;
	padding: 20px;
	display: flex;
	gap: 10px;
	width: 21%;
	margin: 10px 0;
}

section.doc-translate-section p.custom-para.text-center {
	text-align: center;
	width: 40%;
	margin: 12px auto;
}

.translate-boxes .icon-box h4 {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: #000;
	margin-bottom: 6px;
}

.translate-boxes .icon-box p {
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
	color: #000;
}

.translate-boxes .icon-box img {
	transform: translateY(5px);
}

.translate-boxes {
	display: flex;
	gap: 35px;
	justify-content: center;
	flex-wrap: wrap;
}

p.custom-para.mb {
	margin-bottom: 17px;
}

section.doc-translate-section {
	padding: 60px 0 30px;
}

.about-flex.service-points-sec {
	width: 1260px;
	margin: 30px auto;
}

.about-flex.service-points-sec h2 {
	font-size: 30px;
	line-height: 44px;
	width: 86%;
}

.about-flex.mb {
	margin-bottom: 50px;
}

.about-flex.service-points-sec p {
	width: 95%;
	line-height: 28px;
}

.about-flex.service-points-sec p,
.about-flex.service-points-sec li {
	font-size: 16px;
}


/* call action */
section.call-section.service-action {
	background-image: url(../images/service/serv-action.png);
}

section.call-section.service-action .container {
	width: 1500px;
}

/* Security Section */
section.security-section {
	padding: 60px 0 60px 0;
}

section.security-section ul.hero-points-security {
	margin: 20px 0;
}

section.security-section ul.hero-points-security {
	margin: 20px 0;
}

.about-flex.security-sec {
	width: 1240px;
}

body:not(.page-id-128) .about-flex.security-sec p {
	width: 84%;
}

section.financial-tabs-section.d-one {
	display: none;
}


/* Case Study */
section.case-study .container {
	max-width: 1400px;
}

.case-study {
	padding: 60px 20px;
	background: #fff;
}

section.case-study h2 {
	margin-bottom: 22px;
}

.case-study__card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 70px;
	background: #FBF9FF;
	padding: 45px;
	border-radius: 20px;
}

.case-study__image {
	width: 48%;
}

.case-study__content {
	width: 46%;
}

/* Image */
.case-study__image img {
	width: 100%;
}

.case-study__heading {
	font-size: 26px;
	line-height: 34px;
	color: #000000;
	font-weight: 600;
	margin-bottom: 10px;
}

.case-study__subheading {
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 15px;
	color: #000;
}

/* Testimonials */
section.testimonial-section.service-testi {
	background: #FBF9FF;
}

/* FAQ */

.serv_faq {
	background-color: #fff;
}

.serv_faq .faq-item {
	background: #F9F3F3;
}


/* Blog Page */
section.hero.blog {
	background-image: url('../images/blog/blog_bg.png');
	text-align: center;
	min-height: 276px;
}

section.hero.blog.blog-detail {
	background-image: url('../images/blog/hero-detail.png');
}

section.hero.blog.contact_us {
	background-image: url('../images/contact/contact_bg.png');
}

section.hero.blog h1 {
	font-size: 38px;
	line-height: 48px;
	color: #fff;
	font-weight: 700;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

/* Card */
.blog-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	transition: 0.3s;
	box-shadow: 0 0 14px #e1e1e1;
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
	width: 100%;
}

.blog-content .date img,
.blog-content a img {
	width: auto;
	height: auto;
}

/* Content */
.blog-content {
	text-align: left;

}

.blog-grid .blog-content {
	padding: 20px;
}

.blog-grid .blog-content h3 {
	margin-top: 12px;
}

.blog-main .blog-content {
	width: 68%;
}

.blog-card .img-blog {
	width: 20%;
}

.blog-content .date {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #1E1E1E;
	display: flex;
	align-items: center;
	/* margin-bottom: 10px; */
	justify-content: flex-start;
	gap: 6px;
}

.detail_blog_sidebar .detail_blog ul li {
	font-size: 16px;
	position: relative;
    padding-left: 35px;
    list-style: none;
}

.blog-content h3 {
	font-size: 22px;
	line-height: 31px;
	font-weight: 600;
	color: #000000;
	text-align: left;
	margin-bottom: 10px;
}

.blog-content p {
	font-size: 17px;
	line-height: 28px;
	color: #000000;
	font-weight: 400;
	text-align: left;
	margin-bottom: 15px;
}

.blog-content a {
	font-size: 17px;
	line-height: 20px;
	color: #35A6E3;
	text-decoration: none;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Pagination */
.pagination {
	text-align: center;
	margin-top: 58px;
}

.pagination li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0 5px;
	border-radius: 8px;
	font-size: 18px;
	background: transparent;
	color: #181818;
	cursor: pointer;
	line-height: 20px;
	font-weight: 400;
	transition: 0.3s;
	border: 1px solid #DFE3E8;
	border-radius: 50%;
	text-decoration: none;
}

/* Active Page */
.pagination .current {
	/*border: 1px solid #022269;*/
	background: #35A6E3 !important;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0 5px;
	border-radius: 8px;
	font-size: 18px;
	background: transparent;
	cursor: pointer;
	line-height: 20px;
	font-weight: 400;
	transition: 0.3s;
	border-radius: 50%;
	text-decoration: none;
}

/* Arrow Buttons */
/*.pagination .arrow {*/
/*	font-size: 18px;*/
/*	font-weight: 700;*/
/*	border: 0;*/
/*}*/

/* Disabled Arrow */
.pagination .disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Hover */
.pagination span:hover:not(.active):not(.disabled) {
	background: #e0e0e0;
}

/* blog */
section.blog-section {
	background: #fff;
	padding: 60px 0;
}

section.blog-section.blog-page .container {
	max-width: 1430px;
}

section.blog-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

.blog-main {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.blog-right {
	width: 48%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.blog-left h3 {
	margin-top: 18px;
}

.blog-left p {
	margin-bottom: 20px !important;
}

.blog-date {
	font-size: 14px;
	line-height: 23px;
	color: #958585;
	font-weight: 400;
	margin: 10px 0;
	display: flex;
	align-items: center;
	gap: 7px;
}

.blog-main h3 {
	font-size: 22px;
	line-height: 29px;
	color: #000;
	font-weight: 500;
}

.blog-main p {
	margin: 10px 0;
}

.blog-btn a {
	font-size: 17px;
	line-height: 23px;
	color: #259BDB;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-main img {
	width: 100%;
}

/* blog section */
section.blog-section {
	padding: 50px 0 70px 0;
}

.blog-main .blog-btn a img {
	width: auto;
}

.testimonial-slider.blog-slider {
	max-width: 1440px;
	margin: 0 auto;
}

.blog-box {
	text-align: left;
	margin: 0 15px;
	box-shadow: 0 0 8px #dddddd;
	border-radius: 22px;
}

.blog-box img {
	width: 100%;
}

.blog-box img.arrow {
	width: auto;
}

.blog-box .content-box {
	padding: 20px 20px 27px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

section.blog-section .slick-track {
	padding-bottom: 30px;
}

.blog-box h3 {
	font-size: 20px;
	line-height: 28px;
	color: #1E1E1E;
	font-weight: 600;
}

.blog-box p {
	font-size: 16px;
	line-height: 28px;
	color: #1E1E1E;
	font-weight: 400;
}

.blog-card.small {
	display: flex;
	gap: 13px;
	flex-wrap: wrap;
	align-items: center;
	box-shadow: 0 0 8px #e9e9e9;
	border-radius: 15px;
	padding: 14px 14px;
}


/* Breadcrumb */
section.breadcrumbs_sec {
	margin: 30px 0 0 0;
}

.breadcrumbs_sec .breadcrumb {
	font-size: 14px;
	margin-bottom: 0;
}

.breadcrumb {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
}

.breadcrumbs_sec .breadcrumb .breadcrumb-item.active {
	color: #CCCCCC !important;
}

.breadcrumbs_sec .breadcrumb .breadcrumb-item a,
.breadcrumbs_sec .breadcrumb .breadcrumb-item.active {
	color: #181818;
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	text-decoration: none;
}

.breadcrumbs_sec .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
	content: "/";
	padding: 0 6px;
	color: #1E1E1E;
}


.blog_form_sec .footer-col.col4 ul li a,
.contact-row .footer-col.col4 ul li a {
	color: #000;
	font-size: 18px;
	line-height: 27px;
}


/* blog */
section.blog-section {
	background: #fff;
	padding: 60px 0;
}

section.blog-section .container {
	max-width: 1280px;
}

section.blog-section h2 {
	text-align: center;
	margin-bottom: 40px;
}

.blog-main {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.blog-right {
	width: 51%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.blog-left {
	width: 45%;

}

.blog-left h3 {
	margin-top: 18px;
}

.blog-left p {
	margin-bottom: 20px !important;
}

.blog-date {
	font-size: 14px;
	line-height: 23px;
	color: #958585;
	font-weight: 400;
	margin: 10px 0;
	display: flex;
	align-items: center;
	gap: 7px;
}

.blog-main h3 {
	font-size: 22px;
	line-height: 29px;
	color: #000;
	font-weight: 500;
}

.blog-main p {
	margin: 10px 0;
}

.blog-btn a {
	font-size: 17px;
	line-height: 23px;
	color: #259BDB;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-main img {
	width: 100%;
}


/* blog section */
section.blog-section {
	padding: 50px 0 70px 0;
}

.blog-main .blog-btn a img {
	width: auto;
}

.testimonial-slider.blog-slider {
	max-width: 1440px;
	margin: 0 auto;
}

.blog-box {
	text-align: left;
	margin: 0 15px;
	box-shadow: 0 0 8px #dddddd;
	border-radius: 22px;
}

.blog-box img {
	width: 100%;
}

.blog-box img.arrow {
	width: auto;
}

.blog-box .content-box {
	padding: 20px 20px 27px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

section.blog-section .slick-track {
	padding-bottom: 30px;
}

.blog-box h3 {
	font-size: 20px;
	line-height: 28px;
	color: #1E1E1E;
	font-weight: 600;
}

.blog-box p {
	font-size: 16px;
	line-height: 28px;
	color: #1E1E1E;
	font-weight: 400;
}

.blog-card.small {
	display: flex;
	gap: 26px;
	align-items: center;
	box-shadow: 0 0 8px #e9e9e9;
	border-radius: 15px;
	padding: 14px 14px;
}


/* Breadcrumb */
section.breadcrumbs_sec {
	margin: 30px 0 0 0;
}

.breadcrumbs_sec .breadcrumb {
	font-size: 14px;
	margin-bottom: 0;
}

.breadcrumb {
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 0;
	margin-bottom: 1rem;
	list-style: none;
}

.breadcrumbs_sec .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
	content: "/";
	padding: 0 6px;
	color: #1E1E1E;
}


.blog_form_sec .footer-col.col4 ul li a,
.contact-row .footer-col.col4 ul li a {
	color: #000;
	font-size: 18px;
	line-height: 27px;
}

/* Contact Page */
.contact_row {
	display: flex;
	flex-wrap: wrap;
	gap: 70px;
	padding: 50px 0;
}

.contact_img {
	width: 48%;
}

.contact_row .right-banner-col {
	width: 47%;
	background: #fff;
}

.contact_row .right-banner-col textarea {
	height: 90px;
}

.contact_row .form-flex input {
	padding: 18px 13px;
}

.contact_row label.upload-label {
	padding: 22px 13px;
}

.contact_row .right-banner-col p {
	margin: 7px 0 5px 0;
	font-size: 16px;
	line-height: 26px;
}

.contact_row .right-banner-col h2 {
	font-size: 40px;
	font-weight: 500;
	line-height: 50px;
}

.contact_row .right-banner-col label {
	font-size: 16px;
	margin-bottom: 10px;
	margin-top: 24px;
}

.contact_img img {
	width: 100%;
}

.footer-col.contact.col4 li a img:hover,
.contact-row .footer-col.contact.col4 li a img:hover,
.footer-col ul li a:hover img {
	filter: brightness(0) saturate(100%) invert(46%) sepia(78%) saturate(2473%) hue-rotate(181deg) brightness(93%) contrast(92%);
}

.footer-col ul li a:hover {
	color: #269CDC;
}

/* blog detail page */

section.detail_blog_sec {
	padding: 40px 0 60px 0;
}

.detail_blog_sec .detail_blog_sidebar {
	display: flex;
	align-items: start;
	gap: 90px;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content: space-between;
}

.detail_blog_sec .detail_blog_sidebar .detail_blog {
	width: 67%;
}

.blog_sidebar {
	width: 26%;
	position: sticky;
	vertical-align: top;
	top: 0;
}

.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img {
	margin-bottom: 30px;
}

.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img img {
	width: 100%;
	height: 491px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 12px;
}

.detail_blog_sec .detail_blog_sidebar .detail_blog h3 {
	font-size: 22px;
	color: #000000;
	line-height: 34px;
	font-weight: 700;
	margin-top:30px;
}

.detail_blog_sec .detail_blog_sidebar .detail_blog h4 {
	font-size: 20px;
	color: #000000;
	line-height: 34px;
	font-weight: 700;
	margin-top:30px;
}

.blog_sidebar h3 {
	font-size: 26px;
	line-height: 36px;
	color: #1E1E1E;
	font-weight: 600;
	margin-bottom: 20px;
}

.detail_blog p {
	font-size: 16px;
	line-height: 28px;
	color: #1E1E1E;
	font-weight: 400;
	margin-top: 15px;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
	margin-bottom: 24px;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box input, .search .hero.blog .search-box form input {
	width: 100%;
	height: 44px;
	padding: 0 40px 0 12px;
	border-radius: 999px;
	border: none;
	background: transparent;
	outline: none;
	color:#fff;
	font-size: 17px;
    font-weight: 400;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-btn {
	width: 100%;
	height: 55px;
	padding: 0px 16px;
	border-radius: 10px;
	background: transparent;
	font-size: 20px;
	font-weight: 600;
	line-height: 36px;
	border: 1px solid #C3C3C3;
	color: #1E1E1E;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	cursor: pointer;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog {
	display: flex;
	align-items: center;
	gap: 18px;
	text-decoration: none;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog>div h5 {
	font-size: 20px;
	color: #000000;
	font-weight: 600;
	line-height: 31px;
}

/*.detail_blog h4 {*/
/*	font-size: 30px;*/
/*	line-height: 40px;*/
/*	font-weight: 600;*/
/*	margin-top: 24px;*/
/*	color: #1E1E1E;*/
/*}*/

.detail_blog h6 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 600;
	margin-top: 24px;
	color: #1E1E1E;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog>div .read_btn {
	font-size: 17px;
	color: #CE1126;
	position: relative;
	text-align: center;
	-webkit-transition: 0.4s ease;
	transition: 0.4s ease;
	display: block;
	width: fit-content;
	cursor: pointer;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown {
	position: relative;
	border-radius: 8px;
	margin: 25px 0 25px 0;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown:hover .toc-list {
	display: block;
	
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-list {
	position: absolute;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border-radius: 8px;
	-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	display: none;
	top: 100%;
	left: 0;
	width: 100%;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-list li a {
	display: block;
	padding: 10px 16px;
	color: #1f1f1f;
	font-size: 14px;
	text-decoration: none;
}

.blog-side-main,
.sidebar_right_bottm {
	border: 1px solid #C3C3C3;
	border-radius: 10px;
	padding: 30px 22px;
}

.side_blogs .side_blog:not(:last-child) {
	border-bottom: 1px solid #ddd;
	padding-bottom: 25px;
	margin-bottom: 0;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box form,.search .hero.blog .search-box form {
	position: relative;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	background-color: transparent;
	border-radius: 10px;
	padding: 3px 6px;
	margin-bottom: 0;
	border: 1px solid #C3C3C3;
}

.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box .search-btn,.search .hero.blog .search-box .search-btn{
	width: 45px;
	height: 42px;
	border-radius: 50%;
	background: #35A6E3;
	border: none;
	cursor: pointer;
	position: relative;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}

.blog_form_sec .footer-col.col4 ul li a,
.contact-row .footer-col.col4 ul li a {
	color: #000;
	font-size: 18px;
	line-height: 27px;
}

/* .blog_form_sec .footer-col.contact.col4 li a img,
.contact-row .footer-col.contact.col4 li a img,
.footer-col ul li a:hover img {
	filter: brightness(0) saturate(100%) invert(14%) sepia(92%) saturate(4110%) hue-rotate(340deg) brightness(92%) contrast(98%);
} */

.blog_form_sec .hero-form {
	box-shadow: 0 25px 60px rgb(0 0 0 / 9%);
	width: auto;
	padding: 20px;
}

.blog_form_sec label {
	font-size: 12px;
	line-height: 28px;
}

.blog_form_sec .upload-box {
	font-size: 12px;
}

.blog_form_sec .footer-col ul li {
	margin-bottom: 14px;
}

.blog_form_sec {
	margin-top: 30px;
}

/* .detail_blog p.border-top {
    border-top: 1px solid #dedede;
    padding-top: 18px;
} */
.detail_blog p.mt {
	/*margin-top: 15px;*/
}

.detail_blog h3.mt {
	/*margin-top: 30px;*/
}

.detail_blog ul {
	padding: 20px 0 0 0;
	/*line-height: 30px;*/
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
}

.detail_blog h1 {
	font-size: 36px;
	line-height: 46px;
	color: #1E1E1E;
	font-weight: 700;
}

.user-time {
	display: flex;
	gap: 20px;
	margin: 20px 0 30px 0;
	padding: 0;
}

.detail_blog ul.hero-points li {
	color: #1E1E1E;
	font-weight: 400;
	align-items: center;
}

.sidebar_right_bottm ul li a {
	font-size: 16px !important;
	line-height: 27px !important;
	color: #000 !important;
	font-weight: 400 !important;
}

.sidebar_right_bottm {
	margin-top: 25px;
}

.sidebar_right_bottm ul li a img {
	transform: translateY(4px);
}

section.financial-tabs-section.d-none {
	display: none;
}

/* footer section */

footer.footer-section {
	background: #1E1E1E;
}

.footer-main {
	display: inline-flex;
	gap: 40px;
	flex-wrap: wrap;
	padding: 60px 0;
}

.footer-col .logo {
	margin-bottom: 20px;
}

.footer-col.brand.col1 {
	width: 20%;
}

.footer-col.col2 {
	width: 13%;
}

.footer-col.col3 {
	width: 37%;
}

.footer-col.contact.col4 {
	width: 21%;
}

.footer-col h4 {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 18px;
	font-weight: 500;
	color: #fff;
}

.social {
	margin-top: 20px;
}

.social h4 {
	margin-bottom: 10px;
}

.footer-col.col3 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 40px;
}

.footer-col.col3 ul li {
	max-width: 100%;
	width: 40%;
}

.footer-col ul li a,
.sidebar_right_bottm ul li a {
	text-decoration: none;
	transition: 0.3s;
	font-size: 14px;
	line-height: 28px;
	color: #fff;
	font-weight: 400;
}

.footer-col ul,
.sidebar_right_bottm ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li,
.sidebar_right_bottm ul li:not(:last-child) {
	margin-bottom: 10px;
}

.footer-col.col4 ul li a,
.sidebar_right_bottm ul li a {
	display: flex;
	align-items: start;
	gap: 14px;
}

.footer-col.contact.col4 li a img {
	height: 20px;
	width: 20px;
	transform: translateY(5px);
}

.footer-col.brand.col1 p {
	font-size: 15px;
	line-height: 27px;
	color: #fff;
	font-weight: 400;
	width: 86%;
}

.footer-bottom {
	border-top: 1px solid #595959;
	text-align: center;
	padding: 18px;
	color: #fff;
	font-size: 14px;
	line-height: 24px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-section img {
	max-width: 100%;
}

.contact-row textarea {
	height: 100px;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
	.top-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media (max-width: 767px) {
	.blog-grid {
		grid-template-columns: 1fr !important;
		gap: 30px;
	}

	section.hero.blog {
		min-height: 300px;
	}

	.footer-col.brand.col1,
	.footer-col.col2,
	.footer-col.col3,
	.footer-col.contact.col4,
	.right-banner-col,
	.form-flex .form-field,
	.about-flex>div,
	section.call-action p,
	section.legal-documents p.custom-para,
	section.hero.contract-service .hero-content p,
	.hero-points li,
	.service-section p.custom-para.para-main,
	.banking-service-section p.custom-para.para-main,
	.service-box,
	section.call-section p,
	section.financial-tabs-section p.custom-para.main-para-tab,
	.financial-tabs-section .tabs,
	.financial-tabs-section .content-wrapper,
	.financial-tabs-section .tab-content img,
	.blog-left,
	.blog-right,
	section.hero.hero_service .hero-content p,
	.banking-box,
	section.doc-translate-section p.custom-para.text-center,
	.translate-boxes .icon-box,
	section.hero.hero_service .hero-content p,
	.case-study__image,
	.case-study__content,
	.detail_blog_sec .detail_blog_sidebar .detail_blog,
	.blog_sidebar,
	.footer-col.col3 ul li,
	.contact_img {
		width: 100% !important;
		max-width: 100%;
	}

	br {
		display: none;
	}

	.case-study__card {
		gap: 15px;
		padding: 20px;
	}

	.right-banner-col {
		padding: 25px;
	}

	.faq-container,
	.detail_blog_sec .detail_blog_sidebar,
	.contact_row {
		gap: 20px;
	}

	.contact_row .right-banner-col h2 {
		font-size: 30px;
		line-height: 40px;
	}

	section.about,
	.case-study {
		padding: 50px 0;
	}

	.translate-boxes {
		gap: 0;
	}

	.case-study__card {
		flex-direction: column;
	}

	.case-study__image img {
		max-width: 100%;
	}

	.ts-prev,
	.ts-next {
		display: none;
	}

	.faq-container {
		flex-direction: column;
	}

	.hero-content br {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.top-right span:nth-child(2) {
		margin-left: 10px;
	}

	.top-right span {
		margin-left: 0;
	}

	.top-right a {
		font-size: 12px;
	}

	.top-bar .container {
		gap: 16px;
	}

	header.main-header .logo {
		width: 50%;
	}

	.hero-content h1 {
		font-size: 40px !important;
		line-height: 50px !important;
	}

	.hero-content p {
		max-width: 100%;
	}

	h2.custom-heading {
		font-size: 30px !important;
		line-height: 38px !important;
	}

	.about-flex {
		gap: 20px;
	}

	.testimonial-section .slick-next,
	.blog-section .slick-next {
		right: -14px !important;
	}

	.testimonial-section .slick-prev,
	.blog-section .slick-prev {
		left: -14px !important;
		z-index: 99;
	}

	.main-header .logo img {
		width: auto;
	}

	.top-bar-wrap,
	.financial-tabs-section .card,
	.financial-tabs-section .tab-content {
		flex-wrap: wrap;
	}

	.financial-tabs-section .card {
		gap: 30px;
	}

	.swiper-pagination-bullet {
		width: 30px;
		height: 3px;
	}

	.financial-tabs-section .sidebar {
		display: none !important;
	}

	.financial-tabs-section .container {
		padding: 55px 20px;
	}

	.financial-tabs-section .tab-content {
		gap: 20px;
	}

	.financial-tabs-section .tab {
		font-size: 18px;
		line-height: 26px;
	}

	.flag-boxes {
		grid-template-columns: 1fr 1fr;
	}

	.about-flex.reverse {
		flex-direction: column-reverse;
	}
	.faq-item.active .faq-answer {
    max-height: 562px;
	width: 100%;
}
.flag-boxes img {
    width: 110px;
}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

	.form-flex .form-field,
	.languages-left,
	.faq-wrapper,
	.footer-col.col3,
	.footer-col.contact.col4,
	section.call-section p,
	section.doc-translate-section p.custom-para.text-center,
	section.hero.hero_service .hero-content p,
	.hero-points li,
	section.financial-tabs-section p.custom-para.main-para-tab,
	.service-section p.custom-para.para-main{
		width: 100%;
		max-width: 100%;
	}
	
	.banking-service-section p.custom-para.para-main{
		width: 100%;
		max-width: 100%;
	}

	.hero-content h1 {
		font-size: 44px !important;
		line-height: 52px !important;
	}

	.hero-content p {
		max-width: 78%;
	}

	.financial-tabs-section .card {
		gap: 30px;
	}

	.right-banner-col,
	.service-box {
		width: 47%;
	}

	.contact_row {
		gap: 30px;
		justify-content: center;
	}

	.financial-tabs-section .card,
	.financial-tabs-section .tab-content {
		flex-wrap: wrap;
	}

	.blog-main {
		gap: 25px;
	}

	.about-flex {
		align-items: flex-start;
		gap: 50px;
	}

	.translate-boxes .icon-box {
		width: 28%;
	}

	.banking-box {
		width: 47%;
	}

	.about-left,
	.case-study__image,
	.faq-left,
	.contact_img {
		position: sticky;
		top: 110px;
	}

	.faq-left img {
		height: 300px;
	}

	h2.custom-heading {
		font-size: 30px;
		line-height: 38px;
	}

	section.legal-documents p.custom-para,
	section.call-action p,
	.words-section p.custom-para {
		width: 75%;
	}

	.languages-right {
		width: 0;
	}

	section.hero.contract-service .right-banner-col {
		display: none;
	}

	ul.panel_list.hero-points {
		column-count: 1;
	}

	.footer-col.brand.col1 {
		width: 40%;
	}

	.footer-col.col2 {
		width: 50%;
	}

	.footer-col.contact.col4 .social {
		margin-top: 40px;
	}

	.detail_blog_sec .detail_blog_sidebar .detail_blog {
		width: 50%;
	}

	.blog_sidebar {
		width: 39%;
	}

	.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog>div h5 {
		font-size: 18px;
		line-height: 28px;
	}

	.detail_blog_sec .detail_blog_sidebar {
		gap: 50px;
	}

	.detail_blog_sec .detail_blog_sidebar .detail_blog .main_img img {
		height: 300px;
	}

	.detail_blog h1 {
		font-size: 30px;
		line-height: 42px;
	}

	.detail_blog h4 {
		font-size: 24px;
		line-height: 36px;
	}

	.detail_blog .hero-points li {
		font-size: 16px;
	}

	.contact-row .left-col {
		width: 44%;
	}

	.flag-boxes {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.case-study__card,
	.faq-container {
		gap: 30px;
		align-items: flex-start;
	}

	.menu-toggle {
		order: 2;
	}

	.financial-tabs-section .line {
		height: 277px;
	}
}

/* 
@media only screen and (min-width: 1025px) and (max-width: 1428px) {
.footer-col.brand.col1 {
    width: 27%;
}
.footer-col.col2 {
    width: 20%;
}
.footer-col.col3 {
    width: 45%;
}
.footer-col.contact.col4 {
    width: 100%;
}
.detail_blog_sec .detail_blog_sidebar {
    gap: 50px;
}
.contact-row .left-col {
    width: 48%;
}
.contact-row {
    gap: 20px;
}
} */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.icon-boxes .icon-box {
		width: calc(48% - 27px);
	}

	.icon-boxes .icon-box:nth-child(2):before,
	.icon-boxes .icon-box:nth-child(7):before {
		display: none;
	}

	.financial-tabs-section .tab-content {
		gap: 20px;
	}

	.financial-tabs-section .card {
		gap: 40px;
	}

	.financial-tabs-section .line {
		height: 100%;
	}
}

@media (max-width: 1199px) {
	.menu-toggle {
		display: flex;
	}

	nav.nav-menu {
		margin: 0;
		padding: 0;
		border: none;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;
		border-top: 1px solid #eee;
		z-index: 9999;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transform: translateY(-10px);
		transition: all 0.45s ease;
	}

	.nav-menu ul li a {
		padding: 15px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.nav-menu.active {
		max-height: 600px;
		opacity: 1;
		/* transform: translateY(0); */
	}

	.nav-menu ul {
		flex-direction: column;
		gap: 0;
	}

	.nav-menu ul li {
		border-bottom: 1px solid #eee;
	}

	.has-submenu.active .submenu {
		max-height: 500px;
	}

	.services-container {
		grid-template-columns: 1fr;
	}

	.blog-grid,
	.legal-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 576px) {
	.header-flex {
		padding: 12px 0;
	}
}

@media only screen and (max-width: 1500px) {
	.container {
		width: 90% !important;
	}
}

@media only screen and (min-width: 1501px) and (max-width: 1800px) {
	.container {
		width: 95% !important;
	}

	.case-study__card {
		gap: 50px;
	}

	.detail_blog_sec .detail_blog_sidebar .detail_blog {
		width: 65%;
	}

	.contact_img {
		width: 46%;
	}

	.contact_row .right-banner-col h2 {
		font-size: 32px;
		line-height: 42px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
	.icon-boxes .icon-box .icon-box-inner {
		min-height: 334px;
	}

	.footer-col.brand.col1 {
		width: 29%;
	}

	a.btn-primary,
	.nav-menu ul li a {
		font-size: 14px;
	}

	header.main-header .logo {
		width: 15%;
	}

	.footer-col ul li a {
		font-size: 14px;
		line-height: 24px;
	}

	.contact-row .left-col {
		width: 48%;
	}

	.hero-points li {
		width: 43%;
	}

	.right-banner-col label {
		font-size: 14px;
	}

	.service-box {
		width: 23%;
	}

	.tab-content.active {
		flex-wrap: wrap;
		text-align: left;
		gap: 22px;
	}

	.financial-tabs-section .line {
		height: 100%;
	}

	.financial-tabs-section .card {
		gap: 40px;
	}

	.faq-left {
		width: 43%;
	}

	.faq-container {
		align-items: flex-start;
	}

	.footer-col.col3 {
		width: 49%;
	}

	.footer-col.col2 {
		width: 14%;
	}

	.footer-col.contact.col4 {
		width: 100%;
	}

	.case-study__card {
		gap: 50px;
	}

	.detail_blog_sec .detail_blog_sidebar .detail_blog {
		width: 65%;
	}

	.contact_img {
		width: 46%;
	}

	.contact_row .right-banner-col h2 {
		font-size: 32px;
		line-height: 42px;
	}

	.contact_row .right-banner-col label {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.contact_row .form-flex input,
	.contact_row label.upload-label {
		padding: 13px 13px;
	}

	.contact_row .right-banner-col textarea {
		height: 70px;
	}
}

/* Remove CF7 extra spacing */
.wpcf7-form p {
    margin: 0;
    padding: 0;
}

.wpcf7-form br {
    display: none;
}

/* Hide default file input */
.file-upload {
    display: none;
}

/* File name style */
#file-name {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #ffffff;
    border: 1px solid #000000 !important;
    color: #000000;
    padding: 15px 20px;
    margin: 20px 0 0;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
}

/*.pagination {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-top: 50px;*/
/*}*/

.pagination ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: flex;
}

/*.pagination a,*/
/*.pagination span {*/
/*    width: 42px;*/
/*    height: 42px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-decoration: none;*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    color: #000;*/
/*    background: #F5F5F5;*/
/*    transition: 0.3s;*/
/*}*/

/*.pagination .current {*/
/*    background: #000;*/
/*    color: #fff;*/
/*}*/

.pagination .arrow {
    background: transparent;
    width: auto;
    height: auto;
}

/*.pagination .arrow img {*/
/*    width: 18px;*/
/*}*/

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

ul.page-numbers {
    justify-content: center;
}

.pagination ul.page-numbers li a span.arrow img {
   filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(1187%) hue-rotate(165deg) brightness(95%) contrast(89%);
}

.pagination li a:hover{
    background:#35A6E3 !important;
    color: #fff;
}
.blog-side-main img.attachment-thumbnail.size-thumbnail.wp-post-image {
    width: 75px;
    height: 68px;
    border-radius: 12px;
}
.detail_blog ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background-image: url('/wp-content/themes/financial-translation-services/assets/images/check-b.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
/*.toc-list {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list li a {
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
}

/* H2 */
.toc-list .toc-h2 {
    padding-left: 0;
    font-size: 18px;
    font-weight: 600;
}

/* H3 */
.toc-list .toc-h3 {
    padding-left: 15px;
    font-size: 16px;
    font-weight: 500;
}

/* H4 */
.toc-list .toc-h4 {
    padding-left: 30px;
    font-size: 15px;
    font-weight: 500;
}

/* H5 */
.toc-list .toc-h5 {
    padding-left: 45px;
    font-size: 14px;
    font-weight: 400;
}

.search .hero.blog .search-box {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

@media (max-width: 767px){

    .detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box .search-btn,
    .search .hero.blog .search-box .search-btn{
        height:37px;
    }

}

@media (max-width:767px){

    .pagination .page-numbers{
        gap:6px;
    }

    .pagination .page-numbers li a,
    .pagination .page-numbers li span{
        width:35px;
        height:35px;
        font-size:15px;
    }

    .pagination .page-numbers li img{
        width:14px;
    }
    
    .pagination ul.page-numbers li a span.arrow img{
        filter: brightness(0) saturate(100%) invert(55%) sepia(89%) saturate(1187%) hue-rotate(165deg) brightness(95%) contrast(89%);
        width: 15px;
        height: 15px;
        margin: 10px;
    }

}

section.about .about-flex .about-right p,section.doc-translate-section .about-flex.service-points-sec .about-right p,section.security-section .about-flex.security-sec.reverse .about-right p{
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

section.about .about-flex .about-right ul,
section.doc-translate-section .about-flex.service-points-sec .about-right ul,
section.security-section .about-flex.security-sec.reverse .about-right ul,
section.financial-tabs-section .tab-content ul,
.page-id-104 .service-section .service-boxes .service-box ul,
.page-id-128 .service-section .service-boxes .service-box ul
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
    margin: 16px 0;
}

section.about .about-flex .about-right ul li,
section.doc-translate-section .about-flex.service-points-sec .about-right ul li,
section.security-section .about-flex.security-sec.reverse .about-right ul li,
section.financial-tabs-section .tab-content ul li,
.page-id-104 .service-section .service-boxes .service-box ul li,
.page-id-128 .service-section .service-boxes .service-box ul li
{
    list-style:none;
    position:relative;
    padding-left:30px;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    display: flex;
    gap: 10px;
    color: #000;
}

section.about .about-flex .about-right ul li::before,
section.doc-translate-section .about-flex.service-points-sec .about-right ul li::before,
section.security-section .about-flex.security-sec.reverse .about-right ul li::before,
section.financial-tabs-section .tab-content ul li::before,
.page-id-128 .service-section .service-boxes .service-box ul li::before,
.page-id-104 .service-section .service-boxes .service-box ul li::before 
{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-image: url('/wp-content/themes/financial-translation-services/assets/images/check-b.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

section.banking-service-section .banking-boxes-main .banking-box .box-content p,
section.case-study .case-study__card , .case-study__content p,
.page-id-104 .service-section .service-boxes .service-box p,
.page-id-128 .service-section .service-boxes .service-box p
{
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.page-id-124 .service-box p{
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
}

.about-flex.reverse {
    flex-direction: row-reverse;
}

.doc-translate-section .about-flex.service-points-sec.mb.reverse {
    flex-direction: row;
}
/*.page-id-128, .service-boxes {*/
/*    gap: 21px;*/
/*}*/
.page-id-101 .financial-tabs-section .container .tab-content {
    text-align: start;
}

.page-id-104 .service-boxes {
    gap: 20px;
}

.codedropz-upload-handler {
    border: 2px dashed #DACEF9;
    margin-top: 18px;
}

.codedropz-upload-inner h3 {
    font-size: 16px;
}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
    color: #35a6e3;
}

.dnd-upload-status {
    margin: 15px 0px 15px  0px;
}

.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
    background: #269cdc;
}

.dnd-upload-status .dnd-upload-details .name {
    color: #269cdc;
}

.hero.hero_service .hero-points li {
    /*width: 34% !important;*/
}

section.flag-section p.custom-para:nth-of-type(2) {
    color: #fff;
    width: 50%;
    margin: auto;
}

.hero.hero_service .hero-points li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 2px;
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 9px;
    width: 33%;
}

/*.hero.hero_service .hero-points {*/
/*    width: 80%;*/
/*}*/

@media (max-width: 767px) {
    section.flag-section p.custom-para:nth-of-type(2) {
        width: 100%;
    }
}

.financial-tabs-section .tab-content a {
    color: #35A6E3;
    font-size: 17px;
    line-height: 18px;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: none;
}

.financial-tabs-section .tab-content p {
    margin-bottom: 10px;
}
 
.tab-content {
    text-align: left;
}

@media (max-width: 767px) {
.financial-tabs-section .tab-content a img {
    width: auto !important;
    border-radius: 0;
}

.financial-section .nav {
    background: #FBF9FF;
    padding-left: 32px;
}
}

.faq-right h2 {
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 1500px) {
  .hero.hero_service .hero-points li {
    width: 60% !important;
}  
}

.page-id-128, .service-boxes {
    gap: 20px;
}

.footer-social a.linkedin svg,
.top-left a.linkedin svg{
	width: 17px;
	height: 17px;
	margin-top: 1px;
}

.about-right ul li {
    display: block !important;
}