/* Banner Collection Overrides */

.Banner:hover>.photo>div {
    transform: none;
}

.Banner {
    cursor: default;
}

.Banner1 > div {
    padding-bottom: 2em;
}

.Banner1 .bannerTxtCtr .bannerTitle {
    font-size: 2em;
}

.Banner1 .bannerTxtCtr .bannerDesc {
    font-size: 1em;
}

.bannerDesc {
    display: none;
}

.bannerView {
    display: none; 
}

.bannerTxtCtr {
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-family: 'citrfontbold';
    display: flex;
    text-transform: uppercase;
    align-content: flex-start;
    padding: 3em;
    align-items: flex-start;
    justify-content: center !important;
}

.Banner1 .photo>div:after{
    padding-bottom: 35% !important;
}

/* Pricing Table */

.pricing {
    background: var(--color2);
    color: var(--color4);
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.pricing > div {
    flex-basis: 400px;
    flex-grow: 1;
    background: var(--color3);
    padding: 32px;
}
.pricing .wsPrice {
    background: var(--color2);
    padding: .5em 1em;
    display: flex;
    align-items: center;
    color: var(--color5);
    max-height: 50px;
}
.pricing .checkList li {
    border-top: 1px dashed var(--color2);
}
.pricing .checkList li:before {color: var(--color1);}   

div.accordion {
    width: 100%;
    background: var(--color3);
    border: none;
    outline: none;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    color: var(--color);
    cursor: pointer;
    transition: background-color 0.2s linear;
    display: flex;
    margin-bottom: 1rem;
    flex-flow: column;
}

div.accordion:after {
    content: "Read More";
    display: flex;
    background: var(--color2);
    color: #fff;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}


div.accordion.is-open:after {
    Content: "Read Less";
    color: #000;
    background: var(--color5);
}

div.accordion.is-open {
    color: var(--color5);
    background: var(--color2);
}

.accordionContent {
    background-color: white;
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
}

.accordionPrice {
    margin-bottom: 1rem;
    font-family: 'citrfontbold';
}

ul {
    list-style: disc;
    margin-left: 1.5rem;
}

Li {
    margin-bottom: 1rem;
}

.menuList {
    background: var(--color3);
    margin-left: 1rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;
    align-items: center;
}

.menuList h3 {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

@media screen and (max-width: 1024px) {
    .menuList {
        width: 100%;
        margin: 0;
    }
}

/* Custom Builds */

.gallery {}
.gallery > div {margin-bottom: 4rem;}
.gallery > div:last-of-type{margin-bottom: 0;}
.custom > div > a:nth-child(1) {grid-row: span 2;grid-column: span 2;}
.custom .bannerTxtCtr {align-items: flex-start;
    text-align: left;
    display: flex;
    align-content: flex-start;
    padding: 1rem;
    background: #00000045;
justify-content: flex-end !important;
}

.custom .bannerTxtCtr > span.bannerTitle:before {margin: 16px 0px 16px auto;}
.custom .bannerDesc,.custom .bannerView  { display:none}
.custom .bannerTitle {font-size: 2rem !important; display:none}
.custom > div > a:nth-child(1) .bannerTitle {display:inline-block;text-align: left;justify-content: left;align-items: flex-start;}

.custom > div > a:nth-child(1) .bannerTxtCtr:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(/layout/generalLyout/logo.png);
    background-repeat: no-repeat;
    background-position: 50% 1%;
    background-size: cover;
    z-index: -1;
    background-size: 16%;
    opacity: 1;
    -webkit-transition: all .5 ease-in-out;
    -moz-transition: all .5 ease-in-out;
    -ms-transition: all .5 ease-in-out;
    -o-transition: all .5 ease-in-out;
    transition: all .5s ease-in-out;
}

@media screen and (max-width: 1024px) {
	.gallery > div > div:after {grid-column: span 2;}
}
@media screen and (max-width: 767.9px) {
	.custom > div > a:nth-child(1) {grid-row: auto;/* grid-column: auto; */}
	.gallery > div > div:after {grid-column: span 2;}
    .custom > div { grid-template-columns: repeat(2, 1fr) !important;}
}                                                                                         