/********** Template CSS **********/
:root {
   --primary: #1F4E79;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background: rgba(0, 0, 0, .35);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    min-height: 140px;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("img/acustica-hero.jpg") center center no-repeat;

    background-size: cover;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/

.footer {
    background: #f5f5f5;
}

.footer h3,
.footer h4,
.footer .text-light {
    color: #222222 !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #666666;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #cccccc;
    color: #444444;
}

.footer .form-control::placeholder {
    color: #999999;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    color: #666666;
    border-top: 1px solid #dddddd;
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: #222222;
}
/* H34 ENERGY - Typography */

body,
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.navbar,
.navbar .navbar-nav .nav-link,
.btn,
.section-title {
    font-family: 'Outfit', sans-serif !important;
}

/* Titolo principale Home */
.display-1 {
    font-weight: 300 !important;
    letter-spacing: 2px;
    line-height: 1.1;
}

/* Titoli sezioni */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
    font-weight: 400 !important;
    letter-spacing: 1px;
}

/* Menu */
.navbar .navbar-nav .nav-link {
    font-weight: 400 !important;
    letter-spacing: 1px;
}

/* Pulsanti */
.btn {
    font-weight: 400 !important;
}
/* H34 ENERGY - Project active color fix */
.project .nav .nav-link.active,
.project .nav-pills .nav-link.active,
.project .nav-link.active,
.nav-pills .nav-link.active {
    background-color: #B78D65 !important;
    background: #B78D65 !important;
    border-color: #B78D65 !important;
}

.project .nav .nav-link.active h3,
.project .nav-link.active h3,
.nav-pills .nav-link.active h3 {
    color: #ffffff !important;
}

/* H34 ENERGY - Page headers */
.page-header {
    min-height: 120px;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    display: flex;
    align-items: center;
}

.page-header-acustica {
    background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("img/acustica-hero.jpg") center center no-repeat;
    background-size: cover;
}

