.section {
    position: relative;
    padding: 50px 0;
}

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

.section .inner {
    position: relative;
    width: 70%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .section .inner {
        width: 80%;
    }
}

@media screen and (max-width: 640px) {
    .section .inner {
        width: 90%;
    }
}

.section .title {
    position: relative;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 32.5px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 400;
    font-size: 40px;
}

@media screen and (max-width: 768px) {
    .section .title {
        font-size: 35px;
    }
}

@media screen and (max-width: 640px) {
    .section .title {
        padding: 0 24px;
    }
}

.flex {
    display: flex;
}

.flex-jcsb {
    justify-content: space-between;
}

.flex-jcc {
    justify-content: center;
}

.flex-jcfs {
    justify-content: flex-start;
}

.flex-jcfe {
    justify-content: flex-end;
}

.flex-aifs {
    align-items: flex-start;
}

.flex-aic {
    align-items: center;
}

.flex-ais {
    align-items: stretch;
}

.flex-fdc {
    flex-direction: column;
}




/* BANNER */

#movie-banner {
    position: relative;
    padding: 0;
}

#movie-banner .row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}



@media screen and (max-width: 768px) {
    #movie-banner .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

#movie-banner #movie-trailer {
    width: 100%;
    height: calc(100vh - 100px);
    display: block;
    z-index: 1;
}

#movie-banner #movie-trailer video {
    height: 100% !important;
    object-fit: cover;
}

#movie-banner #movie-hero {
    position: relative;
}

#movie-banner #movie-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    text-align: center;
    box-sizing: border-box;
    padding: 50px;
    z-index: 1;
}

#movie-information-mobile #movie-information{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 10px;
    gap: 10px
}
#movie-information-mobile #movie-information li{
    flex: 0 1 auto;
    text-align: center;
}

@media screen and (max-width: 920px) {
    #movie-banner #movie-details {
        height: 100%;
        padding: 20px;
    }
}

#movie-banner #movie-details #movie-information {
    text-align: right;
}

#movie-banner #movie-details #movie-information li {
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    #movie-banner #movie-details #movie-information {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        max-width: 100%;
        gap:10px;
    }

    #movie-banner #movie-details #movie-information li {
        font-size: 18px;
        /* margin: 0 15px; */
        flex: 1 0 auto;
    }
}

#movie-banner #movie-logo,
#movie-banner #movie-title {
    display: block;
    max-width: 500px;
    height: auto;
    font-weight: bold;
    font-size: 50px;
    letter-spacing: -0.4px;
}

#movie-banner #movie-logo {
    width: 90%;
}

#movie-banner #movie-title {
    width: 55%;
}

@media screen and (max-width: 1040px) {
    #movie-banner #movie-logo,
    #movie-banner #movie-title {
        max-width: 450px;
    }
}

@media screen and (max-width: 920px) {
    #movie-banner #movie-logo,
    #movie-banner #movie-title {
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    #movie-banner #movie-logo,
    #movie-banner #movie-title {
        max-width: 300px;
        margin-bottom: 25px;
    }
}

#movie-banner #movie-play {
    display: block;
    opacity: 0.5;
    font-size: 60px;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    -ms-transition: opacity 300ms ease;
    -o-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}

#movie-banner #movie-play svg {
    fill: #fff;
}

#movie-banner #movie-play:hover {
    opacity: 1;
}

#movie-banner #movie-hero img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 100px);
    display: block;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    #movie-banner #movie-hero img {
        height: calc(100vh - 100px);
        object-fit: cover;
    }
}

/* TROVACINEMA */

#movie-trovacinema .inner {
    width: 100%;
}

#movie-trovacinema .title {
    width: 70%;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema .title {
        width: 80%;
    }
}

@media screen and (max-width: 640px) {
    #movie-trovacinema .title {
        width: 90%;
    }
}

#movie-trovacinema .inner .content {
    gap: 50px;
    padding: 0 50px;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (max-width: 920px) {
    #movie-trovacinema .inner .content {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    #movie-trovacinema .inner .content {
        flex-direction: column;
        justify-content: flex-start;
        align-self: center;
        text-align: center;
        gap: 50px;
    }
}

#movie-trovacinema #movie-poster {
    flex: 0 0 200px;
}

@media screen and (max-width: 1040px) {
    #movie-trovacinema #movie-poster {
        flex: 0 0 180px;
    }
}

