body{
    overflow: hidden;
}
.bg-element {
	background-image: url('../img/bg-white-top-left.jpg');
	background-position: left top;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	width: 350px;
	height: 590px;
	background-repeat: no-repeat;
}
.bg{
    /*
    -webkit-clip-path:polygon(0% 90%, 100% 60%, 100% 100%, 0 100%);
    clip-path:polygon(0% 90%, 100% 60%, 100% 100%, 0 100%);
    background:#431e44;
    */
    background-image: url('../img/bg-pdn.jpg');
    background-position: top;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: visible;
}
.content{
    background: #ffffff;
    /*
    box-shadow: 0px -400px 100px 80px #fff, -13px 13px 30px -10px #00000080, 13px 13px 30px -10px #00000080;
    */
    background-image: url('../img/bg-white.jpg');
    background-position: right bottom;
    background-size: contain;
    width: 80vw;
    height: 80vh;
    z-index: 2;
    position: relative;
    overflow: auto;
    margin: auto;
    margin-top: 10vh;
    text-align: center;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 85px -40px #000;

}
.logo{
    margin-top: 80px;
}
h1{
    background: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    padding: 0;
    font-size: 24px;
	margin: 0;
    font-weight: bold;
}
.slang{
    background: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    padding: 15px;
    font-size: 24px;
    width: 400px;
    margin: 100px auto;
    font-weight: bold;
}
.endingTxt{
    text-align: center;
    color: #000;
    position: relative;
    font-size: 12px;
    padding: 30px;
}
.infoBox{
    text-align: left;
    margin: 0 auto;
    width: auto;
    margin-top:50px;
    position: relative;
    overflow: auto;
    margin-left: 100px;
    overflow-x: hidden;
}
.pdnColor{
    color: #8b4078;
}
.iconLeft{
    float: left;
    overflow: auto;
    margin-right: 20px;
    margin-bottom: 100px; 
}
.col-md-auto{
    min-width: 370px;
}


/* =================================== */
/*  Responsive Styles 
/* =================================== */


@media (max-width: 1060px) {
    .content{
        height: auto;
    }
    body{
        overflow-y: auto;
    }
    .logo{
        margin-left: 30px; 
        margin-right: 30px; 
    }
  }

  @media (max-width: 670px) {
    .logo{
        margin-top: 55px;
    }
    .infoBox{
        margin-left: 70px;
    }
    .slang{
        width: 85%;
        font-size: 20px;
    }
    .content{
        width: 90vw;
    }
  }

  @media (max-width: 600px) {
    .content{
      background-image: none;
    }
    .logo{
        width: 85%;

    }
    .infoBox{
        margin-left: 0px;
    }
    .slang{
        width: 85%;
        font-size: 16px;
        margin: 50px auto;
    }
    .col-md-auto{
        margin-bottom: 40px;
        text-align: center;
        min-width: auto;
    }
    .iconLeft {
        float: none;
        overflow: auto;
        display: block;
        text-align: center;
        margin: 0 auto;
    }
  }









/* =================================== */
/*  Loading Styles 
/* =================================== */


.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
  
  .pace-inactive {
    display: none;
  }
  
  .pace .pace-progress {
    background: #8b4078;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 4px;
  }
  
  .pace .pace-progress-inner {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #8b4078, 0 0 5px #8b4078;
    opacity: 1.0;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -moz-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    -o-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
  }
  
  .pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
    border: solid 2px transparent;
    border-top-color: #8b4078;
    border-left-color: #8b4078;
    border-radius: 10px;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
  }
  
  @-webkit-keyframes pace-spinner {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
  }
  @-moz-keyframes pace-spinner {
    0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
  }
  @-o-keyframes pace-spinner {
    0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
  }
  @-ms-keyframes pace-spinner {
    0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
  }
  @keyframes pace-spinner {
    0% { transform: rotate(0deg); transform: rotate(0deg); }
    100% { transform: rotate(360deg); transform: rotate(360deg); }
  }
