/*new accordion*/
.accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion .row {
    display: flex;
}

.accordion .row .col {
    flex: 1;
}

.accordion .row .col:last-child {
    margin-left: 1em;
}

/* Accordion styles */
.accordion .tabs {
    overflow: hidden;
}

.accordion .tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.accordion .tab-label {
    border: 1px solid;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 1em;
    background: #29d662;
    cursor: pointer;    /* Icon */
}

.accordion .tab-label:hover {
    background: #2146df;
}

.accordion .tab-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
    margin-left: 20px;
}

.accordion .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all 0.35s;
}

.accordion .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}

.accordion .tab-close:hover {
    background: #CF7019;
}

.accordion input:checked+.tab-label {
    background: #a1a1a5;
}

.accordion input:checked+.tab-label::after {
    transform: rotate(90deg);
}

.accordion input:checked~.tab-content {
    max-height: 100vh;
    padding: 1em;
}

.accordion input:checked~.tab-content {
    max-height: 100%;
}

.accordion .tab-content p {
    margin:0;
    padding: 0 0 10px;
}
.gallery-home-section .section-title, .gallery-home-section .section-desc {
    color: #fff !important;
}
.inner-page-banner .page-banner .page-banner-wrap {
    background-color: rgba(0, 0, 0, 0.60) !important;
}
@media only screen and (min-width: 1024px) {
    footer .column-element .column-label {
        font-size: 20px !important; 
    }
    footer .site-email span a {
        font-size: 13px !important;
    } 
}