/* SITE WIDE */

@import url("https://use.typekit.net/bmc3dpr.css");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");

.nimbus {
  font-family: nimbus-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
}

::selection {
  color: white;
  background-color: #d71f46;
}

body {
  color: #2e2e2d;
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

button {
  padding: 15px 50px;
  border: none;
  font-size: 20px;
}

button:hover {
  cursor: pointer;
}

.red-btn {
  color: white;
  background-color: #d71f46;
}

.white-btn {
  color: #2e2e2d;
  background-color: white;
}

a {
  color: #2e2e2d;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #d71f46;
}

strong {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}

blockquote {
  padding-left: 30px;
  border-left: 2px solid #2e2e2d;
}

.sm-print {
  font-size: 10px;
}

.red-text {
  color: #d71f46;
}

.white-text {
  color: white;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form > p {
  margin-bottom: 0;
}

.shadow {
  box-shadow: 22px 22px 60px 7px rgba(0, 0, 0, 0.36) !important;
  -webkit-box-shadow: 22px 22px 60px 7px rgba(0, 0, 0, 0.36) !important;
  -moz-box-shadow: 22px 22px 60px 7px rgba(0, 0, 0, 0.36) !important;
}

.small-section {
  width: 70%;
  margin: 0 auto;
}

.show-xlg {
  display: none;
}

/* -- HEADER -- */

#header {
  padding: 50px 0;
  position: relative;
}

.top-border {
  position: absolute;
  top: 0;
  height: 10px;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #2e2e2d;
}

.top-border::before {
  content: "";
  position: absolute;
  top: 0;
  height: 10px;
  width: 18px;
  right: 20%;
  z-index: 11;
  background: url("/wp-content/uploads/2022/07/border-triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(50%);
}

.top-border::after {
  content: "";
  position: absolute;
  top: 0;
  height: 10px;
  background-color: #d71f46;
  width: 20%;
  right: 0;
  z-index: 10;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-links,
.header-text {
  width: 60%;
}

.header-links a:first-of-type {
  margin-right: 30px;
}

.header-logo {
  width: 40%;
}

.header-logo {
  text-align: center;
}

.header-logo img {
  max-width: 100%;
}

.header-text {
  text-align: end;
}

.header-text p {
  margin-bottom: 0;
}

/* -- LANDING PAGE -- */

#hero {
  position: relative;
}

#hero .main {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
}

#hero .dashed {
  position: absolute;
  top: -100px;
  left: 0;
}

.hero {
  display: flex;
  align-items: center;
}

.hero-text {
  width: 45%;
  padding-right: 50px;
}

.hero-text h1 span {
  color: #d71f46;
}

.hero-form {
  width: 55%;
  position: relative;
  z-index: 10;
}

.hero-form .stats-box {
  position: absolute;
  left: -50px;
  bottom: 50px;
}

.stats-box {
  padding: 20px;
  padding-right: 50px;
  background-color: white;
  width: 230px;
}

.stats-box .red-text {
  margin-bottom: 0;
}

.stats-box p {
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stats-box .logo {
  position: absolute;
  top: calc(100% - 10px);
  right: 20px;
  max-width: 50%;
  background-color: white;
}

.stats-box .stats {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 25%;
}

.hero-form .form-box {
  background-color: white;
  width: 70%;
  padding: 50px;
  margin-left: auto;
  position: relative;
  top: 100px;
}

.form-box .corner {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
}

.form-box h2 {
  padding-bottom: calc(0.5rem + 4px);
}

.form-box h2 span {
  border-bottom: 4px solid #d71f46;
  padding-bottom: 0.5rem;
}

.form-box input:not(.red-btn),
.form-box textarea {
  padding: 20px;
  border: 2px solid #f2f2f2;
  background-color: #f2f2f2;
  color: #2e2e2d;
  width: 100%;
  margin-bottom: 1rem;
  height: 68px;
}

.form-box input:not(.red-btn)::placeholder,
.form-box textarea::placeholder {
  color: #2e2e2d;
}

.form-box input:not(.red-btn):focus,
.form-box textarea:focus {
  border: 2px solid #d71f46;
}

.form-box input:not(.red-btn):focus::placeholder,
.form-box textarea:focus::placeholder {
  opacity: 0.3;
}

.form-box .red-btn {
  width: 100%;
  padding: 15px 50px;
  border: none;
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: 400;
}

.form-box .sm-print {
  text-align: center;
}

.top-gradient {
  position: relative;
}

.top-gradient::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -50px;
  right: 0;
  bottom: 20%;
  left: 50px;
  background: rgb(46, 46, 45);
  background: -moz-linear-gradient(
    0deg,
    rgba(46, 46, 45, 0) 0%,
    rgba(46, 46, 45, 0.04) 100%
  );
  background: -webkit-linear-gradient(
    0deg,
    rgba(46, 46, 45, 0) 0%,
    rgba(46, 46, 45, 0.04) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(46, 46, 45, 0) 0%,
    rgba(46, 46, 45, 0.04) 100%
  );
}

