.text-blue {
  color: #8ab6e0;
}

.text-yellow {
  color: #e99c45;
}

.bg-orange {
  background: #de613c;
}

.bg-yellow {
  background: #e99c45;
}

.bg-black {
  background: #000;
}

.bg-blue {
  background: #8ab6e0;
}

.bg-gray {
  background: #f2f3f4;
}

a {
  text-decoration: none;
  color: white;
}

html, body {
  border: 0;
  margin: 0;
  padding: 0;
}

* {
  font-family: Montserrat;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding-left: 20px;
  padding-right: 15px;
}
header .menu-btn {
  display: none;
}
header .logo-img {
  width: 30px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  display: none;
}
header .logo-img-mobile {
  display: none;
}
header .logo {
  font-size: 30px;
  color: black;
  display: inline-block;
}
header .phone {
  font-size: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .right {
  font-size: 20px;
}
header .right span {
  padding-left: 10px;
}
header .right form {
  display: inline-block;
  margin: 0;
}
header .right form button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0 10px;
}
@media (max-width: 800px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 2;
    background: white;
    box-sizing: border-box;
  }
  header .logo {
    display: none;
  }
  header .logo-img {
    display: block;
  }
  header .menu-btn {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  header .phone {
    display: none;
  }
  header .right {
    display: none;
  }
}

