@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Monda:wght@400..700&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: "Outfit", sans-serif;
}
.container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
}
.top-bar {
    background: #1B1B1B;
    font-size: 18px;
    font-weight: 400;
}
.top-left {
    font-size: 15px;
}
.top-left a {
    color: #fff;
    margin-right: 12px;
    text-decoration: none;
}
.top-right span:nth-child(1) {
    padding-right: 16px;
    border-right: 1px solid #fff;
}
.top-right a {
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
}
.top-right span {
    margin-left: 16px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
}
.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    /* position: relative; */
    position: sticky;
    top: 0;
    z-index: 999999999999;
}
.nav-menu i {
    font-size: 15px;
    /* position: absolute; */
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.logo img {
    max-height: 65px;
}
.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;
}
.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);
}
nav.nav-menu {
    margin-left: auto;
    margin-right: 43px;
}
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 40px;
}
.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s ease;
}
.has-submenu.active > .submenu {
    display: block;
}
.hero-actions:hover {
    transform: translateY(-5px);
}
a.btn-primary {
    background: #FB6239;
    border-radius: 8px;
    border: 1px solid #FB6239;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: inline-flex;
    padding: 8px 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    gap: 12px;
    align-items: center;
}
.nav-menu ul li a:hover, .nav-menu ul li.current-menu-item a, .nav-menu ul li.current-menu-parent a {
    color: #FB6239;
}
ul.submenu {
    display: none;
}
.has-submenu {
    position: relative;
}
.has-submenu:hover .submenu {
    display: block;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}
.submenu li a {
    display: block;
    padding: 10px 18px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}


/* HERO SECTION */
.hero {
    background-image: url('../images/hero-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 60px 0;
    color: #fff;
}
.hero-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-content {
    flex: 1.2;
}
.hero-content h1 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 400;
    list-style: none;
    padding: 0;
    max-width: 60%;
    color: #000;
}
.hero-points li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 2px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: baseline;
    gap: 9px;
}
.hero-form {
    width: 456px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}
/* right side form */
.hero-form h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
}
.hero-form small {
    display: block;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    margin: 12px 0 22px 0;
    color: #1D1D1D;
}
span.required {
    color: #FF2A2A;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}
.form-row>div {
    width: calc(50% - 8px);
}
.form-row label, .form-detail label {
    font-size: 15px;
    line-height: 30px;
    color: #1D1D1D;
}
.hero-form input, .hero-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border: 1px solid #D4D4D4;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
}
.hero-form textarea {
    height: 90px;
    resize: none;
    margin-bottom: 15px;
}
.upload-box {
    border: 2px dashed #25CDC73B;
    padding: 14px;
    text-align: center;
    color: #FB6239;
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-form button {
    background: #FB6239;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    line-height: 26px;
    font-weight: 500;
}


/* About */
section.about {
    background: #fff;
    padding: 70px 0;
}
.about-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 130px;
    width: 1330px;
    max-width: 100%;
    margin: 0 auto;
}
.about-flex>div {
    width: calc(47% - 40px);
}
h2.custom-heading {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}
p.custom-para {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
}
.hero-actions {
    margin: 20px 0 0 0;
    transition: 0.4s ease;
    /* width: fit-content; */
}
.faq-section.accordion .faq-answer p {
    margin: 8px 0 0;
    padding-top: 10px;
}
/* Why Choose */

section.about.about2 {
    background: #FB62390F;
}
.translation-slider {
    max-width: 1340px;
    margin: 0 auto;
}
.translation-card {
    background: #fff;
    border: 1px solid #D4D4D4;
    border-radius: 16px;
    padding: 24px;
    margin: 0 22px;
    text-align: left;
    transition: 0.3s ease;
}
.translation-card:hover {
    border: 1px solid #FB6239;
    
}

