/* ==================================================
   LEX FIRM
   STYLE.CSS
   COLOR SYSTEM
   NAVY + RED + WHITE
================================================== */

:root {
    --gold: #c8a45d;
    --gold-hover: #b08d46;

    --navy: #102A43;
    --navy-light: #1B3A5A;

    --red: #C1121F;
    --red-dark: #A30F1A;

    --white: #FFFFFF;

    --text: #2D3748;
    --gray: #F8FAFC;
    --border: #E5E7EB;

    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
}
.container{
    padding-inline: 20px;
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}
@media (min-width: 1400px) {
    .container, .container-md, .container-sm {
        max-width: 1360px;
    }
}
/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #f8fafc;
    line-height: 1.7;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5{
    font-family:'Montserrat',sans-serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all .3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{
    background-color: var(--red);
}

.section-padding {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
}

/* ==================================================
   TOPBAR
================================================== */

.topbar {
    background: var(--navy);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left i {
    color: #fff;
    margin-right: 6px;
    width: 35px;
    height: 35px;
    background: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    transition: background 0.5s ease;
}

.language-switcher a {
    color: #fff;
    font-weight: 600;
    opacity: 0.5;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: var(--gold);
    opacity: 1;
}

.language-switcher a:hover {
    color: var(--gold);
}

.language-switcher span {
    margin: 0 10px;
    opacity: .5;
}
.language-switcher a img{
    display: inline;
}

/* ==================================================
   HEADER
================================================== */

.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,.05);
    transition: .3s;
    z-index: 999;
}

.header-scrolled {
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.navbar {
    padding: 8px 0 16px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 120px;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--red);
    color: #fff;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #777;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: var(--navy);
    font-weight: 600;
    padding: 10px 14px !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 10px;
    box-shadow: var(--shadow);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 10px;
}

.dropdown-item:hover {
    background: #f6f8fa;
}

/* ==================================================
   BUTTONS
================================================== */

.btn-consult,
.btn-gold {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 700;
}

.btn-consult:hover,
.btn-gold:hover {
    background: var(--red-dark);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 0;
    padding: 14px 28px;
    font-weight: 700;
}

