 p {
      color: white;
      text-align: justify;
    }
.section2{
    background-color: #000;
    border-top: 1px solid #fff;
}
.section3{
    background-color: #000;
}
    .card.franform {
      padding: 30px;
      background: rgb(0, 0, 0, 0.3);
      color: black;
      border-radius: 10px;
    }

    label {
      color: white;
      padding: 10px;
    }

    @media(min-width:320px) and (max-width:420px) {
      img {
        width: 100%;
      }

      iframe {
        margin-top: 162px;
      }
    }

    @media (max-width: 420px) and (min-width: 320px) {
      html.js.touch {
        overflow-x: auto;
      }
    }

    /* Timeline CSS begins below */
    /* Ideally I need to learn how all the below works - practice makes perfect.
Goal is to be able to produce a similar result without consulting external sources, e.g. using just own memory to produce content. This will then be utilised in the NFP project I am working on */

    /* Removes bulletpoints; aligns items in centre */
    .timeline {
      list-style: none;
      padding: 20px 0 20px;
      position: relative;
    }

    /* Creates vertical line in middle */

    .timeline:before {
      top: 0;
      bottom: 0;
      position: absolute;
      content: " ";
      width: 3px;
      background-color: #eeeeee;
      left: 50%;
      margin-left: -1.5px;
    }

    /* This seems to align the glyph icons down the middle to an extent. */
    .timeline>li {
      margin-bottom: 20px;
      position: relative;
    }

    /* I'm genuinely unsure on what this does! */
    .timeline>li:before,
    .timeline>li:after {
      content: " ";
      display: table;
    }

    /* Unsure on this also */
    .timeline>li:after {
      clear: both;
    }

    /* Also unsure! So confusing */
    .timeline>li:before,
    .timeline>li:after {
      content: " ";
      display: table;
    }

    /* Also unsure on this malarki */
    .timeline>li:after {
      clear: both;
    }

    /* This produces the actual box around each item */
    .timeline>li>.timeline-panel {
      width: 46%;
      float: left;
      border: 1px solid #d4d4d4;
      border-radius: 2px;
      padding: 20px;
      position: relative;
      -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
      background-color: rgb(255, 255, 255, 0.1);
    }

    /* Below section adds depth to triangle pointer */
    .timeline>li>.timeline-panel:before {
      position: absolute;
      top: 26px;
      right: -15px;
      display: inline-block;
      border-top: 15px solid transparent;
      border-left: 15px solid #ccc;
      border-right: 0 solid #ccc;
      border-bottom: 15px solid transparent;
      content: " ";
    }

    /* Below section adds white triangle point to edge of timeline panels. */
    .timeline>li>.timeline-panel:after {
      position: absolute;
      top: 27px;
      right: -14px;
      display: inline-block;
      border-top: 14px solid transparent;
      border-left: 14px solid #fff;
      border-right: 0 solid #fff;
      border-bottom: 14px solid transparent;
      content: " ";
    }

    /* This particular section of CSS is of note - Appears to centre the glyph icon in the middle of timeline with background */
    .timeline>li>.timeline-badge {
      color: #fff;
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 1.4em;
      text-align: center;
      position: absolute;
      top: 16px;
      left: 50%;
      margin-left: -25px;

      z-index: 100;

    }

    /* Below code 'inverts' or floats the panel to the right. */
    .timeline>li.timeline-inverted>.timeline-panel {
      float: right;
    }

    /* Below code enables the arrow pointing to the timeline itself. */
    .timeline>li.timeline-inverted>.timeline-panel:before {
      border-left-width: 0;
      border-right-width: 15px;
      left: -15px;
      right: auto;
    }

    /* This is the highlight on the arrow */
    .timeline>li.timeline-inverted>.timeline-panel:after {
      border-left-width: 0;
      border-right-width: 14px;
      left: -14px;
      right: auto;
    }


    /* Removes gap above timeline title */
    .timeline-title {
      margin-top: 0;
      color: inherit;
    }

    .timeline-body>p,
    .timeline-body>ul {
      margin-bottom: 0;
    }

    .timeline-body>p+p {
      margin-top: 5px;
    }

    h4.timeline-title {
      color: #2094d2;
    }

    .serviceBox {
      background: linear-gradient(to top, #F74425, #ea992e, #F74425);
      font-family: 'Cabin', sans-serif;
      text-align: center;
      padding: 15px;
      transition: all 0.3s;
      min-height: 272px;
    }

    .serviceBox:hover {
      box-shadow: 0 0 15px -2px #888;
    }

    .serviceBox .title {
      color: #F74425;
      background: #fff;
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 20px 10px;
      margin: 0;
      border-radius: 5px;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    }

    .serviceBox .service-icon {
      color: #F74425;
      background: #fff;
      font-size: 45px;
      line-height: 53px;
      margin-bottom: 30px;
      width: 85px;
      height: 70px;
      margin: 0 auto 15px;
      clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    }

    .serviceBox .description {
      color: #fff;
      font-size: 16px;
      letter-spacing: 0.5px;
      line-height: 25px;
      text-shadow: 0 0 2px #333;
    }

    .serviceBox.red {
      background: linear-gradient(to top, #bf0f15, #ff4248, #bf0f15);
    }

    .serviceBox.red .title,
    .serviceBox.red .service-icon {
      color: #bf0f15;
    }

    .serviceBox.green {
      background: linear-gradient(to top, #0E914B, #8AC340, #0E914B);
    }

    .serviceBox.green .title,
    .serviceBox.green .service-icon {
      color: #0E914B;
    }

    .serviceBox.blue {
      background: linear-gradient(to top, #1F74B1, #00ACF0, #1F74B1);
    }

    .serviceBox.blue .title,
    .serviceBox.blue .service-icon {
      color: #1F74B1;
    }

    @media only screen and (max-width:990px) {
      .serviceBox {
        margin: 0 0 30px;
      }
    }


    .testim {
      width: 100%;
      /*position: absolute;*/
      /*top: 50%;*/
      margin-top: 200px;
      -webkit-transform: translatey(-50%);
      -moz-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
      -o-transform: translatey(-50%);
      transform: translatey(-50%);
    }

    .testim .wrap {
      position: relative;
      width: 100%;
      max-width: 1020px;
      padding: 40px 20px;
      margin: auto;
    }

    .testim .arrow {
      display: block;
      position: absolute;
      color: #eee;
      cursor: pointer;
      font-size: 2em;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      -webkit-transition: all .3s ease-in-out;
      -ms-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
      padding: 5px;
      z-index: 22222222;
    }

    .testim .arrow:before {
      cursor: pointer;
    }

    .testim .arrow:hover {
      color: #ea830e;
    }


    .testim .arrow.left {
      left: 10px;
    }

    .testim .arrow.right {
      right: 10px;
    }

    .testim .dots {
      text-align: center;
      position: absolute;
      width: 100%;
      bottom: 60px;
      left: 0;
      display: block;
      z-index: 3333;
      height: 12px;
    }

    .testim .dots .dot {
      list-style-type: none;
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1px solid #eee;
      margin: 0 10px;
      cursor: pointer;
      -webkit-transition: all .5s ease-in-out;
      -ms-transition: all .5s ease-in-out;
      -moz-transition: all .5s ease-in-out;
      -o-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
      position: relative;
    }

    .testim .dots .dot.active,
    .testim .dots .dot:hover {
      background: #ea830e;
      border-color: #ea830e;
    }

    .testim .dots .dot.active {
      -webkit-animation: testim-scale .5s ease-in-out forwards;
      -moz-animation: testim-scale .5s ease-in-out forwards;
      -ms-animation: testim-scale .5s ease-in-out forwards;
      -o-animation: testim-scale .5s ease-in-out forwards;
      animation: testim-scale .5s ease-in-out forwards;
    }

    .testim .cont {
      position: relative;
      overflow: hidden;
    }

    .testim .cont>div {
      text-align: center;
      position: absolute;
      top: 0;
      left: 0;
      padding: 0 0 70px 0;
      opacity: 0;
    }

    .testim .cont>div.inactive {
      opacity: 1;
    }


    .testim .cont>div.active {
      position: relative;
      opacity: 1;
    }
 

    .testim .cont div .img img {
      display: block;
      width: 100px;
      height: 100px;
      margin: auto;
      border-radius: 50%;
    }

    .testim .cont div h2 {
      color: #ea830e;
      font-size: 1em;
      margin: 15px 0;
    }

    .testim .cont div p {
      font-size: 1.15em;
      color: #eee;
      width: 80%;
      margin: auto;
    }

    
    .frm-label {
      color: #000000;
      padding: 2px;
    }
    
    .frrr{
        padding:15px;
    }
    .frrr h1{
        color: #e88900;margin-bottom:15px;
    }
    .frrr p{
        color: #fff;
    }
    .section3 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section3 h2{
        color: #e88900;
        margin-bottom:15px;
        text-align:center;
    }
    
     .section3 p{
        color:white;
        margin-bottom:15px;
    }
    .form-sec-fra{
        margin-top:20px;
    }
    .heading-h5{
        padding-top: 15px;
        padding-bottom: 15px;
    }