.translation-card p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    font-weight: 400;
    margin-bottom: 15px;
}
section.legal-documents {
    padding: 60px 20px 120px;
    background: #fff;
    text-align: center;
}
section.legal-documents p.custom-para {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.translation-card h3 {
    font-size: 22px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
    margin: 15px 0;
}
.hero-points.point-import li {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 2.2;
    align-items: center;
}
.translation-slider a, .faq-answer a, .blog-card a {
    font-size: 18px;
    line-height: 26px;
    color: #FB6239;
    text-decoration: none;
    display: flex;
    gap: 7px;
     transition: 0.3s ease;
}
  .translation-card a img {
    transition: 0.3s ease;
}
 .translation-card:hover a img {
    filter: brightness(0);
}
.translation-card:hover a {
    color: #000;
}
.translation-card .hero-points {
    margin-bottom: 25px;

}
.translation-card.slick-slide {
    min-height: 440px;
    height: auto;
}
.slick-dots li button:before {
    font-size: 16px;
    border: 1px solid #FB6239;
    border-radius: 50%;
    padding: 2px 1px 0px 1.5px;
}
ul.slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    bottom: -65px;
}
.about-points{
    margin: 20px 0;
}

/* TRAINIG  SECTION */
section.training-section {
    padding: 80px 0;
}
section.training-section h2, 
.case-study-section h2, 
.secure-section h2 , .secure-section p.custom-para {
    text-align: center;
}
.hr-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 130px;
    width: 950px;
    margin: 50px auto 0;
}
.hr-flex>div {
    width: calc(44% - 8px);
}
.hr-flex .about-content h4, .service-section .translation-card .content-box h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #000;
}
.hr-flex .about-content p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin: 12px 0;
    color: #000;
}

/* Accordion Section */
section.faq-section {
    background: #FFF6F3;
    padding: 70px 0;
}
section.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}
.faq-wrapper {
    max-width: 1430px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 86px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #d7d0d1;
}
.faq-question {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.faq-answer {
    height: 0;
    overflow: hidden;
    /* opacity: 0; */
    transform: translateY(-6px);
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.3s ease,
		transform 0.3s ease;
}
.faq-answer p {
    font-size: 16px;
    line-height: 26px;
    color: #000;
    margin: 20px 0 0 0;
    padding-right: 70px;
}
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 34px;
    color: #888888;
    width: 10px;
}
.faq-question::after {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}
ul.hero-points.faq-list li {
    color: #000;
    align-items: center;
    font-size: 16px;
}
ul.hero-points.faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}
.faq-left {
    width: 46%;
}
.faq-right {
    width: 46%;
}

.service-section .translation-card img, .faq-right img {
    width: 100%;
}
.service-section .translation-card .content-box {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #00000030;
    position: absolute;
    bottom: -115px;
}
.service-section .translation-card p {
    margin: 0;
}
.service-section .translation-card.slick-slide {
    min-height: auto;
    height: auto;
    position: relative;
     padding: 0;
}
.service-section .translation-slider .slick-track{
    padding-bottom: 115px;
}
.service-section .translation-card {
    border: 0;
}

/* Testimonials */

.testimonial-section, .call-action {
  background-image: url('../images/rev-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 20px;
  color: #fff;
}
.service-section .translation-slider {
    max-width: 1500px;
}
.testi-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    align-items: center;
    width: 1400px;
    margin: 0 auto;
}
.testimonial-section h2, 
.testimonial-section p, 
.call-action h2, 
.call-action p {
    color: #fff;
}
.testimonial-section h2 {
    margin-bottom: 7px !important;
}
.testimonial-section a.btn-primary, .call-action a.btn-primary {
    background: #fff;
    color: #000;
}
.testimonial-section .image-box {
    margin-top: 30px;
}
.testimonial-section .left-content {
  width: 45%;
}

.testimonial-section .left-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.testimonial-section .image-box img {
  width: 100%;
  border-radius: 15px;
}