.ml-auto{
    margin-left: auto !important;
}
/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    background:
        url('https://dictum.qodeinteractive.com/wp-content/uploads/2024/10/h2-img6.jpg')
        center center / cover;
    background: url(https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600)
        center left 70% / cover;
    padding-block: 80px;    
}
@media only screen and (min-width: 768px){
    .hero{
        min-height: 750px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: .65;
    background: linear-gradient(90deg, rgb(67 16 16 / 70%) 0%, rgb(67 16 16 / 60%) 40%, rgba(16, 42, 67, .50) 100%);
    /*    background:
            linear-gradient(
            90deg,
            rgba(16,42,67,.96) 0%,
            rgba(16,42,67,.92) 40%,
            rgba(16,42,67,.50) 100%
            );*/
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
/*.hero-content:before{
    width: 180px;
    height: 180px;
    position: absolute;
    left: -100px;
    top: -90px;
    content: "";
    background: #e20014;
}*/

.hero-content h1 {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-content h1 span {
    display: block;
    color: var(--gold);
}

.hero-content p {
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 35px;
    opacity: .95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-team {
    position: relative;
    z-index: 2;
}

/* ==================================================
   STATS
================================================== */

.stats {
    position: relative;
    z-index: 20;
    margin-top: -80px;
    max-width: calc(100% - 40px);
    margin-inline: auto;
}

.stats .container {
    background: #fff;
    border-radius: 20px;
    padding: 20px 20px;
    box-shadow: var(--shadow);
}

.stat-box{
    display:flex;
    align-items:center;
    gap:20px;

    padding:20px;
    height:100%;
}

.stat-icon{
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width: 70px;
    height: 70px;
    background: var(--red);
}

.stat-icon i{
    font-size:32px;
    color:#fff;
    margin:0;
}

.stat-content{
    text-align:left;
}

.stat-content h3{
    margin:0;
    font-size:38px;
    font-weight:700;
    color: #000;
    line-height:1;
}

.stat-content p{
    margin-top: 5px;
    margin-bottom:0;
    font-size:15px;
    color:#666;
}
/* ==================================================
   SERVICES
================================================== */

.services {
    background: var(--gray);
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--red);

    transform: scaleX(0);
    transition: .3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.service-card i {
    font-size: 48px;
    color: var(--red);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    text-align: left;
    margin-bottom: 0;
}

/* ==================================================
   WHY US
================================================== */

.why-us {
    /*    background:
            linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
            );*/
    background: #701717;
    padding: 60px 0;
    color: #fff;
    position: relative;
}

.why-us .section-subtitle{
    color: #fff;
    font-size: 24px;
}
.why-us .section-heading h2 {
    color: #fff;
}

.why-item {
    text-align: center;
    padding: 0 20px 30px;

    transition: .3s;
}

.why-item:hover {
    transform: translateY(-8px);
}

.why-item i {
    font-size: 52px;
    color: var(--gold);

    margin-bottom: 20px;
}

.why-item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item p {
    opacity: .85;
    margin-bottom: 0;
}

/* ==================================================
   TEAM
================================================== */

.team-premium.section-padding {
    background: var(--white);
}

.teamSwiper {
    position: relative;
    padding-bottom: 20px;
}

.team-premium-card {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 60px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    /* background: #fff; */
    border-radius: 26px;
    /* padding: 46px; */
    /* box-shadow: 0 30px 70px rgba(16, 42, 67, .08); */
}

.team-premium-photo {
    position: relative;
    /* border-radius: 18px; */
    /* overflow: hidden; */
    aspect-ratio: 4 / 5;
    background: #fff;
    border: 1px solid var(--border);
    padding: 0;
}

.team-premium-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate(10px, 10px);
    border: 1px solid #ddd;
}

.team-premium-content {
    text-align: left;
}

.team-premium-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(193, 18, 31, .08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.team-premium-content h3 {
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.15;
}

.team-premium-role {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 26px;
    max-width: 460px;
}

.team-premium-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.team-premium-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
}

.team-premium-badges i {
    color: var(--red);
}

.team-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
    z-index: 9;
}

.swiper-button-next,
.swiper-button-prev {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--red);
    margin-top: 0;
    pointer-events: auto;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .team-premium-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        gap: 26px;
        text-align: center;
    }

    .team-premium-photo {
        max-width: 240px;
        margin: 0 auto;
    }

    .team-premium-content {
        text-align: center;
    }

    .team-premium-role {
        margin-left: auto;
        margin-right: auto;
    }

    .team-premium-badges {
        justify-content: center;
    }
}

/* ==================================================
   CLIENTS
================================================== */

.clients {
    padding: 90px 0;

    background: #fff;
}

.client-logos {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 25px;

    margin-top: 40px;
}

.client-logos div {
    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 25px;

    text-align: center;

    font-size: 22px;
    font-weight: 700;

    color: #777;

    transition: .3s;
}

.client-logos div:hover {
    border-color: var(--red);

    color: var(--navy);

    transform: translateY(-5px);
}

/* ==================================================
   BLOG
================================================== */

.blog {
    background: var(--gray);
}

.post-card {
    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .3s;

    height: 100%;
}

.post-card:hover {
    transform: translateY(-8px);
}

.post-card img {
    width: 100%;
    aspect-ratio: 1600 / 1000;
    object-fit: cover;
}

.post-content {
    padding: 25px;
}

.post-content h5 {
    color: var(--navy);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.post-content h5 a{
    font-weight: 400;
    
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.post-content p {
    color: #666;

    margin-bottom: 15px;
}

.post-content a {
    color: var(--red);

    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-content a:hover {
    color: var(--red-dark);
}

/* ==================================================
   EXTRA SECTION EFFECTS
================================================== */

.section-heading.text-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    position: relative;
}

.section-heading h2::after {
    content: '';

    width: 80px;
    height: 4px;

    background: var(--red);

    display: block;

    margin: 20px auto 0;
}
/* ==================================================
   CONTACT
================================================== */

.contact-premium {
    background: #fff;
}

.contact-premium-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}

.contact-premium-info h2 {
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin: 12px 0 22px;
}

.contact-premium-lead {
    font-size: 18px;
    color: #4a5568;
    max-width: 520px;
    margin-bottom: 40px;
}

.contact-premium-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 25px 60px rgba(16, 42, 67, .12);
}

