/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# General
# Preloader
# Header
# Breadcrumb
# Documentation Section
# Footer
# Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --thm-font: 'Manrope', sans-serif;
    --thm-base: #cf173c;
    --thm-black: #1f1f1f;
    --thm-gray: #7f7873;
    --thm-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--thm-font);
    font-size: 16px;
    color: var(--thm-gray);
    line-height: 1.8;
    font-weight: 400;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 300ms ease;
}

a:hover {
    color: var(--thm-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--thm-font);
    color: var(--thm-black);
    font-weight: 700;
    margin: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
    flex: 0 0 auto;
}

.col-xl-12 { 
    width: 100%; 
    flex: 0 0 100%;
}

.col-xl-4 { 
    width: 33.333%; 
    flex: 0 0 33.333%;
}

.col-xl-3 { 
    width: 25%; 
    flex: 0 0 25%;
}

.col-lg-6 { 
    width: 50%; 
    flex: 0 0 50%;
}

.col-md-6 { 
    width: 50%; 
    flex: 0 0 50%;
}

.col-sm-12 { 
    width: 100%; 
    flex: 0 0 100%;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--thm-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader {
    text-align: center;
}

.preloader-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    color: var(--thm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
}

.animation-preloader {
    position: relative;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--thm-base);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.txt-loading {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.letters-loading {
    color: var(--thm-base);
    font-size: 24px;
    font-weight: 700;
    animation: bounce 1.5s infinite;
}

.letters-loading:nth-child(2) { animation-delay: 0.1s; }
.letters-loading:nth-child(3) { animation-delay: 0.2s; }
.letters-loading:nth-child(4) { animation-delay: 0.3s; }
.letters-loading:nth-child(5) { animation-delay: 0.4s; }
.letters-loading:nth-child(6) { animation-delay: 0.5s; }
.letters-loading:nth-child(7) { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header {
    position: relative;
    background: var(--thm-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header-top {
    background: #f7f1eb;
    padding: 15px 0;
    border-bottom: 1px solid #f2ece7;
}

.main-header-top .outer-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-header-top__left .looking-banking-box .inner-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-header-top__left .icon-payment:before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--thm-base);
}

.main-header-top__left p {
    margin: 0;
    color: var(--thm-gray);
    font-size: 14px;
}

.header-menu ul {
    display: flex;
    gap: 25px;
    margin: 0;
}

.header-menu ul li a {
    color: var(--thm-gray);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.header-menu ul li a:hover {
    color: var(--thm-base);
}

.main-menu {
    position: relative;
    background: var(--thm-white);
    padding: 20px 0 5px 0px;
}

.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box img {
    height: 100px;
    width: auto;
}

.header-btn-one {
    display: flex;
    gap: 15px;
}

.header-btn-one a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--thm-white);
    color: var(--thm-black);
    border: 2px solid #f2ece7;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 300ms ease;
}

.header-btn-one a:hover {
    background: var(--thm-base);
    color: var(--thm-white);
    border-color: var(--thm-base);
}

.header-btn-one a.style2 {
    background: var(--thm-base);
    color: var(--thm-white);
    border-color: var(--thm-base);
}

.header-btn-one a.style2:hover {
    background: var(--thm-black);
    border-color: var(--thm-black);
}

.icon-home-button:before,
.icon-payment:before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.icon-payment:before {
    content: "\f09d";
}

.main-header-bottom {
    background: var(--thm-black);
    padding: 15px 0;
}

.main-header-bottom .outer-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.update-box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.update-box .inner-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-megaphone:before {
    content: "\f0a1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--thm-base);
    font-size: 20px;
}

.update-box .inner-title h4 {
    color: var(--thm-white);
    font-size: 18px;
    margin: 0;
}

.update-box .text p {
    color: #b8b4b1;
    margin: 0;
    font-size: 15px;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/
.breadcrumb-area {
    position: relative;
    background: linear-gradient(135deg, var(--thm-black) 0%, #2a2a2a 100%);
    padding: 80px 0 60px;
    margin-bottom: 100px;
}

.breadcrumb-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23cf173c" fill-opacity="0.05" d="M0,0 L1200,0 L1200,80 C1000,120 400,40 0,80 Z"/></svg>');
    background-size: cover;
}

.breadcrumb-area .inner-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.breadcrumb-area .title h2 {
    color: var(--thm-white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-menu ul li {
    color: #b8b4b1;
    font-size: 15px;
}

.breadcrumb-menu ul li a {
    color: #b8b4b1;
}

.breadcrumb-menu ul li a:hover {
    color: var(--thm-base);
}

.breadcrumb-menu ul li.active {
    color: var(--thm-base);
}

.breadcrumb-menu ul li:not(:last-child):after {
    content: "/";
    margin-left: 10px;
    color: #b8b4b1;
}

/*--------------------------------------------------------------
# Documentation Section
--------------------------------------------------------------*/
.documentation-area {
    position: relative;
    padding: 0 0 120px;
}

.documentation-content {
    position: relative;
}

.sec-title {
    position: relative;
    margin-bottom: 60px;
}

.sec-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--thm-black);
    margin-bottom: 15px;
}

.sec-title .sub-title p {
    font-size: 18px;
    color: var(--thm-gray);
}

.documentation-box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.single-doc-box {
    position: relative;
}

.doc-box-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--thm-white);
    padding: 35px 30px;
    border: 2px solid #f2ece7;
    border-radius: 10px;
    transition: all 400ms ease;
    position: relative;
    overflow: hidden;
}

.doc-box-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 23, 60, 0.05), transparent);
    transition: left 600ms ease;
}

