@charset "UTF-8";

html, body {
padding: 0;
margin: 0;
}

.bground {
background: #F06477;
background-image: url("images/glyph_back.png");
background-repeat: repeat-x;
-webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
height: 612px;

}


.bgroundpolicy {
background: #F06477;

}



.headline {
padding: 120px 0 60px 0;
font-family: 'Source Sans Pro', sans-serif;
font-size: 15px;
line-height: 20px;
color: #fff;
}


.grid {
  display: grid;
  /*grid-template-rows: repeat(6, 1fr); */
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 10px;
  padding:40px;
}

.grid_form {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 10px;
  padding:0px;
}



.box {
  color: white;
  font-size: 4vw;
  padding: 10px;
  background: gold;
  text-align: center;
}


.boxform {
	   grid-column: span 12;
	   height: auto;
}

.boxpolicy {
	   grid-column: span 9;
	   height: auto;
}

.boxpolicy h4 {
font-weight: bold;
font-size: 20px;
}

.boxborder {
 grid-column: span 1;
}


.boxhalf
{
  grid-column: span 5;
  }



.imgcenter {
	display: block;
	margin: 0 auto;

}


.boxthird
{
  grid-column: span 4;
  }
  
 
button {
    margin: 40px 0 40px 0 !important;
}


.appstore_btn {
clear:both;
display: block;
}


.footer {
font-family: 'Source Sans Pro', sans-serif;
color: #D6D6D6;

}

.footer a {
color: #999;
}

.footer a:hover {
color: #F06477;
}


.footerlinks {
clear:both;
display: block;
padding: 0 20px 10px 0;
}


.footer {
font-family: 'Source Sans Pro', sans-serif;
color: #D6D6D6;

}

.footer a {
color: #999;
}

.footer a:hover {
color: #F06477;
}


.footerlinks {
clear:both;
display: block;
padding: 0 20px 10px 0;
}


.bgroundpolicy .footer {
color: #FFF;
}

.bgroundpolicy .footer a {
color: #FFF;
}

.bgroundpolicy .footer a:hover {
color: #000;
}





/* Template code 

.box:nth-child(1) {
  grid-column: span 12;
  }
  
  
.box:nth-child(2), 
.box:nth-child(3) {
  grid-column: span 6;
  }
.box:nth-child(4),
.box:nth-child(5),
.box:nth-child(6) {
  grid-column: span 4;
  }
.box:nth-child(7),
.box:nth-child(8),
.box:nth-child(9),
.box:nth-child(10) {
  grid-column: span 3;
  }
.box:nth-child(11),
.box:nth-child(12),
.box:nth-child(13),
.box:nth-child(14),
.box:nth-child(15),
.box:nth-child(16) {
  grid-column: span 2;
  }
  
*/