.testimonial-section .right-content {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial-card {
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 25px 40px;
    position: relative;
}
.testimonial-card .top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .quote img {
    width: 56px;
    height: 46px;
}

.testimonial-section .stars {
  color: gold;
  font-size: 14px;
}
.testimonial-card h4 {
    margin: 5px 0 2px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
}
.testimonial-card span {
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
}

.testimonial-card p {
    font-size: 16px;
    margin-top: 26px;
    font-weight: 400;
    line-height: 1.5;
}

.testimonial-section .quote {
    position: absolute;
    right: 48px;
    top: 39px;
    font-size: 40px;
}
.call-action{
    background-image: url('../images/action-bg.png');
    text-align: center;
}

/* WORKSPACE GLOBEL */
.workspace {
    background: #fff !important;
}
section.about .about-left img {
    width: 100%;
}
ul.margin-points {
    margin: 20px 0;
}
section.faq-section.accordion {
    background: #fff;
}
.faq-inner {
    width: 1100px;
    margin: 0 auto;
}
section.faq-section.accordion h2 {
    margin-bottom: 38px;
}
.accordion .faq-question::after {
    color: #FB6239;
}

/* BLOG SECTION */
.blog-section {
    padding: 70px 0;
    text-align: center;
    background: #FFF6F3;
}

.blog-section .blog-title {
  margin-bottom: 40px;
}

.blog-grid {
    display: flex;
    gap: 40px;
    width: 1400px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}
.blog-card {
    width: calc(32% - 14px);
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
}
.blog-card a img, .blog-card span.date img {
    width: auto;
    height: auto;
}
.blog-content {
  padding: 20px;
}

.blog-grid .date {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    line-height: 23px;
    background: #FB62391A;
    padding: 7px 25px;
    color: #8B8B8B;
    border-radius: 10px;
    margin: 15px 0 10px;
}
.blog-card h3 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 600;
    color: #000000;
    margin: 10px 0;
}

.blog-card p {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    font-weight: 400;
}
.blog-card a {
    margin-top: 18px;
}
.blog-section .hero-actions {
    margin-top: 48px;
}

/* ---------  Service Page  -------- */
section.hero.hero_service {
    background-image: url('../images/Service/hero.png');
    min-height: 600px;
}
.hero_service .hero-content p {
    max-width: 40%;
}
.service_hero_right {
    display: none;
}
ul.hero-points.about-points li {
    color: #000;
    font-size: 16px;
}
ul.hero-points.about-points li:not(:last-child) {
    margin-bottom: 13px;
}
.lang_abt ul.hero-points.about-points li:not(:last-child) {
    margin-bottom: 7px;
}
.lang_abt ul.hero-points.about-points p:not(:last-child) {
    margin-bottom: 16px;
}
.lang_abt ul.hero-points.about-points p {
    line-height: 28px;
}

.case-study-section {
  padding: 70px 0;
  background: #FFF;
}
section.case-study-section .container {
    max-width: 1270px;
}
.case-study-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 24px 0 40px 0;
}
.case-icon {
    background: #ff5a2c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    padding: 22px;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.case-study-header h3 {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    color: #000;
    font-weight: 600;
}


.case-box {
    background: #F5F3F3;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.case-box h4 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
}

.case-box p, .case-study-header p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 28px;
}

.case-box ul {
  list-style: none;
  padding: 0;
}

/* secure section */
.secure-section {
  padding: 70px 20px;
  background: #fff;
}
.secure-section .container {
    max-width: 970px;
}

.secure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0 30px;
}
.secure-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 19px;
    border: 1px solid #00000014;
    transition: 0.3s;
}
.secure-box:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.secure-box img {
  width: 40px;
}

.secure-box h4 {
    font-size: 22px;
    line-height: 32px;
    color: #000;
    font-weight: 600;
}
.secure-box p {
    margin: 5px 0 0;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    font-weight: 400;
}

/* MARKET RESEARCH SERVICE */

section.legal-documents.translation-section.bg-color {
    background: #FB62390F;
}

section.legal-documents.translation-section.bg-color .translation-card.slick-slide {
    min-height: 417px;
}
section.secure-section.protect-data-section .container {
    max-width: 1260px;
}
.secure-grid.data-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.secure-grid.data-grid .secure-box {
    align-items: center;
}
section.legal-documents.translation-section.bg-color p.custom-para {
    margin-bottom: 40px;
}

