.page-grid-view .col{
padding-bottom: 1.5rem;
display: flex;
align-items: stretch;
}
.page-grid-item {
width: 100%;
float: left;
background-color: #ffffff;
position: relative;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2) !important;
transition: transform .3s ease;
}
.page-grid-item:hover {
transform: scale(1.05);
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4) !important;
}
.page-grid-item .page-grid-image {
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
text-align: center;
background-color: #f3f3f3;
}
.page-grid-item .page-grid-image img{
aspect-ratio: 16 / 9;
width: 100%;
}
.page-grid-item .page-grid-item-header {
font-size: 1.3rem;
font-weight: 700;
line-height: 1.22;
padding: 15px;
width: 100%;
margin: 0;
color: #54595F;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
float: left;
}
.page-grid-item .page-grid-item-content {
line-height: 1;
padding: 15px;
}
.page-grid-item:hover .page-grid-item-header {
color: var(--e-global-color-accent);
}
.page-grid-item .read-more {
padding: 0 10px 5px 10px;
margin: 0 10px 10px 10px;
display: flex;
justify-content: space-between;
align-items: center;
float: right;
}
.page-grid-item .read-more i.inline-icon{
margin: 0 0 0 3px;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid;
border-radius: 50%;
}
.page-grid-item:hover .read-more {
color: var(--e-global-color-accent);
}
@media (max-width: 1024px) {
.page-grid-item-header {
font-size: 1rem!important;
line-height: 1.1!important;
white-space: pre-wrap!important;
text-overflow: unset!important;
word-break: break-word!important;
}
}
@media (max-width: 359px) {
.col-6 {
width: 100%!important;
}
}.accordion-wrap {
width: 100%;
margin-bottom: 20px;
}
.accordion-wrap > .accordion-title{
margin: 30px 0 15px 0;
font-size: 28px;
}
.accordion-wrap > .tabs {
border-radius: 0;
overflow: hidden;
}
.accordion-wrap > .tabs .tab {
width: 100%;
color: white;
overflow: hidden;
margin-bottom: 5px;
}
.accordion-wrap > .tabs .tab-label {
cursor: pointer;
margin: 0;
font-family: "Lucida Sans Unicode","Lucida Grande",sans-serif;
font-size: 18px;
line-height: 42px;
background: #f2f2f2;
text-decoration: none;
color: #2d3347;
text-transform: uppercase;
display: block;
padding: 5px 5px 5px 50px;
position: relative;
font-weight: normal;
}
.accordion-wrap > .tabs .tab-label:hover {
background-color: #e1e1e1;
}
.accordion-wrap > .tabs .tab-label::after {
position: absolute;
left: 20px;
content: "\276F";
font-size: 28px;
-webkit-transition: all .35s;
transition: all .35s;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
height: auto;
width: auto;
}
.accordion-wrap > .tabs .tab-content {
display: block;
float: left;
width: 100%;
max-height: 0;
padding: 0 50px;
color: #404040;
background: #f2f2f2;
-webkit-transition: all .35s;
transition: all .35s;
}
.accordion-wrap > .tabs .tab> input[type="checkbox"]{
visibility: hidden;
display: none;
}
.accordion-wrap > .tabs .tab> input:checked + .tab-label {
background: #e1e1e1;;
}
.accordion-wrap > .tabs .tab> input:checked + .tab-label::after {
left: 20px;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.accordion-wrap > .tabs .tab> input:checked ~ .tab-content {
max-height: unset;
padding: 1em 50px;
}