body {
    font-family: 'Sora', sans-serif;
}
.menu-open {
    transform: translateX(0);
}
.menu-closed {
    transform: translateX(100%);
}
.tab {
    color: #006879;
}
.tab-active {            
    font-weight: 600;
    border-bottom-width: 2px;
    border-color: #006879;
}
.tab-inactive {            
    border-bottom-width: 1px;
    border-color: transparent;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-header-text-small {
    font-size: 1rem;
}
.event-title{
     /*font-weight: bold;*/
     font-size: larger;
     padding-top: 0.5rem;
}
.event-subtitle {
    font-size: large;
    padding-top: 0.5rem;
}
.event-teaser, .event-description {
    font-style: italic;
    padding-top: 0.5rem;
}
.event-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.event-description.expanded {
    max-height: 1000px;
}
.light-green-gradient {
    background: linear-gradient(to bottom, #9ce571, #fff);
}
.button-group {
    display: flex;
    justify-content: flex-end; /* Aligns items to the right */
}
.more-less-btn {
    font-weight: 500;
}
.gbs-petrol {
    color: #006879;
}
.bg-gbs-petrol {
    background-color: #006879;
}
.wave-shape{
    overflow:hidden;
    position:relative;
    }
.wave-shape::before{ 
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 217% 85px;
    background-position: 0% 100%; 
    transform: rotateY(180deg); background-image: url('data:image/svg+xml;charset=utf8, <svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><g fill="%23006879"><path d="M907 83c-55 6-97-5-109-8-44-12-44-24-101-43-36-13-63-22-97-21-46 2-81 21-100 33-19-12-54-31-100-33-34-1-61 8-97 21-57 20-57 31-101 43-12 3-54 14-109 8A306 306 0 010 59v43h1000V59a306 306 0 01-93 24z"/><path d="M50 64s76 32 155-2c0 0-65 21-155 2z" opacity=".5"/><path d="M80 56s47 20 95-1c0 0-40 13-95 1z" opacity=".3"/><path d="M801 64s76 32 155-2c0 0-65 21-155 2z" opacity=".5"/><path d="M831 56s47 20 95-1c0 0-40 13-95 1z" opacity=".3"/></g></svg>'); 
}

.flip-card { perspective: 800px;}
.flip-card__content {transform-style: preserve-3d;}
@media (hover: hover) {
    .flip-card:hover .flip-card__content {transform: rotateY(.5turn);}
}

.flip-card__front,
.flip-card__back { backface-visibility: hidden;}
.flip-card__back{ transform: rotateY(.5turn);}

.drop-cap::first-letter {
    font-size: 2.8em;
    float: left;
    line-height: 1;
    margin-right: 0.1em;            
    }

@media (min-width:2100px){
    .wave-shape::before{
        background-size: 217% calc(2vw + 85px);
    }    
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden; /* Hide anything that might spill out */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
