:root {
  --mainColour: #C95D64;
}

/* On-brand icon utility.
   Renders a monochrome SVG from /images/icons/ via CSS mask so a single asset
   can be recoloured per context. Set the shape with --puk-ico (a url()), and
   recolour by overriding background-color (defaults to brand green). */
.puk-ico {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  background-color: var(--mainColour);
  -webkit-mask: var(--puk-ico) center / contain no-repeat;
          mask: var(--puk-ico) center / contain no-repeat;
}
.puk-ico--on-green { background-color: #fff; }

.hidden{
  display: none;
}
html{
  margin: 0;
  padding: 0;
}
h3{
  font-size: 3vw;
}

body{
  background-color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}
h1{
  font: tahoma;
  font-size: 3em;
}
hr{
  border-style: none;
  border-top: dotted;
  border-color: var(--mainColour);
  border-width: 20px;
  height: 0px;
  width: 20%;
}
.center-div{
  text-align: center;

}
.margin-center{
  margin: 0 auto;
}

.top-section img{
  position: relative;
  width: 30%;
}
.appButton{
  display: inline-block;
  width: 33%;
  background-color: white;
  margin: 20px;
  }
  .mcqImg{
    width: 100%;
  }
  .border{
        border: 4px solid black;

        border-radius: 10px 30px 10px 30px;
        box-shadow: 5px 5px 5px white;
  }

/* Nav tabs */
.tabBar{
  background-color: rgba(201, 93, 100, 0.7);
}
ul{

}
ul li{
  display: inline-block;
  list-style: none;
  padding: 1.2em;
  font-size: 1.5vw;;
  font-weight: bold;
}
.tabBar li:hover{
  background-color: var(--mainColour);
  cursor: pointer;
}
.hidden{
  display: none;
}
.selected{
  background-color: var(--mainColour);
}
.usefulLinks a{
  display: block;
  margin: 10px;
  font-size: 2.5vw;
}
.mb-logo{
  position: relative;
  display: inline;
  width: 20%;
}
.markbot img{
  width: 70%;
  margin: 0 auto;
}
.mb-button{
  position: relative;
  margin: 20px auto;
}
.mb-button button{
  background-color: #C95D64;
  border: 1px solid black;
  font-size: 10vw;
}
.mb-button button:hover{
  cursor: pointer;
  background-color: rgb(34, 220, 112);
}
.btn-block {
    display: block;
    width: 40%;
    margin: 0 auto;
}


/* contact form */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #C95D64;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #9B3F4B;
}

.container {
  border-radius: 5px;
  padding: 20px;
}

}
.contact{
  position: static;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background-color: var(--mainColour);
}
/* contact form ----update */
.contact-form{
    position: static;
    width: 100%;
}
.contact-form span{
  margin: 5px;
  font-size: 3vw;
}
.contact-form input{
  min-height: 5vh;
}
.message-box{
  min-height: 20vh;
}
.submit-button{
  background-color: white;
}


/* under construction page */
.construction-banner{
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
}

/* Success - Message sent */
.success-logo{
  text-align: center;
}
.success-logo img{
  position: relative;
  width: 80%;
}
.site-logo-success{
  width: 40%!important;
}
/* RegisterFail */
.row{
  text-align: center;
}


  @-webkit-keyframes hvr-pulse {
    25% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    75% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  }
  @keyframes hvr-pulse {
    25% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
    75% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
    }
  }
  .hvr-pulse {

    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);

  }
  .hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
    -webkit-animation-name: hvr-pulse;
    animation-name: hvr-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
@media only screen and (max-width: 600px) {

  .tabBar li{
    font-size: 4vw;
  }
.top-section img{
  position: relative;
  width: 60%;
}
.appButton{
  position: relative;
  width: 75%;
}

}
