/*
TEMPLATE FOR MEDIA QUERIES
@media screen and (min-width:1125px) {}                         --------> full layout
@media screen and (min-width:870px) and (max-width:1124px) {}   --------> content_narrow's width is fixed
@media screen and (max-width:869px) {}  

INDEX
- ANIMATIONS
- PG STRUCTURE & TYPOGRAPHY
- VIDEO-AREA
- SLIDE INDUSTRIES
- ABOUT
- PANELS
- MEET-OUR
- PARTS AND VALUES
- LABELS & TABS
- WHAT MAKE
- WHY CHOOSE
- ALL PRODUCTS
*/

/*-------------------------------------------------------- ANIMATIONS   ------------------*/
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(50px); }
}

/*-------------------------------------------------------- PG STRUCTURE & TYPOGRAPHY  ------------------*/
:root {
    --image-ready: url('../../images/Home2/paneltronics-ready-delivery-red.jpg');
    --image-custom: url('../../images/Home2/paneltronics-customizable-red.jpg');
    --image-oem: url('../../images/Home2/paneltronics-OEM-red.jpg');
}

header.Home2 {
    position: absolute;
    width: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.8);
}

button.default {
    color: white;
    background: var(--color3000);
    padding: 10px 20px;
    width: fit-content;
    margin: 0 auto;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.5s linear;
}

button.default:hover {
    border-color: var(--color3000);
    background-color: transparent;
    color: var(--color3000);
}

#home2025 {
    font-family: "Inria Sans", sans-serif !important;
}

#home2025 .bg_gray.hide_mobile .content {
    padding-top: 0;
}

#home2025 p {
    font-size: 18px;
}

#home2025 h1, #home2025 h2, #home2025 h3 {
    font-size: 30px;
    font-weight: 900;
}

#home2025 li {
    font-size: 16px;
    line-height: 28px;
    margin-left: 20px;
}

#home2025 ol li {
    margin-left: 0px;
}

@media screen and (max-width: 880px) {
    #home2025 h1, #home2025 h2, #home2025 h3 {
        font-size: 20px;
        font-weight: 900;
        line-height: 27px;
    }    
}

/*-------------------------------------------------------- VIDEO-AREA   ------------------*/
.video-area {
    position: relative;
    margin: auto;
    display: flex;
    background: #111111;
    overflow: hidden;
    justify-content: center;
}

.video-area #principal-video {
    padding: 56.5% 0px 0px;
    position: relative;
    width: 100vw;
}

.video-area .text {
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: rgb(0 0 0 / 60%);
}

.video-area .text-container {
    width: 600px;
    text-align: justify;
    margin-left: 4%;
}

.text h1 {
    margin-bottom: 40px;
    line-height: 45px;
    text-align: left;
    text-transform: uppercase;
}

.text p {
    text-align: left;
    margin-bottom: 50px;
}

.text .buttons {
    margin-top: 40px;
}

.video-area .buttons a {
    margin: 0px 10px 0px 0px;
    padding: 15px 25px;
    background: var(--color2000);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: linear 0.2s;
}

.video-area a:hover {
    background-color: var(--gray3);
}

.video-area .controls {
    position: absolute;
    right: 10px;
    top: 135px;
}

.video-area .controls button {
    margin: 5px;
    padding: 8px 10px;  
    background: rgba(255, 255, 255, 0.4);
    color: white;
    text-decoration: none;
    transition: linear 0.2s;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}

.video-area .controls button#skip {
    animation: pulse 2s;
    animation-delay: 2s;
}

.video-area button:hover {
    background-color: var(--color2000);
} 

.video-area #replay {
    display: none;
}

@media screen and (min-width: 1180px) {
    .video-area .text-container { display: none; }
    .video-area .text { position: absolute; padding-top: 60px; }
}

@media screen and (max-width: 1179px) {
    .video-area { flex-direction: column; }
    .video-area #principal-video { margin-top: 120px; }
    .text { padding: 20px 10px 35px; }
    .text .buttons { margin-top: 40px; margin-bottom: 20px; }
    .text h1 { margin-bottom: 10px; font-size: 20px !important; line-height: 40px; }
    .text p { margin-bottom: 10px; font-size: 14px !important; }
}