.alongside h5 {
  margin-bottom: 30px;
}

.alongside-images {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alongside-images img {
  width: 20%;
  max-height: 50px;
}

#home-intro {
  margin-top: 100px;
}

#home-stories {
  margin-top: 50px;
  overflow: hidden;
  padding: 50px 0;
  position: relative;
}

#home-stories .dashed {
  position: absolute;
  right: 0;
  top: -25px;
  z-index: 10;
}

.home-stories {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.home-stories-text {
  width: 300px;
}

.home-stories-slider {
  width: 70%;
}

/* .home-stories-text h2 {
  white-space: nowrap;
} */

.owl-stories-slide {
  padding: 50px;
  background-color: white;
  position: relative;
}

.owl-stories-slide p:last-of-type {
  margin-top: 1rem;
}

.owl-stories-slide .quotes {
  position: absolute;
  left: 50px;
  top: 0;
  transform: translateY(-50%);
  max-width: 60px;
}

.owl-stories-slide .red-text {
  margin-bottom: 0;
}

.owl-stories-slide.shadow {
  box-shadow: 5px 5px 32px 0px rgba(0, 0, 0, 0.36) !important;
  -webkit-box-shadow: 5px 5px 32px 0px rgba(0, 0, 0, 0.36) !important;
  -moz-box-shadow: 5px 5px 32px 0px rgba(0, 0, 0, 0.36) !important;
}

.owl-stories-slide img {
  max-width: 100%;
  width: auto !important;
}

.owl-stories.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

.owl-stories.owl-carousel .owl-item {
  opacity: 0;
  transition: opacity 0.1s;
}

.owl-stories.owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-stories.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  left: calc(100% + 100px);
  top: 0;
  width: fit-content;
  display: flex;
}

.owl-stories.owl-theme .owl-nav button {
  background: #d71f46 !important;
  display: flex;
  margin: 0;
  padding: 20px 10px !important;
  border-radius: 0;
}

.owl-stories.owl-theme .owl-nav button.owl-next {
  margin-left: 10px;
}

.owl-stories.owl-theme .owl-nav button.owl-next img {
  transform: rotate(180deg);
}

#red-section {
  background-image: url("/wp-content/uploads/2022/07/red-background.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 200px;
  margin-top: -200px;
  padding-bottom: 80px;
  /* overflow: hidden; */
}

#red-section .overflow {
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

#red-section .container {
  position: relative;
}

#red-section .owl-prev,
#red-section .owl-next {
  background: #2e2e2d !important;
  display: flex;
  margin: 0;
  padding: 20px 10px !important;
  border-radius: 0;
  cursor: pointer;
  z-index: 10;
}

#red-section .owl-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#red-section .owl-next img {
  transform: rotate(180deg);
}

#red-section .owl-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#red-section .container .stats-box {
  position: absolute;
  top: calc(100% - 30px);
  right: 12px;
  z-index: 10;
}

#red-section .black-tri {
  position: absolute;
  top: 40px;
  left: -2px;
  transform: translateY(-50%);
  max-width: 8%;
  z-index: 12;
}

#red-section .top-tri {
  position: absolute;
  top: 38px;
  left: -2px;
  transform: rotate(180deg);
  max-width: 10%;
  z-index: 10;
}

#red-section .bottom-tri {
  position: absolute;
  bottom: 0;
  right: -2px;
  max-width: 10%;
  z-index: 10;
}

.red-section-title {
  margin-bottom: 50px;
}

.owl-solutions.owl-carousel .owl-item img {
  width: auto;
}

.owl-solutions.owl-theme .owl-dots .owl-dot {
  padding: 5px 0 !important;
}

.owl-solutions.owl-theme .owl-dots .owl-dot span {
  margin: 0;
  height: 3px;
  width: 30px;
  background: #ffffff;
}

.owl-solutions.owl-theme .owl-dots .owl-dot.active span {
  background: #2e2e2d;
}

.owl-solutions.owl-theme .owl-dots .owl-dot:not(:last-of-type) {
  margin-right: 10px;
}

.red-section-box {
  padding-bottom: 30px;
  /* border-bottom: 2px solid white; */
}

