header.siteHeader {
    position: absolute;
    width: 100%;
    background-color: transparent;
    top: 0;
    z-index: 9;
}

header.siteHeader a {
    color: #fff;
}

.headerLeftMenu ul li:first-child a {
    color: #fff;
    font-weight: 800;
}

/* Home Banne Css Start */
section.heroBanner {
    width: 100%;
    height: 667px;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

section.heroBanner h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 73px;
    text-align: left;
    color: #fff;
    text-transform: capitalize;
    animation: zoom-in-zoom-out 1s ease-out;
    -webkit-animation: zoom-in-zoom-out 1s ease-out;
}

section.faqSection h2 {
    color: #EAA636;
    font-size: 46px;
    font-weight: 700;
    line-height: 61px;
    text-align: center;
    margin-top: 40px;
}

.faqBox {
    padding: 60px 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    /* min-height: 618px; */
}

.faqBox:nth-child(odd) {
    background-position: left bottom;
}

.faqBox:nth-child(odd) .faqContainer {
    margin-left: auto;
}

.faqContainer {
    max-width: 585px;
}

.faqItem {
    padding: 22px 26px 33px 36px;
    border-radius: 12px;
    background-color: #F1F1F1;
    margin-bottom: 26px;
}

.faqQuestion h4 {
    color: #000;
    font-family: 'Roboto';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    padding-right: 84px;
    cursor: pointer;
}

.faqQuestion h4::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 2px;
    right: 0;
    border-radius: 100%;
    background-image: url(../images/ic_baseline-plus.svg);
}

.activefaq .faqQuestion h4::after {
    background-image: url(../images/icons8_minus-svg.svg);
}

.faqAnswer {
    display: none;
}

.faqAnswer p {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 17px;
}