/*------------------------------------------ SLIDE INDUSTRIES   -------------------*/
.slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 440px;
}

#slide_industries .slide-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 3%;
    box-sizing: border-box;
    position: relative;
}

#slide_industries .slide-text {
    flex: 0 0 58%;
    text-align: left;
    position: relative;
    z-index: 20;
}

#slide_industries .slide-media {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 20;
    background-color: #dddddd;
}

#slide_industries .slide-media video {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    mix-blend-mode: multiply;
    backface-visibility: hidden;
    transform: translateZ(0);
}

#slide_industries .slide-text h2 {
    font-size: 50px;
}

#slide_industries .slide-text p {
    font-size: 17px;
}

/* SEO adjustments for Slide Show */
.content .slide_home > h2 {
    color: var(--color2000);
    line-height: 3vw;
    font-size: 3vw;
    font-weight: 700 !important;
    margin: 0;
}
.content .slide_home li { line-height: 20px !important; }
.content .slide_home h3 { font-size: 1.2em !important; font-weight: 700 !important; }

.slide-flex a.more {
    color: white;
    padding: 2px 20px !important;
    background-color: var(--color3000, #2b5d8c);
    text-transform: uppercase;
    float: left;
    margin-left: 0;
    font-size: 14px !important;
    border: none;
    margin-top: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#slide_industries a.more:hover {
    background-color: #222; 
}

#slide_industries .slide-text .rsABlock {
    position: relative !important;
    display: block !important;
    left: auto !important;
    top: auto !important;
    transform-origin: center center;
    opacity: 0;
    padding-right: 20px;
}

#slide_industries .slide-media.rsABlock {
    opacity: 0; 
}

#slide_industries .rsNav.rsThumbs {
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    width: auto;
}

#slide_industries .rsThumbsContainer {
    display: flex;
    transform: none !important;
    width: auto !important;
    align-items: flex-end;
    white-space: nowrap;
    position: relative;
}

#slide_industries div.rsNavItem.rsThumb.rsNavSelected > span.rsTmb {
    background: #131313;
    color: white;
}

#slide_industries .rsNavItem.rsThumb.rsNavSelectedimg {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

#slide_industries .rsThumb {
    display: block;
    padding: 10px 0px;
    max-width: 235px;
    text-transform: uppercase;
    margin-right: 5px !important;
}

#slide_industries .rsTmb {
    padding: 10px 10px;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

#slide_industries .rsNavItem.rsNavSelected .rsTmb {
    color: #fff;
}

#slide_industries .rsNavItem.rsThumb > span.rsTmb:hover {
    background-color: #d0d0d0;
    color: #222;
}

.slider-wrapper .custom-arrow {
    position: absolute;
    bottom: -5px;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    transition: background 0.3s ease;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.slider-wrapper .custom-arrow:hover { background: rgba(0, 0, 0, 0.8); }
.slider-wrapper .custom-arrow-left { right: -32px; }
.slider-wrapper .custom-arrow-right { right: -65px; }

.slider-wrapper .custom-arrow::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
}
.slider-wrapper .custom-arrow-left::before { content: "\f053"; }
.slider-wrapper .custom-arrow-right::before { content: "\f054"; }

/* Responsive Slide Industries */
@media screen and (min-width: 1180px) {
    #slide_industries { height: 460px !important; }
    
    .content .slide_home > h2 {
        padding-top: 20px; 
        margin-bottom: 5px;
        line-height: 45px !important;
        font-size: 34px !important;
        text-transform: uppercase;
    }

    #slide_industries .custom-oem { width: 500px !important; }
    #slide_industries .rack-mount { width: 440px !important; }
    #slide_industries .water-proof {width: 490px !important;}
    #slide_industries .power-distribution { width: 432px !important; }
    #slide_industries .slide-media video { width: 365px; }
}

