/* Adding variables */
@import url("../../css/variables.css");

/* Side Image Hero */
.side-image-hero__main-container {
    display: flex;
    justify-content: center;
    width: var(--width);
    padding: var(--padding-full);
    margin: 0 auto;
}

.side-image-hero__inner-container {
    display: flex;
    flex-direction: row;
    gap: var(--l-spacing);
    width: var(--full);
}

.side-image-hero__left-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    max-width: 60%;
}

.side-image-hero__left-container .video-js.custom-video {
    width: var(--full) !important;
    max-width: var(--full) !important;
}

.side-image-hero__left-container img {
    width: auto;
    max-width: 100%;
    max-height: 480px;
}

.side-image-hero__right-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--m-spacing);
    width: 40%;
    max-width: 40%;
    font-weight: var(--light);
}

.side-image-hero__right-container h2 {
    font-size: var(--h2);
    font-weight: var(--extralight);
    line-height: var(--lh-n);
}

.side-image-hero__right-container h2 strong {
    font-weight: var(--regular);
    color: var(--neopaleblue);
}

/**********************************************/
/******************* Laptop *******************/
/**********************************************/
@media (max-width: 1366px) {
    
}

/**********************************************/
/******************* Tablet *******************/
/**********************************************/
@media (max-width: 1024px) {
    /* Side Image Hero Block */
    .side-image-hero__inner-container {
        flex-direction: column-reverse;
        gap: var(--m-spacing);
        width: var(--full);
    }
    
    .side-image-hero__inner-container.reverse {
        flex-direction: column-reverse;
    }

    .side-image-hero__left-container,
    .side-image-hero__right-container {
        width: var(--full);
        max-width: var(--full);
    }
}

/**********************************************/
/******************* Mobile *******************/
/**********************************************/
@media (max-width: 767px) {
    
}