@media screen and (max-width: 920px) {
    #movie-trovacinema #movie-poster {
        flex: 0 0 150px;
    }
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-poster {
        margin: 0 auto;
    }
}

#movie-trovacinema #movie-poster img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-poster img {
        max-width: 280px;
    }
}

#movie-trovacinema #movie-theaters-wrapper {
    flex-grow: 1;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters-wrapper {
        width: 100%;
    }
}

#movie-trovacinema #movie-theaters-wrapper form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    gap: 25px;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters-wrapper form {
        flex-wrap: wrap;
    }
}

#movie-trovacinema #movie-city {
    appearance: none;
    border: none;
    font-size: 18px;
    color: #252525;
    flex: 0 0 320px;
    line-height: 32px;
    border-radius: 32px;
    padding: 8px 25px;
    box-sizing: border-box;
    background: #fff;
    font-family: "Barlow Semi Condensed", sans-serif;
}

@media screen and (max-width: 1040px) {
    #movie-trovacinema #movie-city {
        flex: 0 0 250px;
    }
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-city {
        flex: 0 0 100%;
    }
}

#movie-trovacinema #movie-city:focus {
    outline: none;
}

#movie-trovacinema #movie-city::-webkit-input-placeholder,
#movie-trovacinema #movie-city:-ms-input-placeholder,
#movie-trovacinema #movie-city::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

#movie-trovacinema .ui-autocomplete {
    position: absolute;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow-y: scroll;
    border: none;
    top: 60px !important;
    left: 0 !important;
    box-sizing: border-box;
}

#movie-trovacinema .ui-menu .ui-menu-item-wrapper {
    padding: 0 10px;
}

#movie-trovacinema .ui-menu-item {
    height: 40px;
    line-height: 40px;
    overflow: hidden;
}

#movie-trovacinema .ui-state-active,
#movie-trovacinema .ui-widget-content .ui-state-active,
#movie-trovacinema .ui-widget-header .ui-state-active,
#movie-trovacinema a.ui-button:active,
#movie-trovacinema .ui-button:active,
#movie-trovacinema .ui-button.ui-state-active:hover {
    background-color: #ddd;
    color: #222;
}

#movie-trovacinema #movie-range {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    height: 8px;
    border-radius: 8px;
}

#movie-trovacinema #movie-distance {
    background-color: #fff;
    color: #2f2f2f;
    padding: 0 12px;
    box-sizing: border-box;
    margin-left: 5px;
    width: 70px;
    text-align: center;
    line-height: 32px;
    border-radius: 3px;
    position: relative;
}

#movie-trovacinema #movie-distance:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -5px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
}

#movie-trovacinema #movie-range.ui-slider-horizontal .ui-slider-handle {
    transform: translateY(-50%);
    top: 50%;
    border-radius: 50% !important;
    border: none !important;
}

#movie-trovacinema #movie-range .ui-state-hover,
#movie-trovacinema #movie-range .ui-widget-content .ui-state-hover,
#movie-trovacinema #movie-range .ui-widget-header .ui-state-hover,
#movie-trovacinema #movie-range .ui-state-focus,
#movie-trovacinema #movie-range .ui-widget-content .ui-state-focus,
#movie-trovacinema #movie-range .ui-widget-header .ui-state-focus,
#movie-trovacinema #movie-range .ui-button:hover,
#movie-trovacinema #movie-range .ui-button:focus {
    outline: none;
}

#movie-trovacinema #movie-theaters {
    margin-top: 25px;
    border-bottom: none;
    width: 100% !important;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters {
        font-size: 16px;
    }
}

#movie-trovacinema #movie-theaters tr {
    height: 36px;
    line-height: 36px;
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters tr {
        height: inherit;
        display: flex;
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
}

#movie-trovacinema #movie-theaters td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#movie-trovacinema #movie-theaters td:nth-of-type(1) {
    font-weight: bold;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters td:nth-of-type(1) {
        flex: 1 1 50%;
        order: 0;
    }
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters td:nth-of-type(2) {
        flex: 1 1 100%;
        order: 1;
        display: flex;
        justify-content: space-around;
        overflow: hidden;
        flex-wrap: wrap;
    }
}

#movie-trovacinema #movie-theaters td:nth-of-type(2) div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px 30px;
    flex-wrap: wrap;
}