@media screen and (min-width: 850px) and (max-width: 1179px) {
    .slider-wrapper { min-height: auto; }
    
    #slide_industries .slide-text h2 { font-size: 25px !important; }
    #slide_industries .slide_home p { font-size: 14px !important; }
    
    .slide-flex a.more { font-size: 12px !important; margin-top: 0 !important; }
    #slide_industries .rsTmb { padding: 4px 10px; font-size: 8px; }
    #slide_industries .rsThumb { padding: 3px 0px; margin-right: 0px !important; }
    
    .slider-wrapper .custom-arrow-left { right: 12px; }
    .slider-wrapper .custom-arrow-right { right: -21px; }
    
    #slide_industries .custom-oem { width: 365px; }
    #slide_industries .rack-mount { width: 300px; }
    #slide_industries .water-proof { width: 375px; }
    #slide_industries .power-distribution { width: 550px; } /* Override handled automatically */
    #slide_industries .enclosure-box { width: 272px; }
}

@media screen and (min-width: 480px) and (max-width: 849px) {
    .slide_home > h2 { padding-top: 2vw; line-height: 30px !important; }
    #slide_industries, #slide_industries .rsOverflow { height: 420px !important; }
    
    #slide_industries .slide-flex {
        flex-direction: row !important; 
        align-items: center !important;
        padding: 0 3% !important;
    }
    #slide_industries .slide-text { flex: 0 0 50% !important; width: 50% !important; margin-bottom: 0 !important; }
    #slide_industries .slide-media { flex: 0 0 50% !important; width: 50% !important; justify-content: flex-end !important; }

    #slide_industries .slide-text h2 { font-size: 25px !important; line-height: 26px !important; margin-bottom: 10px !important; }
    
    #slide_industries .slide-text > p:not(.link-more),
    #slide_industries .slide-text .flex,
    #slide_industries .slide-text ul { display: none !important; }
    
    #slide_industries .slide-text .link-more { display: block !important; margin-top: 10px !important; }
    
    .slide-flex a.more { padding: 8px 15px !important; font-size: 12px !important; margin-top: 0 !important; width: auto !important; }
    
    #slide_industries .rsThumbs { bottom: 5px !important; }
    #slide_industries .rsNavItem.rsThumb { width: auto !important; height: auto !important; padding: 3px !important; max-width: 140px !important; }
    #slide_industries .rsTmb { font-size: 10px !important; padding: 4px 6px !important; white-space: normal !important; line-height: 12px !important; text-align: center; }
}

@media (max-width: 768px) {
    #slide_industries, #slide_industries .rsOverflow { height: 780px !important; }
    
    #slide_industries .slide-flex { flex-direction: column !important; justify-content: flex-start !important; padding: 20px 0; }
    #slide_industries .slide-text { flex: 0 0 auto !important; width: 100% !important; margin-bottom: 30px !important; }
    
    #slide_industries .slide-text h2 { font-size: 25px !important; line-height: 1.2 !important; margin-bottom: 15px !important; }
    #slide_industries .slide-text p { font-size: 15px !important; line-height: 1.4 !important; }

    .slide-flex a.more { margin: 15px auto 0 !important; font-size: 12px !important; width: 340px; max-width: 100%; }

    #slide_industries .slide-media { flex: 0 0 auto !important; width: 100% !important; justify-content: center !important; }
    #slide_industries .slide-media video,
    #slide_industries .pdu-animation video { width: 100% !important; max-width: 500px !important; height: auto !important; }

    #slide_industries .rsNavItem.rsThumb { width: 10px !important; height: 10px !important; }
    #slide_industries .rsThumbsContainer { align-items: center; }
}


/*-------------------------------------------------------- ABOUT   -------------------*/
.about_wrap {
    background: #FFF;
    padding: 80px 0;
    display: table;
    width: 100%;
}

/* Headers H2 para About, Meet-Our e What-Make integrados com o Ticket SEO */
.about_wrap h2, .meet-our h2, .what-make h2 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    line-height: 40px;
}
.about_wrap h2 { padding-bottom: 40px; }
.about_wrap h2 span, .meet-our h2 span, .what-make h2 span { color: var(--color2000); }
@media screen and (max-width: 880px) {
    .meet-our h2, .what-make h2 { font-size: 22px !important; }
}