.page-header .display-3,
.page-header .display-5 {
    font-weight: 400 !important;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1rem;
}
.progettazione-hero {
    min-height: 650px;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url("img/progettazione-hero.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.sostenibilita-hero {
    min-height: 650px;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url("img/sostenibilita-hero.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
/* HOME HERO H34ENERGY */

.hero-custom{
    position:absolute;
    top:45px;
    left:80px;
    max-width:1000px;
    z-index:10;
    text-align:left;
}

.hero-custom h1{
    font-size:72px;
    font-weight:300 !important;
    line-height:1;
    margin-bottom:20px;
}

.hero-custom h3{
    font-size:30px;
    line-height:1.3;
    margin-bottom:20px;
}

.hero-custom p{
    font-size:18px;
    line-height:1.5;
    max-width:650px;
}

.hero-custom p{
    font-size:18px;
    line-height:1.5;
    margin-bottom:20px;
    color:#fff;
}

.hero-custom .btn{
    font-size:18px;
    padding:18px 48px !important;
}
.header-carousel h1 {
    font-size: 72px !important;
    font-weight: 300 !important;
    margin-bottom: 25px;
}

.header-carousel h3 {
    font-size: 30px !important;
    line-height: 1.3;
    margin-bottom: 20px;
}

.header-carousel p {
    font-size: 18px !important;
}
.hero-signature{
    position:absolute;
    bottom:30px;
    right:40px;

    color:rgba(255,255,255,.85);

    text-align:right;

    font-size:14px;
    line-height:1.5;
    letter-spacing:2px;

    text-transform:uppercase;
}

.acustica-hero{
    min-height:650px;
    background:
        linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.48)),
        url("img/acustica-hero.jpg") center center/cover no-repeat;
    display:flex;
    align-items:flex-start;
    padding-top:95px;
}

.acustica-hero h1{
    color:#ffffff;
    font-size:clamp(52px,5vw,82px);
    line-height:1.05;
    font-weight:300;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:22px;
}

.hero-subtitle{
    color:#c2a27d;
    font-size:clamp(22px,2vw,30px);
    line-height:1.3;
    font-weight:400;
    max-width:650px;
    margin-bottom:20px;
}

.hero-line{
    width:72px;
    height:2px;
    background:#c2a27d;
    margin-bottom:28px;
}

.hero-description{
    color:#ffffff;
    font-size:20px;
    line-height:1.6;
    max-width:600px;
}

.hero-icons{
    display:none;
}
@media (max-width: 991.98px) {
    .hero-custom {
        top: 35px;
        left: 45px;
        right: 35px;
        max-width: 760px;
    }
    .hero-custom h1,
    .header-carousel h1 {
        font-size: 58px !important;
    }
    .hero-custom h3,
    .header-carousel h3 {
        font-size: 25px !important;
    }
    .hero-custom p,
    .header-carousel p {
        font-size: 17px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-custom {
        top: 28px;
        left: 24px;
        right: 24px;
    }
    .hero-custom h1,
    .header-carousel h1 {
        font-size: 42px !important;
        margin-bottom: 15px;
    }
    .hero-custom h3,
    .header-carousel h3 {
        font-size: 21px !important;
        line-height: 1.28;
    }
    .hero-custom p,
    .header-carousel p {
        font-size: 15px !important;
        line-height: 1.4;
    }
    .hero-signature {
        display: none;
    }
}


/* =========================================================
   H34 ENERGY — LAYOUT UNIFORME 2026
   Impaginazione compatta e coerente per tutte le pagine
   ========================================================= */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 320px;
}

.h34-uniform-page {
    --h34-content: 1180px;
    --h34-reading: 920px;
    --h34-image: 760px;
    --h34-space: 72px;
}

.h34-uniform-page .container,
.h34-uniform-page .container-xxl > .container {
    max-width: var(--h34-content);
}

.h34-uniform-page .container-xxl.py-5 {
    padding-top: var(--h34-space) !important;
    padding-bottom: var(--h34-space) !important;
}

.h34-uniform-page .display-1 { font-size: clamp(46px, 6vw, 78px); }
.h34-uniform-page .display-3 { font-size: clamp(38px, 4.6vw, 62px); }
.h34-uniform-page .display-4 { font-size: clamp(36px, 4vw, 56px); }
.h34-uniform-page .display-5 { font-size: clamp(31px, 3.2vw, 46px); line-height: 1.15; }
.h34-uniform-page h1,
.h34-uniform-page h2,
.h34-uniform-page h3 { font-weight: 400; }
.h34-uniform-page p { line-height: 1.78; }

/* Immagini principali: mai a tutto schermo */
.h34-uniform-page .row.g-5.align-items-center img.img-fluid,
.h34-uniform-page .portfolio-image,
.h34-uniform-page .h34-arch-slider,
.h34-uniform-page .h34-acoustic-slider,
.h34-uniform-page .h34-software-slider {
    width: 100%;
    max-width: var(--h34-image);
    margin-left: auto;
    margin-right: auto;
}

.h34-uniform-page .row.g-5.align-items-center img.img-fluid {
    max-height: 430px;
    object-fit: cover;
    display: block;
}

.h34-uniform-page .service-item {
    border: 1px solid rgba(0,0,0,.07);
    background: #fff;
    box-shadow: none !important;
    transition: transform .25s ease, border-color .25s ease;
}
.h34-uniform-page .service-item:hover {
    transform: translateY(-3px);
    border-color: rgba(185,150,105,.42);
}

/* ACUSTICA: schede compatte come il resto del sito */
.h34-uniform-page .acoustic-hero {
    padding: 82px 0 64px !important;
}
.h34-uniform-page .acoustic-hero .lead {
    max-width: var(--h34-reading);
    font-size: 16px !important;
}
.h34-uniform-page .acoustic-project {
    padding: 58px 0 !important;
}
.h34-uniform-page .acoustic-project > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    column-gap: 58px;
    row-gap: 18px;
    align-items: center;
    max-width: var(--h34-content);
}
.h34-uniform-page .acoustic-number {
    grid-column: 1 / -1;
    text-align: left !important;
    margin: 0 0 2px !important;
}
.h34-uniform-page .acoustic-image {
    grid-column: 1;
    width: 100% !important;
    max-width: 620px !important;
    height: 350px !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: 1px solid rgba(0,0,0,.06);
}
.h34-uniform-page .acoustic-image img {
    object-fit: contain !important;
}
.h34-uniform-page .acoustic-text {
    grid-column: 2;
    max-width: 480px !important;
    margin: 0 !important;
    text-align: left !important;
}
.h34-uniform-page .acoustic-text h2 {
    font-size: clamp(27px, 2.7vw, 40px) !important;
}
.h34-uniform-page .acoustic-desc {
    font-size: 15.5px !important;
    line-height: 1.75 !important;
}
.h34-uniform-page .acoustic-tags {
    justify-content: flex-start !important;
    gap: 8px !important;
}
.h34-uniform-page .acoustic-tags span {
    padding: 6px 11px !important;
    font-size: 12px !important;
}
.h34-uniform-page .acoustic-gallery-wrap {
    display: none !important;
}