#movie-trovacinema #movie-theaters td:nth-of-type(3) {
    width: auto;
    white-space: nowrap;
    padding: 8px 0 8px 10px;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters td:nth-of-type(3) {
        flex: 1 1 20%;
        order: 0;
        padding: 8px 0;
    }
}

#movie-trovacinema #movie-theaters a {
    background: rgba(255, 255, 255, 0.9);
    color: #252525;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 8px;
    display: block;
    text-align: center;
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    box-sizing: border-box;
    -webkit-transition: background 300ms ease, color 300ms ease;
    -moz-transition: background 300ms ease, color 300ms ease;
    -ms-transition: background 300ms ease, color 300ms ease;
    -o-transition: background 300ms ease, color 300ms ease;
    transition: background 300ms ease, color 300ms ease;
}

#movie-trovacinema #movie-theaters a:hover {
    background: rgba(255, 255, 255, 0.65);
    color: rgba(0, 0, 0, 0.5);
}

#movie-trovacinema #movie-theaters .name-map {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;

}

#movie-trovacinema #movie-versions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

#movie-trovacinema #movie-versions .movie-version-pill {
    background: rgba(255, 255, 255, 0.9);
    color: #252525;
    padding: 0 20px;
    border-radius: 36px;
    font-size: 11px;
    font-weight: 600;
    height: 25px;
    line-height: 25px;
}

#movie-trovacinema #movie-theaters_paginate {
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    #movie-trovacinema #movie-theaters_paginate {
        justify-content: center;
    }
}

#movie-trovacinema #movie-theaters_paginate,
#movie-trovacinema #movie-theaters_paginate span {
    display: flex;
    gap: 8px;
}

#movie-trovacinema #movie-theaters_paginate .paginate_button {
    color: #252525;
    background: #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 5px;
    -webkit-transition: background 300ms ease, color 300ms ease;
    -moz-transition: background 300ms ease, color 300ms ease;
    -ms-transition: background 300ms ease, color 300ms ease;
    -o-transition: background 300ms ease, color 300ms ease;
    transition: background 300ms ease, color 300ms ease;
}

#movie-trovacinema #movie-theaters_paginate .paginate_button.disabled {
    opacity: 0.25;
}

#movie-trovacinema
    #movie-theaters_paginate
    .paginate_button:not(.disabled):active {
    box-shadow: none;
}

#movie-trovacinema
    #movie-theaters_paginate
    .paginate_button:not(.disabled):not(.current):hover {
    background: rgba(255, 255, 255, 0.65);
    color: rgba(0, 0, 0, 0.5) !important;
}

#movie-trovacinema #movie-theaters_paginate .paginate_button.current {
    cursor: pointer;
}

/* PLOT */

#movie-plot .content {
    font-size: 18px;
    line-height: 25px;
    margin: 0 auto;
    text-align: justify;
}

#movie-plot .inner .flex {
    gap: 50px;
    align-items: flex-start;
}

@media screen and (max-width: 920px) {
    #movie-plot .inner .flex {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    #movie-plot .inner .flex {
        flex-direction: column;
        justify-content: flex-start;
        align-self: center;
        text-align: center;
        gap: 50px;
    }
}

#movie-plot #movie-poster {
    flex: 0 0 200px;
}

@media screen and (max-width: 1040px) {
    #movie-plot #movie-poster {
        flex: 0 0 180px;
    }
}

@media screen and (max-width: 920px) {
    #movie-plot #movie-poster {
        flex: 0 0 150px;
    }
}

@media screen and (max-width: 768px) {
    #movie-plot #movie-poster {
        margin: 0 auto;
    }
}

#movie-plot #movie-poster img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    #movie-plot #movie-poster img {
        max-width: 280px;
    }
}

#movie-plot-wrapper {
    flex-grow: 1;
}

@media screen and (max-width: 768px) {
    #movie-plot-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    #movie-plot .content {
        font-size: 16px;
        line-height: 22px;
    }
}

/* BODY */

#movie-body .content {
    font-size: 18px;
    line-height: 25px;
    margin: 0 auto;
    text-align: justify;
}

@media screen and (max-width: 840px) {
    #movie-body .content {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    #movie-body .content {
        font-size: 16px;
        line-height: 22px;
    }
}