.about_wrap h1 {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    line-height: 40px;
    padding-bottom: 40px;
}
.about_wrap h1 span { color: var(--color2000); }
.about_wrap h4 { color: var(--color3000); }
.about_wrap p { font-size: 18px; line-height: 26px; margin-bottom: 15px; }
.about_wrap .show { animation: slideUp 0.9s ease-out forwards; }
.industries-serv-lists { padding: 0 !important; border: none !important; }
.about_wrap.wrap_manufacturer { background: #f9f9f9; }

.about_wrap .button {
    background: var(--color3000);
    border: none;
    width: 160px;
    text-align: center;
    float: none;
    position: static;
    color: white;
    opacity: 0.8;
    margin: 20px auto;
    font-size: 14px;
    padding: 4px 20px;
    display: block;
    height: 32px;
}
.about_wrap .button:hover { opacity: 1; }

.about_wrap.about_paneltronics { padding: 0 !important; }

@media screen and (min-width: 880px) {
    .about_wrap.about_paneltronics .flex { display: flex; align-items: stretch; }
    .about_wrap.about_paneltronics .fx_2:first-child { margin: 0 !important; position: relative; width: 50% !important; }
    .about_wrap.about_paneltronics .fx_2:first-child img { position: absolute; top: 0; right: 32px; width: 730px !important; height: 100%; object-fit: cover; }
    .about_wrap.about_paneltronics .fx_2:last-child {
        padding-top: clamp(20px, 4vw, 60px) !important;
        padding-bottom: clamp(20px, 4vw, 60px) !important;
        padding-left: 15px !important;
        padding-right: 63px !important;
        width: 50% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 !important;
    }
    .about_wrap.about_paneltronics .content-text { padding: 0 3em 0 5em; }
}

@media screen and (max-width: 879px) {
    .about_wrap.about_paneltronics { padding: 40px 0 !important; }
}

/*-------------------------------------------------------- PANELS   ------------------*/
.panels { background-color: white; }

.panels .fx_3.card {
    padding: 30px 11px;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
    border-top: 9px solid #bbbbbb;
    text-align: center;
}

.panels .card.show p { line-height: 22px; font-size: 18px; padding: 0; text-align: left; }
.panels .card.show img { width: 100%; max-width: 120px; margin: 0 auto 1.5em; }
.panels .card.show { animation: slideUp 0.9s ease-out forwards; }
.panels .card.hide { animation: slideDown 0.9s ease-out forwards; }
.panels .fx_3.card span { color: var(--color2000); }

.panels .fx_3.card h1 {
    text-transform: uppercase;
    font-size: 20px !important;
    margin-bottom: 15px;
}

.panels .fx_3.card h3 {
    text-transform: uppercase;
    font-size: 20px !important;
    margin-bottom: 15px;
    font-weight: 900;
}

.panels .fx_3.card li::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f061';
    font-weight: 900;
    margin-right: 10px;
    font-size: 8px;
    margin-left: -20px;
}

a.buttons { width: 100%; display: block; }

.panels .card a.buttons {
    width: 100%;
    color: white;
    transition: 0.5s;
    background-color: var(--color2000);
    padding: 14px 2px;
    text-transform: uppercase;
    margin: 0 auto 8px;
    max-width: 359px;
}

.panels .card a:hover { background-color: var(--gray3); transition: 0.5s; }

@media screen and (min-width: 1180px) {
    .panels section { width: 100%; max-width: 1500px; margin: 0 auto; }
    #all_products .flexC { display: flex; flex-wrap: wrap; justify-content: center; clear: both; gap: 0; }
    .flexC { display: flex; justify-content: center; clear: both; gap: 25px; flex-wrap: nowrap; }
    .fx_3.card.show .description { min-height: 200px; margin-bottom: 15px; }
    .panels { padding: 90px 62px 45px; }
}

@media screen and (max-width: 1179px) {
    .panels { height: 100%; padding-top: 60px; }
    .panels .fx_3.card { display: flex; flex-direction: column; }
    .panels .fx_3.card h1, .panels .fx_3.card h3 { font-size: 22px !important; }
}

