@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    position: relative;
    min-height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control:focus::placeholder,
.form-floating > .form-control-plaintext:focus::placeholder {
    text-align: start;
}

.card-shadow {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.pointer {
    cursor: pointer;
}

.CardBox {
    box-shadow: 2px 2px 5px #999;
}

.text-small {
    font-size: 10px;
}

@media (min-width: 600px) {
    .text-small {
        font-size: 13px;
    }
}

@media (min-width: 900px) {
    .text-small {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .text-small {
        font-size: 16px;
    }
}

#main {
    width:100%;
    padding: 0;
}

header.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
    width: 100%;
}

@media (max-width: 993px) {
    #main {
        padding: 0px;
    }
}

#main .slider-imagenes,
#main .slider-imagenes-col {
    margin: 0;
    padding: 0;
}

#main .carousel-item img {
    width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
}

#main .carousel-control-prev-icon,
#main .carousel-control-next-icon {
    background-color: #004A98;
    border-radius: 10%;
    padding: 20px;
}

#main .carousel-indicators [data-bs-target] {
    background-color: #004A98;
}

.section-full {
    width: 100%;
    background: #fff;
}

.icono-azul {
    color: #004A98;
}

.texto-azul {
    color: #004A98;
}

@font-face {
    font-family: 'United Sans';
    src: url('/css/Fonts/united-sans/UnitedSansReg-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'United Sans';
    src: url('/css/Fonts/united-sans/UnitedSansReg-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'United Sans';
    src: url('/css/Fonts/united-sans/UnitedSansReg-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'United Sans';
    src: url('/css/Fonts/united-sans/UnitedSansReg-Heavy.otf') format('opentype');
    font-weight: 800;
}

@font-face {
    font-family: 'United Sans';
    src: url('/css/Fonts/united-sans/UnitedSansReg-Black.otf') format('opentype');
    font-weight: 900;
}

@font-face {
    font-family: 'United Sans Cond';
    src: url('/css/Fonts/united-sans-cond/UnitedSansCond-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'United Sans Cond';
    src: url('/css/Fonts/united-sans-cond/UnitedSansCond-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'United Sans Cond';
    src: url('/css/Fonts/united-sans-cond/UnitedSansCond-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'United Sans Cond';
    src: url('/css/Fonts/united-sans-cond/UnitedSansCond-Heavy.otf') format('opentype');
    font-weight: 800;
}

@font-face {
    font-family: 'United Sans Cond';
    src: url('/css/Fonts/united-sans-cond/UnitedSansCond-Black.otf') format('opentype');
    font-weight: 900;
}

.btn-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: block;
}

    .btn-flotante img {
        width: 90px;
        height: auto;
        cursor: pointer;
        transition: transform .2s;
    }

    .btn-flotante:hover img {
        transform: scale(1.1);
    }