* {
    --lightgray: #d3d3d3;
    --orange: #FF6200;
    --text: #333333;
    --plyr-color-main: #FFF
}

body {
    font-family: "Manrope", "Montserrat Alternates", "Montserrat", "Roboto", serif;
    background-color: #F5F5F7;

}

.video__wrapper {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1.8;
}

.ad-video {
    width: 100%;
    height: auto;
    aspect-ratio: 1.8;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
}

.wrap2 path,
.wrap path {
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
    animation: none;
    opacity: 0;
}

.wrap2.animate path {
    animation: draw 5s cubic-bezier(0.5, 0.25, 0.78, 1.0) forwards;
    opacity: 1;
}

.wrap.animate path {
    animation: draw 3s cubic-bezier(0.5, 0.25, 0.78, 1.0) forwards;
    opacity: 1;
}

.accordion .accordion-item {
    border-bottom: 1px solid var(--lightgray);
}

.accordion button {
    position: relative;
    display: flex;
    text-align: left;
    width: 100%;
    color: var(--text);
    font-size: 17px;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion-title {
    font-weight: 500;
}

.accordion button .icon {
    display: inline-block;
    position: relative;
    color: var(--orange);
    min-width: 22px;
    width: 22px;
    height: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-weight: 300;
    margin: 0 0 1em 0;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 8000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

button.plyr__control.plyr__control--overlaid>* {
    color: #121212;
    mix-blend-mode: multiply;
}