/* ===============================
   Base styles (no color defined)
================================ */
.repeater_zigzag {
    display: flex;
    justify-content: center;
	padding: 4rem 0;
}
.repeater_zigzag p,
.repeater_zigzag li,
.repeater_zigzag h1,
.repeater_zigzag h2,
.repeater_zigzag h3,
.repeater_zigzag h5,
.repeater_zigzag h6 {
    margin: 0;
    padding: .5rem 0;
}
.repeater_zigzag h1,
.repeater_zigzag h2,
.repeater_zigzag h3,
.repeater_zigzag h4,
.repeater_zigzag h5,
.repeater_zigzag h6 {
	 color: var(--main_colour);
	 font-family: 'Avant Garde';
    line-height: 1;
}
.repeater_zigzag p,
.repeater_zigzag li{
    font-size: 18px;
    line-height: 1.5;
}
.repeater_zigzag h1{
	font-size: 60px;
}
.repeater_zigzag h2{
	font-size: 60px;
}
.repeater_zigzag h3{
	font-size: 30px;
}
.repeater_zigzag h4{
	font-size: 26px;
}
.repeater_zigzag h5{
	font-size: 24px;
}
.repeater_zigzag h6{
	font-size: 20px;
}
.repeater_zigzag p a {
    color: #26A7F5;
    text-decoration: underline !important;
    font-weight: 600;
}

.repeater_zigzag li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 13px;
    height: 31px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='31' viewBox='0 0 13 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0216675 17.427L9.57343 0.867676L7.80093 14.1151H12.9707L3.46819 30.6743L5.48686 17.427H0.0216675Z' fill='%23F7E30A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.repeater_zigzag li {
    break-inside: avoid;
    list-style: none;
    margin-left: 1em;
    position: relative;
    padding-left: 2em;
    font-weight: 600;
}
.repeater_zigzag.blue{
    background: var(--main_colour);
}
.repeater_zigzag.blue h1,
.repeater_zigzag.blue h2,
.repeater_zigzag.blue h3,
.repeater_zigzag.blue h4,
.repeater_zigzag.blue h5,
.repeater_zigzag.blue h6,
.repeater_zigzag.blue p{
	color: var(--white_tone);
}
.repeater_zigzag.blue h1 strong,
.repeater_zigzag.blue h2 strong,
.repeater_zigzag.blue h3 strong,
.repeater_zigzag.blue h4 strong,
.repeater_zigzag.blue h5 strong,
.repeater_zigzag.blue h6 strong{
	color: var(--secondary_colour)!important;
}
/* ===============================
   Other styles (unchanged)
================================ */
.repeater_zigzag .order-right {
    flex-direction: row;
}
.repeater_zigzag .order-left {
    flex-direction: row-reverse;
}
.repeater_zigzag .repeater_content {
    display: flex;
}
.repeater_zigzag .repeater_content .front-zig {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.repeater_zigzag .repeater_align {
    display: flex;
    justify-content: center;
    gap: 6rem;
}
.repeater_content {
    flex: 1;
}
.img_wrapper_repeater_zigzag {
    overflow: hidden;
    max-height: 40rem;
    flex: 1;
}
.img_wrapper_repeater_zigzag_imgtag {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}
@media (orientation: portrait) {
    .repeater_zigzag{
        padding: 2rem 0;
    }
    .repeater_zigzag .order-left {
        flex-direction: column;
        align-items: center;
    }
    .repeater_zigzag .order-right,.repeater_zigzag .order-left {
		flex-direction: column;
	}
    .repeater_zigzag .repeater_align {
        flex-direction: column;
        gap: 0rem;
    }
    .img_wrapper_repeater_zigzag {
        height: 20rem;
        flex: unset;
        object-fit: contain;
    }
    .order-left, .order-right {
        flex-direction: column;
    }
}