.contact-premium-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.contact-premium-photo-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 26px;
    background: linear-gradient(180deg, rgba(16,42,67,0) 0%, rgba(10,17,28,.85) 100%);
    color: #fff;
}

.contact-premium-photo-caption strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.contact-premium-photo-caption span {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-premium-details {
    display: grid;
    gap: 22px;
    margin-bottom: 40px;
}

.contact-premium-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-premium-details i {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(193,18,31,.08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-premium-details span {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 4px;
}

.contact-premium-details strong {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
}

.contact-premium-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.contact-premium-stats .stat strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.contact-premium-stats .stat span {
    font-size: 13px;
    color: #64748b;
}

.contact-premium-form-card {
    background: #fff;
    border-radius: 22px;
    padding: 50px 46px;
    box-shadow: 0 30px 70px rgba(16, 42, 67, .12);
    border: 1px solid var(--border);
}

.contact-premium-form-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.contact-premium-form-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-premium-form-card > p {
    color: #64748b;
    margin-bottom: 30px;
}

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: .3s;
    font-size: 15px;
}

.contact-form-group input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(193,18,31,.1);
}

.contact-form-note {
    margin-top: 18px;
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .contact-premium-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-premium-form-card {
        padding: 36px 28px;
    }
}

@media (max-width: 575px) {
    .contact-premium-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==================================================
   FOOTER
================================================== */

.footer {
    background: #081B33;

    color: #fff;

    padding-top: 80px;
}

.footer h4,
.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p,
.footer li {
    color: rgba(255,255,255,.85);
    margin-bottom: 7px;
}

.footer ul li a {
    color: rgba(255,255,255,.85);
}

.footer ul li a:hover {
    color: var(--red);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--red);
    margin-top: 5px;
}

.copyright {
    margin-top: 50px;

    border-top: 1px solid rgba(255,255,255,.1);

    text-align: center;

    padding: 25px 0;

    font-size: 14px;

    color: rgba(255,255,255,.7);
}

/* ==================================================
   BACK TO TOP
================================================== */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: var(--red);

    color: #fff;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.back-to-top:hover {
    background: var(--red-dark);

    transform: translateY(-4px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==================================================
   HEADER EFFECT
================================================== */

.header-scrolled {
    background: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ==================================================
   COMMON HOVER EFFECTS
================================================== */

.service-card,
.post-card,
.client-logos div {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.service-card:hover,
.post-card:hover {
    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

/* ==================================================
   MOBILE MENU
================================================== */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    margin-top: 15px;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199px) {
    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 991px) {

    .hero {
        min-height: auto;
        /*padding: 100px 0;*/
    }

    .hero-content {
        text-align: center;
        /*margin-bottom: 50px;*/
    }

    .hero-content h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .stats {
        margin-top: 0;
        padding-top: 60px;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .topbar {
        display: none;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .client-logos {
        grid-template-columns: 1fr;
    }

    .team-card img {
        height: 320px;
    }

    .footer {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

}

@media (max-width: 575px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .btn-consult,
    .btn-gold,
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    .service-card {
        padding: 30px 25px;
    }

}

/*================*/
.about{
    background: var(--white);
}
.about h2{
    margin-bottom: 30px;
}
.about .about-content{
    padding-right: 60px;
}

.about .serviceinfo--about{
    margin-block: 40px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.about .item-service{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: calc(50% - 10px);
}
.about .item-service i{
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--red);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about .about-image img{
    aspect-ratio: 4/4;
    object-fit: cover;
}

.btn{
    border-radius: none;
}
.btn-border-red{
    border: 1px solid var(--red);
    color: #000;
    padding: 14px 28px;
    border-radius: 0;
}
.btn-border-red:hover{
    background: var(--red);
}

@media only screen and (max-width: 991px){
    .container, .container-sm{
        max-width: 100%;
    }
    .logo-wrap{
        max-width: 92px;
    }
    .navbar {
        padding: 6px 0 6px;
    }
    .hero-team{
        max-width: 480px;
        margin: 0 auto;
    }
    .hero-content:before{
        width: 100px;
        height: 100px;
    }

    .stat-box{
        padding: 10px 5px;
    }
    .stat-icon{
        width: 50px;
        height: 50px;
    }
    .stat-icon i{
        font-size: 24px;
    }
    .stat-box h3{
        font-size: 24px;
    }
    .stat-box p{
        margin-top: 0;
    }

    .about .item-service{
        width: 100%;
    }
    .about .align-items-start{
        flex-direction: column-reverse;
        gap: 20px;
    }

    .about-image{
        max-width: 480px;
    }
}

/* ==================================================
   INNER PAGES
================================================== */

.block-breadcrumb {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.block-breadcrumb .breadcrumb {
    margin: 0;
    background: transparent;
    font-size: 14px;
}

.block-breadcrumb .breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #5a6573;
}

.block-breadcrumb .breadcrumb li + li:before {
    content: '/';
    margin: 0 8px;
    color: #9aa5b1;
}

.block-breadcrumb .breadcrumb li a {
    color: var(--navy);
}

.block-breadcrumb .breadcrumb li.active {
    color: var(--red);
    font-weight: 700;
}

.inner-hero {
    padding: 80px 0 80px;
    background: url(../../assets/img/hero_inner_02.jpg) center center no-repeat;
    position: relative;
}
.inner-hero:before{
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    content: "";
    z-index: 1;
}
.inner-hero .container{
    position: relative;
    z-index: 9;
}
@media only screen and (min-width: 768px){
    .inner-hero {
        padding: 120px 0 120px;
    }
}

.inner-hero-content h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
}
.inner-hero .section-subtitle{
    color: #fff;
}

.content-card {
    /*background: #fff;*/
    /*border-radius: 18px;*/
    /*padding: 28px;*/
    /*box-shadow: var(--shadow);*/
}

.content-cover img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 14px;
}

.article-body {
    color: #29323d;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    color: #617286;
    font-size: 14px;
}

.article-meta i {
    color: var(--red);
    margin-right: 6px;
}

.article-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.article-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 700;
}

.article-nav a:hover {
    color: var(--red);
}

.sidebar-title {
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 20px;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.sidebar-news-item img {
    width: 86px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
}

.sidebar-news-item h4 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.4;
}

.sidebar-news-item span {
    font-size: 13px;
    color: #7b8794;
}

.post-meta {
    color: #7b8794;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-content h5 a {
    color: var(--navy);
}

.post-content h5 a:hover {
    color: var(--red);
}

.pagination-wrap .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.pagination-wrap .pagination a,
.pagination-wrap .pagination span {
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 600;
    background: #fff;
}

.pagination-wrap .pagination .current,
.pagination-wrap .pagination a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

@media (max-width: 767px) {
    .inner-hero-content h1 {
        font-size: 30px;
    }

    .content-card {
        padding: 20px;
    }

    .article-nav {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*PAGE CATALOG SERVICE*/
.page-catalog-service h1{
    text-transform: uppercase;
    color: var(--primary-color);
}
.page-catalog-service .intro{
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    color: var(--base-color6);
}
.page-catalog-service .group-item h2{
    color: var(--primary-color);
}
.page-catalog-service .item{
    padding-top: 62.5%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.page-catalog-service .item:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.page-catalog-service a:hover .item:before{
    background: rgba(0, 0, 0, 0.32);
}
.page-catalog-service .item h2{
    position: absolute;
    width: 100%;
    padding: 20px 15px 10px 15px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(0, 0, 0, 0.88) 100%);
    color: var(--white);
    z-index: 2;
}
/*PAGE DETAIL SERVICE*/
.page-detail-service h1{
    text-transform: uppercase;
    color: var(--primary-color);
}
.page-detail-service .meta{
    color: var(--base-color7);
    padding: 8px 0;
    border-top: 1px solid var(--base-colord);
    border-bottom: 1px solid var(--base-colord);
}
.page-detail-service .thumbnail img{
    border-radius: 6px;
}
.page-detail-service .intro{
    color: var(--base-color6);
    font-style: italic;
}
.page-detail-service .block-editor-content{
    color: var(--base-color6);
}
.page-detail-service .rely{
    border-top: 1px solid var(--base-colord);
}
.page-detail-service .rely h3.title{
    color: var(--primary-color);
}
.page-detail-service .rely .item{
    padding-top: 62.5%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.page-detail-service .rely .item:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}
.page-detail-service .rely a:hover .item:before{
    background: rgba(0, 0, 0, 0.32);
}
.page-detail-service .rely .item h2{
    position: absolute;
    width: 100%;
    padding: 20px 15px 10px 15px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(0, 0, 0, 0.88) 100%);
    color: var(--white);
    z-index: 2;
}
@media(max-width: 767.98px){
    .page-catalog-service .group-item h2,
    .page-detail-service .rely h3.title{
        font-size: var(--text-lg);
    }
    .page-catalog-service .item h2,
    .page-detail-service .rely .item h2{
        font-size: var(--text-sm);
        padding: 15px 10px 8px 10px;
    }
}
@media(max-width: 575.98px){
    .page-detail-service .meta span{
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 5px;
    }
}

/*PAGE CONTACT*/
.page-contact .contact-main{
    max-width: 720px;
    margin-inline: auto;
}
.page-contact .contact-info-card,
.page-contact .contact-form-card,
.page-contact .contact-map-card{
    height: 100%;
}


.page-contact .contact-card-title{
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.page-contact .info ol,
.page-contact .info ul{
    margin-bottom: 15px;
    padding-left: 22px;
    margin-left: 15px;
    margin-top: 10px;
}
.page-contact .info ol li,
.page-contact .info ul li{
    list-style: inherit;
    margin-bottom: 3px;
}
.page-contact .info h1,
.page-contact .info h2,
.page-contact .info h3,
.page-contact .info h4{
    margin-bottom: 10px;
    margin-top: 15px;
    font-weight: 600;
    color: var(--navy);
}

.page-contact .contact-info-card h2{
    margin: 0 0 30px;
}
.page-contact .contact-main h2{
    margin: 0 0 30px;
    text-align: center;
}

.page-contact .block-map iframe,
.page-contact .block-map object{
    width: 100%;
    height: 420px;
    border: 0;
}
.page-contact .form-lien-he .form-control{
    border: 1px solid var(--border);
    border-radius: 0;
    min-height: 48px;
    padding: 10px 14px;
    font-size: 15px;
    box-shadow: none;
}
.page-contact .form-lien-he textarea.form-control{
    min-height: 148px;
}
.page-contact .form-lien-he .form-control:focus{
    border-color: var(--red);
    box-shadow: 0 0 0 0.18rem rgba(193, 18, 31, 0.12);
}
.page-contact .error{
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--red);
    margin-bottom: 0
}
.page-contact .captchare{
    position: relative;
}
.page-contact .captchare .captcha{
    position: absolute;
    right: 0;
    background: #edf1f5;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 48px;
    border-radius: 0;
    letter-spacing: 3px;
    font-weight: bold;
    color: var(--navy);
}
.page-contact .btn-gui{
    background: var(--red);
    border: 1px solid var(--red);
    font-size: 15px;
    font-weight: 600;
    padding: 11px 36px;
    border-radius: 0;
    color: var(--white)
}
.page-contact .btn-gui:hover{
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}
@media(max-width: 991.98px){
    .page-contact .contact-card-title{
        font-size: 20px;
    }
}
@media(max-width: 575.98px){
    .page-contact .content-card{
        padding: 20px;
    }
    .page-contact .block-map iframe,
    .page-contact .block-map object{
        height: 300px;
    }
    .page-contact .btn-gui{
        width: 100%;
    }
}


.article-body h2{
    margin: 30px 0 20px;
    font-size: 1.75rem;
}
.article-body h3{
    margin: 20px 0 15px;
    font-size: 1.25rem;
}
.article-body ul{
    list-style: disc;
    list-style-position: inside;
    margin: 0 0 20px;
}
.article-body table{
    width: 100%;
    margin-bottom: 20px;
}
.article-body table thead{
    background: var(--red-dark);
    color: #fff;
    font-weight: 600;
}
.article-body table th,
.article-body table td{
    border: 1px solid #c29598;
    padding: 22px 12px;
}
.article-body table p:last-of-type{
    margin-bottom: 0;
}
.header-service-title h1{
    font-size: 2rem;
    margin: 0 0 40px;
}
.map-sec iframe{
    width: 100%;
}
.article-body .s_table table th, 
.article-body .s_table table td{
    border: none;
    border-bottom: 1px solid #c29598;
}