﻿#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;
}

/* 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;
    }
}