/* poppins-300 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v23-latin-300.woff2') format('woff2'),
        url('../fonts/poppins-v23-latin-300.ttf') format('truetype');
}

/* poppins-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v23-latin-regular.ttf') format('truetype');
}

/* poppins-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v23-latin-500.woff2') format('woff2'),
        url('../fonts/poppins-v23-latin-500.ttf') format('truetype');
}

/* poppins-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2'),
        url('../fonts/poppins-v23-latin-600.ttf') format('truetype');
}

:root {
    --color-primary: #084796;
    --color-primary-rgb: 8, 71, 150;
    --color-secondary: #ff914c;
    --color-secondary-rgb: 255, 145, 76;
}

a {
    text-decoration: none;
}

body {
    line-height: 1.625;
    font-family: "Poppins", sans-serif;
}

header {
    background: #FFF;
    box-shadow: -5px 29px 48px 0 #0847960d;
    position: relative;
    z-index: 5;
}

.header-top {
    padding: 8px 0;
    background: var(--color-primary);
    color: #FFF;
    font-size: 14px;
}

.header-share {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    justify-content: end;
}

.header-share a {
    color: inherit;
    display: flex;
    align-items: center;
}

.header-share a svg {
    fill: currentColor;
    font-size: 24px;
    margin-right: 10px;
}

.header-primary {
    padding: 16px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-primary .container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.header-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    display: none;
}

.header-collapse.open {
    display: block;
}

.header-collapse.open>* {
    animation: mega-nav-entry-animation 0.5s ease-out;
}


@keyframes mega-nav-entry-animation {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0px)
    }
}

.header-logo img {
    height: 80px;
    width: auto;
    margin-right: 72px;
}

.header-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-menu a {
    font-weight: 600;
    color: var(--color-primary);
}

.header-toggle {
    background: transparent;
    border: 0;
    padding: 9px 10px;
}

.header-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 1px;
    background: var(--color-primary);
}

.header-toggle span+span {
    margin-top: 4px;
}

@media (min-width:1200px) {
    .header-primary {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .header-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .header-menu {
        flex-direction: row;
        gap: 24px;
    }

    .header-toggle {
        display: none;
    }
}

.job-icon svg,
.bi {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
}

.bg-light {
    background: #f2fcff;
}

.bg-light+.bg-light {
    padding-top: 0;
}

section {
    padding: 80px 0;
}

.card {
    border: 1px solid #eaebf3;
    box-shadow: 0 1px 6px #9c9fb526;
    background-color: #FFF;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
}

.card-body {
    padding: 32px 24px;
}

.card-body+.card-body {
    border-top: 1px solid #DDD;
}

.card-title {
    color: #232535;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.333;
}

.card-alt {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: .8;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-primary {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
}

.card-primary .card-title {
    color: #FFF;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: transparent;
    transition: color .15s ease-in-out,
        background-color .15s ease-in-out,
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out;
}

.btn svg {
    margin: -2px 8px -2px 0;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-white,
.btn-outline-primary {
    border-color: var(--color-primary);
    background-color: #FFF;
    color: var(--color-primary);
}

.btn-primary {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #FFF;
}

.btn-secondary {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: #FFF;
}

.blocks h2 {
    margin-bottom: 20px;
}

.blocks h2 {
    color: #232535;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.blocks *+h2 {
    margin-top: 40px;
}

.heading-center {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.heading-space {
    margin-bottom: 36px;
}

.heading-alt {
    color: #a0a2b3;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.heading-title {
    color: #232535;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.heading-title.heading-title-lg {
    font-size: 28px;
    line-height: 1.312;
}

.heading-title a {
    color: inherit;
}

.heading-text {
    font-size: 16px;
}

@media (min-width: 992px) {
    .heading-title.heading-title-lg {
        font-size: 32px;
    }

    .heading-title {
        font-size: 20px;
    }

    .heading-text {
        font-size: 18px;
    }
}

.job-card,
.job-card .heading-title {
    transition: all .2s ease-in-out;
}

.job-card:hover {
    border-color: var(--color-primary);
}

.job-card:hover .heading-title {
    color: var(--color-primary);
}

.job-card .card-body {
    padding: 8px 20px 8px 8px;
}

.job-icon-wrap {
    background-color: #f8f8fa;
    width: 126px;
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-icon {
    border-radius: 6px;
    box-shadow: 0 1px 2px #2325351f, 0 3px 6px #2325351f;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg);
    color: #FFF;
    font-size: 32px;
}

.job-icon svg {
    fill: currentColor;
}

.job-arrow {
    border: .5px solid #eaebf3;
    box-shadow: 0 2px 5px 0 #bcbbce42;
    background: transparent;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
}

.job-badge {
    border-radius: 6px;
    align-items: center;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    box-shadow: 0 1px 4px 0 #14142b14;
    border: 1px solid #eaebf3;
}

.job-badge .bi {
    color: var(--color-secondary);
}

.iconbox {
    text-align: center;
    height: 100%;
}

.iconbox-icon {
    font-size: 100px;
    color: var(--color-primary);
    line-height: 1;
}

.iconbox-title {
    font-weight: 600;
    color: #232535;
    font-size: 20px;
}

.iconbox-text {
    margin-bottom: 0;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list a {
    color: inherit;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.category {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #FFF;
    border: 1px solid #eaebf3;
    box-shadow: 0 1px 6px #9c9fb526;
    border-radius: 6px;
    position: relative;
    transition: all .2s ease-in-out;
}

.category-title {
    font-weight: 500;
    margin-bottom: 0;
    transition: all .2s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-title a {
    color: inherit;
}

.category-text {
    margin-bottom: 0;
    font-size: 12px;
    color: #a0a2b3;
}

.category:hover {
    border-color: var(--color-secondary);
}

.category:hover .category-title {
    color: var(--color-secondary);
}

.footer-partner {
    background-color: #A4A4A4;
    padding: 50px 0;
}

.footer-partner-title {
    color: #FFF;
    margin-bottom: 24px;
    font-weight: 600;
}

.partner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 6px;
    height: 100%;
    background-color: #FFF;
    border: 1px solid #eaebf3;
    box-shadow: 0 1px 6px #9c9fb526;
}

.partner img {
    width: 100%;
    height: 80px;
    object-fit: contain;

}

.footer-bottom {
    background: #111;
    color: #FFF;
    padding: 40px 0;
    text-align: center;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1;
}

.footer-legal a {
    color: var(--color-secondary);
}

.footer-firma {
    font-size: 14px;
    font-weight: 300;
}

.footer-firma a {
    color: inherit;
    opacity: .6;
}

.swiper {
    width: 100%;
    height: 400px;
    --swiper-theme-color: #FFF;
    --swiper-navigation-sides-offset: 30px
}

@media (min-width: 992px) {
    .swiper {
        height: 640px;
    }
}

.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 60px 0 0 0;
}

.pagination-prev {
    text-align: left;
}

.pagination-info {
    text-align: center;
}

.pagination-next {
    text-align: right;
}

.h-100 {
    height: 100%;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #25d366;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    z-index: 111;
    font-size: 28px;
}

.gap-2 {
    gap: .5rem !important;
}

.share {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 28px;
    gap: 20px;
    padding: 0;
    margin: 0;
    color: var(--color-primary);
}

.share a {
    color: inherit;
}

.card-center {
    text-align: center;
}

.card-center .share {
    justify-content: center;
}




.table {
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: rgb(222, 226, 230);
}

.table> :not(caption)>*>* {
    padding: 8px;
    color: rgb(0, 0, 0);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0);
}

.table>tbody {
    vertical-align: inherit;
}

.table>thead {
    vertical-align: bottom;
}