/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

 .device-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.product-device {
    position: absolute;
    right: 10%;
    bottom: -10%;
    width: 200px;
    height: 450px;
    background-color: var(--primary);
    border-radius: 21px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.product-device::before {
    position: absolute;
    top: 10%;
    right: 10px;
    bottom: 10%;
    left: 10px;
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.product-device-2 {
    top: 10%;
    right: auto;
    bottom: 0;
    left: 10%;
    background-color: var(--secondary);
}

.wrapper {
    position: relative;
    overflow: hidden;
}

.wrapper:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.wrapper img {
    width: auto;
    height: 100%;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
