@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
:root {
    --black: #005095;
    --white: #fff;
}
body {
    min-height: 100vh;
    background: #f8f8f8;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}
header.sticky {
    padding: 10px 100px;
}
.logohcx3 {
    position: relative;
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 500;
    text-transform: uppercase;
    color: #0b4790;
}
.logohcx3 strong {
    color: #6aabde;
}

.menuToggle {
    position: relative;
    width: 30px;
    height: 30px;
    background: url(https://hcx3.com/menuhcx3.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.menuToggle.active {
    background: url(https://hcx3.com/cerrar-menu-hcx3.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}
.navigation.active {
    opacity: 1;
    visibility: visible;
}
.navigation li {
    list-style: none;
    margin: 10px 0;
}
.navigation li a {
    color: var(--black);
    font-size: 1.2em;
    letter-spacing: 4px;
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}
h2 {
    color: var(--black);
}
section {
    position: relative;
    padding: 100px;
    width: 100%;
    min-height: 100vh;
    background: var(--white);
}
.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner {
     display: flex;
     justify-content: center;
     align-items: center;
}
.banner .contentBx {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner .contentBx h1 {
    font-size: 2em;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.banner .contentBx h2 {
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.banner .contentBx p {
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 5px;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 20px;
    border: 2px solid var(--black);
    color: var(--black);
    background: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s;
}

.btn:hover {
    color: var(--white);
    background: var(--black);
}
.title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title h1 {
    position: relative;
    text-align: center;
    font-weight: 700; /* El más grueso de los tres */
    letter-spacing: 3px; /* Mayor espaciado para H1 */
    font-size: 1.6em; /* El tamaño más grande (ej. 3em o más) */
    text-transform: uppercase;
    color: var(--black);
}

.title h2 {
    position: relative;
    text-align: center;
    font-weight: 600; /* Ligeramente más grueso que h3 */
    letter-spacing: 2px;
    font-size: 1em; /* Mayor que h3 (ej. 2em) */
    text-transform: uppercase;
    color: var(--black);
}

.title h3 {
    position: relative;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1.4em;
    text-transform: uppercase;
    color: var(--black);
}
.title p {
    margin-top: 20px;
    max-width: 700px;
    text-align: center;
}
.title h3:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 6px;
    background: var(--black);
}
p {
    color: var(--black);
    font-weight: 400;
    text-align:start;
    line-height: 1.5em;
}
.about {
    background-color: #f4f4f4;
}
.about2 {
    background-color: #dff1fc;
}

.about3 {
    background-color: #ffffff;
}
.about .contentBx, .about2 .contentBx, .about3 .contentBx {
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}

.about .contentBx .content, .about2 .contentBx .content, .about3 .contentBx .content {
    position: relative;
}
.about .contentBx .content .imgBx, .about2 .contentBx .content .imgBx, .about3 .contentBx .content .imgBx {
    min-height: 400px;
}
.post {
    position: relative;
}
.post .contentBx {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: 20px;
}
.post .contentBx .postColumn {
    position: relative;
}
.post .contentBx .postColumn .postBox {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

.post .contentBx .postColumn .postBox.extraHeight {
    height: 600px;
}

.post .contentBx .postColumn .postBox .textBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}
.post .contentBx .postColumn .postBox:hover .textBx{
    opacity: 0.85;
    visibility: visible;
}
.post .contentBx .postColumn .postBox .textBx h4 {
    font-weight: 400;
    font-size: 1em;
    letter-spacing: 1px;
    color: var(--black);
}
.post .contentBx .postColumn .postBox .textBx .btn {
    padding: 4px 10px;
    background: var(--black);
    color: var(--white);
    font-weight: 300;
    font-size: 1em;
}
.mgt60 {
    margin-top: 60px;
}
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact .contactForm {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
}
.contact .contactForm .row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact .contactForm .row2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.contact .contactForm .row input,
.contact .contactForm .row2 textarea
{
    width: 100%;
    padding: 10px;
    border: 1px solid var(--black);
    outline: none;
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact .contactForm .row2 textarea {
    resize: none;
    height: 200px;
}

::placeholder {
    color: var(--black);
}

.contact .contactForm .row2 input[type="submit"] {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    cursor: pointer;
}

.contact .contactForm .row2 input[type="submit"]:hover{
    background: var(--black);
    color: var(--white);
}

footer {
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #f8f8f8;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer .footerMenu {
    display: flex;
}

footer .footerMenu li {
    list-style: none;
}

footer .footerMenu li a {
    display: inline-block;
    text-decoration: none;
    margin: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.copyrightText {
    color: var(--black);
    text-align: center;
    letter-spacing: 1px;
}

.hcx3TxtP {
    color: #6aabde;
}

.containerr {
    height: auto;
    margin: 20px 0 0 auto;
    display: grid;
    /* CÓDIGO MODIFICADO */
    /* Define 4 columnas de igual ancho para que quepan los 4 elementos 'boxx' */
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* Puedes añadir un pequeño gap para separarlos */
    grid-gap: 10px; 
}

.containerr .boxx {
    position: relative;
    background: #f4f4f4;
    text-align: center;
    padding: 30px 30px 30px;
    overflow: hidden;
}

.boxx h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

.boxx h3 {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 7px;
}

.boxx p {
    font-size: 0.9rem;
    margin-top: 10px;
}

.img-servicios {
    width: 180px;
    margin-bottom: 10px;
}

.h4banner {
    color: #1d70b7;
    margin-bottom: 8px;
    font-size: 1.5em;
    font-weight: 400;
}

.h4servicio {
    color: #1d70b7;
    margin-bottom: 8px;
    margin-top: 8px;
    font-size: .8em;
    font-weight: 400;
}

.h5banner {
    color: #1d70b7;
    margin-bottom: 8px;
    font-size: 1.1em;
    font-weight: 500;
}

.h3casos {
    font-size: 1.3em;
    color: #3f84c5;
    font-weight: 500;
    margin-bottom: 10px;
}

#precios {
  /* Define un alto mínimo para que el degradado sea visible */
  min-height: 100vh;
  /* El degradado va 'to top' (hacia arriba) */
  /* Comienza con #bcdcf5 (el color de abajo) */
  /* Termina con #ffffff (el color de arriba) */
  background-image: linear-gradient(to top, #bcdcf5, #ffffff);
}

/* ========================================
   ESTILOS PARA LISTAS ORDENADAS Y NO ORDENADAS
   ======================================== */

/* Listas no ordenadas (ul) - Estilo principal */
ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.6em;
}

/* Bullet personalizado para listas no ordenadas */
ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #6aabde;
    border-radius: 50%;
}

/* Efecto hover en items de lista */
ul li:hover:before {
    background: var(--black);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* ========================================
   LISTAS ORDENADAS (ol)
   ======================================== */

ol {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
    margin: 20px 0;
}

ol li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 18px;
    color: var(--black);
    font-weight: 400;
    line-height: 1.6em;
    counter-increment: custom-counter;
}

/* Número personalizado para listas ordenadas */
ol li:before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #005095, #6aabde);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.9em;
}

/* Efecto hover en números */
ol li:hover:before {
    background: linear-gradient(135deg, #6aabde, #005095);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* ========================================
   VARIANTE: Lista numerada cuadrada
   ======================================== */

ol.square-style li:before {
    border-radius: 4px;
    width: 28px;
    height: 28px;
}

/* ========================================
   VARIANTE: Lista con check marks
   ======================================== */

ul.checklist li:before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--black);
    color: white;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

ul.checklist li:hover:before {
    background: #85c2eb;
}

/* ========================================
   VARIANTE: Lista de pasos/proceso
   ======================================== */

ol.process-list {
    counter-reset: process-counter;
}

ol.process-list li {
    padding: 20px 20px 20px 70px;
    background: #f8f8f8;
    margin-bottom: 20px;
    border-left: 4px solid #6aabde;
    counter-increment: process-counter;
}

ol.process-list li:before {
    content: counter(process-counter);
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.1em;
}

ol.process-list li:hover {
    background: #f0f0f0;
    transition: background 0.3s ease;
}

/* ========================================
   LISTAS ANIDADAS
   ======================================== */

/* Segunda nivel para listas no ordenadas */
ul li ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

ul li ul li:before {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 2px solid #6aabde;
}

/* Segunda nivel para listas ordenadas */
ol li ol {
    counter-reset: sub-counter;
    margin-top: 15px;
}

ol li ol li {
    counter-increment: sub-counter;
    padding-left: 40px;
}

ol li ol li:before {
    content: counter(custom-counter) "." counter(sub-counter);
    width: auto;
    min-width: 35px;
    padding: 0 8px;
    border-radius: 15px;
    font-size: 0.85em;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    ul li, ol li {
        padding-left: 35px;
        font-size: 0.95em;
    }
    
    ol li:before {
        width: 26px;
        height: 26px;
        font-size: 0.85em;
    }
    
    ol.process-list li {
        padding: 15px 15px 15px 60px;
    }
    
    ol.process-list li:before {
        left: 15px;
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   EXCEPCIONES - No aplicar estilos en navegación y footer
   ======================================== */

.navigation ul,
.navigation ul li,
.footerMenu,
.footerMenu li {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.navigation ul li:before,
.footerMenu li:before {
    display: none !important;
}

/* ========================================
   HERO SECTION - VARIACIONES MEJORADAS
   ======================================== */

/* Variación 1: Hero con Estadísticas */
.banner-enhanced .contentBx-stats {
    max-width: 900px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(106, 171, 222, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(106, 171, 222, 0.3);
}

.badge-icon {
    background: #6aabde;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.badge-text {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.5px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2em;
    font-weight: 700;
    color: #6aabde;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85em;
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: #6aabde;
    border-color: #6aabde;
}

.btn-secondary {
    background: transparent;
    color: var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* Variación 2: Hero con Beneficios */
.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, #005095, #6aabde);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.05em;
    margin: 20px 0;
    max-width: 650px;
}

.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.hero-benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: #6aabde;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.hero-benefits-list li strong {
    color: var(--black);
    font-weight: 600;
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.hero-note {
    font-size: 0.9em;
    color: #6aabde;
    font-weight: 500;
}

/* Variación 3: Hero Minimalista */
.contentBx-minimal {
    max-width: 850px;
}

.hero-lead {
    font-size: 1.1em;
    margin: 20px 0 30px;
    line-height: 1.6;
}

.hero-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 35px 0;
    padding: 30px 0;
}

.pillar-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    font-size: 3em;
    margin-bottom: 12px;
    filter: grayscale(0.2);
}

.pillar-item h4 {
    margin: 10px 0 5px;
}

.pillar-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.hero-trust {
    margin-top: 20px;
    font-size: 0.95em;
    color: #6aabde;
    font-weight: 500;
}

/* ========================================
   RESPONSIVE - HERO VARIACIONES
   ======================================== */

@media (max-width: 991px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px 0;
    }

    .banner-minimal {
        margin-top: 100px;
    }
    
    .stat-number {
        font-size: 1.6em;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-benefits-list {
        text-align: left;
        padding: 0 10px;
    }
    
    .hero-pillars {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .pillar-item {
        padding: 15px;
    }
    
    .pillar-icon {
        font-size: 2.5em;
    }
    
    .trust-badge {
        font-size: 0.85em;
        padding: 6px 15px;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8em;
    }
}

/* ========================================
   EJEMPLO DE USO EN HTML
   ======================================== */

/*
LISTA NO ORDENADA BÁSICA:


/* Estilos adicionales específicos para FAQ */
        .faq-section {
            background: #ffffff;
        }

        .faq-container {
            max-width: 900px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: #f8f8f8;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .faq-question {
            padding: 25px 60px 25px 25px;
            cursor: pointer;
            position: relative;
            user-select: none;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #f0f0f0;
        }

        .faq-question h3 {
            color: var(--black);
            font-size: 1.1em;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: none;
            margin: 0;
            line-height: 1.4;
        }

        /* Remover el pseudo-elemento before del h3 en FAQ */
        .faq-question h3:before {
            display: none;
        }

        /* Icono + / - */
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2em;
            color: #6aabde;
            font-weight: 300;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .faq-question.active::after {
            content: '−';
            color: var(--black);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-answer.active {
            max-height: 600px;
            padding: 0 25px 25px 25px;
        }

        .faq-answer p {
            color: #555;
            line-height: 1.7;
            font-size: 1em;
            margin: 0;
        }

        .faq-answer strong {
            color: var(--black);
            font-weight: 600;
        }

        /* CTA dentro de FAQ */
        .faq-cta {
            background: linear-gradient(135deg, #005095 0%, #6aabde 100%);
            color: var(--white);
            padding: 40px;
            margin: 40px 0;
            border-radius: 10px;
            text-align: center;
        }

        .faq-cta h3 {
            color: var(--white);
            font-size: 1.6em;
            margin-bottom: 15px;
        }

        .faq-cta h3:before {
            display: none;
        }

        .faq-cta p {
            color: var(--white);
            font-size: 1.1em;
            margin-bottom: 20px;
            text-align: center;
        }

        .faq-cta .btn {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
        }

        .faq-cta .btn:hover {
            background: transparent;
            color: var(--white);
            border-color: var(--white);
        }

        /* Schema markup demo */
        .schema-info {
            background: #f4f4f4;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #6aabde;
            border-radius: 5px;
        }

        .schema-info h4 {
            color: var(--black);
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .schema-info pre {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 20px;
            border-radius: 5px;
            overflow-x: auto;
            font-size: 0.85em;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .faq-question {
                padding: 20px 50px 20px 20px;
            }

            .faq-question h3 {
                font-size: 1em;
            }

            .faq-question::after {
                right: 20px;
                font-size: 1.8em;
            }

            .faq-answer.active {
                padding: 0 20px 20px 20px;
            }

            .faq-cta {
                padding: 30px 20px;
            }

            .faq-cta h3 {
                font-size: 1.3em;
            }
        }


/* responsive */

@media (max-width: 991px) {
    .title h1 {
        margin-top: 30px;
    }
    header {
        padding: 20px 20px;
    }
    header .sticky {
        padding: 10px 20px;        
    }
    section {
        padding: 20px;
    }
    .banner .contentBx {
        padding: 40px 30px;
    }
    .about .contentBx, .about2 .contentBx, .about3 .contentBx {
        grid-template-columns: repeat(1,1fr);
    }
    .post .contentBx {
        grid-template-columns: repeat(1,1fr);
    }
    .post .contentBx .postColumn .postBox
    .post .contentBx .postColumn .postBox.extraHeight
    {
        height: 300px;
    }
    .contact .contactForm .row {
        grid-template-columns: repeat(1,1fr);
    }
    footer {
        padding: 40px 20px;
    }
    footer .footerMenu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 20px 0;
    }
    footer .footerMenu li a {
        margin: 5px 0;
    }
    .title {
        padding-top: 50px;
    }
    .mgt60 {
        margin-top: 0;
    }

    .containerr {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    }
}