﻿#home
{
    position: relative;
    padding:90px 0 0 0;
}


.box-home
{
    padding:15px;
    float:left;
    width:50%;
    min-height:180px;
    box-shadow:inset 0 0 10px rgba(0,0,0,.6);
}

.box-home h1
{
    font-size:26px;
    border:none;
    margin-top:5px;
}

.box-home h1, .box-home p, .box-home a
{
    color:#fff;
    font-weight:bold;
    text-shadow:1px 1px 3px rgba(0,0,0,.4);
}

.box-home a
{
    text-decoration:underline;
}
.box-loginProcess
{
    padding: 15px;
    margin-top: 20px;   
    background:#fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);    
    position: relative;    
    margin:0 auto 10px auto;
    color:#fff;
    min-height:180px;    
    padding-left: 15px;
    width:980px;
    
    border-bottom-left-radius:15px;
    border-bottom-right-radius:15px;
}
.box-loginProcess h1
{
    font-size:26px;    
    border:none;
    margin-top:15px;
    
}

.box-loginProcess h1, box-loginProcess p, .box-loginProcess a
{
    
    font-weight:bold;
    /*text-shadow:1px 1px 3px rgba(0,0,0,.4);*/
}

#tagline
{
    position:static;
    margin:0 auto 100px auto;
    display:block;
}

#bizcarousel {
    position: relative;
    margin: 0 auto 10px auto;
    width: 980px;
    height: 530px;
}

#carousel
{
    position:relative;
    margin:0 auto 10px auto;
    width:980px;
    height:530px;
}

#carousel img
{
    border-bottom-left-radius:15px;
    border-bottom-right-radius:15px;
    box-shadow:2px 2px 4px rgba(0,0,0,.5);
    position:absolute;
    top:0;
    left:0;
    width:980px;
    height:530px;
    z-index:3;
}

#next, #last
{
    position:absolute;
    top:50%;
    left:10px;
    width:22px;
    height:37px;
    cursor:pointer;
    margin-top:-17px;
    z-index:10;
    background:url(/images/arrowLeft.png) no-repeat;
}

#next
{
    left:auto;
    right:10px;
    background:url(/images/arrowRight.png) no-repeat;
}

/* Header Buttons - enabled via DisplayHeaderButtons whitelabel term */

/* Make the logo row flexbox when buttons are enabled */
header.main__header.has-header-buttons .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0 20px !important;
    position: relative;
}

@media (min-width: 768px) {
    header.main__header.has-header-buttons .row {
        margin: 5px;
    }

    /* Let logo container fill full width so text-align:center centers on the whole row */
    header.main__header.has-header-buttons [id$=FirstLogoContainer] {
        width: 100%;
    }

    /* Absolutely position buttons so they don't push the logo off-center */
    header.main__header.has-header-buttons .header-buttons-container {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Push buttons container to the right */
.header-buttons-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-right: 10px;
}

.header-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
    cursor: pointer;
    border: 2px solid #fff;
}

.header-btn-signin {
    background-color: transparent;
    color: #fff;
}

.header-btn-signin:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

.header-btn-register {
    background-color: #fff;
    color: #2d6cb1;
}

.header-btn-register:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2d6cb1;
    text-decoration: none;
}

/* Mobile: logo left, only Register button visible */
@media (max-width: 767px) {
    /* Override styles_.css column direction */
    header.main__header.has-header-buttons .row,
    header.main__header.has-header-buttons nav.navbar > .row:first-child {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px !important;
    }

    header.main__header.has-header-buttons [id$=FirstLogoContainer] {
        width: auto;
        float: none;
        flex: 1;
        padding-left: 12px;
    }

    header.main__header.has-header-buttons [id$=navHeader] {
        text-align: left !important;
    }

    header.main__header.has-header-buttons .navbar-brand {
        height: auto;
        max-width: 150px;
        padding: 5px 0;
    }

    header.main__header.has-header-buttons [id$=SecondLogoContainer] {
        display: none;
    }

    .header-buttons-container {
        padding-right: 12px;
    }

    /* Hide Sign In, show only Register */
    .header-btn-signin {
        display: none;
    }

    .header-btn-register {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* Knowledge Base Section */
.knowledgeBaseSection {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 48px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.knowledgeBaseContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.knowledgeBaseText {
    flex: 1;
}

.knowledgeBaseText h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--black, #000000);
}

.knowledgeBaseText p {
    margin: 0;
    font-size: 18px;
    color: var(--bizSenseSecondary, #333333);
    line-height: 1.5;
}

.knowledgeBaseButtons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
}

.knowledgeBaseButtons a {
    background-color: transparent !important;
    border: 2px solid var(--bizSensePrimary, #00d639) !important;
    color: var(--bizSensePrimary, #00d639) !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.knowledgeBaseButtons a:hover {
    background-color: var(--bizSensePrimary, #00d639) !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .knowledgeBaseContent {
        flex-direction: column;
        align-items: flex-start;
    }

    .knowledgeBaseButtons {
        width: 100%;
        flex-direction: column;
    }

    .knowledgeBaseButtons a {
        width: 100%;
        text-align: center;
    }
}