.after-header {
  width: 100%;
  background: #f2f3f4;
  height: 35px;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.after-header .colors {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.after-header .colors div {
  width: 33%;
  height: 100%;
}
@media (max-width: 800px) {
  .after-header {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 2;
    height: 15px;
  }
  .after-header .colors {
    width: 60%;
  }
}
.after-header nav {
  position: absolute;
  right: 20px;
  bottom: 0;
  transform: translateY(100%);
  padding: 15px 0;
  z-index: 1;
}
.after-header nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.after-header nav ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
}
.after-header nav ul li a {
  color: white;
  text-decoration: none;
}
.after-header nav ul li.selected a {
  color: #e99c45;
}
.after-header nav .mobile-extra-menu {
  display: none;
}
.after-header nav .live-chat {
  position: absolute;
  right: 10px;
  transform: translateY(100%);
  font-size: 18px;
}
@media (max-width: 800px) {
  .after-header nav .live-chat {
    position: static;
    text-align: center;
  }
}
.after-header nav.light-banner ul li a {
  color: black;
}
.after-header nav.light-banner ul li.selected a {
  color: #de613c;
}
.after-header nav.light-banner .live-chat a {
  color: #de613c;
}
@media (max-width: 800px) {
  .after-header nav {
    position: fixed;
    top: 85px;
    transform: none;
    background: white;
    z-index: 2;
    left: 0;
    right: 0;
    padding-top: 0;
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
  }
  .after-header nav[data-open=true] {
    transform: translateX(0);
  }
  .after-header nav ul li {
    display: block;
    border-bottom: 1px solid #eee;
  }
  .after-header nav ul li a {
    color: black;
    display: block;
    padding: 10px 0;
  }
  .after-header nav .live-chat {
    transform: none;
    padding: 10px;
  }
  .after-header nav .mobile-extra-menu {
    display: block;
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
  }
  .after-header nav .mobile-extra-menu span {
    padding: 10px;
  }
  .after-header nav .mobile-extra-menu form {
    display: inline-block;
    padding: 10px;
    margin-bottom: 0;
  }
  .after-header nav .mobile-extra-menu form button {
    font-size: 18px;
    border: none;
    padding: 0;
    background: none;
  }
}

.mobile-header-spacer {
  height: 85px;
  width: 100%;
  display: none;
}
@media (max-width: 800px) {
  .mobile-header-spacer {
    display: block;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

.banner {
  height: 700px;
  background: #555;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}
.banner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
  content: " ";
  z-index: 0;
}
@media (max-width: 1200px) {
  .banner {
    height: 600px;
  }
}
@media (max-width: 500px) {
  .banner {
    height: auto;
    padding: 20px 0;
  }
}

body.light-banner .banner::after {
  background: radial-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}

footer .footer-top {
  height: 215px;
  background: #de613c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .footer-top div {
  color: white;
  text-align: center;
}
footer .footer-top div:first-child {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
}
footer .footer-top div:nth-child(2) {
  font-size: 25px;
}
footer .footer-bottom {
  position: relative;
  background: #f2f3f4;
  height: 100px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
footer .footer-bottom .footer-signup {
  background: black;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 0;
  height: 50px;
  width: 550px;
  display: flex;
}
footer .footer-bottom .footer-signup input {
  border: none;
  background: black;
  color: white;
  padding: 0 20px;
  flex-grow: 1;
}
footer .footer-bottom .footer-signup input::placeholder {
  color: white;
}
footer .footer-bottom .footer-signup button {
  height: 100%;
  background: white;
  color: black;
  border: 1px solid black;
  text-transform: uppercase;
  width: 150px;
}
footer .footer-bottom .footer-credits {
  font-weight: lighter;
  padding-top: 25px;
}
@media (max-width: 800px) {
  footer .footer-top div:first-child {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  footer .footer-bottom .footer-signup {
    width: auto;
  }
}
@media (max-width: 500px) {
  footer .footer-top div:first-child {
    font-size: 20px;
  }
  footer .footer-top div:nth-child(2) {
    font-size: 18px;
  }
  footer .footer-bottom .footer-signup {
    height: 80px;
    flex-direction: column;
    min-width: 200px;
  }
  footer .footer-bottom .footer-signup input {
    width: 100%;
    height: 50%;
  }
  footer .footer-bottom .footer-signup button {
    width: 100%;
    height: 50%;
  }
  footer .footer-bottom .footer-credits {
    font-size: 8px;
    text-align: center;
  }
}

.generate-ticket-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.generate-ticket-modal[data-open=false] {
  display: none;
}
.generate-ticket-modal::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.generate-ticket-modal .inner {
  background: #eee;
  max-width: 400px;
  width: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  box-shadow: 2px 2px 2px #555;
}
.generate-ticket-modal .inner .x {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.generate-ticket-modal .inner .x img {
  width: 30px;
  height: 30px;
}
.generate-ticket-modal .inner .title {
  font-size: 35px;
  text-align: center;
  border-bottom: 2px solid black;
  max-width: 275px;
  margin: auto;
  padding: 10px 0;
}
.generate-ticket-modal .inner .generate {
  font-size: 35px;
  text-align: center;
  padding: 25px;
}
.generate-ticket-modal .inner .click {
  border: 1px solid black;
  padding: 10px 20px;
  max-width: 125px;
  margin: auto;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
  cursor: pointer;
}
.generate-ticket-modal .inner .let-us {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}
.generate-ticket-modal .inner .bottom {
  height: 30px;
  width: 100%;
  display: flex;
}
.generate-ticket-modal .inner .bottom div {
  height: 100%;
  width: 33%;
  flex-grow: 1;
}
@media (max-width: 600px) {
  .generate-ticket-modal .inner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    max-width: none;
    position: relative;
  }
  .generate-ticket-modal .inner .mobile-snap-middle {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
  }
  .generate-ticket-modal .inner .mobile-snap-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .generate-ticket-modal .inner .title, .generate-ticket-modal .inner .generate {
    font-size: 25px;
  }
  .generate-ticket-modal .inner .let-us {
    font-size: 15px;
    padding: 10px 0;
  }
}

.page-home .banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-home .banner h1 {
  color: white;
  text-align: center;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1000px) {
  .page-home .banner {
    background-position-x: left;
  }
  .page-home .banner h1 {
    font-size: 25px;
    padding: 25px;
  }
}
.page-home .section-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.page-home .section-1 div {
  padding: 20px 40px;
  max-width: 200px;
}
.page-home .section-1 div h2 {
  text-align: center;
  font-weight: normal;
  font-size: 30px;
}
@media (max-width: 1200px) {
  .page-home .section-1 div {
    padding: 10px 20px;
  }
}
@media (max-width: 1000px) {
  .page-home .section-1 {
    flex-wrap: wrap;
  }
  .page-home .section-1 div {
    width: 40%;
    max-width: none;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .page-home .section-1 div {
    width: 100%;
  }
}
.page-home .section-2 {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.page-home .section-2 .row-1 {
  height: 250px;
  display: flex;
  align-items: center;
  width: 100%;
}
.page-home .section-2 .row-1 .network-icon {
  height: 100%;
  width: 40%;
  background: black;
  color: white;
  flex-shrink: 0;
  display: flex;
  font-size: 14px;
  line-height: 18px;
  align-items: center;
  font-weight: lighter;
}
.page-home .section-2 .row-1 .network-icon img {
  height: 100px;
  padding-left: 40px;
}
.page-home .section-2 .row-1 .network-icon p {
  padding-left: 20px;
  padding-right: 40px;
}
.page-home .section-2 .row-1 .keyboard {
  height: 100%;
  width: 20%;
  background-size: cover;
  background-position: center;
}
.page-home .section-2 .row-1 .what-is-your-security-worth {
  height: 100%;
  width: 40%;
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.page-home .section-2 .row-1 .what-is-your-security-worth p {
  font-weight: normal;
  font-size: 35px;
  padding: 0;
  margin: 0;
  margin-bottom: 25px;
}
.page-home .section-2 .row-1 .what-is-your-security-worth .button-learn-more {
  border: 1px solid black;
  width: auto;
  padding: 10px 15px;
  font-size: 12px;
  display: inline-block;
}
.page-home .section-2 .row-2 {
  height: 250px;
  display: flex;
  justify-content: flex-end;
}
.page-home .section-2 .row-2 .we-will-ensure-your-protocols {
  background: #de613c;
  color: white;
  font-weight: bold;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px;
  text-align: center;
  box-sizing: border-box;
  height: 100%;
  width: 60%;
}
.page-home .section-2 .row-3 {
  height: 250px;
  width: 100%;
  display: flex;
}
.page-home .section-2 .row-3 .yellow-block {
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.page-home .section-2 .row-3 .yellow-block div {
  background: #e99c45;
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 40px;
  box-sizing: border-box;
}
.page-home .section-2 .row-3 .lock {
  background: black;
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .section-2 .row-3 .lock img {
  width: 100px;
}
.page-home .section-2 .row-3 .handshake {
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.page-home .section-2 .background-photo {
  width: 60%;
  height: 70%;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1000px) {
  .page-home .section-2 .row-1 .network-icon {
    width: 60%;
  }
  .page-home .section-2 .row-1 .what-is-your-security-worth {
    padding: 20px 50px;
  }
  .page-home .section-2 .row-1 .what-is-your-security-worth p {
    font-size: 20px;
  }
  .page-home .section-2 .row-3 .yellow-block div {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  .page-home .section-2 .row-1 {
    flex-wrap: wrap;
    height: 500px;
  }
  .page-home .section-2 .row-1 .network-icon {
    width: 100%;
    height: 50%;
  }
  .page-home .section-2 .row-1 .keyboard, .page-home .section-2 .row-1 .what-is-your-security-worth {
    height: 50%;
    width: 50%;
  }
  .page-home .section-2 .row-2 {
    height: 925px;
    position: relative;
  }
  .page-home .section-2 .row-2 .we-will-ensure-your-protocols {
    position: absolute;
    top: 500px;
    height: 175px;
    padding: 30px;
    width: 100%;
  }
  .page-home .section-2 .row-3 .lock {
    position: absolute;
    top: 675px;
    width: 35%;
  }
  .page-home .section-2 .row-3 .handshake {
    position: absolute;
    top: 675px;
    width: 65%;
    left: 35%;
  }
  .page-home .section-2 .background-photo {
    width: 100%;
    height: 500px;
    bottom: auto;
    top: 500px;
    left: 0;
  }
  .page-home .section-2 .row-3 {
    position: absolute;
    top: 500px;
    display: block;
  }
  .page-home .section-2 .row-3 .yellow-block {
    width: 60%;
    top: 300px;
    position: absolute;
    left: 0;
    height: auto;
  }
  .page-home .section-2 .row-3 .yellow-block div {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .page-home .section-2 .row-1 .network-icon img {
    float: right;
    height: 40px;
    padding: 20px;
    padding-top: 40px;
    display: none;
  }
  .page-home .section-2 .row-1 .network-icon p {
    padding: 20px;
  }
  .page-home .section-2 .row-1 .keyboard, .page-home .section-2 .row-1 .what-is-your-security-worth {
    width: 100%;
  }
  .page-home .section-2 .row-2 {
    height: 1000px;
  }
  .page-home .section-2 .row-2 .we-will-ensure-your-protocols {
    height: 250px;
  }
  .page-home .section-2 .row-3 .yellow-block {
    width: 100%;
    top: 250px;
    height: 250px;
  }
  .page-home .section-2 .row-3 .yellow-block div {
    font-size: 20px;
    line-height: 30px;
  }
  .page-home .section-2 .row-3 .lock {
    width: 100%;
    top: 750px;
  }
  .page-home .section-2 .row-3 .handshake {
    display: none;
  }
}
.page-home .section-slider {
  padding: 75px 0;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  position: relative;
}
.page-home .section-slider button[data-action=start],
.page-home .section-slider button[data-action=stop] {
  display: none;
}
.page-home .section-slider button {
  background: black;
  width: 7px;
  height: 7px;
  border: 1px solid black;
  border-radius: 7px;
  padding: 0;
  margin: 0 13px;
}
.page-home .section-slider button.tns-nav-active {
  background: white;
}
.page-home .section-slider .tns-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.page-home .section-slider .tns-item {
  font-size: 25px;
  font-weight: lighter;
  line-height: 30px;
}
@media (max-width: 1200px) {
  .page-home .section-slider {
    padding: 75px 25px;
    box-sizing: border-box;
  }
}
@media (max-width: 1000px) {
  .page-home .section-slider .tns-item {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 500px) {
  .page-home .section-slider {
    padding: 50px 25px 75px;
  }
}

.page-services {
  margin-bottom: 50px;
}
.page-services .banner {
  text-align: center;
  position: relative;
}
.page-services .banner .banner-text {
  z-index: 1;
  position: absolute;
  bottom: 50%;
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
}
.page-services .banner .banner-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.page-services .banner .banner-text p {
  font-size: 30px;
  margin: 10px;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 1200px) {
  .page-services .banner .banner-text {
    margin-bottom: 50px;
    padding: 0 25px;
    box-sizing: border-box;
  }
}
@media (max-width: 1000px) {
  .page-services .banner .banner-text {
    margin-bottom: 30px;
  }
  .page-services .banner .banner-text h1 {
    font-size: 30px;
  }
  .page-services .banner .banner-text p {
    font-size: 25px;
  }
}
@media (max-width: 800px) {
  .page-services .banner {
    height: 400px;
  }
  .page-services .banner .banner-text {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .page-services .banner {
    height: 300px;
  }
  .page-services .banner .banner-text h1 {
    font-size: 20px;
  }
  .page-services .banner .banner-text p {
    font-size: 15px;
  }
}
.page-services .row {
  max-width: 1200px;
  margin: auto;
  display: flex;
  height: 400px;
  padding: 50px 0 0;
}
.page-services .row .block-image {
  width: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  height: 100%;
  background-position: center;
  background-size: cover;
  padding: 25px;
  box-sizing: border-box;
}
.page-services .row .block-image div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.page-services .row .block-text {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  box-sizing: border-box;
  width: 50%;
  height: 100%;
}
.page-services .row .block-text h2 {
  font-size: 40px;
  color: #3e3f3f;
}
.page-services .row .block-text .block-text-subheading {
  font-style: italic;
}
.page-services .row .block-text .block-text-line {
  width: 150px;
  padding: 10px 0;
}
.page-services .row .block-text .block-text-line div {
  width: 100%;
  height: 1px;
  background-color: black;
}
.page-services .row .block-text p {
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 800px) {
  .page-services .row {
    height: auto;
  }
  .page-services .row .block-image {
    display: none;
  }
  .page-services .row .block-text {
    width: 100%;
    height: auto;
  }
}

.page-strategy .banner {
  position: relative;
}
.page-strategy .banner h1 {
  color: black;
  font-size: 40px;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 70px;
  text-align: center;
  max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .page-strategy .banner h1 {
    top: 100px;
  }
}
@media (max-width: 1000px) {
  .page-strategy .banner h1 {
    font-size: 30px;
    padding: 0 25px;
  }
}
@media (max-width: 600px) {
  .page-strategy .banner h1 {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .page-strategy .banner {
    height: 400px;
  }
  .page-strategy .banner::after {
    background: rgba(255, 255, 255, 0.8) !important;
  }
}
@media (max-width: 600px) {
  .page-strategy .banner {
    height: 250px;
  }
}
.page-strategy .section-1, .page-strategy .section-2 {
  max-width: 1200px;
  margin: auto;
}
.page-strategy .section-1 {
  display: flex;
  padding: 50px 25px;
}
.page-strategy .section-2 {
  padding: 0 25px;
  padding-bottom: 50px;
}
.page-strategy img {
  padding-right: 20px;
}
.page-strategy div {
  font-size: 30px;
}
.page-strategy ul {
  list-style-type: none;
}
.page-strategy ul li {
  font-size: 35px;
  font-weight: bold;
  color: #3e3f3f;
}
.page-strategy .flexy {
  display: flex;
  justify-content: space-between;
}
.page-strategy .flexy img {
  margin-right: 50px;
}
@media (max-width: 1200px) {
  .page-strategy div {
    font-size: 25px;
  }
  .page-strategy ul li {
    font-size: 30px;
  }
}
@media (max-width: 1000px) {
  .page-strategy div {
    font-size: 20px;
  }
  .page-strategy ul li {
    font-size: 25px;
  }
  .page-strategy img {
    width: 200px;
  }
}
@media (max-width: 800px) {
  .page-strategy .section-1 {
    flex-direction: column-reverse;
    align-items: center;
    padding: 10px 25px;
  }
  .page-strategy ul {
    padding-left: 0;
  }
  .page-strategy .section-2 .flexy {
    flex-direction: column;
    align-items: center;
  }
  .page-strategy .section-2 .flexy ul {
    width: 100%;
  }
  .page-strategy .section-2 .flexy img {
    padding: 0;
    margin: 0;
  }
}

.page .banner {
  position: relative;
}
.page .banner h1 {
  color: black;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  text-align: center;
  width: 100%;
}
.page .page-content {
  max-width: 1200px;
  margin: auto;
  font-size: 20px;
  padding: 50px 10px;
  line-height: 30px;
}
.page .page-content.no-banner {
  padding-top: 100px;
}
.page .page-content h1 {
  line-height: 45px;
}
.page .page-content a {
  color: black;
  text-decoration: underline;
}
.page .page-content h2 {
  margin-top: 50px;
  line-height: 35px;
}
.page .page-content h2:first-child {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .page .page-content {
    padding: 25px;
    padding-top: 50px;
  }
}
@media (max-width: 800px) {
  .page .page-content.no-banner {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .page .banner {
    height: 350px;
  }
}

.page-contact {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .page-contact {
    margin-bottom: 0;
  }
}
.page-contact .banner {
  background-position-y: top;
}
.page-contact .banner h1 {
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  width: 100%;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: normal;
}
@media (max-width: 1200px) {
  .page-contact .banner h1 {
    font-size: 30px;
  }
}
@media (max-width: 800px) {
  .page-contact .banner h1 {
    transform: none;
    top: 10%;
    box-sizing: border-box;
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .page-contact .banner {
    height: 300px;
  }
  .page-contact .banner h1 {
    font-size: 20px;
  }
}
.page-contact .text-blurb {
  padding: 50px;
  max-width: 1000px;
  margin: auto;
  font-size: 25px;
  line-height: 35px;
}
@media (max-width: 1000px) {
  .page-contact .text-blurb {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .page-contact .text-blurb {
    font-size: 15px;
    padding: 20px;
  }
}
.page-contact .contact-flex {
  display: flex;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 800px) {
  .page-contact .contact-flex {
    flex-direction: column-reverse;
  }
}
.page-contact .contact-flex .contact-details {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}
.page-contact .contact-flex .contact-details > img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.page-contact .contact-flex .contact-details .contact-detail-item {
  display: flex;
  width: 250px;
}
.page-contact .contact-flex .contact-details .contact-detail-item .contact-detail-icon img {
  width: 30px;
  position: relative;
  top: 20px;
  margin-right: 20px;
}
.page-contact .contact-flex .contact-details .contact-detail-item .contact-detail-content a {
  color: black;
}
@media (max-width: 800px) {
  .page-contact .contact-flex .contact-details {
    width: 100%;
  }
}
.page-contact .contact-flex .contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.page-contact .contact-flex .contact-form form {
  padding: 0 50px;
  margin: 0;
}
.page-contact .contact-flex .contact-form form div.heading {
  text-align: center;
  margin-bottom: 30px;
}
.page-contact .contact-flex .contact-form form label {
  display: block;
  margin-bottom: 2px;
}
.page-contact .contact-flex .contact-form form input, .page-contact .contact-flex .contact-form form textarea {
  width: 100%;
  border: none;
  font-size: 16px;
  padding: 5px 10px;
  margin-bottom: 20px;
}
.page-contact .contact-flex .contact-form form input[id=id_first_name],
.page-contact .contact-flex .contact-form form input[id=id_last_name] {
  width: 48%;
}
.page-contact .contact-flex .contact-form form input[id=id_last_name] {
  float: right;
}
.page-contact .contact-flex .contact-form form input[type=submit] {
  margin-bottom: 0;
  background: #8ab6e0;
  color: white;
  max-width: 300px;
  margin: auto;
  display: block;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
}
.page-contact .contact-flex .contact-form .success {
  text-align: center;
}
.page-contact .contact-flex .contact-form .success .success-heading {
  font-size: 30px;
  color: black;
}
.page-contact .contact-flex .contact-form .success .success-text {
  color: black;
}
@media (max-width: 1200px) {
  .page-contact .contact-flex .contact-form .success {
    padding: 20px;
  }
  .page-contact .contact-flex .contact-form .success .success-heading {
    font-size: 20px;
  }
  .page-contact .contact-flex .contact-form .success .success-text {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  .page-contact .contact-flex .contact-form {
    width: 100%;
    padding: 50px 15px;
    box-sizing: border-box;
  }
  .page-contact .contact-flex .contact-form form {
    padding: 0;
  }
  .page-contact .contact-flex .contact-form .success {
    padding: 100px 20px;
  }
}

/*# sourceMappingURL=style.css.map */
