@font-face {
    font-family: 'Montserrat'; 
    src: url('Montserrat-Regular.ttf');
}
html { 
  background-color: #ffffff; 
}
.logoImage {
max-height: 260px;
max-width: 260px;
}

.bgBox {
  background: gba(255, 255, 255, 0.7); 
  border-radius: 25px; 
  margin:60px 65px 30px 65px; 
  min-width:400px;
}
button {
    background-color: #69A3BC; /* blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}
.offerHeading {
    width: 400px;
    text-align: center;
    margin:0 auto;
    word-break: break-word;
    white-space: normal;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.termsCond {
    width: 300px;
    text-align: center;
    margin:0 auto;
    word-break: break-word;
    white-space: normal;
    font-family: 'Montserrat', sans-serif;
    font-size: x-small;
}
.providedBy{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

p.sflogo {
    align: center;
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #00a6ee;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: auto;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
 content: '»';
 position: absolute;
 opacity: 0;
 top: 0;
 right: -20px;
 transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

