@keyframes goShopping
{
    0%   {left: 0;}
    50%  {left: 10%;}
    100% {left: 0;}
}
@media only screen and (min-width: 851px) 
{
    .content .video-container:hover
    {
        width: calc(90% - 10px);
    }
    .content .video-container:hover + .buttons-container
    {
        width: calc(10% - 10px);
    }
    .content .video-container:hover + .buttons-container .main-title
    {
        height: 100%;
        max-height: calc(100% - 15px);
    }
    .content .video-container:hover + .buttons-container #stores-link, .content .video-container:hover + .buttons-container #stores-selector
    {
        height: 0;
        min-height: 0;
    }
}
#play-pause-button
{
    width: 50px;
    height: 50px;
    left: 20px;
    top: 50px;
    z-index: 10;
    position: absolute;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: 0;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}
#play-pause-button::after
{
    content: "";
    background-image: url("../images/pause.svg");
    background-position: center;
    background-size: 12px 20px;
    width: 12px;
    height: 20px;
}
#play-pause-button.pause::after
{
    content: "";
    background-image: url("../images/play.svg");
    background-position: center;
    background-size: 12px 20px;
    width: 12px;
    height: 20px;
}
#mute-button
{
    width: 50px;
    height: 50px;
    left: 75px;
    top: 50px;
    z-index: 10;
    position: absolute;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    border: 0;
    background: #111111;
    color: #ffffff;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}
#mute-button::after
{
    content: "";
    background-image: url("../images/unmuted.svg");
    background-position: center;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}
#mute-button.unmute::after
{
    content: "";
    background-image: url("../images/muted.svg");
    background-position: center;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}
.content .video-container
{
    transition: all 2s;
    position: relative;
}
.content .buttons-container
{
    transition: all 2s;
}
header,.content,footer
{
    max-width: 1397px;
    padding: 0 15px;
    margin: 0 auto;
    font-family: 'Public Sans', sans-serif;
}
body
{
    position: relative;
}
header
{
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#contactus
{
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    margin-bottom: 0;
}
.language-list
{
    display: none;
}
.switch-language
{
    position: relative;
    cursor: pointer;
}
header .switch-language::after
{
    content: "";
    width: 5px;
    height: 5px;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 0px;
    transform: rotate(45deg);
    margin-left: 3px;
    top: -3px;
    position: relative;
}
header .switch-language.active::after
{
    transform: rotate(-135deg);
    top: 0px;
}
header .switch-language.active + .language-list
{
    display: flex;
    
}
header .language-list
{
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 53px;
    right: -4px;
    background-color: #fff;
    z-index: 4;
    height: 64px;
    padding: 0 25px;
    column-gap: 40px;
}
header .language-list a
{
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}
.header-links
{
    display: flex;
    position: relative;
}
.logo-splash
{
    content: url("../images/Logo_Binom.svg");
    margin: 0;
    display: block;
}
.content
{
    height: calc(100vh - 132px);
    min-height: 620px;
    max-height: 821px;
    display: flex;
    justify-content: space-between;

}
.content .video-container
{
    border-top: 15px solid #1027d1;
    width: calc(60% - 10px);
}
.content .video-container video
{
    padding-top: 13px;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}
.content .buttons-container
{
    border-bottom: 15px solid #1027d1;
    width: calc(40% - 10px);
    display: flex;
    flex-direction: column;
}
.content .buttons-container
{
    overflow: hidden;
    white-space: nowrap;
}
.content .buttons-container .main-title
{
    display: block;
    position: relative;
    height: calc(100% - 127px);
    background-color: #f0f0f0;
    margin-bottom: 0;
    transition: all 2s;
}
.content .buttons-container a
{
    height: 100%;
    padding: 0 15px 0 10%;
    display: flex;
    align-items: center;
}
.content .buttons-container .shopping
{
    color: #000000;
    font-size: 40px;
    font-weight: 700;
}
.content .buttons-container .shopping i
{
    content: url("../images/hamburger.svg");
    opacity: 0;
    position: absolute;
    left: 42%;
}
.content .buttons-container .shopping span
{
    position: relative;
}
.content .buttons-container .shopping:hover span
{
    animation: goShopping 5s infinite;
}
.content .buttons-container .shopping:hover
{
    color: #1027d1;
    text-decoration: none;
}
.content .buttons-container #stores-link
{
    height: 112px;
    padding: 0 15px 0 10%;
    background-color: #e3e3e3;
    display: flex;
    align-items: center;
    padding: 0 15px 0 10%;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 2s;
    overflow: hidden;
    white-space: nowrap;
}
.content .buttons-container #stores-link .strong
{
    font-weight: 700;
}
.content .buttons-container #stores-link span::after
{
    content: "";
    width: 8px;
    height: 8px;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 0px;
    transform: rotate(-135deg);
    margin-left: 12px;
    margin-top: 8px;
}
.content .buttons-container.active #stores-link span::after
{
    transform: rotate(45deg);
    margin-top: 0px;
    top: -4px;
    position: relative;
}
.content .buttons-container #stores-selector
{
    height: 0;
    background-color: #e3e3e3;
    overflow: hidden;
    transition: all 2s;
}
.content .buttons-container.active .main-title
{
    height: calc(100% - 409px);
}
.content .buttons-container.active #stores-selector
{
    height: 282px;
}
.content .buttons-container #stores-selector .container
{
    background-color: rgba(57, 57, 57, 0.25);
    width: calc(100% - 40px);
    margin: 30px auto 0;
    height: 251px;
    border-radius: 10px;
    padding: 36px 20px 0;
    box-sizing: border-box;
}
.content .buttons-container #stores-selector .container .search input
{
    color: #898989;
    font-size: 20px;
    background-color: #fcfcfc;
}
.search input:focus
{
    box-shadow: none;
}
.search input::placeholder
{
    color: #898989;
    opacity: 1;
}
.content .buttons-container #stores-selector .container .search
{
    position: relative;
    margin: 0 25px 0 0;
}
.content .buttons-container #stores-selector .container .search::after
{
    content: "";
    position: absolute;
    left: 30px;
    top: 10px;
    background-image: url("../images/search-icon.svg");
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-size: contain;
}
.content .buttons-container #stores-selector .container input
{
    height: 43px;
    padding: 0 64px;
}
.content .buttons-container #stores-selector .container #links-list
{
    height: 139px;
    overflow-y: scroll;
    padding: 0;
    margin: 0;
    list-style: none;
}
.content .buttons-container #stores-selector .container #links-list li
{
    box-sizing: border-box;
    min-height: 47px;
    padding: 0 30px;
    margin: 0 25px 0 0;
    display: flex;
    align-items: center;
}
.content .buttons-container #stores-selector .container #links-list li:nth-child(even)
{
    background-color: #e3e3e3;
}
.content .buttons-container #stores-selector .container #links-list li a
{
    color: #000000;
    font-weight: 100;
    font-size: 20px;
}
.content .buttons-container #stores-selector .container #links-list li a:hover
{
    text-decoration: none;
}
.content .buttons-container #stores-selector .container #links-list li a strong
{
    font-weight: 400;

}
footer
{
    display: flex;
    justify-content: space-between;
    margin-top: 13px;
}
footer .copy
{
    color: #000000;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 14px;
    opacity: 0.6;
    width: calc(60% - 10px);
}
footer .copy strong
{
    font-weight: 700;
}
footer .links
{
    width: calc(40% - 10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
}
footer .links .policy-links
{
    display: flex;
}
footer .links .policy-links a
{
    color: #000000;
    font-size: 14px;
    letter-spacing: 0.08px;
}
footer .social
{
    column-gap: 30px;
    display: flex;
}
footer .social .facebook
{
    content: url("../images/face-logo.svg");
    width: 25px;
    height: 25px;
}
footer .social .facebook:hover
{
    content: url("../images/face-logo-blue.svg");
}
footer .social .instagram
{
    content: url("../images/inst-logo.svg");
    width: 25px;
    height: 25px;
}
footer .social .instagram:hover
{
    content: url("../images/inst-logo-blue.svg");
}
footer .social .youtube
{
    content: url("../images/yt-logo.svg");
    width: 25px;
    height: 25px;
}
footer .social .youtube:hover
{
    content: url("../images/yt-logo-blue.svg");
}
.overlay
{
    position: absolute;
    top: 86px;
    left: 0;
    opacity: 0.45;
    background-color: #333333;
    width: 100%;
    height: calc(100% - 86px);
    display: none;
    cursor: pointer;
    z-index: 2;
}
.popup-container
{
    display: none;
    position: absolute;
    background-color: #fff;
    max-width: 862px;
    width: 97%;
    padding: 62px 16px;
    top: 120px;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 0);
    z-index: 99999999999;
    font-family: 'Public Sans', sans-serif;
    box-sizing: border-box;
    max-height: 80%;
    overflow-y: auto;
}
.popup-container .close-cross {
    position: absolute;
    right: 18px;
    top: 22px;
    width: 37px;
    height: 39px;
    cursor: pointer;
  }
  .popup-container .close-cross:before, .popup-container .close-cross:after {
    position: absolute;
    left: 17px;
    content: ' ';
    height: 37px;
    width: 1px;
    background-color: #333;
  }
  .popup-container .close-cross:before {
    transform: rotate(45deg);
  }
  .popup-container .close-cross:after {
    transform: rotate(-45deg);
  }
.popup-container .static-title
{
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 30px;
    font-weight: 300;
}
.popup-container .static-subtitle
{
    font-size: 20px;
    line-height: 35px;
    font-weight: 300;
}
.popup-container .title
{
    max-width: 625px;
    margin: 0 auto;
    font-size: 35px;
    line-height: 35px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 8px;
}
.popup-container .title strong
{
    color: #1027d1;
}
.popup-container .subtitle
{
    max-width: 625px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.popup-container .subtitle strong
{
    color: #1027d1;
}
.popup-container form
{
    font-family: 'Poppins', sans-serif;
    max-width: 625px;
    margin: 0 auto;
}
.popup-container form label .required
{
    color: #999999;
}
.popup-container form input:focus
{
    box-shadow: none;
}
.popup-container form input[type=text]
{
    height: 50px;
    border: 1px solid #333333;
    margin-bottom: 30px;
    padding: 0 19px;
    font-size: 16px;
    line-height: 32px;
    color: #000000;
}
.popup-container form textarea.form-control
{
    border: 1px solid #333333;
    height: 165px;
    font-size: 16px;
    line-height: 32px;
    padding: 6px 19px;
    color: #000000;
    resize: none;
}
.popup-container form div.fb-text, .popup-container form div.fb-undefined
{
    position: relative;
    grid-column: 1/3;
}
.popup-container form div.fb-text label, .popup-container form div.fb-undefined label
{
    position: absolute;
    background-color: #fff;
    top: -12px;
    left: 14px;
    padding: 0 10px;
    color: #999999;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}
.popup-container form .fb-checkbox, .popup-container form .fb-div
{
    grid-column: 1/1;
}
.popup-container form .fb-checkbox-group-label.label
{
    display: none !important;
}
.popup-container form .checkbox-group
{
    display: flex;
    column-gap: 10px;
}
.popup-container form .checkbox-group label, .popup-container form .fb-div .amform-text
{
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #000000;
    word-break: normal;
}
.popup-container form .amcform-page-wrap
{
    display: grid;
    grid-template-columns: auto auto;
}
.popup-container form .amcform-toolbar
{
    grid-column: 2/3;
    grid-row: 4/6;
}
.popup-container form .amcform-toolbar button.action.submit.primary
{
    background-color: #1027d1;
    min-height: 60px;
    min-width: 190px;
    padding: 0 10px;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
@media only screen and (max-width: 1100px) 
{
    .content .buttons-container .shopping
    {
        font-size: 30px;
    }
    .content .buttons-container #stores-link
    {
        font-size: 16px;
    }
}
@media only screen and (max-width: 850px) 
{
    #play-pause-button
    {
        top: 30px;
        left: 10px;
    }
    #mute-button
    {
        top: 30px;
        left: 65px;
    }
    header .switch-language.active + .language-list
    {
        flex-direction: column;
        height: auto;
        padding: 22px 32px;
        row-gap: 24px;
    }
    .content
    {
        flex-direction: column;
        row-gap: 10px;
        justify-content: flex-start;
        height: auto;
        max-height: none;
        min-height: inherit;
    }
    .content .video-container
    {
        width: 100%;
    }
    .content .video-container video
    {
        min-height: 290px;
    }
    .content .buttons-container
    {
        width: 100%;
        padding-bottom: 10px;
    }
    .content .buttons-container .main-title, .content .buttons-container.active .main-title
    {
        height: 130px;
        min-height: 130px;
    }
    .content .buttons-container .main-title a
    {
        padding: 0 10px 0 20px;
    }
    .content .buttons-container .shopping
    {
        font-size: 20px;
    }
    .content .buttons-container #stores-link
    {
        padding: 0 10px 0 20px;
        min-height: 76px;
    }
    .content .buttons-container.active #stores-selector
    {
        height: 220px;
    }
    .content .buttons-container #stores-selector .container #links-list
    {
        height: 111px;
        margin-top: 10px;
    }
    .content .buttons-container #stores-selector .container #links-list li a
    {
        font-size: 14px;
        padding: 0px 10px;
    }
    .content .buttons-container #stores-selector .container .search input
    {
        height: 32px;
        font-size: 14px;
        padding: 0 34px;
    }
    .content .buttons-container #stores-selector .container
    {
        height: 195px;
        margin: 20px auto 0;
        padding: 21px 11px 0;
        width: calc(100% - 20px);
    }
    .content .buttons-container #stores-selector .container .search::after
    {
        width: 15px;
        height: 15px;
        left: 10px;
        top: 9px;
    }
    .content .buttons-container #stores-selector .container #links-list li
    {
        min-height: 37px;
        padding: 0;
    }
    footer
    {
        flex-direction: column;
        margin-top: 20px;
        margin-bottom: 20px;
        row-gap: 20px;
    }
    footer .copy
    {
        width: auto;
        text-align: center;
    }
    footer .links
    {
        flex-direction: column;
        width: 100%;
    }
    footer .social
    {
        width: 100%;
        justify-content: center;
    }
}
@media only screen and (max-width: 600px) 
{
    .popup-container
    {
        padding: 35px 16px 25px;
    }
    .popup-container .static-title
    {
        font-size: 18px;
        line-height: 35px;
        font-weight: 300;
        margin-bottom: 10px;
    }
    .popup-container .static-subtitle
    {
        font-size: 16px;
    }
    .popup-container .title
    {
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    .popup-container .subtitle
    {
        font-size: 16px;
    }
    .popup-container form input[type="text"]
    {
        height: 45px;
        font-size: 14px;
        line-height: 32px;
        margin-bottom: 25px;
    }
    .popup-container form textarea.form-control
    {
        font-size: 14px;
        line-height: 32px;
        height: 200px;
    }
    .popup-container form div.fb-text label, .popup-container form div.fb-undefined label
    {
        font-size: 12px;
        line-height: 25px;
    }
    .popup-container form .amcform-page-wrap
    {
        display: flex;
        flex-direction: column;
    }
    .popup-container form .amcform-toolbar
    {
        text-align: left;
    }
    .popup-container form .amcform-toolbar button.action.submit.primary
    {
        width: 100%;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    .popup-container form .checkbox-group label, .popup-container form .fb-div .amform-text
    {
        font-size: 11px;
        line-height: 25px;
    }
    .popup-container form .fb-checkbox
    {
        margin-bottom: 11px !important;
    }
    .popup-container form .fb-div
    {
        margin-bottom: 25px !important;
    }
    .fieldset:last-child,.amform-form-fieldset.fieldset {
        margin-bottom: 0;
    }
    .popup-container .close-cross
    {
        width: 20px;
        height: 20px;
    }
    .popup-container .close-cross:before, .popup-container .close-cross:after
    {
    height: 20px;
    }
    .content .video-container video
    {
        height: 295px;
        left: 10px;
    }
}
.static-page
{
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Poppins', sans-serif;
}
ol ol
{
    margin-top: 10px;   
}