.red-section-box .open-sans {
  line-height: 1.4;
}

.red-section-box img {
  margin-bottom: 1rem;
}

.red-section-link {
  margin-top: 40px;
  text-align: center;
}

#black-strip {
  background: #2e2e2d;
  margin-top: -54px;
  position: relative;
}

#black-strip h5 {
  margin-bottom: 0;
  padding: 15px 0;
}

#trusted-hands {
  margin-top: 100px;
}

.trusted-hands {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trusted-hands h5 {
  white-space: nowrap;
  margin-bottom: 0;
  margin-right: 50px;
}

.trusted-hands > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.trusted-hands > div img {
  width: 15%;
  height: 60px;
}

#image-text-section {
  margin-top: 100px;
}

.image-text-image {
  position: relative;
}

.image-text-image .dashed {
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: -1;
  max-width: 100%;
}

.image-text-image .main {
  max-width: 100%;
}

.image-text-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#bottom-form {
  margin-top: 100px;
}

.bottom-form-text {
  margin-top: 50px;
}

.bottom-form .form-box {
  background-color: white;
  width: calc(100% - 33px);
  padding: 38px;
  margin-left: auto;
  position: relative;
}

/* -- FOOTER -- */

#footer {
  margin-top: 100px;
  padding: 50px 0;
  position: relative;
}

#footer .top-border {
  transform: rotateX(180deg);
  top: initial;
  bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links,
.footer-text {
  width: 60%;
}

.footer-links a:first-of-type {
  margin-right: 30px;
}

.footer-logo {
  width: 40%;
}

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

.footer-logo img {
  max-width: 100%;
}

.footer-text {
  text-align: end;
}

.footer-text p {
  margin-bottom: 0;
}

/* -- RESPONSIVE -- */

@media screen and (min-width: 1900px) {
  .show-xlg {
    display: block;
  }
  .trusted-hands > div img {
    height: 85px;
  }
  .hero-text {
    padding-right: 100px;
  }
}

@media screen and (max-width: 1440px) {
}

/* -- Extra Large Screens -- */

@media screen and (max-width: 1200px) {
  .hero-text {
    width: 50%;
    padding-right: 0;
  }
  #hero .main {
    width: 45%;
  }
  .hero-form {
    width: 50%;
  }
  .hero-form .stats-box {
    left: 30px;
    top: 0;
    bottom: initial;
  }
  .hero-form .form-box {
    display: none;
  }
  /* .header-text p,
  .footer-text p {
    font-size: 13px;
  } */
  .alongside-images {
    width: 100%;
  }
  .top-gradient {
    margin-top: 100px;
  }
  .small-section {
    width: 100%;
  }
  .owl-stories.owl-theme .owl-nav {
    left: initial;
    right: calc(100% + 30px);
    top: 35%;
  }
}

@media screen and (max-width: 1024px) {
  .top-gradient::after {
    left: 25px;
  }
}

/* -- Large Screens -- */

@media screen and (max-width: 992px) {
  .header {
    flex-wrap: wrap;
  }
  .header-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 40px;
  }
  .hero-text {
    width: 60%;
  }
  #hero .main {
    width: 40%;
  }
  .hero-form .stats-box {
    top: 50px;
  }
  .header-links a:first-of-type {
    margin-right: 0;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 40px;
  }
  .footer-links a:first-of-type {
    margin-right: 0;
  }
  .header-text p,
  .footer-text p {
    font-size: 16px;
  }
  .home-stories {
    display: block;
  }
  .home-stories-text {
    margin-bottom: 50px;
  }
  .home-stories-text,
  .home-stories-slider {
    width: auto;
  }
  .bottom-form {
    margin-top: 50px;
  }
  #red-section {
    padding-bottom: 150px;
  }
  #red-section .container .stats-box {
    top: calc(100% - 50px);
    right: -25px;
  }
  .owl-stories.owl-theme .owl-nav {
    right: 0;
    top: initial;
    bottom: calc(100% + 50px);
  }
  #red-section .top-tri {
    z-index: 0;
  }
}

/* -- Tablet Screens -- */

@media screen and (max-width: 768px) {
  #home-stories {
    z-index: 20;
  }
  #red-section .container .stats-box {
    right: -12px;
  }
  .red-section-box {
    width: 90%;
    margin: 0 auto;
  }
}

/* -- Phones Screens -- */