@media screen and (min-width: 880px) and (max-width: 1179px) {
    .panels dd.description { margin: 15px 0; }
    .panels dd.button { display: table; width: 100%; }
    .panels .fx_3.card img { max-width: 120px; width: 100%; }
    .panels .card.show p { padding: 0; }
    .panels .card.show a { font-size: 14px; }
}

@media screen and (max-width: 879px) {
    .panels .fx_3.card img { max-width: 180px; width: 100%; }
    .panels .card.show p { padding: 0; margin-bottom: 50px; }
    .panels .card.show a { font-size: 12px; }
}

/*-------------------------------------------------------- MEET-OUR   ------------------*/
.meet-our {
    padding: 50px 0 50px 0px;
    background-color: white;
}

.meet-our h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 40px;
}
.meet-our h1 span { color: var(--color2000); }
.meet-our p { text-align: center; margin: 25px; margin-bottom: 35px; }

.meet-our .dcLine .fx_2:nth-child(1) { width: fit-content; margin: 0; }
.dcLine .imgC { margin: 0 !important; }
.meet-our .dcLine .fx_2:nth-child(2) { display: flex; flex-direction: column; width: 51%; margin-top: 4px; }
.meet-our .dcLine button.default { margin-top: 40px; }

.meet-our .dcLine ol, .meet-our .dcLine ul {
    list-style: none; 
    counter-reset: item;
    padding-left: 0;
    font-size: 14px;
    color: black;
}
.meet-our .dcLine ol li, .meet-our .dcLine ul li { counter-increment: item; margin-bottom: 15px; font-size: 16px; }
.meet-our .dcLine ol li::before { content: counter(item) "."; font-weight: bold; color: var(--color2000); margin-right: 8px; }
.meet-our .dcLine ul li::before {
    content: "\25A0";
    bottom: 0.4em;
    font-weight: bold;
    color: var(--color2000);
    margin-right: 8px;
    font-size: 0.5em;
    position: relative;
}

.meet-our .dcLine .fx_2 { opacity: 0; transition: all 0.8s ease-out; }
.meet-our .dcLine .fx_2.left { transform: translateX(-200px); position: absolute; }
.meet-our .dcLine .fx_2.right { transform: translateX(200px); position: absolute; display: none; }
.meet-our .dcLine .fx_2.show { opacity: 1; }

@media screen and (min-width: 1180px) {
    .meet-our .modular { margin-top: 35px !important; margin-left: 50px; }
}

@media screen and (max-width: 1179px) {
    .meet-our img.imgC { padding: 25px 0px 0; }
    .meet-our .dcLine .fx_2:nth-child(2) { width: 85%; }
}

@media screen and (max-width: 880px) {
    .meet-our h1 { font-size: 22px !important; }
    .meet-our p { font-size: 16px !important; }
    .meet-our .tabs.custom-4 .tab-titles { gap: 10px !important; }
}

@media screen and (max-width: 599px) {
    .meet-our .dcLine .fx_2:nth-child(1) { padding: 30px 10px 10px 10px; }
    .meet-our .dcLine .fx_2:nth-child(2) { width: 100%; padding: 10px; }
}   

/*-------------------------------------------------------- PARTS AND VALUES   ------------------*/
.partsAndValues h1 { color: var(--color2000); line-height: 45px; }
.partsAndValues p { font-size: 16px; }

@media screen and (max-width: 1179px) {
    .zz_layer.partsAndValues { padding: 70px 0px; }
    .zz_layer.partsAndValues img { width: 100% !important; }
    .zz_layer.partsAndValues h1 { font-size: 18px !important; }
}

/*-------------------------------------------------------- LABELS & TABS  ------------------*/
.labels {
    background-image: url('../../images/Home2/paneltronics-listras-logo.png');
    background-size: 638px;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: -16px;
    background-color: #f0f0f0;
    transition: linear 0.5s;
}  

.labels h1 {
    color: var(--color2000);
    text-transform: uppercase;
    padding: 40px 0 10px 0px;
    font-weight: bold;
}

