html,
body {
  margin: 0;
  padding: 0;
  font-family: "Maven Pro", sans-serif;
}

/* remove the focus from all input fields.*/
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

.termsAndConditions {
  z-index: 1000;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: all 0.2s;
  backface-visibility: hidden;
}

.termsAndConditionsHeading {
  margin-top: 70px;
  margin-bottom: 30px;
  font-size: 32px;
}

.termsParagraphIntro {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.spangleWelcome {
  font-weight: 500;
  font-size: xx-large;
}

.serviceLeadingSection {
  width: 80%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.sn {
  font-size: 32px;
  padding-right: 5px;
}

.st {
  font-size: 32px;
}

.spl {
  margin-top: 15px;
  margin-bottom: 15px;
}

.serviceInfoContainer {
  position: relative;
  width: 100%;
}

.serviceLead {
  font-weight: 700;
  margin-left: 15px;
  margin-top: 15px;
  margin-block-end: 5px;
}

.serviceDetails {
  margin-left: 15px;
}

.displayNone {
  display: none;
}

.secionLine {
  height: 40px;
  width: 5px;

  position: absolute;
  top: 7px;
}

/*Font Colours below*/
.lightGreen {
  color: rgb(85, 189, 134);
}

.blue {
  color: #2998ff;
}

.orange {
  color: #ff7730;
}

.purple {
  color: #2a0073;
}

/*Set the colours for the lines*/

.lineColorGreen {
  background-image: linear-gradient(to right bottom,
      rgb(85, 189, 134),
      rgb(11, 103, 92));
}

.lineColorBlue {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}

.lineColorOrange {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}

.lineColorPurple {
  background-image: linear-gradient(to bottom right, #b25f88, #2a0073);
}

.closeTerms {
  border-bottom: 1px solid black;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  z-index: 1001;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}