/* BRAND-COLORS */

:root {
    --primary-brand-color: #234164;
    --secondary-brand-color: #05AC72;
	--terciary-brand-color: #05AC7290;
    --table-header-color: #BBBBBB;
    --table-bodytext-color: #BBBBBB;
    --table-striped-colors: #FBF9F1;
    --table-manufacturer-color: #DDDDDD;
    --table-lines-color: #DDDDDD;
    font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

body {
    margin-top: 100px;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--primary-brand-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondary-brand-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {

    background: var(--terciary-brand-color);
}

/* HEADER - NAVBAR */

.container-xxl {
    background-color: var(--primary-brand-color);
}

.navbar {
    background-color: var(--primary-brand-color);
    width: 100%;
    top: 0;
}

.navbar-brand{
    display: flex;
}


.navbar-collapse {
    background-color: var(--primary-brand-color);
    padding: 20px 0 20px 0;
    height: auto;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

/* Custom Toggler Button */
.navbar-toggler {
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.25s ease;
    color: #ffffff;
    border: none;
}

/* Toggler Button on Hover */
.navbar-toggler:hover,
.navbar-toggler:focus {
    border: none;
    color: var(--secondary-brand-color);
    box-shadow: none;
}

/* Change Icon Color */
.navbar-toggler-icon {
    filter: invert(1);
}

/* MANUFACTURERS DROPDOWN */

.button-navbar,
.dropdown-toggle {
    background-color: var(--primary-brand-color);
    color: #ffffff;
    border: none;
    width: 230px;
    text-align: left;
    text-transform: uppercase;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.button-navbar:hover,
.dropdown-toggle:hover {
    color: var(--table-bodytext-color);
    background-color: var(--primary-brand-color);
    border: none;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.button-navbar:active,
.dropdown-toggle:active {
    color: #ffffff;
    background-color: var(--primary-brand-color);
    border: none;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

/* DROPDOWN MENU */

.dropdown-menu {
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: var(--primary-brand-color);
    max-height: 80vh;
    overflow: auto;
}

/* BUTTON "NEED HELP ?" */

.button-help {
    padding: 10px 20px;
    border: 2px solid var(--secondary-brand-color);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    width: auto;
    text-transform: uppercase;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;

    & a {
        font-weight: 600;
        text-decoration: none;
        color: var(--secondary-brand-color);
    }
}

.button-help:checked,
.button-help:hover {
    border: 2px solid var(--secondary-brand-color);
    cursor: pointer;
    color: var(--primary-brand-color);

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.button-help:hover,
.btn:active,
.button-help:focus,
.btn-primary:focus,
.btn-primary:focus-visible {
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: var(--primary-brand-color);

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;

    & a {
        color: var(--primary-brand-color)
    }
}


/* MAIN CONTENT */

.main-content {
    width: 100%;
    margin-bottom: 488px;
    background-color: #ffffff;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Black overlay with opacity */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

/* Text container (on top of the image) */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
}

.hero-title {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-separator {
    width: 100px;
    height: 2px;
    border-radius: 100px;
    display: block;
    margin: auto;
    background-color: var(--secondary-brand-color);
}

.hero-subtitle {
    margin-top: 50px;
    font-weight: 500px;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

/* IMAGE BANNER */

.banner-image {
    width: 100%;
    height: 100vh;
    background-image: url('../assets/images/multiplatform-software.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    vertical-align: middle;
    justify-content: center;
    align-items: center;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-height: 100vh;
        background-color: black;
        opacity: .7;
        z-index: 0;
    }
}

.banner-p{
    font-size: 30px;
}

.first-p{
margin-top: 30px;
}

.last-p{
    margin-bottom: 60px;
}

/* BUTTON HERO*/

.button-hero {
    padding: 20px 30px;
    border: 2px solid #FFFFFF;
    background-color: var(--secondary-brand-color);
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    width: auto;
    text-transform: uppercase;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;

    & a {
        font-weight: 600;
        text-decoration: none;
        color: var(--secondary-brand-color);
    }
}

.button-hero:checked,
.button-hero:hover {
    border: 2px solid var(--secondary-brand-color);
    cursor: pointer;
    color: var(--secondary-brand-color);

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.button-hero:hover,
.btn:active,
.button-hero:focus,
.btn-primary:focus,
.btn-primary:focus-visible {
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: var(--primary-brand-color);

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;

    & a {
        color: var(--primary-brand-color)
    }
}

/* HEADING TEXT */

.heading-text {
    position: absolute;
    top: 40%vh;
    margin: auto;
}

.banner-text {
    display: block;
}

.title-heading {
    text-align: center;
    font-size: 50px;
    line-height: 60px;
    color: var(--secondary-brand-color);
    margin-bottom: 30px;
}

.heading-separator {
    width: 100px;
    height: 2px;
    border-radius: 100px;
    display: block;
    margin: auto;
    background-color: var(--secondary-brand-color);
}

.subtitle-heading {
    padding-top: 30px;
    color: var(--primary-brand-color);
}

/* SEARCH BAR and DATA DISPLAY */

.search-container {
    margin-top: 60px;
    width: 400px;
    align-items: center;
    display: flex;
    justify-content: left;
    background-color: #ffffff;
}

.form-search-printer {
    width: 180px;
    align-items: center;
    color: white;
    right: 0;
    display: flex;
    padding: 2px;
    border: 1px solid currentColor;
    border-radius: none;
    margin: 0 0;
}

.form-control {
    text-align: center;
    height: 50px;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--table-bodytext-color);
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: 9px 4px 9px 4px;
    background-image: url("../assets/graphics/Magnifying_glass_icon.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 340px center;

    transition: all 0.4s ease-in-out;

}

.form-control:active,
.form-control:focus {
    border: none;
    border-bottom: 2px solid var(--secondary-brand-color);
    box-shadow: none;

    background-position: 350px center;

    transition: all 0.4s ease-in-out;
}

.form-control::placeholder {
    font-size: 1.2rem;
    color: var(--table-bodytext-color);
    transition: color 0.4s ease-in-out;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
  }


/* TABLE PROPERTIES */

.table-container {
    margin-top: 60px;
    background-color: #ffffff;
}

.table td,
.table th {
    text-overflow: ellipsis;
    vertical-align: middle;
}

.table thead th:not(th-printer) {
    color: var(--primary-brand-color);
    background-color: var(--primary-brand-color-50);
    padding: 10px;
    border-bottom: 1px solid var(--table-lines-color);
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    text-align: center;
    font-size: 1em;
    letter-spacing: .1em;
}

.th-printer {
    color: var(--secondary-brand-color);
    font-size: 1.2rem;
}

.table tbody td {
    vertical-align: middle;
    border-right: 1px solid #efefef;
    padding: 15px;
}

.table tbody td:last-child {
    border-right: none;
}

.table i {
    color: var(--secondary-brand-color);
    font-weight: bolder;
    font-size: 22px;
}

.table .fa-check {
    color: var(--secondary-brand-color);
}

.table .fa-remove {
    color: #FF7373;
}

.table .fa-minus {
    color:var(--table-bodytext-color);
}


.table tbody tr:nth-child(even):not(.manufacturer-title) td {
    background-color: hsl(0, 0%, 95%);
}


.manufacturer-title {
    background-color: hsl(0, 0%, 98%);
    color: var(--secondary-brand-color);
    font-size: 1.6rem;
    text-align: left;
}

.manufacturer-title>td {
    border-top: 2px solid var(--secondary-brand-color);
}

caption{
    padding-top: 30px;
    color: var(--primary-brand-color);
    text-align: left;
    font-weight: bold;
}


/* FIX TABLE HEADER ON TOP WHEN SCROLLING*/
.original-header {
    background-color: #ffffff;
    padding-top: 20px;
}

.sticky-header {
    padding-top: 20px;
    position: fixed;
    top: 100px;
    background: white;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

/* GO TO TOP BUTTON */

#btn-back-to-top {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: none;
    border-radius: 100%;
    width: auto;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.btn-floating {
    background-color: #ffffff;
    color: var(--primary-brand-color);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.19);

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;

}

.btn-floating:hover {
    background-color: var(--primary-brand-color);
    color: #ffffff;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}


/* FOOTER SEPARATOR */

.footer-separator {
    height: 140px;
    margin: 0;
}


/* FOOTER PROPERTIES */

.footer {
    background-color: var(--primary-brand-color);
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}


/* UPPER FOOTER - SOCIAL NETWORKS + SUPPORT CONTENT */

.upper-footer {
    padding: 80px 0 70px 0;
    color: #ffffff;
}

.upper-footer a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.upper-footer a:hover {
    cursor: pointer;
    color: var(--secondary-brand-color);
}

.footer-socialnetworks {
    margin-left: 0;
}

.footer-socialnetworks img {
    max-height: 30px;
}

.footer-socialnetworks i {
    color: #ffffff;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.footer-socialnetworks i:hover {
    color: var(--secondary-brand-color)
}

.upper-footer p {
    margin-top: 20px;
}

.upper-footer h5 {
    vertical-align: top;
    height: 30px;
    text-transform: uppercase;
}

/* LOWER FOOTER - COPYRIGHTS + TERMS & CONDITIONS */

.low-footer-mobile {
    display: none;
}

.lower-footer {
    padding: 15px 0 25px 0;
    color: #ffffff;
    border-top: 1px solid var(--secondary-brand-color);
}

.lower-footer .container {
    font-weight: 300px;
    font-size: 14px;
}

.lower-footer a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;

    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.lower-footer a:hover {
    cursor: pointer;
    color: var(--secondary-brand-color);
}

/* Responsive adjustments */

@media (max-width:991px) {
        body {
        margin-top: 70px;
    }

    .sticky-header {
        top: 70px;
    }

    .navbar-collapse {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .dropdown {
        margin-bottom: 50px;
    }

    .button-help {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    #dataSearch {
        font-size: 0.8rem;
    }

    #dataSearch::placeholder {
        font-size: 1.2rem;
    }

    .button-hero {
        padding: 10px 15px;
        font-size: 14px;
    }

    .banner-p{
        font-size: 20px;
    }

    .first-p{
        margin-top: 15px;
    }

    .last-p{
        margin-bottom: 30px;
    }

    footer {
        display: block;
    }

    .footer-socialnetworks {
        text-align: center;
    }

    .upper-footer {
        padding: 50px 0 10px 0;
    }

    .upper-footer p {
        margin-top: 5px;
    }

    .lower-footer {
        display: none;
    }

    .low-footer-mobile {
        display: block;
        padding: 24px 0 25px 0;
        color: #ffffff;
        border-top: 1px solid var(--secondary-brand-color);
        text-align: center;

        & a {
            color: #ffffff;
            font-weight: 600;
            text-decoration: none;

            -webkit-transition: 0.25s;
            -o-transition: 0.25s;
            transition: 0.25s;
        }

        & a:hover {
            cursor: pointer;
            color: var(--secondary-brand-color);
        }
    }

    .main-content {
        margin-bottom: 612px;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 40px;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .table {
        font-size: 0.8rem;
    }

    .manufacturer-title {
        font-size: 1.2rem;
    }


}

@media (max-width: 489px) {
    .hero-title {
        display: none;
    }
}