@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;
    font-weight: 400;
	font-family: "Plus Jakarta Sans", sans-serif;
    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;
	font-family: "Plus Jakarta Sans", sans-serif;
    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;
	font-family: "Plus Jakarta Sans", sans-serif;
    gap: 10px;
    justify-content: center;
    color: #8DCAFF;
}
.form-flex input {
    width: 100%;
    border: 1px solid #D4D4D4;
	font-family: "Plus Jakarta Sans", sans-serif;
    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 button {
    background: #269CDC;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    width: fit-content;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    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;
}
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;
}
.about-flex.security-sec p {
    width: 84%;
}
section.financial-tabs-section {
    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;
}
/* Responsive */
@media (max-width: 768px) {
  .case-study__card {
    flex-direction: column;
  }

  .case-study__image img {
    max-width: 100%;
  }
}
/* RESPONSIVE */

@media (max-width: 768px) {
  .ts-prev,
  .ts-next {
    display: none;
  }
    .faq-container {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* 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: 44%;
    
}
.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.active {
    color: #1E1E1E !important;
}
.breadcrumbs_sec .breadcrumb .breadcrumb-item a, .breadcrumbs_sec .breadcrumb .breadcrumb-item.active {
    color: #C70F2D;
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
    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;
}
 .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;
}



/* 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 {
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col.col4 ul li a {
    display: flex;
    align-items: baseline;
    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;
}
@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, 
.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

 {
    width: 100%;
}
br{
    display: none;
}
.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;
    line-height: 50px !important;
}
.hero-content p {
    max-width: 100%;
}

h2.custom-heading {
    font-size: 30px;
    line-height: 38px;
}

.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;
}
}

@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{
    width: 100%;
}
.hero-content h1 {
    font-size: 44px;
    line-height: 52px !important;
}
.hero-content p {
    max-width: 78%;
}
.right-banner-col {
    width: 47%;
}
.about-flex {
    align-items: flex-start;
    gap: 50px;
}
.about-left {
    position: sticky;
    top: 110px;
}
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%;
}
}
/* 
@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;
}
}

@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;
}
}
@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 {
    display: block;
}
.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;
}
}