.show_bg {
    background-image:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
        url('../images/mandala.png');
    background-size: 12.5%;
}

.bannerLogo {
  /*width: 150px;*/
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
}

.bannerText {
  /*width: 150px;*/
  -webkit-filter: drop-shadow(6px 6px 6px rgba(0,0,0,0.3));
  filter: drop-shadow(6px 6px 6px rgba(0,0,0,0.3));
}

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 24;
    text-align: center;
    padding: 0;
    margin: 0;
}

.container {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas:
        "header header header header header"
        "title title title title title"
        "main main main main main"
        "problem problem problem problem problem"
        "footer footer footer footer footer";
    grid-template-columns: 1fr 3fr 3fr 3fr 1fr;
    grid-template-rows: 2fr 1fr 20fr 1fr 1fr;
}

.container_policy {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-areas:
        "header header header header header"
        "left title title title right"
        "left statement statement statement right"
        "problem problem problem problem problem"
        "footer footer footer footer footer";
    /*"footer-left footer-left footer-right footer-right footer-right";*/
    grid-template-columns: 1fr 6fr 1fr 1fr 1fr;
    grid-template-rows: 2fr 1fr 20fr 1fr 1fr;
}

.yt-cntainer {
    position: relative;
}

.yt-mask {
    position: absolute;
    top: 0;
    bottom: 210;
    left: 0;
    right: 0;
}


/*.container > div {
  border: 1px dashed #888;
}*/

.header {
    grid-area: header;
    align-content: center;
    padding: 10px;
}

.title {
    grid-area: title;
}

.left {
    grid-area: left;
}

.main {
    grid-area: main;
    /*padding: 5px;*/
    /*text-align: center;*/
}

.right {
    grid-area: right;
}

.problem {
    grid-area: problem;
    font-size: 24px;
    padding: 10px;
}

.footer {
    grid-area: footer;
    background-color: palegreen;
    color: darkolivegreen;
    text-align: center;
    font-size: 14px;
    padding: 12px;
}

.footer-left {
    grid-area: footer-left;
    background-color: palegreen;
    color: darkolivegreen;
    text-align: left;
    font-size: 14px;
    padding: 12px;
}

.footer-right {
    grid-area: footer-right;
    text-decoration: none;
    background-color: palegreen;
    color: darkolivegreen;
    text-align: right;
    font-size: 14px;
    padding: 12px;
}

.policy {
    text-decoration: none;
    color: darkolivegreen;
}

.statement {
    text-align: left;
}

h1 {
    color: #9c6206;
    font-family: 'Droid serif', serif;
    font-size: 36px;
    font-style: italic;
    font-variant: normal;
    font-weight: 700;
    line-height: 44px;
    margin: 0 0 12px;
    text-align: center;
}

/*body {
    display: flex;
    justify-content: center;
    width: 99%;
    height: 90vh;
}*/

.loginpage {
    align-items: center;
}

.button {
    display: block;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    transform: translatez(0);
    text-decoration: none;
    box-sizing: border-box;
    font-size: 24px;
    font-weight: normal;
    box-shadow: 0 20px 40px #888888;
}

/*rgba(0, 0, 0, 0.2)*/
.button:hover {
  background-color: #2EE59D;
  box-shadow: 30px 30px 60px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.its52 {
    text-align: center;
    border-radius: 50px;
    padding: 26px;
    color: white;
    background: #1B3908;
    transition: all 0.2s ease-out 0s;
}

.gradient {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: auto;
    margin: auto;
    z-index: -1;
    background: radial-gradient(90px circle at top center, rgba(99, 205, 207, .8) 30%, rgba(255, 255, 255, 0));
    transition: all 0s ease-out 0s;
    transform: translatex(-140px);
    animation: 18s linear 0s infinite move;
}

.required {
    color: red;
}


@keyframes move {
    0% {
        transform: translatex(-140px);
    }

    25% {
        transform: translatex(140px);
        opacity: 0.3;
    }

    50% {
        transform: translatex(140px);
        opacity: 1;
        background: radial-gradient(90px circle at bottom center, rgba(99, 205, 207, .8) 30%, rgba(255, 255, 255, 0));
    }

    75% {
        transform: translatex(-140px);
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        transform: translatex(-140px);
        background: radial-gradient(90px circle at top center, rgba(99, 205, 207, .8) 30%, rgba(255, 255, 255, 0));
    }
}