@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/roboto/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 1 1000; /* Define the range of font weights (wght) */
    font-stretch: 100%; /* Define the range of font width (wdth) */
    src: url('assets/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}

:root{
    --secondary-color: #A2A2A2;
    --background-grey: #464646;
    --secondary-blue: #0070BA;
    --light-blue: #3B9DD8;
}

body{
    font-family: 'Montserrat', sans-serif!important;
}

a{
    text-decoration: none!important;
}

.navbar a:not(.lg_inactive) {
    color: white !important;
}

footer a{
    color: white!important;
}

.background_grey{
    background-color: var(--background-grey)!important;
}

.color_grey{
    color: var(--background-grey)!important;
}

.color_blue{
    color: var(--secondary-blue)!important;
}

.secondary_color{
    color : var(--secondary-color)
}
.white{
    color: white!important;
}

.uppercase{
    text-transform: uppercase;
}

.text24Cta{
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text20{
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.text24{
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-family: 'Roboto', sans-serif;
}

button.btn.btn-primary{
    background-color: white;
    border-radius: 37px;
    padding: 15px 63px;
    color: #6A6A6A;
    font-size: 1.5625rem;
    font-weight: 700;
    border: none;
}

.heading26{
    font-size: 1.625rem!important;
    line-height: 2.375rem;
}

.special_letter{
    letter-spacing: 2.6px;
}

.heading32{
    font-size: 2rem;
    line-height: 1.8125rem;
}

.text32{
    font-size: 2rem;
    line-height: 2.5rem;
}

.text46{
    font-size: 2.875rem;
    line-height: 3.75rem;
}

.heading64{
    font-size: 3rem;
    line-height: 4rem;
}

h2{
    font-size: 4.125rem!important;
    line-height: 1.2em!important;
    font-weight: 400!important;
    color: var(--background-grey);
}

h3{
    font-size: 2.875rem!important;
    line-height: 5rem;
    font-weight: 700!important;
}

.lg_inactive{
    color : var(--secondary-color)
}

.video-section {
    position: relative;
    height: 100vh; /* Set the height of the video section as needed */
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0%);
    text-align: center;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    background-color: transparent!important;
}

section.video-section::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #4E5D9B;
    opacity: 0.4;
    z-index: 1;
}

img.aft_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 184px;
}

.height_100{
    min-height: 100vh;
}

.go_sustainible_image{
    transform: translate(-30%, 0px);
}

@media only screen and (min-width: 1700px) {
    .desktop_container {
        max-width: 1700px!important;
    }
}

.background_wall{
    background-image: url("assets/images/background_wall.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

.divider_bottom {
    border-bottom: solid 1px #707070;
    position: relative;
}


.machine_img {
    z-index: 10;
    position: relative;
}

section{
    overflow: hidden;
}

nav#sp_vertical_nav {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
    padding-right: 85px;
}

#sp_vertical_nav li {
    list-style-type: none;
    text-align: right;
}

#sp_vertical_nav a {
    display: inline-block;
    /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#sp_vertical_nav a:after {
    content: "";
    display: table;
    clear: both;
}

#sp_vertical_nav a span {
    float: right;
    display: inline-block;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
}

#sp_vertical_nav a:hover span {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

#sp_vertical_nav a:hover .sp_label {
    opacity: 1;
}

#sp_vertical_nav a.is-selected .sp_dot {
    background-color: var(--background-grey);
    border: solid 1px white;
}

#sp_vertical_nav .sp_dot {
    position: relative;
    top: 8px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #A2A2A2;
    -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
    -moz-transition: -moz-transform 0.2s, background-color 0.5s;
    transition: transform 0.2s, background-color 0.5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

#sp_vertical_nav .sp_label {
    position: relative;
    margin-right: 10px;
    padding: .4em .5em;
    color: white;
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.background_image_world_of{
    background-image: url("assets/images/Sealpac-IFFA2022-Supermarket-0087.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    position: relative;
}

.background_image_world_of::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00000075;
    position: absolute;
    top: 0;
    left: 0;
}

.world_pack_img{
    position: relative;
    z-index: 1;
}

.slider{
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: hidden;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider_item{
    max-width: 400px;
    z-index: 1;
    position: relative;
}

#slider_packaging {
    position: relative;
}

.slider_item_container {
    position: relative;
}

.slider_item_container:not(:last-child)::after {
    content: "";
    width: 100px;
    height: 5px;
    background-color: white;
    position: absolute;
    right: -75px;
    transform: rotate(-4deg);
    z-index: 0;
}