.labels .textArea .imgC { margin: 20px 0; }
.labels .fx_2.imageArea { display: flex; justify-content: flex-end; }
.labels .imageArea .imgC { height: 470px; position: relative; top: -40px; margin-bottom: 0; }
.labels p { margin: 0px 0px 30px 0px; }
.labels span { color: var(--color2000); font-style: italic; font-size: 18px; }
.labels .fx_2.textArea { display: flex; flex-direction: column; }

@media screen and (max-width: 1179px) {
    .labels { background-image: none !important; }
    .fx_2.imageArea { height: 100%; }
    .labels img.imgC { top: 0 !important; width: 100%; height: 100% !important; }
    .labels .flex { padding-bottom: 40px; background: rgba(240,240,240,.9); }
}

@media screen and (max-width: 599px) {
    .labels .flex .fx_2:first-child { order: 2; }
    .labels .flex .fx_2:last-child { order: 1; }
    .labels h1 { text-align: center; }
}

/* Custom Tabs */
.tabs.custom-4 .tab-titles { justify-content: center; gap: 10px; margin-bottom: 40px; }
.tabs.custom-4 .tab-title {
    background: var(--gray3);
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}
.tabs.custom-4 .tab-title:hover, .tabs.custom-4 .tab-title.active { background: var(--color1000); }
.tabs.custom-4 .tab { padding: 0; min-height: 680px; }

@media screen and (max-width: 879px) {
    .tab-titles { display: flex; flex-wrap: wrap; }
    .tab-title { width: 150px; text-align: center; }
}

/*-------------------------------------------------------- WHAT MAKE   ------------------*/
.what-make { padding: 50px 0 50px 0px; background-color: white; }
.what-make .separator { background: none; height: 22px; width: 166px; margin: 0px auto; clear: both; }

.what-make h1 {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 40px;
}
.what-make h1 span { color: var(--color2000); }

.what-make h3 {
    font-size: 25px;
    font-weight: 900;
    color: var(--color2000);
    text-align: left !important;
    margin-left: 25px;
}

.what-make .dcLine h2 { margin-bottom: 10px; }
.what-make .dcLine h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--color1000);
    text-align: left !important;
    margin-left: 25px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.what-make p { text-align: center; margin: 25px; margin-bottom: 35px; }
.what-make .tab-item p { text-align: left; line-height: 25px; }
.what-make .dcLine p { text-align: left; margin-bottom: 10px; margin-top: 6px; }

.what-make .tab-item h2 {
    font-size: 25px !important;
    font-weight: 900;
    color: var(--color2000);
    margin-left: 25px;
    text-align: left !important;
    text-transform: capitalize;
}

.what-make .tabs.custom-4 .tab { min-height: 0px; } 
.what-make .tab-item .fx_2:nth-child(1) { width: fit-content; margin: 0; }
.what-make .tab-item .fx_2:nth-child(1) img { width: 543px; }
.what-make .tab-item .fx_2:nth-child(2) { display: flex; flex-direction: column; width: 51%; margin-top: 4px; }
.what-make .tab-item button.default { margin-top: 40px; }

.what-make .tab-item ol, .what-make .tab-item ul {
    list-style: none; 
    counter-reset: item;
    padding-left: 0;
    font-size: 14px;
    color: black;
}

.what-make .dcLine ul { margin-left: 25px; }
.what-make .dcLine ul li { counter-increment: item; margin-bottom: 4px !important; font-size: 16px; }
.what-make .tab-item ol li, .what-make .tab-item ul li { counter-increment: item; margin-bottom: 15px; font-size: 16px; }
.what-make .tab-item ol li::before { content: counter(item) "."; font-weight: bold; color: var(--color2000); margin-right: 8px; }
.what-make .tab-item ul li::before {
    bottom: 0.4em;
    font-weight: bold;
    color: var(--color2000);
    margin-right: 8px;
    font-size: 0.5em;
    position: relative;
}

.what-make .tab-item .fx_2 { opacity: 0; transition: all 0.8s ease-out; }
.what-make .tab-item .fx_2.left { transform: translateX(-200px); position: absolute; }
.what-make .tab-item .fx_2.right { transform: translateX(200px); position: absolute; display: none; }
.what-make .tab-item .fx_2.show { opacity: 1; }

