﻿@media screen and (orientation: landscape) {
    .logo1 {
        display:none;
    }

    .logo2 {
        margin-top: 10%;
        width: 60%;
        height: unset;
    }
}

@media screen and (orientation: portrait) {
    .logo1 {
        display: none;
    }

    .logo2 {
        border: solid 1px red;
        margin-top: 50%;
        width: 90%;
        height: unset;
    }
}
/*******************************************************************/

.box-note-container .declaration-text {
    display: none;
} 