/* some Chromium weird settings */
html,body {
    overflow: hidden;
    float:none;
    margin:0 auto;
    padding-left:0px;
    padding-right:0px;
    /* font-size: 20px; */
    font-size: 2.5vw;
    font-family: 'Roboto', sans-serif;
}


.Picture_div {
    grid-area: picture;
    /*background-color: #0f6848; */
    /* margin-top: auto; */
    /* margin-bottom: auto; */
    /* max-width: 100%;  related to image*/
    /* width: 100%; */
    /* height: auto; */
    /* align-self: stretch; */
    /* object-fit: cover; */
}
.txt_div {
    grid-area: txt;
    /*background-color: #1c606a;*/
    color: #555;
}
h1 {
    color: #9e8a4e;
    /* font-size: 40px; */
    font-size: 5vw;
}
h2 {
    font-size: 4vw;
}
h3 {
    font-size: 3vw;
}
p {
    font-size: 2.5vw;
}
.small,
small {
    /* font-size: 10px; */
    font-size: 2vw;
    /* color: #1e2833; */
    opacity: 0.8;
}
li {
    /* line-height: 50px; */
    line-height: 4.5vw;
    list-style-type: none;
}
img, video {
    max-width: 100%;
    /*min-height: 100%;
    min-width: 100%;*/
    max-width: 100%;
    object-fit: cover;
    justify-self: center;
    align-self: center;
}
.image-right video ,
.image-right img {
    /* Make images fill up on right side */
    justify-self: end;
}
.image-left video ,
.image-left img {
    /* Make images fill up on left side */
    justify-self: start;
}
.image-top video ,
.image-top img {
    align-self: start;
}
.image-bottom video ,
.image-bottom img {
    align-self: end;
}
.stretch iframe,
.stretch video,
.stretch img {
    /* height:100% !important;
     width: 100% !important;*/ /* overwrite max-width */
    min-height: 100%;
    min-width: 100%;
}
.stretch img.anim_no_stretch {
    min-height: auto;
    min-width: auto;
}
.darkgreen {
    background-color: darkgreen;
}
.darkgreen .txt_div {
    color: antiquewhite;
}
.headerwhite h1,
.headerwhite h2,
.headerwhite h3
{
    color:white;
}

.bg-paper-red .txt_div {
    padding: 2vw;
    padding-top:0;
    border-radius: 2vw;
    background-color: red;
    color: white;
}
.bg-paper-pink .txt_div {
    padding: 1.5vw;
    padding-top:0;
    border-radius: 1.5vw;
    background-color: hotpink;
    color: black;
}
.bg-paper-frame .txt_div {
    padding: 2vw;
    padding-top:0;
    border-radius: 2vw;
    border: 6px solid red;
    color: black;
}

#singleContainer {
    height: 100vh;
}

#pageContainer0,
#pageContainer1 {
    /*  height: 100vh;
      z-index: 2; */
    height: 0px;
    overflow: hidden;
    transition: height 1s;
}

.design01 {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr 6fr 1fr 8fr;
    grid-template-rows: 1fr 2fr 1fr 1fr;
    grid-template-areas:
                ". . . picture"
                ". txt . picture"
                ". txt . picture"
                ". txt . picture";
}
.design02 {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 8fr 1fr 6fr 1fr;
    grid-template-rows: 1fr 2fr 1fr 1fr;

    grid-template-areas:
                "picture . . ."
                "picture . txt ."
                "picture . txt ."
                "picture . txt .";
}
.design01_sm_txt {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr 6fr 1fr 8fr;
    grid-template-rows: 1fr 2fr 1fr 1fr;
    grid-template-areas:
                ". . . picture"
                ". txt . picture"
                ". txt . picture"
                ". . . picture";
}

.fullpage01 {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr 3fr 3fr;
    grid-template-rows: 1fr 4fr;
    grid-template-areas:
                "txt txt txt"
                "picture picture picture";
}
.fullpage02 {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr ;
    grid-template-rows: 1fr;
    grid-template-areas:
                "picture";
}
.fullpage01 .txt_div {
    padding: 0em 1em;
}
.fullpage02 .txt_div {
 /*   grid-area: 1 / 1 / 3 / 3; */
    /*padding: 1em 2em;*/
    padding: 0;
    grid-area: picture;
}
.fullpage02 iframe {
 /*   grid-area: 1 / 1 / 3 / 3; */
    /*padding: 1em 2em;*/
    padding: 0;
    grid-area: picture;
}
.fullpage02 p {
    margin:0;
}
.full_txt {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr 8fr 1fr;
    grid-template-rows: 1fr 8fr 1fr;
        grid-template-areas:
                ". . ."
                ". txt ."
                ". . .";
}
.full_txt .txt_div {
    padding: 0em 1em;
    grid-area: txt;
}
.full_txt .Picture_div {
    display: none;
}

.full_txt .txt_div video {
    width: 100vw !important;
    height: 100vh !important;
}


.slideDown {
    height: 100vh !important;
    /*    z-index: 1;
        background-color: #1c606a; */
}
.television_logo {
    position: absolute;
    width: 6vw;
    bottom: 1vw;
    right: 1vw;
}


.breathing-txt .txt_div {
/*    width: 270px;
    padding: 20px;
    margin: 50px auto;
    border: 1px solid #d1d1d1;
    font-size: 24px;
    border-radius: 3px;
    text-align: center;
    background: #5885cb;
    color: #fff; */
    -webkit-animation: breathing 7s ease-out infinite normal;
    animation: breathing 7s ease-out infinite normal;
    -webkit-font-smoothing: antialiased;
}
.breathing-img .Picture_div {
/*    width: 270px;
    padding: 20px;
    margin: 50px auto;
    border: 1px solid #d1d1d1;
    font-size: 24px;
    border-radius: 3px;
    text-align: center;
    background: #5885cb;
    color: #fff; */
    -webkit-animation: breathing 7s ease-out infinite normal;
    animation: breathing 7s ease-out infinite normal;
    -webkit-font-smoothing: antialiased;
}
@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.8);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}
@keyframes breathing {
    0% {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }
}


.spinme-img .Picture_div {
    -webkit-animation-name: spinner;
    animation-name: spinner;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
.spinme-txt .txt_div {
    -webkit-animation-name: spinner;
    animation-name: spinner;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes spinner {
    90.33% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    90.33% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.contain iframe,
.contain video,
.contain img {
    object-fit: contain;
    width:100%;
    width: -webkit-fill-available;
    height: auto;
}
   /* width: auto;
    height: auto;
    max-width: fit-content;
    max-height: fit-content; */
}
