
*{
    box-sizing: border-box;
}

@font-face {
    font-family: 'basic commercial';
    src: url(img/BASIC_COMMERCIAL_LT_W05_BOLD.ttf);
}
@font-face {
    font-family: 'fs koopman';
    src: url(img/FS_KOOPMAN_W05_BLACK.ttf);
}

html, body, .main{
    height: 100%;
    width: 100%;
    margin: 0;
    background: #ff494e;
}

.main{
    display: flex;
    flex-direction: column;
    background: url(img/WE_BABY_BEARS_WEBPAGE_BKG.jpg);
    background-size: cover;
    color: white;
    max-height: 100%;
    font-family: "Ferrari Sans";
    font-weight: normal;
    color: white;
}


.header{
    width: 66%;
    max-width: 1280px;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.header-logo{
    height: 80%;
}
.header .home{
    margin-left: auto;
    color: #ff5353;
    display: flex;
    cursor: pointer;
    font-family: 'basic commercial';
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}
.header .home > img{
    height: 40%;
    margin-left: 15px;
    margin-bottom: 12px;
}

.title{
    align-self: center;
    justify-self: center;
    margin: 0 auto;
    font-size: 2vw;
}
.logo{
    height: 65%;
    width: auto;
}

.learn-more{
    margin-left: auto;
    height: 100%;
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: flex-end;
}
.learn-more img{
    height: 70%;
    margin-left: 3%;
    cursor: pointer;
}


.content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.frame-row{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.sidebar{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.iframe-outer-container{
    width: 66%;
    max-width: 1280px;
    justify-content: center;
    display: flex;
    padding: 25px;
    background: white;
}
.iframe-container{
    width: 100%;
    justify-content: center;
    display: flex;
}
.frame{
    width: 100%;
    height: 100%;
}

.claim{
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex: 1;
    font-family: 'fs koopman';
    color: #1e1a4d;
    font-size: 1.2vw;
    font-weight: normal;
}
.logo-container{
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    display: none;
    flex: 1;
}
.logo{
    width: 3%;
    display: block;
    height: auto;
    object-fit: contain;
    margin-bottom: 2.5%;
}
.logo-desktop{
    width: 22%;
}

.sharing{
    display: none;
    background: black;
    position: absolute;
    bottom: 0;
    justify-content: flex-end;
    align-items: center;
    height: 47px;
    width: 100%;
}
.sharing img{
    height: 65%;
    object-fit: contain;
    filter: invert(1);
    margin-right: 7px;
}



/* TABLET PORTRAIT */
@media screen and (max-width: 1024px) and (orientation: portrait){
    .header, .footer, .claim, .logo-desktop, .sidebar{
        display: none;
    }
    .main{
        background: #ff494e;
    }
    .heading{
        width: 80%;
        font-size: 2vw;
        margin: 1.5em 0;
    }
    .iframe-outer-container{
        padding: 0;
        background: unset;
        width: 100%;
    }
    .logo-container{
        display: flex;
    }
    .logo{
        width: 8%;
        margin-bottom: 5%;
    }
    .sharing{
        display: flex;
    }
    
}

/* MOBILE PORTRAIT */
@media screen and (max-width: 480px) and (orientation: portrait){
    .header, .sidebar, .claim, .footer, .logo-desktop{
        display: none;
    }
    .main{
        background: #ff494e;
    }
    .iframe-container, .content{
        height: 100%;
        width: 100%;
        margin-left: 0;
    }
    .logo-container{
        display: flex;
    }
    .logo{
        width: 13.5%;
        margin-bottom: 8%;
    }
}

/* MOBILE/TABLET/FRAME LANDSCAPE */
@media screen and (max-width: 1400px) and (orientation: landscape){
    .header, .sidebar, .footer, .claim, .logo-container, .sharing, .logo-desktop{
        display: none;
    }
    .main{
        background: #ff494e;
    }
    .iframe-container, .content{
        width: 100%;
        height: 100%;
        margin-left: 0;
    }
    .iframe-container{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .iframe-outer-container, .frame-row{
        padding: 0;
        background: unset;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
}