/* Lyons styles */
@font-face {
	font-family: 'Neue';
	src: url('http://lyonsgroup.co.uk/css/fonts/neue/neue-regular.ttf') format('TrueType');
	font-weight: 400;
}

@font-face {
	font-family: 'Neue';
	src: url('http://lyonsgroup.co.uk/css/fonts/neue/neue-bold.ttf') format('TrueType');
	font-weight: 600;
}


html, body{
  font-family: 'Neue', sans-serif;
  overflow-x: hidden;
}

h1 {
    text-align: center;
    font-weight: 600;
}

h2 {
  font-size: 21px;
  margin-bottom: 50px;
  font-weight: 600;
}

p {
  font-size: 13px;
  color: #554455;
  font-weight: 400;
  line-height: 22px;
}

section {
  padding: 50px 0;
}

.hidden-xs{
    display: none;
}

.space-top {
  margin-top: 50px;
}

/* HEADER */

header {
  padding: 30px 0;
}
header:after {
  content: '';
  height: 200px;
  width: 110%;
  background: #EDEDED;
  position: absolute;
  left: -5%;
  top: -80px;
  z-index: -1;
  -ms-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}

/* BRANDS */
.logo {
  height: 155px;
  text-align: left;
}
.logo .helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.logo img {
  vertical-align: middle;
  max-height: 135px;
  max-width: 255px;
}
.logo a:hover {
  opacity: 0.8;
}

/* FORM */

.form {
  padding: 55px 0 0;
}
.btn-primary {
  background: #2D2E83;
  color: #FFF;
  border-radius: 0px;
  border: none;
  width: 100%;
  padding: 15px 0px;
    cursor: pointer;
}

.form-control {
  min-height: 38px;
  border-radius: 0px;
}

.success{
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 80%;
    left: 10%;
    text-align: center;
    background: #64c163;
    color: #ffffff;
    text-transform: capitalize;
    padding: 5px 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 99999999999999;
    transition: all 0.5s;
}
.success.visible{
    visibility: visible;
    opacity: 1;
    transition: all 0.5s;
}

/* FOOTER */

.footer-bg-top {
  background: #29235C;
  padding: 10px 0;
  padding-top: 200px;
  margin-top: -143px;
}

.footer-bg-top .logo {
  text-align: center;
}

.footer-bg-bottom {
  background: #29235c;
  padding: 10px 0;
  color: #FFF;
  font-size: 12px;
}
.footer-bg-bottom a {
  color: #FFF;
  text-decoration: underline;
}

.footer-bg-bottom hr {
  background-color: #7f78b7;
  width: 100%;
}

.footer-bg-bottom .col-md-12 {
  padding: 15px 0px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}



/* NEW FORM */

.form-box {
  background-color: white;
  padding: 45px 65px 25px;
  border: 1px solid #ccc;
}

.form-box h2 {
  margin-bottom: 17px;
}

.contact-form .column-left {
  padding-right: 25px;
}

.contact-form .column-right {
  padding-left: 25px;
}

.contact-form .form-group label {
  color: #A9A8A8;
}

.contact-form textarea {
  height: 202px;
  padding-top: 25px;
}

.contact-form .message-label {
  font-size: 12px;
  padding-top: 8px;
  display: block;
}

.contact-form .submit {
  position: relative;
  display: inline-block;
  margin-top: 50px;
}

.contact-form .submit:hover {
  cursor: pointer;
}

.contact-form .submit input {
  background: transparent;
  border: 0;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
}

.contact-form .submit:before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  right: 105%;
  top: 14px;
  transition: all 0.5s;
}

.contact-form .submit:hover:before {
  width: 50px;
  transition: all 0.5s;
}





/*  Small devices (landscape phones, 576px and up) */
@media (max-width: 767px) {

  h1 {
    font-size: 30px;
    line-height: 37px;
  }

  .form {
    padding-top: 0px;
  }

  .form-box {
    padding: 45px 30px 20px;
    border: none;
    border-top: 1px solid #ccc;
  }
  
  .contact-form .column-right,
  .contact-form .column-left {
    padding-left: 0px;
    padding-right: 0px;
  }

}

/*  Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 

  /* FORM */

    .btn-primary {
      position: relative;
      top: 111px;
      float: right;
    }

    .hidden-xs{
        display: block;
    }

    .logo {
      height: auto;
      margin-bottom: 20px;
    }

    .logo img {
      width: 100%;
    }

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
  
  h1 {
    text-align: left;
  }

  h2 {
    font-size: 24px;
  }

  /* HEADER */

  header {
    padding: 50px 0;
  }

  .logo {
    height: 104px;
  }

  .logo img {
    width: 86%;
  }

}

/*  Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

  .logo {
    height: 104px;
  }

  .logo img {
    width: auto;
  }

}