/*
 * Banners
 */
.banners {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-repeat: no-repeat;
}
.banners > div {
    width: 100%;
    height: 322px;
    margin: 16px 0;
    padding: 180px 48px 40px 48px;
    opacity: 0.72;
    filter: alpha(opacity=72);
    cursor: pointer; 
}
.banners > div.active {
    opacity: 1;
    filter: alpha(opacity=100);
}
.banners > div > a {
    position: relative;
    font-family: "Work Sans", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}
.banners > div > a::before {
    content: "";
    position: absolute;
    top: -26px;
    left: -10px;
    width: 52px;
    border-bottom: 3px solid #f9f1c8;
}

@media (min-width:701px) {
    .banners {
        flex-direction: row;
    }
    .banners > div {
        width: 30%;
        margin: 0 16px;
    }
    .banners > div:first-child {
        margin-left: 0;
    }
    .banners > div:last-child {
        margin-right: 0;
    }
    
    .mainbanner-inner {
        position: absolute !important;
        right: 30px !important;
        width: 35% !important;
        left:auto !important;
    }

}

/*
 * List of expertises
 */
 @media (min-width:701px) {
    .expertises-list-container {
        display: flex;
        flex-direction: row;
    }
    .expertises-list-col {
        width: 50%;
    }
    .expertises-list-col:first-child {
        padding-right: 20px;
    }
    .expertises-list-col:last-child {
       padding-left: 20px;
   }
 }


 .expertises-list {
     margin: 70px 0 !important;
 }
 .expertises-list li {
    padding-bottom: 25px;
    list-style-type: none !important;
    font-size: 24px;
    font-weight: 400;
    min-width:250px;
}
.expertises-list li > a {
    display: block;
    font-weight: 500;
}
.expertises-list > li.has_children > a:before {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    margin-left: -1.5em;
    background-image: url(/wp-content/themes/lkd/assets/images/collapsible-buttons@2x.png);
    background-repeat: no-repeat;
    background-size: 32px;
    margin-top:9px;
}
.expertises-list > li.has_children[aria-expanded="true"] > a:before {
    background-position: -16px 0;
}
.expertises-list > li.has_children[aria-expanded="true"] > ul {
    display: block;
}

.expertises-list li.has_children > ul {
    display: none;
}
.expertises-list li.has_children li > a {
    font-size: 16px;
    font-weight: 700;
}
.expertises-list li.has_children ul > li.main_expertise {
    margin-top: -10px;
    margin-left: 0;
}
.expertises-list li.has_children ul > li.main_expertise a {
    font-size: 12px;
    text-decoration: underline;
    text-transform: uppercase;
    color: #000000;
}

/*
 * Main Banner
 */
 .mainbanner {
    width: 100%;
    height: 322px;
    background-repeat: no-repeat;
}

.mainbanner-inner {
    position: absolute;
    left: 10px;
    width: 95%;
}

input.error {
    border: 1px solid red !important;
}
