
body,
.font-family-primary {
	font-family: 'proxima-nova', 'Montserrat', sans-serif;
	line-height: 1.9;
}
a,
a:hover,
a:focus {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.font-family-secondary {
	font-family: 'filson-pro', 'private-sans', 'proxima-nova', 'Quicksand', sans-serif;
}

/* Logo */
.logo img {
	width: 100%;
}
.logo img.logo-img {
	max-width: 225px;
}
.logo img.logo-icon {
	max-width: 40px;
}

/* Navbar */
.header .navbar-nav .nav-link {	
  padding-right: 0!important;
  padding-left: 0!important;
  margin-right: .5rem;
  margin-left: .5rem;
}

/* Hero */
.hero form.box-shadow {
    box-shadow: 0 12px 24px 10px rgba(36,37,38,0.08);
}

/* TFA Modal */
.tfa-modal {
    background-color: rgba(243, 245, 246, 0.95);
}

.tfa-modal .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    transform: translateY(-10%);
}

.tfa-modal .modal-content {
    border: unset;
    padding: 40px 25px 0 25px;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.15);
}

.tfa-modal .close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 32px;
    height: 32px;
    padding: 3px 9.25px;
}

/* Thank You */
.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.success_msg_inner.active .circle {
    -webkit-animation: dash .9s ease-in-out;
    animation: dash .9s ease-in-out;
}
.success_msg_inner.active .line {
    stroke-dashoffset: 1000;
    -webkit-animation: dash .9s .35s ease-in-out forwards;
    animation: dash .9s .35s ease-in-out forwards;
}
.success_msg_inner.active .check {
    stroke-dashoffset: -100;
    -webkit-animation: dash-check .9s .35s ease-in-out forwards;
    animation: dash-check .9s .35s ease-in-out forwards;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}