*
{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
}

body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}



/* inicio header */




/* inicio header */

.logo-container img{
    width: 40px;
    
}


header{
    position: sticky;
    top: 0px;
    background-color: #001f3f;
    width: 100%;
    z-index: 1000;
}

section{
    position: relative;
    height: calc(100vh - 3rem);
    width: 100%;
    background: url('bg.jpg') no-repeat top center / cover;
    overflow: hidden;
}



.container{
    max-width: 65rem;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.logo-container{
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-btn{
    flex: 3;
    display: flex;
}

.nav-links{
    flex: 2;
}

.log-sign{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo{
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span{
    font-weight: 300;
}

.btn{
    display: inline-block;
    padding: .5rem 1.3rem;
    font-size: .8rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    line-height: 1;
    margin: 0 .2rem;
    transition: .3s;
    text-transform: uppercase;
}

.btn.solid, .btn.transparent:hover{
    background-color: #fff;
    color: #39259d;
}

.btn.transparent, .btn.solid:hover{
    background-color: transparent;
    color: #fff;
}

.nav-links > ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link{
    position: relative;
}

.nav-link > a{
    line-height: 3rem;
    color: #fff;
    padding: 0 .8rem;
    letter-spacing: 1px;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
}

.nav-link > a > i{
    margin-left: .2rem;
}

.nav-link:hover > a{
    transform: scale(1.1);
}

.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 15rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul{
    position: relative;
}

.dropdown-link > a{
    display: flex;
    background-color: #fff;
    color: #000000;
    padding: .7rem 0.02rem;
    font-size: .8rem;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
}

.dropdown-link:hover > a{
    background-color: #001f3f;
    color: #fff;
}

.dropdown-link:not(:nth-last-child(2)){
    border-bottom: 1px solid #efefef;
}

.dropdown-link i{
    transform: rotate(-90deg);
}

.arrow{
    position: absolute;
    width: 11px;
    height: 11px;
    top: -5.5px;
    left: 32px;
    background-color: #fff;
    transform: rotate(45deg);
    cursor: pointer;
    transition: .3s;
    z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow{
    background-color: #000000;
}

.dropdown-link{
    position: relative;
}

.dropdown.second{
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow{
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown{
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
}

.hamburger-menu-container{
    flex: 1;
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div{
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
    transition: .5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #fff;
    border-radius: 3px;
    transition: .5s;
}

.hamburger-menu div:before{
    transform: translateY(-7px);
}

.hamburger-menu div:after{
    transform: translateY(7px);
}

#check{
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div{
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before{
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after{
    transform: translateY(0) rotate(45deg);
}

@keyframes animation{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media (max-width: 920px){
    .hamburger-menu-container{
        display: flex;
    }

    #check{
        display: block;
    }

    .nav-btn{
        position: fixed;
        height: calc(100vh - 3rem);
        top: 3rem;
        left: 0;
        width: 100%;
        background-color: #001f3f;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(100%);
        transition: .65s;
    }

    #check:checked ~ .nav-btn{
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign{
        animation: animation .5s ease forwards var(--i);
    }

    .nav-links{
        flex: initial;
        width: 100%;
    }

    .nav-links > ul{
        flex-direction: column;
    }

    .nav-link{
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    .nav-link > a{
        line-height: 1;
        padding: 1.6rem 2rem;
    }

    .nav-link:hover > a{
        transform: scale(1);
        background-color: #001f3f;
    }

    .dropdown, .dropdown.second{
        position: initial;
        top: initial;
        left: initial;
        transform: initial;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        padding: 0;
        background-color: #001f3f;
        display: none;
    }
    
    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown{
        display: block;
    }

    .nav-link:hover > a > i,
    .dropdown-link:hover > a > i{
        transform: rotate(360deg);
    }

    .dropdown-link > a{
        background-color: transparent;
        color: #fff;
        padding: 1.2rem 2rem;
        line-height: 1;
    }

    .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 3rem;
    }

    .dropdown.second .dropdown.second .dropdown-link > a{
        padding: 1.2rem 2rem 1.2rem 4rem;
    }

    .dropdown-link:not(:nth-last-child(2)){
        border-bottom: none;
    }

    .arrow{
        z-index: 1;
        background-color: #001f3f;
        left: 10%;
        transform: scale(1.1) rotate(45deg);
        transition: .5s;
    }

    .nav-link:hover .arrow{
        background-color: #211565;
    }

    .dropdown .dropdown .arrow{
        display: none;
    }

    .dropdown-link:hover > a{
        background-color: #170b65;
    }

    .dropdown-link:first-child:hover ~ .arrow{
        background-color: #dfdfdf;
    }

    .nav-link > a > i{
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: .7s;
    }

    .dropdown i{
        font-size: 1rem;
        transition: .7s;
    }

    .log-sign{
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}


/* Final header */








































































.header-containered {
    position: relative;
    background-image: linear-gradient(
        rgba(163, 161, 161, 0.596),
        rgba(211, 211, 211, 0.479)), 
        url(../img/headerpenal.jpg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    color: white;
    overflow: hidden;
}

.header-text {
    max-width: 40%;
}

.header-text h2 {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: normal;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
}

.header-text h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.quote-container {
    max-width: 30%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-left: 5px solid #000000;
    border-radius: 8px;
    transform: scale(0.8);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.quote {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.quote-icon {
    font-size: 3rem;
    color: #000000;
}

.quote span {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: right;
    font-weight: bold;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .header-containered {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .header-text, .quote-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .header-text h1 {
        font-size: 2rem;
    }

    .header-text h2 {
        font-size: 1.2rem;
    }

    .quote-container {
        padding: 15px;
    }

    .quote {
        font-size: 0.9rem;
    }
}














.contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.948),
        rgba(255, 255, 255, 0.925)), 
        url(../img/laborali.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.texto-izquierda {
    width: 55%;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    animation: fadeIn 1.5s ease-out;
}

.titulo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.texto {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.imagen-derecha {
    width: 33%;
    animation: slideIn 1.5s ease-out;
}

.imagen-derecha img {
    width: 100%;
    height: 315px;  /* Ajusta la altura según lo necesites */
    border-radius: 10%;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.imagen-derecha img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .contenido {
        flex-direction: column;
        text-align: center;
    }

    .texto-izquierda, .imagen-derecha {
        width: 100%;
        margin-bottom: 1rem;
    }
    .imagen-derecha {
        width: 90%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .titulo {
        font-size: 2rem;
    }

    .texto {
        font-size: 0.9rem;
    }

    .imagen-derecha img {
        width: 70%;
    }
}


















.colo{
    background-color: #ff4a4a;
color: #f1f1f1;
text-align: center;
}






.contact-container {
    background-color: #001f3f;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.contact-item {
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.divider {
    width: 1px;
    background-color: white;
    height: 50px;
    align-self: center;
}

.icon-link {
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    animation: bounce 2s infinite;
}

.icon-link:hover {
    transform: scale(1.2) rotate(10deg);
    color: #FFD700;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.contact-item i {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-item p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .divider {
        width: 80%;
        height: 1px;
        margin: 10px 0;
    }
}












/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
    
  }
  
  .card {
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 4px rgba(17, 4, 54, 0.847);
    position: relative;
    text-align: left;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
    background-color: goldenrod;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
  }
  
  /* Recognition */
  .recognition {
    margin-top: 40px;
    text-align: center;
  }
  
  .recognition h1 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: bold;
    
  }
  
  .recognition p {
    color: #002855;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  

  @media (max-width: 768px) {
    .recognition h1 {
      font-size: 1.5rem;
    }
  
    .recognition p {
      font-size: 0.85rem;
    }
  }
  
  @media (min-width: 769px) {
    .recognition h1 {
      font-size: 2rem;
    }
  
    .recognition p {
      font-size: 0.95rem;
    }
  }



  /* Responsiveness */
  @media (max-width: 768px) {
    .section {
      padding: 10px;
    }
  
    h2 {
      font-size: 2rem;
    }
    
   
    
  
    .card {
      padding: 20px;
    }
  }
  .section {
    padding: 70px;
    text-align: center;
  }
  
  /* WhatsApp Floating Button */
  .whatsapp-button {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .whatsapp-button img {
    width: 30px;
    margin: 10px auto;
    display: block;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    h2 {
      font-size: 1.2rem;
    }
  
    p, li {
      font-size: 0.9rem;
    }
  }






/* Footer inicio */

/* Footer General */
footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo h1 {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.footer-logo p {
    max-width: 400px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    font-size: 13px;

}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 55%;
}

.footer-section h3 {
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 13px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    font-size: 13px;

}

.footer-section li:hover {
    transform: translateX(5px);
}

.footer-section p {
    margin: 10px 0;
    font-size: 13px;

}



.social-icons a {
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.3s ease;
}



.icon{
color: #ffffff;
}
.social-icons a:hover {
    transform: scale(1.1);
}

.footer-legal {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.footer-legal p {
    margin: 0;
    font-size: 9px;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries para Responsividad */
@media (max-width: 1024px) {
    .footer-sections {
        width: 100%;
        flex-direction: column;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-logo p {
        margin: 0 auto;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-logo h1 {
        font-size: 60px;
    }

    .footer-section h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-logo h1 {
        font-size: 48px;
    }

    .footer-legal p {
        font-size: 12px;
    }
}


/* Footer final */





























.otros-servicios {
    text-align: center;
    padding: 30px;
}

.otros-servicios-titulo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #141414;
}

.otros-servicios-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.otros-servicios-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.otros-servicios-icono {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    color: #000000;
}

.otros-servicios-descripcion {
    color: #000000;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .otros-servicios-container {
        flex-direction: column;
    }
    .otros-servicios-item {
        margin-bottom: 20px;
    }
}



















/* nuevos diseños */
.contenedor-responsabilidad {
    width: 90%;
    max-width: 950px;
    text-align: justify; /* Justifica el texto */
    padding: 20px; /* Espaciado interno */
    margin: auto; /* Centrado horizontal */
    display: flex; /* Flexbox para centrar */
    justify-content: center; /* Centrado horizontal del contenido */
    align-items: center; /* Centrado vertical del contenido */
    flex-direction: column; /* Asegura que los elementos queden en columna */
    background-color: #ffffff; /* Fondo opcional */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0); /* Sombra ligera */
    animation: aparecer 2s ease-in-out;
  }
  
  .bloque-texto {
    color: #000;
  }
  
  .encabezado-responsabilidad {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.4;
  }
  
  .barra-subrayado {
    width: 60%;
    height: 2px;
    background-color: #120163; /* Color vino */
    margin: 10px auto 20px;
    animation: expandir-barra 1s ease-in-out;
  }
  
  .texto-descriptivo {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1em;
  }
  
  /* Animaciones */
  @keyframes aparecer {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes expandir-barra {
    from {
      width: 0;
    }
    to {
      width: 60%;
    }
  }
  
  /* Responsividad */
  @media (max-width: 768px) {
    .encabezado-responsabilidad {
      font-size: 1.5rem;
    }
  
    .barra-subrayado {
      width: 80%;
    }
  
    .texto-descriptivo {
      font-size: 0.9rem;
    }
  }






















  .faq-container {
    width: 90%;
    max-width: 1000px;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin: 20px auto; /* Centrar horizontalmente */
}

.faq-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.faq-item {
    border-bottom: 1px solid #001f3f;
    text-align: left;
}

.faq-question {
    background: #001f3f;
    color: white;
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #022f5c;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #666;
    color: white;
    font-size: 0.9rem;
}

.faq-question.active {
    background: rgb(122, 104, 3);
}






















.hero {
    padding: 20px;
    background-color: #f8f8f8;
    text-align: center;
}
.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
    margin-bottom: 20px;
}
.number {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
}
.text {
    flex: 1;
    padding: 10px;
}
.image img {
    max-width: 80%;
    height: auto;
    border-radius: 5px;
}
.separator {
    width: 80%;
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
}
@media (max-width: 768px) {
    .feature {
        flex-direction: column;
        text-align: center;
    }
}





















.news-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    max-width: 1000px;
    padding: 20px;
    margin: 0 auto; /* This centers the section horizontally */
    height: 80vh; /* This ensures it's centered vertically */
}

.animated-title {
    font-size: 24px;
    color: #600;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.news-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
}

.news-content {
    text-align: left;
    margin-top: 10px;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.more-news {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.more-news:hover {
    background-color: #222;
}
@media (max-width: 768px) {
    .news-image {
        display: none;
    }
}

@media (min-width: 768px) {
    .news-container {
        flex-direction: row;
        align-items: flex-start;
    }
    .news-content {
        margin-left: 15px;
    }
}














  /* Efecto hover para la imagen */
  .otros-servicios-icono {
    transition: transform 0.3s ease, filter 0.3s ease;
    background-color: #35353567;
}

.otros-servicios-icono:hover {
    transform: scale(1.1); /* Aumenta el tamaño de la imagen */
    filter: brightness(1.2); /* Aumenta el brillo de la imagen */
    background-color: #3d3d3d67;
}









