@charset "UTF-8";
/* CSS Document */

*, *:before, *:after {
  box-sizing: border-box;
}

html, body{
    overflow-x: hidden;
    overflow-y: auto;
}

body{
    margin: 0;
    /*background: linear-gradient(213deg, #ba237b, #ba237b, #2770aa); */   
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    background-size: 100% 120%;
}

a{
    color: #fff;
}

.wrapper {
    margin: auto;
    max-width: 786px;
    display: grid;
    grid-template-columns: 15px 1fr 15px;
    grid-template-rows: 110px 90px 185px auto;
    gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(213deg, #ba237b, #ba237b, #2770aa);
}

.header {
  grid-column: 1 / 4;
  grid-row: 1;
  background-image: url('white_bg.png');
  height: 120px; /* You must set a specified height */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.header-rotate {
  background: white;
    transform: rotate(353deg);
}

.header-rotate::before {
    content: "";
    background: #fff;
    height: 150%;
    width: 105%;
    top: -50%;
    left: -3%;
    position: absolute;
    z-index: -1;
}
.title {
  grid-column: 2 / 3;
  grid-row: 2;
}

.title h1{
    font-weight: 100;
    font-size: 2.5rem;
    color: #fff;
    margin-top: -10px;
    margin-bottom: 0px;  
}

.title h2{
    font-weight: 100;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
}

.main {
  grid-column: 2 / 3;
    grid-row: 3;
    text-align: center;
}

.main:after {
  content: "";
  clear: both;
  display: table;
}

.footer {
  grid-column: 2 / 4 ;
  grid-row: 4;
}

.footer p{
    font-weight: 100;
    font-size: 1.3rem;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0.6rem;
    line-height: 1.3rem;
    padding-right: 26px;
}

.footer i{
    font-size: 1.5rem;
}

.gridbox{
    position: relative;
    border-radius: 5px;
}

.grid-content{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%)
}

img{
    width: 100%;
}

.qrcode{
    width: 180px;
}

.mainlogo{
    width: 180px;
    margin: 15px 20px;
}

/*------------------------------------*/
/*             Main Nav               */
/*------------------------------------*/

.mainnav{
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 9999999;
    position: fixed;
    bottom: 0;
}




