@font-face {
    font-family: 'GibsonRegular';
    src: url('/recursos/tipografias/GibsonRegular.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GibsonSemiBd';
    src: url('/recursos/tipografias/GibsonSemiBd.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MUSEOSANSCYRL_0';
    src: url('/recursos/tipografias/MUSEOSANSCYRL_0.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MUSEOSANSCYRL_2';
    src: url('/recursos/tipografias/MUSEOSANSCYRL_2.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    overflow-x: hidden;
    color: black;
    background-color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    font-family: 'GibsonRegular';
}

.dis {
    visibility: hidden !important;
}

.dis2 {
    visibility: visible !important;
}

.btn-primary-ex {
    background: #232B57 !important;
    color: white !important;
    font-family: 'MUSEOSANSCYRL_2';
    border: #232B57 1px solid;
}

.btn-primary-ex:hover {
    background: gainsboro !important;
    color: #232B57 !important;
    border: #232B57 1px solid;
}

.btn-primary-ne {
    background: #298dc4 !important;
    color: white !important;
    font-family: 'MUSEOSANSCYRL_2';
    border: #298dc4 1px solid;
}

.btn-primary-ne:hover {
    background: gainsboro !important;
    color: #298dc4 !important;
    border: #298dc4 1px solid;
}

.text-nav {
    position: relative;
    display: inline-block;
}

.text-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.text-nav:hover::after {
    background-color: #232B57;
}

.whatsapp-button {
    position: fixed;
    width: auto;
    height: auto;
    text-decoration: none;
    z-index: 1000;
    right: 10px;
    bottom: 10px;
}

.whatsapp-button img {
    object-fit: cover;
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.col-1-7 {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
}

@media (max-width: 1115px) {
    .col-1-7 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (max-width: 575.98px) {
    .col-1-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


.dropdown-menu {
    transition: all 0.2s ease;
}


.nav-link.dropdown-toggle::after {
    display: none !important;
}

.nav-link:focus,
.nav-link:active {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #232B57;
    box-shadow: 0 0 0 0.2rem rgba(35, 43, 87, 0.25);
}

.page-item.active .page-link {
    background-color: #232B57;
    border-color: #232B57;
    color: #fff !important;
}

.page-link {
    color: #232B57;
}




.card-ex {
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.card-ex:hover {
    height: auto;
}

.extra-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: white;
    font-size: 1rem;
    padding: 0 1rem;
    text-align: center;
}

.card-ex:hover .extra-text {
    opacity: 1;
    max-height: 300px;
    margin-top: 1rem;
}