#movie-body #movie-body-button {
    background: rgba(255, 255, 255, 0.9);
    color: #252525;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 8px;
    display: table;
    text-align: center;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    box-sizing: border-box;
    margin: 50px auto 0;
    -webkit-transition: background 300ms ease, color 300ms ease;
    -moz-transition: background 300ms ease, color 300ms ease;
    -ms-transition: background 300ms ease, color 300ms ease;
    -o-transition: background 300ms ease, color 300ms ease;
    transition: background 300ms ease, color 300ms ease;
}

@media screen and (max-width: 640px) {
    #movie-body #movie-body-button {
        font-size: 16px;
        line-height: 40px;
        height: 40px;
    }
}

#movie-body #movie-body-button:hover {
    background: rgba(255, 255, 255, 0.65);
    color: rgba(0, 0, 0, 0.5);
}

#movie-body #movie-body-image {
    margin: 0 0 50px 0;
}

@media screen and (max-width: 840px) {
    #movie-body #movie-body-image {
        margin: 0 auto 40px;
    }
}

#movie-body #movie-body-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* DESCRIPTION */

#movie-description .content {
    font-size: 18px;
    line-height: 25px;
    margin: 0 auto;
    text-align: justify;
}

@media screen and (max-width: 840px) {
    #movie-description .content {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    #movie-description .content {
        font-size: 16px;
        line-height: 22px;
    }
}

#movie-description #movie-description-button {
    background: rgba(255, 255, 255, 0.9);
    color: #252525;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 8px;
    display: table;
    text-align: center;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    box-sizing: border-box;
    margin: 50px auto 0;
    -webkit-transition: background 300ms ease, color 300ms ease;
    -moz-transition: background 300ms ease, color 300ms ease;
    -ms-transition: background 300ms ease, color 300ms ease;
    -o-transition: background 300ms ease, color 300ms ease;
    transition: background 300ms ease, color 300ms ease;
}

@media screen and (max-width: 640px) {
    #movie-description #movie-description-button {
        font-size: 16px;
        line-height: 40px;
        height: 40px;
    }
}

#movie-description #movie-description-button:hover {
    background: rgba(255, 255, 255, 0.65);
    color: rgba(0, 0, 0, 0.5);
}

#movie-description #movie-description-image {
    margin: 0 0 50px 0;
}

@media screen and (max-width: 840px) {
    #movie-description #movie-description-image {
        margin: 0 auto 40px;
    }
}

#movie-description #movie-description-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* STAMPS */

#movie-stamps .inner {
    width: 100%;
}

#movie-stamps .title {
    width: 70%;
}

@media screen and (max-width: 768px) {
    #movie-stamps .title {
        width: 80%;
    }
}

@media screen and (max-width: 640px) {
    #movie-stamps .title {
        width: 90%;
    }
}

#movie-stamps .content {
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 50px;
}

#movie-stamps .content img {
    width: 65px;
    flex: 0 0 65px;
    height: auto;
    display: block;
}

@media screen and (max-width: 1040px) {
    #movie-stamps .content img {
        width: 50px;
        flex: 0 0 50px;
    }
}

@media screen and (max-width: 640px) {
    #movie-stamps .content img {
        width: 65px;
        flex: 0 0 65px;
    }
}

/* VIDEOS */

#movie-videos {
    padding-bottom: 0;
}

#movie-videos .inner {
    width: 100%;
}

#movie-videos .title {
    width: 70%;
}

@media screen and (max-width: 768px) {
    #movie-videos .title {
        width: 80%;
    }
}

@media screen and (max-width: 640px) {
    #movie-videos .title {
        width: 90%;
    }
}

#movie-videos .inner .content {
    overflow-y: hidden;
    overflow-x: scroll;
    gap: 25px;
    padding: 0 50px 50px;
}

@media screen and (max-width: 768px) {
    #movie-videos .inner .content {
        gap: 20px;
        padding: 0 30px 50px;
    }
}

@media screen and (max-width: 640px) {
    #movie-videos .inner .content {
        gap: 15px;
        padding: 0 20px 50px;
    }
}

#movie-videos .inner .video {
    flex: 0 0 400px;
    width: 400px;
    color: #fff;
}

#movie-videos .inner .video .video-image {
    width: 100%;
    height: 225px;
    margin-bottom: 20px;
    background: #151515;
    position: relative;
}