@media screen and (max-width: 1179px) {
    .what-make img.imgC { padding: 25px 0px 0; }
    .what-make .tab-item .fx_2:nth-child(2) { width: 95%; }
}

@media screen and (max-width: 880px) {
    .what-make h1 { font-size: 22px !important; }
    .what-make p { font-size: 16px !important; }
    .what-make .tabs.custom-4 .tab-titles { gap: 10px !important; }
    .what-make p, .what-make ul, .what-make h2, .what-make h3 { margin-left: 0 !important; }
}

@media screen and (max-width: 599px) {
    .what-make .tab-item .fx_2:nth-child(1) { padding: 30px 10px 10px 10px; }
    .what-make .tab-item .fx_2:nth-child(2) { width: 100%; padding: 10px; }
}   

/*-------------------------------------------------------- WHY CHOOSE   ------------------*/
.why_choose_wrap {
    background-image: linear-gradient(rgb(255 255 255 / 74%), rgb(255 255 255 / 65%)), url(https://paneltronics.com/images/home3/banner-why-choose.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}
.why_choose_wrap section { position: relative; z-index: 2; }
.why_choose_wrap h2 { color: #000; }
.why_choose_wrap .intro-text { text-align: center; max-width: 950px; margin: 0 auto 60px auto; font-size: 18px; line-height: 1.5; }
.why_choose_wrap .flex { margin-bottom: 20px; }
.why_choose_wrap .mt-custom { margin-top: 40px; }
.why_choose_wrap h4 { font-size: 18px; font-weight: 900; text-transform: uppercase; text-align: left; margin-bottom: 5px; }
.why_choose_wrap .fx_3 p { text-align: left; font-size: 16px !important; line-height: 1.4; color: #222; }

@media screen and (max-width: 879px) {
    .why_choose_wrap .fx_3 { margin-bottom: 30px; }
    .why_choose_wrap .mt-custom { margin-top: 0; }
}

/*-------------------------------------------------------- ALL PRODUCTS  ------------------*/
@media screen and (min-width: 1180px) {
    #all_products {
        background-image: linear-gradient(to left, rgba(255, 255, 255, 1) 54%, rgb(255 255 255 / 0%) 76%), url(https://paneltronics.com/images/home3/img-allpro.jpg) !important;
        background-size: 100% 100%, cover !important;
        background-position: center, -108px center !important;
        background-repeat: no-repeat, no-repeat !important;
        background-color: #fff !important;
        padding: 50px 0;
    }
    #all_products section { display: flex; flex-direction: row-reverse; }
    #all_products .content { width: 690px; padding: 0; }
}

#all_products h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000 !important;
    margin-bottom: 40px !important;
}
#all_products h2 span { color: #b5121b; }
#all_products h3 { color: var(--color3000) !important; font-size: 16px; }

#all_products .fx_2:first-child h3:first-child,
#all_products .fx_2:last-child h3:first-child { margin-top: 0; }

#all_products dl { margin-bottom: 35px; }
#all_products dd { margin-bottom: 0 !important; line-height: 19px !important; }
#all_products dd a { color: #222; font-size: 14px; font-weight: 500; text-decoration: none; transition: 0.2s; }
#all_products dd a:hover { color: #b5121b; text-decoration: underline; }

@media screen and (min-width: 880px) and (max-width: 1179px) {
    #all_products {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 200px, rgba(255, 255, 255, 1) 400px), url('https://paneltronics.com/images/home3/paneltronics-allproducts-background-2.png') !important;
        background-position: center top !important;
        background-size: 100% 100%, 130% auto !important; 
        background-repeat: no-repeat, no-repeat !important;
        padding: 400px 40px 50px 40px !important; 
    }
}

@media screen and (max-width: 879px) {
    #all_products {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 150px, rgba(255, 255, 255, 1) 320px), url('https://paneltronics.com/images/home3/paneltronics-allproducts-background-2.png') !important;
        background-size: 180% auto !important;
        background-repeat: no-repeat, no-repeat !important;
        padding: 262px 20px 50px 20px !important;
    }
}