.doc-box-inner:hover:before {
    left: 100%;
}

.doc-box-inner:hover {
    border-color: var(--thm-base);
    box-shadow: 0 15px 40px rgba(207, 23, 60, 0.15);
    transform: translateY(-8px);
}

.icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--thm-base) 0%, #8a0f3d 100%);
    border-radius: 15px;
    flex-shrink: 0;
    transition: all 400ms ease;
}

.doc-box-inner:hover .icon-box {
    transform: rotateY(180deg);
}

.icon-box span {
    font-size: 36px;
    color: var(--thm-white);
}

.icon-star:before { content: "\f005"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-warning:before { content: "\f071"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-shield:before { content: "\f3ed"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-contract:before { content: "\f56c"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-document:before { content: "\f15c"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.icon-lock:before { content: "\f023"; font-family: "Font Awesome 6 Free"; font-weight: 900; }

.content-box {
    flex: 1;
}

.content-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 8px;
    transition: all 300ms ease;
}

.doc-box-inner:hover .content-box h3 {
    color: var(--thm-base);
}

.content-box p {
    font-size: 15px;
    color: var(--thm-gray);
    margin: 0;
}

.arrow-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1eb;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 400ms ease;
}

.doc-box-inner:hover .arrow-box {
    background: var(--thm-base);
    transform: translateX(5px);
}

.arrow-box span {
    font-size: 16px;
    color: var(--thm-black);
    transition: all 300ms ease;
}

.doc-box-inner:hover .arrow-box span {
    color: var(--thm-white);
}

.icon-right-arrow:before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-area {
    position: relative;
    background: #1a1c23;
    z-index: 10;
}

.footer-top {
    position: relative;
    border-top: 1px solid #2f3139;
    border-bottom: 1px solid #2f3139;
    padding: 80px 0 40px;
}

.footer-top .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.single-footer-widget {
    margin-bottom: 40px;
}

.single-footer-widget .title h3 {
    color: #eae0e4;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-widget-links {
    position: relative;
}

.footer-widget-links li {
    margin-bottom: 12px;
}

.footer-widget-links li a {
    color: #b8b4b1;
    font-size: 15px;
    font-weight: 400;
    transition: all 300ms ease;
    display: inline-block;
    padding-left: 20px;
    position: relative;
}

.footer-widget-links li a:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--thm-base);
    opacity: 0;
    transition: all 300ms ease;
}

.footer-widget-links li a:hover {
    color: var(--thm-white);
    padding-left: 25px;
}

.footer-widget-links li a:hover:before {
    opacity: 1;
}

.footer {
    padding: 40px 0;
    border-bottom: 1px solid #2f3139;
}

.footer .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.copyright-text p {
    color: #b8b4b1;
    font-size: 14px;
    margin: 0;
}

.footer-widget-contact-info h3 {
    color: #eae0e4;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-widget-contact-info p {
    color: #b8b4b1;
    font-size: 15px;
    margin: 0;
}

.footer-links-right {
    list-style: none;
    padding: 0;
}

.footer-links-right li {
    margin-bottom: 12px;
}

.footer-links-right li a {
    color: #b8b4b1;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links-right li a:hover {
    color: var(--thm-white);
}

.footer-bottom {
    background: #15171d;
    padding: 25px 0;
}

.footer-bottom .bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu ul li a {
    color: #b8b4b1;
    font-size: 14px;
    font-weight: 400;
}

.footer-menu ul li a:hover {
    color: var(--thm-white);
}

/*--------------------------------------------------------------
# Scroll to Top
--------------------------------------------------------------*/
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--thm-base);
    color: var(--thm-white);
    border-radius: 50%;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--thm-black);
    transform: translateY(-5px);
}