@media screen and (max-width: 920px) {
    #movie-videos .inner .video {
        flex: 0 0 350px;
        width: 350px;
    }

    #movie-videos .inner .video .video-image {
        height: 195px;
    }
}

@media screen and (max-width: 768px) {
    #movie-videos .inner .video {
        flex: 0 0 300px;
        width: 300px;
    }

    #movie-videos .inner .video .video-image {
        height: 165px;
    }
}

@media screen and (max-width: 640px) {
    #movie-videos .inner .video {
        flex: 0 0 100%;
        width: 100%;
    }

    #movie-videos .inner .video .video-image {
        height: auto;
    }
}

#movie-videos .inner .video .video-image .video-play {
    position: absolute;
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    -ms-transition: opacity 300ms ease;
    -o-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
}

#movie-videos .inner .video .video-image:hover .video-play {
    opacity: 0;
}

#movie-videos .inner .video .video-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#movie-videos .inner .video .video-name {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.15px;
    text-transform: uppercase;
    text-align: center;
}

/* CAST */

#movie-cast {
    padding-bottom: 0;
}

#movie-cast .inner {
    width: 100%;
}

#movie-cast .title {
    width: 70%;
}

@media screen and (max-width: 768px) {
    #movie-cast .title {
        width: 80%;
    }
}

@media screen and (max-width: 640px) {
    #movie-cast .title {
        width: 90%;
    }
}

#movie-cast .inner .content {
    overflow-y: hidden;
    overflow-x: scroll;
    gap: 25px;
    padding: 0 50px 50px;
}

@media screen and (max-width: 768px) {
    #movie-cast .inner .content {
        gap: 20px;
        padding: 0 30px 50px;
    }
}

@media screen and (max-width: 640px) {
    #movie-cast .inner .content {
        gap: 15px;
        padding: 0 20px 50px;
    }
}

#movie-cast .inner .actor {
    flex: 0 0 120px;
    width: 120px;
}

#movie-cast .inner .actor .actor-image {
    width: 100%;
    height: 160px;
    margin-bottom: 10px;
}

#movie-cast .inner .actor .actor-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#movie-cast .inner .actor .actor-name {
    font-size: 20px;
    letter-spacing: -0.15px;
    line-height: 24px;
}

/* GALLERY */

#movie-gallery .gallery-row .slick-list {
    height: 285px;
}

#movie-gallery .gallery-row .slick-track {
    height: 100%;
}

#movie-gallery .gallery-row .gallery-item img {
    display: block;
    height: 288px;
    width: auto;
}

.slick-lightbox .slick-lightbox-inner .slick-arrow {
    display: none !important;
}

/* SOCIAL */

#movie-social #social-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    #movie-social #social-container{
       flex-direction: column;
    }
 }

@media screen and (max-width: 768px) {
    #movie-social header {
        flex-direction: column;
    }
    #movie-social header > * {
        margin: 10px auto;
    }
}

#movie-social #movie-hashtag {
    font-size: 50px;
    letter-spacing: -0.4px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    #movie-social #movie-hashtag {
        font-size: 30px;
    }
}

#movie-social .socials span {
    font-size: 22px;
    letter-spacing: -0.18px;
}

#movie-social .icons li {
    margin-left: 20px;
}

#movie-social .facebook-videos-container{
    margin-top: 20px;
    column-count:3;
    column-gap: 1em;
}


#movie-social .facebook-videos-container iframe{
    min-width: unset;
    background: white;
    max-width: 540px;
    width: calc(100% - 2px);
    border-radius: 3px;
    border: 1px solid rgb(219, 219, 219);
    box-shadow: none;
    display: block;
    margin: 0px 0px 12px;
    padding: 0px;
}


@media (max-width: 768px) {
    #movie-social .facebook-videos-container{
        column-count: 2;
    }
 }

 @media (max-width: 480px) {
    #movie-social .facebook-videos-container{
        column-count: 1;
    }
 }
.social-posts-container{
    margin-top: 20px;
    column-count:3;
    column-gap: 1em;

}
.social-posts-container iframe{
    display: inline-block;
    min-width: unset !important;
}

@media (max-width: 768px) {
   .social-posts-container {
        column-count: 2;
    }
}

@media (max-width: 480px) {
   .social-posts-container {
        column-count: 1;
    }
}