.slider_item_container:nth-child(1)::after {
    top: 95px;
}
.slider_item_container:nth-child(2)::after {
    top: 85px;
}
.slider_item_container:nth-child(3)::after {
    top: 75px;
}
.slider_item_container:nth-child(4)::after {
    top: 65px;
}
.slider_item_container:nth-child(5)::after {
    top: 55px;
}
.slider_item_container:nth-child(6)::after {
    top: 45px;
}
.slider_item_container:nth-child(7)::after {
    top: 35px;
}
.slider_item_container:nth-child(8)::after {
    top: 25px;
}

#toggleMuteButton{
    background-image: url("assets/images/icons/mute.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 46px;
    height: 36px;
}

#toggleMuteButton:hover{
    background-image: url("assets/images/icons/unmute.svg");

}


.slider_item.burger {
    transform: rotate(-2deg);
}

.slider_item.sausage {
    transform: rotate(2deg);
}


.slider_item.salmon {
    transform: rotate(-1deg);
}

.slider_item.spaghetti{
    transform: rotate(3deg);
}

.slider_item.meat{
    transform: rotate(-1deg);
}

.slider_item.egs{
    transform: rotate(2deg);
}

.slider_item.ham{
    transform: rotate(-2deg);
}

.floating_cta{
    position: fixed;
    bottom: 40px;
    right: 0px;
    background-color: var(--light-blue);
    padding: 20px 50px 20px 30px;
    border-radius: 50px 0px 0px 50px;
    z-index: 99;
}

.cta_divider {
    width: 100%;
    height: 1px;
    background-color: var(--background-grey);
    margin: 5px 0px;
}

.floating_anuga{
    display: none;
}


footer{
    z-index: 101;
    position: relative;
}


#sealpac_m_flex .machine_img{
    object-fit: contain;
}

.madeingermany{
    position: absolute;
    top: 0;
    left: 0;
}

.madeingermany-r{
    position: absolute;
    top: 0;
    right: 0;
}

.premiere{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.title_machine{
    left: 54%;
    top: 40%;
}

.title_machine_ts{
    left: 46%;
    top: 25%;
}

.title_machine_m6{
    left: 46%;
    top: 70%;
}


.ms_220{
 margin-left: 220px;
}



/* Polaroid Machines */

.z_index_ten{
    z-index: 10;
}

.polaroid-container{
    position: absolute;
    top: 25%;
}

.pol{
    left: 0;
}

.por{
    right: 0;
}

.polaroid-container img{
    object-fit: contain;
    transition: all;
    transition-duration: 0.5s;
}

#polaroid_1{
    transform: matrix(0.95, -0.33, 0.33, 0.95, -330, 0);
    z-index: 2;
}

.polaroid-container.section-in-view #polaroid_1{
    transform: matrix(0.97, 0.26, -0.26, 0.97, 200, 0);

}

#polaroid_2{
    transform: matrix(0.96, -0.29, 0.29, 0.96, -230, -211);
    z-index: 1;
}

.polaroid-container.section-in-view #polaroid_2{
    transform: matrix(0.97, -0.26, 0.26, 0.97, 15, -190);
    z-index: 2;
}

#polaroid_3{
    transform: matrix(0.99, -0.14, 0.14, 0.99, -309, -300);
}

.polaroid-container.section-in-view #polaroid_3{
    transform: matrix(0.97, -0.24, 0.24, 0.97, -70, -270);
    z-index: 3;
}


#polaroid_4{
    transform: matrix(0.91, 0.41, -0.41, 0.91, 330, -180);
    z-index: 1;
}

#polaroid_5{
    transform: matrix(0.88, 0.47, -0.47, 0.88, 360, -340);
    z-index: 2;
}

#polaroid_6{
    transform: matrix(0.96, 0.28, -0.28, 0.96, 360, -480);
}

.polaroid-container.section-in-view #polaroid_4{
    transform: matrix(0.99, -0.16, 0.16, 0.99, -100, 0);
}

.polaroid-container.section-in-view #polaroid_5{
    transform: matrix(1, 0.03, -0.03, 1, 0, -210);
}

.polaroid-container.section-in-view #polaroid_6{
    transform: matrix(0.94, 0.34, -0.34, 0.94, 70, -270);
    z-index: 3;
}


#polaroid_7{
    transform: matrix(0.97, -0.26, 0.26, 0.97, -310, 0);
}

#polaroid_8{
    transform: matrix(0.99, -0.14, 0.14, 0.99, -380, -270);
    z-index: 1;
}

#polaroid_9{
    transform: matrix(1, -0.02, 0.02, 1, -328, -360);
}