/* standalone - .bttn-fill */
.bttn-default {
  color: #fff;
}
.bttn-primary,
.bttn,
.bttn-lg,
.bttn-md,
.bttn-sm,
.bttn-xs {
  color: #F06477;
}
.bttn-warning {
  color: #feab3a;
}
.bttn-danger {
  color: #ff5964;
}
.bttn-success {
  color: #28b78d;
}
.bttn-royal {
  color: #bd2df5;
}
.bttn,
.bttn-lg,
.bttn-md,
.bttn-sm,
.bttn-xs {
  margin: 0;
  padding: 0;
  border-width: 0;
  border-color: transparent;
  background: transparent;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
.bttn-lg {
  padding: 8px 15px;
  font-size: 24px;
  font-family: inherit;
}
.bttn-md {
  font-size: 20px;
  font-family: inherit;
  padding: 5px 12px;
}
.bttn-sm {
  padding: 4px 10px;
  font-size: 16px;
  font-family: inherit;
}
.bttn-xs {
  padding: 3px 8px;
  font-size: 12px;
  font-family: inherit;
}
.bttn-fill {
  margin: 0;
   border-width: 0;
  border-color: transparent;
  background: transparent;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-family: inherit;
  padding: 5px 12px;
  z-index: 0;
  border: none;
  background: #fff;
  color: #F06477;
  -webkit-transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.bttn-fill:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F06477;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, -webkit-transform 0.15s ease-out;
  z-index: -1;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.bttn-fill:hover,
.bttn-fill:focus {
  box-shadow: 0 1px 8px rgba(58,51,53,0.3);
  color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
  transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.bttn-fill:hover:before,
.bttn-fill:focus:before {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
  transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  transition: transform 0.2s ease-in, opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.bttn-fill.bttn-xs {
  padding: 3px 8px;
  font-size: 12px;
  font-family: inherit;
}
.bttn-fill.bttn-xs:hover,
.bttn-fill.bttn-xs:focus {
  box-shadow: 0 1px 4px rgba(58,51,53,0.3);
}
.bttn-fill.bttn-sm {
  padding: 4px 10px;
  font-size: 16px;
  font-family: inherit;
}
.bttn-fill.bttn-sm:hover,
.bttn-fill.bttn-sm:focus {
  box-shadow: 0 1px 6px rgba(58,51,53,0.3);
}
.bttn-fill.bttn-md {
  font-size: 20px;
  font-family: inherit;
  padding: 5px 12px;
}
.bttn-fill.bttn-md:hover,
.bttn-fill.bttn-md:focus {
  box-shadow: 0 1px 8px rgba(58,51,53,0.3);
}
.bttn-fill.bttn-lg {
  padding: 8px 15px;
  font-size: 24px;
  font-family: inherit;
}
.bttn-fill.bttn-lg:hover,
.bttn-fill.bttn-lg:focus {
  box-shadow: 0 1px 10px rgba(58,51,53,0.3);
}
.bttn-fill.bttn-default {
  background: #fff;
  color: #1d89ff;
}
.bttn-fill.bttn-default:hover,
.bttn-fill.bttn-default:focus {
  color: #fff;
}
.bttn-fill.bttn-default:before {
  background: #1d89ff;
}


/* The button */

.bttn-fill.bttn-primary {
  background: #F06477;
  color: #fff;
  border: 1px solid #FFF;
}

.bttn-fill.bttn-primary:hover,
.bttn-fill.bttn-primary:focus {
  color: #F06477;
}
.bttn-fill.bttn-primary:before {
  background: #fff;
}
.bttn-fill.bttn-warning {
  background: #feab3a;
  color: #fff;
}
.bttn-fill.bttn-warning:hover,
.bttn-fill.bttn-warning:focus {
  color: #feab3a;
}
.bttn-fill.bttn-warning:before {
  background: #fff;
}
.bttn-fill.bttn-danger {
  background: #ff5964;
  color: #fff;
}
.bttn-fill.bttn-danger:hover,
.bttn-fill.bttn-danger:focus {
  color: #ff5964;
}
.bttn-fill.bttn-danger:before {
  background: #fff;
}
.bttn-fill.bttn-success {
  background: #28b78d;
  color: #fff;
}
.bttn-fill.bttn-success:hover,
.bttn-fill.bttn-success:focus {
  color: #28b78d;
}
.bttn-fill.bttn-success:before {
  background: #fff;
}
.bttn-fill.bttn-royal {
  background: #bd2df5;
  color: #fff;
}
.bttn-fill.bttn-royal:hover,
.bttn-fill.bttn-royal:focus {
  color: #bd2df5;
}
.bttn-fill.bttn-royal:before {
  background: #fff;
}





  
@media screen and (max-width: 575px) {
    .grid {
      display: block;
          padding: 40px 15px 20px 15px;
      }
    
    
    .bground {
background: #F06477;
background-image: url("images/glyph_back.png");
background-repeat: repeat-x;
-webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
height: 612px;

}
    .headline {
padding: 80px 0 60px 0;
font-family: 'Source Sans Pro', sans-serif;
font-size: 15px;
line-height: 30px;
color: #fff;
}
    
    .box {
      margin: 10px 0;
    }
    
    .footerlinks {
        padding: 40px 20px 10px 0;
    }
    
    
  }
