:root {
    --color-primary: #33c9c4;
    --color-gray9: #232323;
    --color-gray8: #3e3e3e;
    --color-gray7: #575757;
    --color-gray6: #888888;
    --color-gray5: #b3b3b3;
    --color-gray4: #dbdbdb;
    --color-gray3: #e9e9e9;
    --color-gray2: #f3f3f3;
    --color-gray1: #fafafa;
    --color-light: #ffffff;
}

v-parallax {
    position: relative;
    display: block;
}

v-parallax-hover {
    display: block;
    &:empty {
        width: auto;
    }
}

.veda-heading__title {
    margin: auto;
    font-weight: 500;
    max-width: 680px;
    text-align: center;
}

.veda-heading__text {
    margin: auto;
    font-size: 16px;
    max-width: 680px;
    text-align: center;
}

.veda-heading__space {
    height: 20px;
}

v-parallax-hover {
    width: 100%;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(-5deg) rotateY(5deg);
}

.veda-parallax-hover-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
}

.veda-parallax-hover-image {
    padding-top: 100%;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    transform: translate3d(0, 0, 180px) scale(0.6);
}

.veda-parallax-hover-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.veda-parallax-hover-title {
    margin: 20px 0 10px 0;
    color: var(--color-gray9);
    font-weight: 500;
}

.veda-parallax-hover-button {
    padding: 12px 20px;
    margin-top: 30px;
    display: inline-flex;
    column-gap: 10px;
    color: var(--color-light);
    background-color: var(--color-primary);
    text-decoration: none;
    outline: none;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}
