.bg-main {
    position: absolute;
    right: 0;
}

.content-wrapper p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--black);
    margin-bottom: 20px;
}

.content-wrapper a {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--black);
    text-decoration: underline;
    transition: .2s;
}

.content-wrapper a:hover {
    color: var(--yellow);
    transition: .2s;
}

.content-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
    margin-left: 20px;
}

.content-wrapper ul li {
    position: relative;
    padding-left: 20px;
}

.content-wrapper ul li:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: var(--red);
    left: 0;
    top: 9px;
}