.polaroid-container.section-in-view #polaroid_7{
    transform: matrix(0.96, -0.29, 0.29, 0.96, -20, -190);
}

.polaroid-container.section-in-view #polaroid_8{
    transform: matrix(1, -0.09, 0.09, 1, -100, -310);
}

.polaroid-container.section-in-view #polaroid_9{
    transform: matrix(1, -0.02, 0.02, 1, -10, -440);
    z-index: 3;
}

@media only screen and (max-width: 992px) {
    img.aft_logo {
        position: relative;
        padding: 0px 0px 80px 0px;
    }

    .sealpack_m_flex_polaroid {
        left: -60%;
    }

    .sealpack_re_polaroid {
        left: -60%;
    }
    nav#sp_vertical_nav {
        padding-right: 20px!important;
    }
    img.aft_logo {
        display: none;
    }
    .floating_anuga {
        position: absolute;
        left: 10px;
        top: 77vh;
        display: flex;
        width: 160px;
        z-index: 3;
    }
}

.mobile_menue{
    display: none!important;
}

@media only screen and (max-width: 768px) {
    .floating_anuga {
        width: 120px;
    }
    .sealpack_m_flex_polaroid {
        left: -70%;
    }
    .sealpack_re_polaroid{
        left: -82%;
    }

    h2{
        font-size: 2rem!important;
        line-height: 1.2em!important;
        font-weight: 700!important;
    }

    h2 span {
        font-size: 2rem;
    }

    .heading64 {
        font-size: 1.5rem;
        line-height: 1.5em;
    }

    .text46 {
        font-size: 1.875rem;
        line-height: 2.75rem;
    }

    nav#sp_vertical_nav {
        display: none;
    }

    .heading26{
        font-size: 1rem!important;
        line-height: 1.2em;
    }

    .text32{
        font-size: 1.5rem!important;
        line-height: 1.2em;
    }

    .floating_cta{
        display: none;
    }

    .video-section {
        height: 60vh;
    }

    .go_sustainible_image{
        position: absolute;
        transform: translate(-30%, 0px);
        width: 70%;
    }

    .premiere {
        transform: translate(0%, -100%);
    }

    .madeingermany {
        top: 44%;
        left: 0;
        width: 20%;
    }

    .madeingermany-r{
        top: 40%;
        left: 15%;
        width: 20%;
    }

    .ms_220{
        margin-left: 0px;
    }

    .title_machine_m6 {
        left: 0%;
        top: 31%;
        width: 50%;
    }

    .slider_item {
        max-width: 200px;
    }

    .icon_footer{
        width: 40px;
        object-fit: contain;
    }

    .mobile_menue{
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #3B9DD8;
        width: 100%;
    }
    
    .mobile_menue_button_first{
        border-right: solid 1px #707070!important;
        border-radius: 0px!important
    }


    #toggleMuteButton {
        width: 30px;
    }

    .heading32{
        font-size: 1.5rem;
        line-height: 1.2em;
    }

    .machine_img_1.machine_img {
        width: 190%;
    }
    
    .machine_img_2.machine_img {
        width: 190%;
        margin-top: 30px;
    }
    
    .title_machine {
        left: 0%;
        top: 35%;
    }


    .title_machine_ts {
        left: 0%;
        top: 21%;
    }
}



@media only screen and (max-width: 992px) {

    .polaroid-container{
        position: relative;
    }

    .polaroid_image{
        width: 140px;
    }

    #polaroid_1{
        transform: matrix(0.91, -0.41, 0.41, 0.91, 30, 0);
        z-index: 2;
    }
    
    #polaroid_2{
        transform: matrix(1, 0, 0, 1, -30, 0);
        z-index: 2;
    }

    #polaroid_3{
        transform: matrix(0.99, 0.1, -0.1, 0.99, -100, -20);
        z-index: 1;
    }

    #polaroid_4{
        transform: matrix(0.91, -0.41, 0.41, 0.91, 30, 0)!important;
        z-index: 2;
    }
    
    #polaroid_5{
        transform: matrix(1, 0, 0, 1, -30, 0)!important;
        z-index: 2;
    }

    #polaroid_6{
        transform: matrix(0.99, 0.1, -0.1, 0.99, -100, -20)!important;
        z-index: 1;
    }

    #polaroid_7{
        transform: matrix(0.91, -0.41, 0.41, 0.91, 30, 0);
        z-index: 2;
    }
    
    #polaroid_8{
        transform: matrix(1, 0, 0, 1, -30, 0);
        z-index: 2;
    }

    #polaroid_9{
        transform: matrix(0.99, 0.1, -0.1, 0.99, -100, -20);
        z-index: 1;
    }

}