/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
}

/* Global Colors */
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #172a28; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #317AC7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --title-color: #707D9D; /* Title color that represents your tiles on the website. It's used for titles to stand out */
    --highlight-color: #FCF9BF; /* Highlight color is used as text color for some heading in blue background */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors */
:root {
    --nav-color: #ffffff;  /* The default color of the main navmenu links */
    --nav-hover2-color: #FCF9BF;  /* The default color of the main navmenu links */
    --nav-hover-color: #317AC7; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #01433c; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #317AC7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets */
.light-background {
    --background-color: #f2f9f9;
    --surface-color: #ffffff;
}
  
.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}
  
.accent-background {
    --background-color: #317AC7;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #00b6a1;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/*--------------------------------------------------------------
  # Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #317AC7;
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}
  
.header .topbar {
    background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}
  
.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}
  
.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}
  
@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }

}
  
.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}
  
.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}
  
.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 80px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .logo span {
    font-size: 32px;
    margin-left: 2px;
    color: var(--nav-hover-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.sitename {
    color: var(--highlight-color) !important;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu a:hover {
        color: var(--nav-hover2-color) !important;
    }

    .navmenu .dropdown ul a:hover {
        color: var(--nav-hover-color) !important;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i:not(#user-icon),
    .navmenu .active:focus i:not(#user-icon) {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 100px;
    }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--title-color);
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 140px 0 0 0;

    background: url("../img/makati.png");
    background-attachment: scroll;
    background-size: cover;
    background-position: top;
}

.hero::before {
    content: "";
    background: rgba(70,130,180, 0.4);
    /* background: rgb(140, 140, 140, 0.2); */
    /* background: rgb(25,25,112, 0.5); */
    /* background: rgb(0,0,0,0.6); */
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

#hero-container::before {
    /* content: ""; */
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero #hero-background {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* border-radius: 15px; */
    overflow: hidden;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 3px 3px #000000;
    /* color: rgba(255,255,255, 0.7) !important; */
}

.hero h2 .accent {
    color: var(--conrast-color);
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 400;
    margin-bottom: 5px;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .btn-get-started:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    font-weight: 600;
    color: var(--default-color);
}

.hero .btn-watch-video i {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover i {
    color: var(--default-color);
}

@media (max-width: 640px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

.hero .icon-boxes {
    padding-bottom: 60px;
    z-index: 4;
}

@media (min-width: 1200px) {
    .hero .icon-boxes:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(50% + 20px);
        /* background-color: var(--default-color);
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
    }
}

.hero .icon-box {
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    background: var(--background-color);
    /* background: rgb(0,191,255); */
    /* background: rgb(120,120,120); */
    /* background: rgba(49, 122, 199, 0.7); */
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}

.hero .icon-box.icon-box2
{
    background: rgb(30,144,255);
}

.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.hero .icon-box .title a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 48px;
    line-height: 1;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
    transform: scale(102%);
    background-color: color-mix(in srgb, var(--background-color) 90%, black 10%);    
}

.hero .icon-box.icon-box2:hover {
    transform: scale(102%);
    background-color: color-mix(in srgb, rgb(30,144,255) 90%, black 10%);    
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
  # Process Flow Section
  --------------------------------------------------------------*/
.process-flow h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.process-flow .section-title {
    padding-bottom: 0;
}

/*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
.business-application h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.business-application .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.business-application .content ul {
    list-style: none;
    padding: 0;
    
}

.business-application .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.business-application .content ul.requirements li {
    border-bottom: 1px dashed #aaa;
    margin-bottom: 5pt;
}

.business-application .content ul.requirements li:last-child {
    border-bottom: none;
}

.business-application .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.business-application .content p:last-child {
    margin-bottom: 0;
}

.business-application .table-reference thead tr th {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

.business-application .downloads li {
    border-bottom: 0.5pt dashed #dee2e6;
}

/*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
.stats .stats-item {
    padding: 10px;
}

.stats .stats-item i {
    font-size: 44px;
    color: var(--accent-color);
    line-height: 0;
    margin-right: 15px;
}

.stats .stats-item .purecounter {
    color: var(--heading-color);
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 40px;
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 15px 0 0 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 14px;
}

/*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

/* 
.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}
*/

.services .service-item h3 {
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
    color: var(--heading-color);
}

.services .service-item:hover .icon:before {
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.services .service-item:hover h3 {
    border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: var(--heading-color);
}

.services .service-item:hover .readmore {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
  # Team Section
  --------------------------------------------------------------*/
.team .member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
}

.team .member img {
    border-radius: 15px;
    overflow: hidden;
}

.team .member .member-content {
    padding: 0 20px 30px 20px;
}

.team .member h4 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.team .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.team .member .social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
  # Contact Us Section
  --------------------------------------------------------------*/
.contact .info-container {
    background-color: var(--accent-color);
    height: 100%;
    padding: 20px;
}

.contact .info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    color: var(--contrast-color);
    font-size: 20px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    padding: 30px;
}

.contact #message {
    height: calc(10.5rem + calc(var(--bs-border-width)* 2));
    resize: none;
}



.contact-us {
    padding: 180px 0;
    width: 100%;
}

.contact-us .section-title {
    padding-bottom: 20px;
}

.contact-us .table-contact td {
    padding: 10pt;
    vertical-align: middle;
}

.contact-us .table-contact .office {
    color: var(--accent-color);
    font-weight: bold;
}

.contact-us ul {
    list-style: none;
    padding: 0;
    
}

.contact-us ul li {
    padding: 0 0 10px 30px;
    position: relative;
}

.contact-us ul li:last-child {
    padding: 0 0 0 30px;
}

.contact-us ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: var(--accent-color);
}


/*--------------------------------------------------------------
  # Login Section
  --------------------------------------------------------------*/
.csat {
    padding: 180px 0;
    width: 100%;
}

.csat .csat-container {
    background-color: var(--surface-color);
    padding: 10px 30px;
    /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    width: 100% !important;
}

.csat .csat-divider {
    background-color: var(--accent-color);
    color: #fff;
    padding: 2pt 5pt;
    font-weight: bold;
}

.csat-question {
    font-weight: bold;
}

.csat-answer .form-check {
    /* padding-left: 20pt; */
}

.csat .section-title {
    padding-bottom: 20px;
}

.csat i {
    color: var(--accent-color);
}




/*--------------------------------------------------------------
  # Login Section
  --------------------------------------------------------------*/
.login {
    padding: 180px 0;
    width: 100%;
}

.login .section-title {
    padding-bottom: 20px;
}

.login .login-container {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    width: 100% !important;
}

/*--------------------------------------------------------------
  # Register Section
  --------------------------------------------------------------*/
.register {
    padding: 180px 0;
    width: 100%;
}

.register .section-title {
    padding-bottom: 20px;
}

.register .register-container {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    width: 100% !important;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    min-width: 100%;
}

.progress-container::before {
    content: '';
    background-color: #e0e0e0;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    width: 100%;
    z-index: 1;
}

.progress-wrapper {
    background-color: var(--accent-color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    width: 0%;
    z-index: 1;
    transition: .4s ease;
}

.register .progress-container .circle {
    background-color: #fff;
    color: #999;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e0e0e0;
    transition: .4s ease;
    z-index: 2;
}

.register .progress-container .circle.active {
    
    color: #ffffff;
    font-weight: bold;
    border-color: var(--accent-color);
    background-color: var(--accent-color);

}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-title {
    color: #e0e0e0;
}

.step-title.active {
    color: var(--accent-color) !important;
}

.register .register-title {
    /* color: color-mix(in srgb, var(--accent-color) 90%, black 10%); */
    color: var(--title-color);
}

.register .md-datepicker-input {
    height: calc(3.5rem + calc(var(--bs-border-width)* 2));
    min-height: calc(3.5rem + calc(var(--bs-border-width)* 2));
    line-height: 1.25;

    padding-top: 1.625rem;
    padding-bottom: .625rem;
    border:none;
    border-bottom: var(--bs-border-width) solid var(--bs-border-color) !important;

    max-width: none;
    width: 100%;

}

.register .md-datepicker-input::placeholder {
    color: #000;
    font-size: 12pt;
}

.register .md-datepicker-button {
    display: none;
}

.register .md-datepicker-input-container {
    width: 100%;
}

/*--------------------------------------------------------------
  # Dashboard Section
  --------------------------------------------------------------*/
.dashboard {
    padding: 180px 0;
    width: 100%;
    min-height: 70vh;
}

.dashboard .section-title {
    padding-bottom: 0;
}

.dashboard .section-title h2::after
{
    content: "";
    position: relative;
    display: block;
    width: 50px;
    height: 3px;
    background: none;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.dashboard .content {
    padding: 0 !important;
}

.dashboard .info-container {
    background-color: var(--accent-color);
    height: 100%;
    padding: 20px;
  }
  
.dashboard .info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}
  
.dashboard .info-item:last-child {
    margin-bottom: 0;
}
  
.dashboard .info-item i {
    font-size: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}
  
.dashboard .info-item h3 {
    color: var(--contrast-color);
    font-size: 20px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
  
.dashboard .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}
  
.dashboard .info-item:hover i {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.dashboard .table-business thead tr th {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

.dashboard .table-business-header {
    background-color: #317AC7;
    font-weight: 700;
    color: #fff;
}

.dashboard .table-business-header div, .dashboard .table-business-body div {
    /* padding: 5px; */
}

.dashboard .table-business-body:nth-child(2n+1) {
    background-color: rgba(0, 0, 0, 0.05);
}

/* .dashboard .table-business-striped tbody tr:nth-child(4n+1) td,  
.dashboard .table-business-striped tbody tr:nth-child(4n+2) td {
    background-color: rgba(0, 0, 0, 0.05);
} */

.dashboard .business-control {
    background: var(--accent-color);
    color: #fff;
    border-radius: 5pt;
}

.dashboard .business-control-red {
    color: #fff;
    border-radius: 5pt;
}

.dashboard ul {
    list-style: none;
}

.dashboard ul#mop-ul li {
    display: inline;
}

.dashboard hr {
    margin: 1rem 0 0;
}

.dashboard .instructions {
    font-size: 10pt;
    font-style: italic;
    color:rgba(255, 0, 0, 0.8);

}

@media (max-width: 1151px) {
    .hide-1151 {
        display: none;
    }
}

@media (max-width: 990px) {
    .hide-990 {
        display: none;
    }
}

@media (max-width: 767px) {
    .hide-767 {
        display: none;
    }
}

@media (max-width: 575px) {
    .hide-575 {
        display: none;
    }
}


/*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    /* max-height: 40px; */
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--default-color);
    border-color: var(--default-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--default-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 4px;
    font-size: 13px;
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
  # Global Toast 
  --------------------------------------------------------------*/
.toast-top-center {
    margin-top: 20pt !important;
}

/*--------------------------------------------------------------
  # Global Modal 
  --------------------------------------------------------------*/
.modal-title {
    color: var(--accent-color);
}

.modal-section {
    color: var(--title-color);
}

@media (min-width: 576px) {
    .modal-xl {
        --bs-modal-width: 90vw !important;
    }
}

/*--------------------------------------------------------------
  # Global Input Group
  --------------------------------------------------------------*/
.input-group .input-group-text {
    background: #fff;
    color: var(--accent-color);
    font-size: 20px !important;
}

.input-group input {
    border-left: none !important;
}

.input-group input.is-invalid,
.input-group input.is-invalid:focus
.input-group input:focus {
    box-shadow: none !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.borderless {
    border:none;
    border-bottom: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.required-field {
    color: #f00;
    position: absolute;
    top: 2pt;
    right: 5pt;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
  # User defined
  --------------------------------------------------------------*/

#table-info td {
    background-color: rgb(248,248,248);
}

input[type="text"]:not(.fix-case), select {
    text-transform: uppercase;
}

.eboss-numbers {
    background-color: rgb(3, 89, 182);
}

.eboss-numbers h2, .eboss-numbers h4, .eboss-numbers h6 {
    color: white;
}

.eboss-numbers .card {
    background-color: rgb(3, 89, 182);
    border: 0;
}

a.event-link {
    color: black;
}

a.event-link:hover {
    text-decoration: underline;    
}