.vsd-1651 .vsd-element.vsd-element-b4d434c{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--flex-wrap:wrap;}.vsd-widget-lottie{--caption-color:var( --e-global-color-text );}.vsd-widget-lottie .e-lottie__caption{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}#vsd-popup-modal-1651 .dialog-widget-content{animation-duration:1.2s;background-color:#FFFFFF7A;border-radius:16px 16px 16px 16px;}#vsd-popup-modal-1651{background-color:#E4E4E4D1;justify-content:center;align-items:center;pointer-events:all;}#vsd-popup-modal-1651 .dialog-message{width:1000px;height:44vh;align-items:center;}#vsd-popup-modal-1651 .dialog-close-button{display:flex;}@media(max-width:1024px){#vsd-popup-modal-1651 .dialog-message{width:1000px;height:100vh;}}@media(min-width:768px){.vsd-1651 .vsd-element.vsd-element-b4d434c{--width:100%;}}@media(max-width:767px){.vsd-1651 .vsd-element.vsd-element-b4d434c{--padding-top:220px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}#vsd-popup-modal-1651 .dialog-message{width:1000px;height:100vh;}}/* Start custom CSS for html, class: .vsd-element-e4adb19 */.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px;
}

.account-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border-radius: 20px;
    margin: 5px;
    padding: 20px;
    width: calc(32% - 10px);
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
}

.account-type:hover {
    background-color: #fff;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.account-type:hover .background-video {
    opacity: 1;
}

.icon {
    width: 75px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.dj-icon {
    width: 82.5px;
}

.account-type:hover .icon {
    transform: scale(1.2);
}

.account-type h3 {
    margin: 10px 0;
    font-size: 1.3em;
    font-weight: 600;
    color: #252525;
    text-transform: uppercase;
    z-index: 2;
}

.account-type p {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-align: center;
    z-index: 2;
}

@media (max-width: 1024px) {
    .account-type {
        width: calc(48% - 10px);
    }
}

@media (max-width: 768px) {
    .account-type {
        width: calc(100% - 10px);
    }
}

@media (max-width: 480px) {
    .icon {
        font-size: 40px;
    }

    .account-type h3 {
        font-size: 1.1em;
    }

    .account-type p {
        font-size: 16px; 
    }
}/* End custom CSS */