/* Portfolio generale: proporzioni più contenute */
.h34-uniform-page.portfolio-page .portfolio-image,
.h34-uniform-page .portfolio-page .portfolio-image,
.h34-uniform-page .h34-arch-slider,
.h34-uniform-page .h34-acoustic-slider,
.h34-uniform-page .h34-software-slider {
    height: 350px !important;
}

/* Pagine progetto: immagine e testo equilibrati */
.h34-uniform-page .portfolio-page .row.g-5.align-items-start {
    max-width: var(--h34-content);
    margin-left: auto;
    margin-right: auto;
}
.h34-uniform-page .portfolio-page .col-lg-7 .portfolio-image,
.h34-uniform-page .portfolio-page .col-lg-7 .h34-arch-slider {
    max-width: 720px;
    height: 430px !important;
}

@media (max-width: 991.98px) {
    .h34-uniform-page { --h34-space: 56px; }
    .h34-uniform-page .acoustic-project > .container {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
    .h34-uniform-page .acoustic-number,
    .h34-uniform-page .acoustic-image,
    .h34-uniform-page .acoustic-text {
        grid-column: 1;
    }
    .h34-uniform-page .acoustic-image,
    .h34-uniform-page .acoustic-text {
        max-width: 700px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 767.98px) {
    .h34-uniform-page { --h34-space: 42px; }
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
    .h34-uniform-page .acoustic-image { height: 255px !important; }
    .h34-uniform-page .portfolio-image,
    .h34-uniform-page .h34-arch-slider,
    .h34-uniform-page .h34-acoustic-slider,
    .h34-uniform-page .h34-software-slider { height: 270px !important; }
    .h34-uniform-page .row.g-5.align-items-center img.img-fluid { max-height: 310px; }
}

/* =========================================================
   H34 ENERGY — TYPOGRAPHY COMPACT FINAL
   Riduce i titoli grandi in tutte le pagine senza cambiare layout.
   ========================================================= */

/* Titoli principali delle pagine interne */
.page-header h1,
h1.display-1,
h1.display-3,
h1.display-5,
.acustica-hero h1 {
    font-size: clamp(34px, 3.2vw, 52px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
}

/* Titoli delle sezioni */
h2,
.display-6 {
    font-size: clamp(27px, 2.2vw, 38px) !important;
    line-height: 1.16 !important;
}

/* Titoli card e sottosezioni */
h3 {
    font-size: clamp(21px, 1.6vw, 28px) !important;
    line-height: 1.22 !important;
}

.section-title {
    font-size: clamp(14px, 1vw, 17px) !important;
    letter-spacing: .06em !important;
}

/* Home hero */
.header-carousel h1,
.hero-custom h1 {
    font-size: clamp(38px, 4.2vw, 58px) !important;
    line-height: 1.06 !important;
    margin-bottom: 18px !important;
    max-width: 950px;
}

.header-carousel h3,
.hero-custom h3 {
    font-size: clamp(21px, 2vw, 30px) !important;
    line-height: 1.28 !important;
    margin-bottom: 16px !important;
    max-width: 900px;
}

.header-carousel p,
.hero-custom p {
    font-size: clamp(15px, 1.15vw, 18px) !important;
    line-height: 1.5 !important;
    max-width: 780px;
}

/* Logo/header leggermente più equilibrato */
.navbar-brand img {
    max-height: 62px;
    width: auto;
}

@media (max-width: 991.98px) {
    .page-header h1,
    h1.display-1,
    h1.display-3,
    h1.display-5,
    .acustica-hero h1 {
        font-size: clamp(31px, 5vw, 43px) !important;
    }

    .header-carousel h1,
    .hero-custom h1 {
        font-size: clamp(34px, 6vw, 48px) !important;
    }
}

@media (max-width: 575.98px) {
    .page-header h1,
    h1.display-1,
    h1.display-3,
    h1.display-5,
    .acustica-hero h1,
    .header-carousel h1,
    .hero-custom h1 {
        font-size: 31px !important;
        line-height: 1.1 !important;
    }

    h2,
    .display-6 {
        font-size: 25px !important;
    }

    h3,
    .header-carousel h3,
    .hero-custom h3 {
        font-size: 19px !important;
    }

    .navbar-brand img {
        max-height: 48px;
    }
}

/* H34 bilingual language selector */
.h34-lang-switch{display:flex!important;align-items:center;white-space:nowrap;font-size:13px}.h34-lang-switch a{color:inherit}.h34-lang-switch strong{color:#b99670}
