.a {
    transition: 0.3s;
}

.a:hover {
    color: #009CDF;
}

.header-item {
    font-size: 15px;
    font-weight: 600;
    color: #232428;
    transition: 0.3s;
}

.header-item:hover {
    color: #9fa1ab;
}

.header-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
    transition: 0.3s;
}

.header-link {
    position: relative;
}

.header-link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: -10px;
    left: 0;
    background-color: var(--main-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header-link:hover::before {
    transform: scaleX(1);
}

.header-item-active {
    background-color: black;
    color: white !important;
    padding: 11px 18px;
    border-radius: 18px;
}

.border-color {
    border-color: #b3b3b3;
}

.bg-v1 {
    background-color: #F0F2F4;
}

.h4-v1 {
    font-size: 18px;
    font-weight: bold;
    color: #232428;
}

.h1-v1 {
    font-size: clamp(1rem, 0.575rem + 2.125vw, 3.125rem);
    font-weight: bold;
    line-height: normal;
    color: #232428;
}

.main-img {
    border-radius: 28px;
    height: 50dvh;
    width: 100dvw;
    object-fit: cover;
}

.btn-v1 {
    font-weight: 600;
    background-color: transparent;
    border: 2px solid var(--main-color);
    border-radius: 28px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: 0.5s;
}

.btn-v1:hover {
    background-color: var(--main-color);
    color: white;
    transition: 0.5s;
}

hr {
    color: #D4D4D4;
}

.text-footer {
    font-size: 18px;
    font-weight: 600;
    color: #242424;
}

.mt-v1 {
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .mt-v1 {
        margin-top: 6rem;
    }
}

.btn-v2 {
    background-color: white;
    color: #232428;
    border: 1px solid #009CDF;
    border-radius: 24px;
    width: 100%;
    padding: 2rem 0;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s;
}

.a-v1{
    color: #009CDF;
    font-weight: 600;
    text-decoration: none;
}

.a-v1:hover {
    color: #007bbd;
}

.btn-v2:hover {
    background-color: #009CDF;
    color: white;
    border: 1px solid #009CDF;
}

.card-filter {
    background-color: var(--main-color);
    border-radius: 24px;
}

.label-filter {
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.input-v1 {
    height: 44px;
    border-radius: 24px;
    padding: 0 1rem;
}

.textarea-v1 {
    height: 144px !important;
    border-radius: 24px;
    padding: 1rem;
}

/* Fade-in */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s;
}

ul {
    list-style: disc;
    padding-left: 30px;
}

.p-v1 {
    font-size: 18px;
    color: #232428;
}

.p-v2 {
    font-size: 24px;
    font-weight: 600;
    color: #232428;
}

.p-v3 {
    font-size: 14px;
    color: #232428;
}

.rounded-v1 {
    border-radius: 20px;
}



.logo {
    /* width: 180px; */
    height: 100px;
    object-fit: contain;
    /* border-radius: 10px; */
}

.grayscale {
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
}

.grayscale:hover {
    filter: grayscale(0%);
}

.btn-search {
    border-radius: 30px;
    background-color: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid white;
    font-weight: 600;
    transition: 0.5s;
}

.btn-search:hover {
    background-color: white;
    color: var(--main-color);
}

button {
    cursor: pointer;
}

.label-input {
    color: black;
    font-size: 12px;
    font-weight: bold;
}

.div-docs {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    box-shadow: 0px 0px 20px #e3dddd;
}

.card-v1{
    background: radial-gradient(ellipse at right top, #009CDF 0%, white 47%, white 100%);
    border-radius: 10px;
}

/* Spinner */
.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #009CDF 94%, #0000) top/9px 9px no-repeat,
        conic-gradient(#0000 30%, #009CDF);
    mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 9px), #000 0);
    animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}

/* Pager */
.mostrando {
    color: #676d7c;
    font-size: 11px;
    font-weight: bold;
    margin: 0;
}

.mostrar {
    color: #424C67;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.select-paginacion {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: none;
    border-radius: 8px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0px 0px 20px #e3dddd;
}

.indice-derecha {
    gap: 6px;
}

.opcion-paginacion {
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.opcion-paginacion-disabled {
    background: #F4F4F4 0% 0% no-repeat padding-box;
    cursor: default;
}

.opcion-paginacion-avaliable {
    background: white 0% 0% no-repeat padding-box;
    color: var(--main-color);
}

.opcion-paginacion-selected {
    background: var(--main-color) 0% 0% no-repeat padding-box;
    color: white !important;
    cursor: alias !important;
}