/* CONTACT PAGE */
.contact-section, .blog-grid.blog-boxes {
    padding: 70px 0;
}
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: center;
}
section.contact-sec {
    background-image: url('../images/contact/contact-hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 315px;
    display: flex;
}
.contact-now h4, .contact-now ul li a {
    color: #000 !important;
}
.contact-section .contact-now ul li a, .detail_blog_contact ul li a {
    font-size: 16px !important;
    line-height: 27px !important;
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.contact-now ul li a img {
    transform: translateY(4px);
}
.footer-col.contact-now h4 {
    font-size: 40px;
    line-height: 50px;
    margin: 20px 0 15px;
    color: #000000;
}
.footer-col.contact-now ul li:not(:last-child) {
    margin-bottom: 21px;
}
section.contact-section .hero-form {
    box-shadow: 0 25px 60px rgb(239 230 230 / 35%);
    border: 1px solid #00000017;
}
section.contact-sec h1 {
    font-size: 50px;
    line-height: 58px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

/* BLOG DETAIL */
section.detail_blog_sec {
    padding: 40px 0 60px 0;
}
section.breadcrumbs_sec {
    margin: 15px 0 0 0;
}
.detail_blog_sec .detail_blog_sidebar {
    display: flex;
    align-items: start;
    gap: 70px;
    flex-wrap: wrap;
    box-sizing: border-box;
    justify-content: space-between;
}
.breadcrumbs_sec .breadcrumb .breadcrumb-item a, .breadcrumbs_sec .breadcrumb .breadcrumb-item.active {
    color: #181818;
    font-size: 14px;
    line-height: 23px;
    text-decoration: none;
}
.breadcrumbs_sec .breadcrumb .breadcrumb-item.active {
    color: #CCCCCC !important;
}
.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: #999;
}
.breadcrumbs_sec .breadcrumb {
    font-size: 14px;
    margin-bottom: 0;
}
.detail_blog_sec .detail_blog_sidebar .detail_blog {
    width: 69%;
}
.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, .detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
    font-size: 40px;
    color: #000000;
    line-height: 52px;
    font-weight: 600;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
    margin-bottom: 24px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 18px;
    text-decoration: none;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .side_blogs .side_blog>div h5 {
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 5px;
}
p.custom-para {
    width: 90%;
}
.blog-btn {
    margin-top: 10px;
    transition: 0.4s ease;
}
.detail_blog p.border-top {
    border-top: 1px solid #dedede;
    padding-top: 18px;
}
.blog-btn span {
    font-size: 18px;
    line-height: 29px;
    font-weight: 400;
    color: #FB6239;
    transition: 0.4s ease;
    display: block;
}
.blog-btn span:hover, .blog-btn:hover {
    transform: translateY(-2px);
}
.blog-btn.btn2 {
    margin-top: 2px;
}
.blog-btn img {
    width: auto;
}
.detail_blog p.mt {
    margin-top: 20px;
}
.detail_blog ul {
    padding: 20px 0 30px 20px;
    line-height: 30px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #F9E0E3;
    border-radius: 26px;
    padding: 3px 6px;
    margin-bottom: 20px;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box input {
    width: 100%;
    height: 44px;
    padding: 0 48px 0 16px;
    border-radius: 999px;
    border: none;
    background: #F9E0E3;
    outline: none;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .search-box .search-btn {
    width: 89px;
    height: 44px;
    border-radius: 26px;
    background: #FB6239;
    border: none;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown {
    position: relative;
    border-radius: 8px;
    margin: 50px 0 40px 0;
}
.detail_blog_sec .detail_blog_sidebar .blog_sidebar .toc-dropdown .toc-btn {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    border: none;
    background: #F9E0E3;
    font-size: 24px;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.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;
}
.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_contact {
    background: #fff;
    box-shadow: 0 0 8px #000;
}
.detail_blog_contact {
    background: #fff;
    box-shadow: 0 0 25px 0 #00000014;
    padding: 24px 30px;
    border-radius: 20px;
    margin-top: 32px;
}



/* FOOTER */
footer.footer-section {
    background: #1E1E1E;
}
.footer-main {
    display: inline-flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 0;
}
.footer-col.brand.col1 {
    width: 19%;
}
.footer-col.col2 {
    width: 10%;
}
.footer-col.col3 {
    width: 14%;
}
.footer-col.col4 {
    width: 14%;
}
.footer-col.col5 {
    width: 14%;
}
.footer-col.contact.col6 {
    width: 15%;
}
.footer-col .logo {
    margin-bottom: 20px;
}
.footer-col h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #fff;
}
.footer-col.brand.col1 p {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
    width: 95%;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 14px;
}
.footer-col ul li a {
    color: #cfd6df;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    font-weight: 400;
}
.social {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}
.social a {
    color: #fff;
    transition: 0.3s;
    font-size: 20px;
}
.footer-col.col6 ul li a {
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.footer-col.contact.col6 li a img {
    height: 17px;
    width: 19px;
    transform: translateY(5px);
}

.footer-bottom {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 24px;
    border-top: 1px solid rgb(89, 89, 89);
    padding: 18px;
}

@media only screen and (min-width: 1200px)and (max-width: 1500px) {
.testi-flex, .blog-grid{
    width: 100%;
}
.testimonial-section .right-content {
    width: 46%;
}
.blog-card {
    width: calc(31% - 2px);
}
.footer-col.col2 {
    width: 13%;
}
.footer-col.col3, .footer-col.col4, .footer-col.col5 {
    width: 20%;
}
.footer-col.brand.col1, .footer-col.contact.col6 {
    width: 30%;
}
}
@media only screen and (min-width: 768px)and (max-width: 1024px) {
.about-flex {
    gap: 70px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.hr-flex {
    width: 100%;
}
.about-img img, .faq-wrapper, section.legal-documents p.custom-para, .faq-inner, .blog-grid, .blog-card, .testi-flex, .detail_blog_sec .detail_blog_sidebar .detail_blog, .blog_sidebar {
    width: 100%;
}
.hr-flex {
    gap: 90px;
    justify-content: center;
}
.about-flex>div {
    width: calc(50% - 36px);
}
.faq-wrapper {
    gap: 55px;
}
.faq-right {
    width: 45%;
}
.logo img {
    width: 100%;
}
.footer-col.brand.col1, .footer-col.col4 {
    width: 30%;
}
.footer-col.col2 {
    width: 23%;
}
.footer-col.col3 {
    width: 28%;
}
.footer-col.col5 {
    width: 27%;
}
.footer-col.contact.col6 {
    width: 31%;
}
.testi-flex {
    gap: 50px;
    justify-content: center;
}
.testimonial-card .quote img {
    width: 30px;
    height: 30px;
}
.testimonial-section .quote {
    right: 28px;
    top: 28px;
}
section.case-study-section ul.hero-points.about-points li {
    display: block;
}
.secure-grid {
    gap: 25px;
}
.secure-box h4 {
    font-size: 20px;
    line-height: 27px;
}
h2.custom-heading {
    font-size: 34px;
    line-height: 44px;
}
.secure-grid.data-grid {
    grid-template-columns: repeat(2, 1fr);
}
.blog-grid.blog-boxes .blog-card {
    width: calc(49% - 15px);
}
}
@media only screen and (max-width: 1500px) {
    .container {
        width: 90% !important;
    }
    .detail_blog_sec .detail_blog_sidebar .detail_blog {
    width: 66%;
}
}
@media (max-width: 1024px) {
    .hero-flex {
    flex-direction: column;
    align-items: flex-start;
}
}
@media (max-width: 767px) {
    .hero-form {
        box-sizing: border-box;
    }
        .about-flex>div, 
        .hero-form, 
        .form-row>div, .faq-left, .faq-right,
        .footer-col.brand.col1, 
        .footer-col.col2, 
        .footer-col.col3, 
        .footer-col.col4, 
        .footer-col.col5, 
        .footer-col.contact.col6, 
        .testimonial-section 
        .left-content, 
        .testimonial-section 
        .right-content, 
        p.custom-para, 
        ul.hero-points.sector-list li, 
        .hero-content p, 
        section.legal-documents p.custom-para, 
        .testi-flex, 
        .faq-inner, 
        .blog-grid, 
        .blog-card, .hr-flex, 
        .hr-flex .about-img img, 
        .hr-flex>div, 
        .hero_service .hero-content p, 
        .detail_blog_sec .detail_blog_sidebar .detail_blog, 
        .blog_sidebar{
        width: 100%;
        max-width: 100%;
    }
    .detail_blog_sec .detail_blog_sidebar .detail_blog h3, .detail_blog_sec .detail_blog_sidebar .blog_sidebar h1 {
    font-size: 30px;
    color: #000000;
    line-height: 40px;
    font-weight: 600;
}
        .header-btn {
        display: none;
    }
    .hr-flex {
    flex-wrap: wrap;
}
.top-right span {
    margin-left: 0;
}
.top-right span:nth-child(2) {
    margin-left: 16px;
}
    .faq-question::after {
    right: 0px;
    top: 0;
}
.faq-question {
    padding-right: 30px;
}
    .testimonial-card .quote img {
    width: 30px;
    height: 30px;
}
.testimonial-section .quote {
    right: 16px;
    top: 16px;
}
    .about-flex, .footer-main, .testi-flex, .hr-flex, .faq-wrapper, .contact-row{
    gap: 20px;
}
section.training-section, 
section.about, 
section.faq-section, 
.blog-section, 
.case-study-section, 
.secure-section, 
.contact-section, 
.blog-grid.blog-boxes {
    padding: 50px 0;
}
.faq-answer p {
    padding-right: 0;
}
.translation-card {
    margin: 0 10px;
}
section.legal-documents {
    padding: 50px 10px 90px;
}
.slick-dots li button:before {
    font-size: 6px;
    padding: 0px 2px 5px 2.5px;
    width: 14px;
    height: 14px;
}
.service-section .translation-card .content-box {
    bottom: -178px;
}
.service-section .translation-slider .slick-track {
    padding-bottom: 178px;
}
.hr-flex {
    margin: 30px auto 0;
}

section.faq-section h2, .blog-section .blog-title {
    margin-bottom: 30px;
}
.hero-points.point-import li {
    line-height: 2;
    align-items: baseline;
}
.hero-points.point-import li img {
    transform: translateY(6px);
}
.rev-col {
    flex-direction: column-reverse;
}
h2.custom-heading {
    font-size: 30px;
    line-height: 40px;
}
.hero-content h1, section.contact-sec h1{
    font-size: 42px;
    line-height: 52px;
}
section.case-study-section ul.hero-points.about-points li {
    display: block;
}
.secure-grid, .secure-grid.data-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin: 20px 0;
}

}
@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 ul li {
        border-bottom: 1px solid #eee;
    }
    .nav-menu.active {
    max-height: 600px;
    opacity: 1;
    /* transform: translateY(0); */
}
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    .has-submenu.active .submenu {
    max-height: 500px;
}
    .has-submenu:hover .submenu {
        display: block;
    }
  .submenu {
    position: static !important;
    width: 100% !important;
  }
  .top-bar .container, 
  .hr-flex {
    flex-wrap: wrap;
    align-items: center;
}
.testi-flex, .faq-inner, 
.blog-grid{
    width: 100%;
}
.testi-flex, .faq-wrapper {
    gap: 60px;
    justify-content: center;
}
.service-section .translation-card .content-box {
    bottom: -178px;
}
.service-section .translation-slider .slick-track {
    padding-bottom: 178px;
}
.hero-content p, 
.hero_service .hero-content p {
    max-width: 100%;
}
.testimonial-section .left-content, 
.testimonial-section .right-content {
    width: 100%;
}
.faq-question {
    padding-right: 40px;
}
}