@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');

/**
 * :: FUMAP - CSS Global - boot.css ::
 */

/** variables */
:root {
    
    --color-default: #555555;
    --color-green: #63AD3B;
    --color-green-rgb: 99,173,59;
    --color-blue: #1e2e50;
    --color-blue-rgb: 30,46,80;
    --color-yellow: #F5B946;
    --color-red: #D94352;
    --color-white: #ffffff;
    --color-gray: #4A4A4A;
    --color-gray-bg: #f4f5f7;
    --color-gray-border: #E2E2DC;
    --color-gray-2: #f0f0f0;
    --color-gray-3: #e8e8e8;
    --color-gray-4: #e0e0e0;
    --color-gray-5: #ebebeb;
    --color-text-p: #444;
    --hover-color-green: #63AD3B;
    --hover-color-blue: #66D4F1;
    --hover-color-yellow: #FCD277;
    --hover-color-red: #F76C82;
    --hover-duration: 0.3s;
    --gradient-green: linear-gradient(to right, #42E695 0%, #3BB2B8 50%, #42E695 100%);
    --gradient-blue: linear-gradient(to right, #17EAD9 0%, #6078EA 50%, #17EAD9 100%);
    --gradient-red: linear-gradient(to right, #622744 0%, #C53364 50%, #622744 100%);
    --gradient-yellow: linear-gradient(to right, #FCE38A 0%, #F38181 50%, #FCE38A 100%);
    --text-light-bg-dark: rgba(255,255,255,0.75);
    
    --font-small: 0.875em;
    --font-normal: 1em;
    --font-medium: 1.2em;
    --font-large: 1.4em;

    --weight-light: 300;
    --weight-normal: 400;
    --weight-bold: 700;
    --weight-black: 900;


    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 1000;
    
    --tr: all .22s var(--ease);
    
    /* dashboard */
    --sidebar-w: 260px;
    --sidebar-collapsed:68px;
    --topbar-h: 64px;
    --dark: var(--color-blue);
    --dark2: #162040;
    --teal: #2a9d8f;
    --teal-light: #eef8f7;
    --teal-dark: #1e8078;
    --yellow: #f59e0b;
    --red: #ef4444;
    --green: var(--color-green);
    --purple: #8b5cf6;
    --bg: #f0f2f6;
    --card: #fff;
    --border: #e8eaed;
    --text: #1e2e50;
    --text-muted: #7a8499;
    --shadow-sm: 0 2px 8px rgba(30,46,80,0.07);
    --shadow-md: 0 4px 20px rgba(30,46,80,0.1);
    --shadow-lg: 0 8px 32px rgba(30,46,80,0.14);
    --radius: 12px;
    --radius-sm: 8px;
}

/*RESET*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    transition: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
body{
    font-family: "Poppins", sans-serif;
}

/*ELEMENTS*/
img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}
img a {
    border: none;
}
a{
    text-decoration: none;
    color: inherit;
}
ul,
ol{
    list-style: none;
}
embed,
video,
iframe,
iframe[style]{
    max-width: 100%;
    height: auto;
}
button,
input,
select,
textarea{
    font-family: inherit;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}


/*ICONS NORMALIZE*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    position: relative !important;
    top: .125em !Important;
    margin-right: .4em !Important;
}

.icon-notext:before {
    top: 0;
    margin-right: 0 !important;;
}

.skip-links{
    display: none;
}


/** layout */
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/** SECTION COMMON */
.section-wrap { 
    padding: 60px 28px; 
}
.section-wrap.gray-bg { 
    background: var(--color-gray-bg); 
}
.section-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 36px; 
}
.section-title-wrap { 
    display: flex; 
    flex-direction: column; 
}
.section-title {
  font-size: 1.25rem; 
  font-weight: 900; 
  text-transform: uppercase;
  color: var(--color-blue); 
  letter-spacing: 0.5px;
}
.section-line { 
    width: 48px; 
    height: 3px; 
    background: var(--color-green); 
    margin-top: 6px; 
    border-radius: 2px; 
    margin-bottom: 36px; 
}
.see-all-link {
  font-size: 0.82rem; color: #2a9d8f; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s;
}
.see-all-link:hover { gap: 9px; }

/** typography */
h1,
h2,
h3,
h4,
h5{
    line-height: 1.2;
    font-weight: 700;
}

/** buttons */
.btn-icon{
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}
.btn-icon:hover{
    background: var(--hover-color-green);
    
}
.btn-icon:hover i{
    color: var(--color-white);
}


/** Page Hero */
.page-hero{
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,39,68,0.72) 0%, rgba(26,39,68,0.85) 100%);
}
.page-hero-content{
    position: relative;
    z-index: 1;
    color: var(--color-white);
}
.page-hero-content h1{
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.3px;
}
.breadcrumb{
    margin-top: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: rgba(255,255,255,.7);
}
.breadcrumb a{
    color: var(--color-green);
}
.breadcrumb a:hover{
    text-decoration: underline;
}
.breadcrumb i{
    font-size: 0.65rem;
}



/* :: AJAX LOAD */

.ajax_load {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: calc(var(--index-modal) * 2);
}

.ajax_load_box {
    margin: auto;
    text-align: center;
    color: #ffffff;
    font-weight: var(--weight-bold);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.ajax_load_box_circle {
    border: 16px solid #e3e3e3;
    border-top: 16px solid var(--hover-color-green);
    border-radius: 50%;
    margin: auto;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 1.2s linear infinite;
    -o-animation: spin 1.2s linear infinite;
    animation: spin 1.2s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.message {
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    text-align: center;
    -webkit-border-radius: var(--radius-medium);
    -moz-border-radius: var(--radius-medium);
    border-radius: var(--radius-medium);
    border: 1px solid #cccccc;
    font-weight: var(--weight-bold);
}

.message.success {
    color: var(--color-green);
    border-color: var(--color-green);
}

.message.info {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.message.warning {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.message.error {
    color: var(--color-red);
    border-color: var(--color-red);
}