.icon-chevron:before {
    content: "\f077";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/*--------------------------------------------------------------
# Footer Language Switcher
--------------------------------------------------------------*/
.footer-language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-lang-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.footer-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--thm-base);
    transform: translateY(-2px);
}

.footer-lang-btn.active {
    background: var(--thm-base);
    border-color: var(--thm-base);
    color: var(--thm-white);
}

.footer-lang-btn i {
    font-size: 16px;
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--thm-base);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-wrapper.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--thm-white);
    overflow-y: auto;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-wrapper.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--thm-base);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--thm-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--thm-black);
    transform: rotate(90deg);
}

.mobile-menu-logo {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

.mobile-menu-logo img {
    height: 60px;
    width: auto;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-menu-nav ul li {
    border-bottom: 1px solid #f2ece7;
}

.mobile-menu-nav ul li a {
    display: block;
    padding: 15px 10px;
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-nav ul li a:hover {
    color: var(--thm-base);
    padding-left: 20px;
    background: #f7f1eb;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--thm-white);
    color: var(--thm-black);
    border: 2px solid #f2ece7;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-btn:hover {
    background: var(--thm-base);
    color: var(--thm-white);
    border-color: var(--thm-base);
}

.mobile-btn.primary {
    background: var(--thm-base);
    color: var(--thm-white);
    border-color: var(--thm-base);
}

.mobile-btn.primary:hover {
    background: var(--thm-black);
    border-color: var(--thm-black);
}

.mobile-menu-contact {
    text-align: center;
    padding: 20px 10px;
    background: #f7f1eb;
    border-radius: 10px;
}

.mobile-menu-contact p {
    margin: 0;
    color: var(--thm-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu-contact i {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# RTL Support
--------------------------------------------------------------*/
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .main-header-top__left {
    float: right;
}

[dir="rtl"] .main-header-top__right {
    float: left;
}


[dir="rtl"] .header-menu ul li {
    margin-left: 0;
    margin-right: 30px;
}

[dir="rtl"] .header-menu ul li:first-child {
    margin-right: 0;
}

[dir="rtl"] .single-doc-box {
    direction: rtl;
}

[dir="rtl"] .icon-box {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .arrow-box {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .breadcrumb-menu ul li {
    margin-left: 0;
    margin-right: 5px;
}

[dir="rtl"] .breadcrumb-menu ul li:after {
    margin-left: 0;
    margin-right: 5px;
}

[dir="rtl"] .footer-widget-links li:before {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-widget-links li {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .mobile-menu-content {
    right: auto;
    left: -300px;
}

[dir="rtl"] .mobile-menu-wrapper.active .mobile-menu-content {
    right: auto;
    left: 0;
}

[dir="rtl"] .mobile-menu-content {
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .auto-container,
    .container {
        max-width: 100%;
    }
    
    .col-xl-3 {
        width: 50%;
        flex: 0 0 50%;
    }
    
    .col-xl-4 {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 991px) {
    .col-lg-6 {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .col-xl-3,
    .col-xl-4 {
        width: 50%;
        flex: 0 0 50%;
    }
    
    /* Hide desktop menu items */
    .main-header-top {
        display: none;
    }
    
    .header-btn-one {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-menu__wrapper-inner {
        justify-content: space-between;
    }
    
    .documentation-box-wrapper {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-area .title h2 {
        font-size: 36px;
    }
    
    .logo-box img {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .col-md-6,
    .col-xl-3,
    .col-xl-4 {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .main-menu__wrapper-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .breadcrumb-area {
        padding: 60px 0 40px;
        margin-bottom: 60px;
    }
    
    .breadcrumb-area .title h2 {
        font-size: 28px;
    }
    
    .sec-title h2 {
        font-size: 32px;
    }
    
    .documentation-area {
        padding: 0 0 80px;
    }
    
    .doc-box-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .footer-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-language-switcher {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .footer-lang-btn {
        min-width: auto;
        flex: 1;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .footer-lang-btn i {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-area .title h2 {
        font-size: 24px;
    }
    
    .sec-title h2 {
        font-size: 28px;
    }
    
    .content-box h3 {
        font-size: 18px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
    }
    
    .icon-box span {
        font-size: 30px;
    }
}