@media screen and (max-width: 767px) {
  .header-text,
  .footer-text {
    display: none;
  }
  .header-logo,
  .footer-logo {
    width: 100%;
  }
  .hero {
    flex-direction: column-reverse;
  }
  .hero-form {
    height: 450px;
    width: 100%;
  }
  #hero .main {
    width: 100%;
    height: 50%;
  }
  .hero-text {
    width: 100%;
  }
  .hero-form .stats-box {
    top: -25px;
    left: 25px;
  }
  #header {
    padding: 40px 0 70px;
  }
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 35px;
  }
  h4 {
    font-size: 33px;
  }
  h5 {
    font-size: 30px;
  }
  .top-gradient::after {
    left: 12px;
  }
  .red-section-title br {
    display: none;
  }
  .red-section-box {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 50px;
    width: 100%;
  }
  .owl-solutions {
    margin-bottom: 107px;
  }
  #black-strip {
    display: none;
  }
  .red-section-link {
    margin-top: 0;
  }
  #red-section {
    padding-bottom: 200px;
  }
  #red-section .black-tri,
  #red-section .top-tri {
    display: none;
  }
  #red-section .bottom-tri {
    max-width: 40%;
  }
  .trusted-hands {
    display: block;
  }
  .trusted-hands > div {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trusted-hands > div img {
    width: 33.33%;
    height: 90px;
    margin-top: 20px;
  }
  .trusted-hands h5 {
    margin-bottom: 30px;
    margin-right: 0;
  }
  #red-section .container .stats-box {
    top: calc(100% + 50px);
    right: 50%;
    transform: translateX(50%);
  }
  .stats-box {
    padding: 40px;
    padding-right: 80px;
  }
  #image-text-section .row {
    flex-direction: column-reverse;
  }
  .image-text-image,
  .bottom-form,
  .bottom-form-text {
    margin-top: 100px;
  }
  .bottom-form .form-box {
    width: 100%;
  }
  #red-section .owl-next {
    right: calc(50% - 5px);
    top: initial;
    transform: translateX(100%);
    bottom: 310px;
  }
  #red-section .owl-prev {
    left: calc(50% - 5px);
    top: initial;
    transform: translateX(-100%);
    bottom: 310px;
  }
}

@media screen and (max-width: 576px) {
  .hero-form {
    height: 400px;
  }
  #hero .main {
    height: 375px;
  }
  .stats-box {
    padding: 25px;
    padding-right: 50px;
  }
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h5 {
    font-size: 25px;
  }
  .alongside-images {
    flex-wrap: wrap;
  }
  .alongside-images img {
    width: 45%;
    max-height: 60px;
    margin-top: 20px;
  }
  .alongside h5 {
    margin-bottom: 0;
  }
  #red-section .container .stats-box {
    width: fit-content;
  }
  #red-section {
    padding-bottom: 150px;
    padding-top: 100px;
    margin-top: -100px;
  }
  .owl-stories-slide {
    width: 80%;
    margin: 0 auto;
    padding: 50px 25px 25px;
  }
  .owl-stories.owl-theme .owl-nav {
    left: initial;
    right: -12px;
    top: 50%;
    bottom: initial;
    transform: translateY(-50%);
    width: calc(100% + 24px);
    justify-content: space-between;
  }
  .owl-stories.owl-theme .owl-nav button.owl-next {
    margin-left: 0;
  }
  .home-stories-text {
    width: 80%;
    margin: 0 auto 85px auto;
  }
  .owl-stories.owl-theme .owl-dots {
    position: absolute;
    width: 80%;
    margin: 0 auto;
    bottom: calc(100% + 50px);
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
  }
  .owl-stories.owl-theme .owl-dots .owl-dot {
    padding: 5px 0 !important;
  }
  .owl-stories.owl-theme .owl-dots .owl-dot span {
    margin: 0;
    height: 3px;
    width: 30px;
    background: #2e2e2d;
  }
  .owl-stories.owl-theme .owl-dots .owl-dot.active span {
    background: #d71f46;
  }
  .owl-stories.owl-theme .owl-dots .owl-dot:not(:last-of-type) {
    margin-right: 10px;
  }
  .top-gradient::after {
    left: 0;
  }
  .red-section-box .open-sans {
    line-height: 1.2;
    font-size: 22px;
  }
  .red-section-box h4 {
    font-size: 28px;
  }
  #red-section .owl-next,
  #red-section .owl-prev {
    bottom: 260px;
  }
}

/* -- Small Phones Screens -- */

@media screen and (max-width: 375px) {
  .hero-text br {
    display: none;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 25px;
  }
  h5 {
    font-size: 22px;
  }
  .bottom-form .form-box {
    padding: 25px;
  }
  .form-box h2 {
    font-size: 25px;
  }
}
