@font-face {
  font-family: Myriadpro Bold;
  src: url('../fonts/MYRIADPRO-BOLD.OTF') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Myriadpro Italic;
  src: url('../fonts/MYRIADPRO-BOLDIT.OTF') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Myriadpro Reg;
  src: url('../fonts/MYRIADPRO-REGULAR.OTF') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Myriadpro Semi Bold;
  src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Myriadpro Light;
  src: url('../fonts/MyriadPro-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --sfta-black: #222;
  --sfta-red: #d83533;
  --grey: #eee;
  --white: #fff;
  --sfta-brown: #c5afa4;
  --shaded-white: #fff;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: var(--sfta-black);
  letter-spacing: 2px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Header Font;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--sfta-black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Myriadpro Bold, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--sfta-black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Myriadpro Semi Bold, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--sfta-black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Myriadpro Semi Bold, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--sfta-black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Myriadpro Semi Bold, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Myriadpro Semi Bold, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
  font-family: Myriadpro Reg, sans-serif;
  font-size: 16px;
}

a {
  color: var(--sfta-red);
  font-family: Myriadpro Reg, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: Myriadpro Reg, sans-serif;
  font-size: 16px;
}

blockquote {
  border-left: 5px solid var(--sfta-red);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: Myriadpro Italic, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.style-guide-wrap {
  background-color: #f3f3f5;
  padding-top: 1px;
  padding-bottom: 1px;
}

.type-column-1 {
  padding-right: 20px;
}

.input {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 44px;
  line-height: 44px;
}

.input:hover {
  border-color: #636363;
}

.input:focus {
  border-color: #3898ec;
}

.input.cc-long {
  height: auto;
  min-height: 150px;
  line-height: 24px;
}

.tabs-content {
  width: 100%;
  padding-left: 22px;
  padding-right: 22px;
}

.type-column-2 {
  padding-top: 30px;
  padding-left: 20px;
}

.style-guide-label {
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 11px;
  line-height: 11px;
}

.style-guide-label.cc-box {
  justify-content: space-between;
  display: flex;
}

.card {
  background-color: #fff;
  border-radius: 4px;
  flex: 1;
  margin: 15px;
  padding: 40px;
  text-decoration: none;
  transition: all .15s;
  box-shadow: 0 1px 1px #0003;
}

.card:hover {
  margin: 12px;
  padding: 43px;
  box-shadow: 0 10px 20px #0000001a;
}

.style-guide-label-link {
  font-size: 11px;
  font-weight: 500;
  line-height: 11px;
  text-decoration: none;
  display: inline-block;
}

.style-guide-label-link:hover {
  text-decoration: underline;
}

.tab-link {
  color: #aaa;
  background-color: #0000;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.tab-link:hover {
  color: #222;
}

.tab-link.w--current {
  color: #222;
  background-color: #0000;
  box-shadow: inset 0 -1px #333;
}

.tab-menu {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  box-shadow: inset 0 -1px #ccc;
}

.color-block {
  background-color: #ebebeb;
  border-radius: 4px;
  height: 70px;
  margin-top: 30px;
}

.color-block.cc-brand-color-3 {
  background-color: #63ecc0;
}

.color-block.cc-font-color-light {
  background-color: #aaa;
}

.color-block.cc-brand-color-1 {
  background-color: #3898ec;
}

.color-block.cc-brand-color-2 {
  background-color: #c860db;
}

.color-block.cc-dark-grey-2 {
  background-color: #333;
}

.color-block.cc-font-color-dark {
  background-color: #222;
}

.color-block.cc-dark-grey-1 {
  background-color: #636363;
}

.color-block.cc-light-grey-2 {
  background-color: #ccc;
}

.color-block.cc-brand-color-4 {
  background-color: #ffb08b;
}

.color-block.cc-light-grey-1 {
  background-color: #f3f3f5;
}

.style-guide-section {
  background-color: #fff;
  border-radius: 4px;
  margin: 20px;
  padding: 60px 30px;
  position: relative;
  box-shadow: 0 1px 1px #0003;
}

.success-message {
  color: #20ce7b;
  background-color: #20ce7b1a;
  border-radius: 4px;
}

.card-paragraph {
  margin-bottom: 0;
}

.card-wrap {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab-pane {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 30px 40px 40px;
}

.style-guide-logo-box {
  background-image: url('../images/transparent_1transparent.gif');
  background-position: 0 0;
  background-size: 16px;
  border: 1px solid #aaa;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.style-guide-logo-box.cc-dark {
  background-image: linear-gradient(#00000080, #00000080), url('../images/transparent_1transparent.gif');
  background-position: 0 0, 0 0;
  background-size: auto, 16px;
}

.style-guide-logo-box.cc-light {
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/transparent_1transparent.gif');
  background-position: 0 0, 0 0;
  background-size: auto, 16px;
}

.tabs {
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px #ccc;
}

.style-guide-divider {
  background-color: #f3f3f5;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.style-guide-divider.footer {
  background-color: #ffffff61;
  margin-top: 47px;
}

.style-guide-subhead {
  color: #ec3872;
  background-color: #ec38721a;
  border-radius: 4px;
  margin-bottom: 40px;
  padding: 20px;
}

.error-message {
  color: #ec3872;
  text-align: center;
  background-color: #ec38721a;
  border-radius: 4px;
}

.card-container {
  background-color: #f3f3f5;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
  display: flex;
}

.button-text {
  background-color: var(--grey);
  color: #fff;
  letter-spacing: .5px;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  font-weight: 400;
  line-height: 43px;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: 0 1px 1px #0000;
}

.button-text:hover {
  box-shadow: 0 10px 20px #0000001a;
}

.card-title {
  margin-top: 0;
}

.style-guide-content {
  padding-top: 40px;
}

.style-guide-title {
  color: #222;
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 5px;
  padding-left: 18px;
  font-size: 22px;
  font-weight: 500;
  line-height: 44px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.button-under-text {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.arrow {
  background-color: var(--sfta-red);
  border-radius: 100vw;
  width: 10%;
  height: auto;
  padding: 8px;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero {
  background-image: radial-gradient(circle at 0 100%, #222222b0 7%, #c5afa496), url('../images/pexels-tima-miroshnichenko-6090790.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100%;
  display: flex;
  position: static;
  inset: 0% 0% auto;
}

.navigation-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  height: auto;
  position: static;
  inset: 0% 0% auto;
}

.call-icon {
  background-color: var(--white);
  opacity: .83;
  border: 1px solid #ffffff70;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 9px;
  display: flex;
}

.pop-out-menu {
  background-color: var(--sfta-black);
  border: 1px solid #ffffff70;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar {
  background-color: #0000;
  border: 1px solid #ffffff70;
  border-width: 1px 0;
  height: 100%;
}

.hero-section {
  background-image: radial-gradient(circle at 0 100%, #222222ba, #c5afa4bd), url('../images/SFTA-Sourced-12.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
}

.icon {
  width: 100%;
  height: 100%;
}

.nav-menu {
  position: static;
}

.nav-menu-2 {
  float: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: static;
}

.logo {
  float: none;
  display: inline-block;
}

.container {
  background-color: #ffffff38;
}

.container._2 {
  background-color: #0000;
}

.nav-link {
  color: var(--white);
  margin-left: 3.2031px;
  padding-left: 5px;
  font-family: Myriadpro Reg, sans-serif;
  font-size: 16px;
  position: relative;
}

.hero-content {
  grid-template-rows: auto;
  padding-top: 98px;
}

.icons {
  margin-right: 19px;
}

.nav-menu-block {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40%;
  margin: 18px;
  padding-left: 0;
  transition: all .4s;
  display: flex;
}

.nav-menu-block:hover, .nav-menu-block.w--current {
  border-bottom: 2px dotted var(--white);
}

.hero-content-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr .25fr;
  height: 100%;
  max-height: 100%;
  position: relative;
}

.blank-div {
  object-fit: fill;
  border: 1px solid #ffffff70;
  border-top-width: 0;
  height: 100%;
  max-height: 100%;
  position: static;
}

.hero-actual-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-height: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.container-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 67%;
  height: 100%;
  margin-top: auto;
  display: flex;
  position: static;
}

.home-page-heading {
  color: var(--white);
  text-align: center;
  letter-spacing: 6px;
  text-transform: uppercase;
  background-color: #0000;
  font-family: Myriadpro Bold, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}

.home-page-heading.black {
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.home-page-heading.red {
  color: var(--white);
  margin-top: 4px;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 900;
}

.paragraph-in-hero {
  width: 80%;
  color: var(--white);
  text-align: center;
  margin-top: 3px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
}

.button-block-primary {
  text-transform: uppercase;
  align-items: center;
  margin-top: 2px;
  margin-bottom: 12px;
  display: flex;
}

.button-block-primary.dark.spacing {
  margin-top: 29px;
}

.button-icon {
  background-color: var(--sfta-red);
  border-radius: 100vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 9px;
  display: flex;
}

.button-icon-image {
  width: 25px;
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.button-link {
  color: var(--white);
  letter-spacing: 1px;
  margin-left: 15px;
  font-family: Myriadpro Italic, sans-serif;
  font-size: 18px;
}

.button-link.dark {
  color: var(--sfta-black);
  text-transform: uppercase;
}

.div-block {
  height: 100%;
  overflow: hidden;
}

.div-block-2 {
  z-index: 999999;
  position: absolute;
  inset: 0% 0% auto;
}

.hero-section-for-home {
  background-image: url('../images/pexels-tima-miroshnichenko-6090790.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 110vh;
  display: flex;
}

.hero-section-for-home.sub {
  background-image: linear-gradient(#00000091, #00000091), url('../images/SFTA-Sourced-6.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 80vh;
}

.hero-section-for-home.sub._404 {
  background-image: linear-gradient(#00000091, #00000091), url('../images/SFTA-Sourced-2.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-section-for-home.sub.about {
  background-image: linear-gradient(#22222291, #22222291), url('../images/SFTA-Sourced-2.png');
  background-position: 0 0, 50%;
}

.hero-section-for-home.sub.courses {
  background-image: linear-gradient(#22222291, #22222291), url('../images/Courses-Page.jpg');
  background-position: 0 0, 50%;
}

.hero-section-for-home.sub.pricing {
  background-image: linear-gradient(#22222291, #22222291), url('../images/SFTA-Sourced-4-Compressed.png');
}

.hero-section-for-home.sub.comptetency {
  background-image: linear-gradient(#00000091, #00000091), url('../images/SFTA---Swartland-Firearm-Training-Academy---12.jpeg');
}

.hero-section-for-home._404 {
  background-image: linear-gradient(#000000b0, #000000b0), url('../images/SFTA-Sourced-2.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-content-div {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.target {
  position: absolute;
  top: 30.2px;
}

.target-1 {
  background-color: var(--white);
  width: 6px;
  height: 70px;
  position: absolute;
  inset: -17% auto auto;
  transform: rotate(0);
}

.target-2 {
  background-color: var(--white);
  width: 100px;
  height: 5px;
  position: absolute;
  inset: auto -15% auto auto;
}

.target-3 {
  background-color: var(--white);
  width: 6px;
  height: 97px;
  position: absolute;
  top: 723px;
  left: -1.016px;
  transform: rotate(0);
}

.target-3.hide {
  height: 70px;
  inset: auto auto -17%;
}

.target-4 {
  z-index: 999999999;
  background-color: var(--white);
  width: 100px;
  height: 5px;
  position: absolute;
  inset: auto auto auto -15%;
}

.menu-icon {
  margin-top: -4px;
}

.image-left-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.image-left-grid.right {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.image-left-grid.right.cape-hunt {
  grid-template-columns: 1fr 1fr;
}

.image-left-grid.bookings {
  grid-template-columns: 2fr 1.5fr;
  margin-top: 51px;
}

.image-left-grid.sfta {
  grid-template-columns: 1fr 1fr;
}

.sub-headings {
  background-image: linear-gradient(86deg, var(--sfta-red), white);
  color: var(--white);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 27px;
}

.sub-headings.grey {
  background-image: linear-gradient(86deg, var(--sfta-red), var(--grey) 82%);
}

.sub-headings.footer {
  background-image: linear-gradient(86deg, var(--white), transparent);
  justify-content: space-between;
  display: flex;
}

.sub-headings.password {
  width: 100%;
}

.sub-headings._404 {
  margin-bottom: 6px;
  padding-right: 27px;
}

.sfta-section {
  z-index: 2;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.sfta-section.grey {
  background-color: var(--grey);
}

.sfta-section.grey.space {
  margin-top: -10px;
}

.sfta-section.footer {
  background-image: linear-gradient(#000000a8, #000000a8), url('../images/SFTA-Sourced-2-Compressed.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  margin-top: -11px;
  padding-top: 81px;
  padding-bottom: 50px;
}

.heading {
  color: var(--sfta-black);
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
}

.heading.small-footer-note {
  color: var(--white);
  font-size: 18px;
}

.sfta-paragraph {
  padding-top: 16px;
  padding-left: 5px;
  padding-right: 5px;
}

.div-block-3 {
  width: 100%;
  height: 100%;
  position: relative;
  top: -16px;
  left: 16px;
}

.div-block-4 {
  background-color: var(--sfta-red);
  position: relative;
  top: 11px;
  left: -18px;
}

.div-block-4.right {
  background-color: var(--sfta-black);
  left: 0;
}

.div-block-4.left {
  background-color: var(--sfta-brown);
}

.heading-for-courses {
  text-align: center;
  margin-top: 75px;
  font-family: Myriadpro Bold, sans-serif;
  font-size: 30px;
}

.courses-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 51px;
  margin-bottom: 44px;
}

.course-blurb {
  border: 2px solid var(--sfta-brown);
  width: 100%;
  height: 150px;
  color: var(--sfta-black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  transition: all .4s;
  display: flex;
}

.course-blurb:hover {
  background-color: var(--sfta-brown);
  color: var(--white);
  letter-spacing: 1px;
}

.course-blurb.red {
  border-color: var(--sfta-red);
}

.course-blurb.red:hover {
  background-color: var(--sfta-red);
}

.course-blurb.black {
  border-color: var(--sfta-black);
}

.course-blurb.black:hover {
  background-color: var(--sfta-black);
}

.number {
  margin-bottom: 14px;
  font-family: Myriadpro Bold, sans-serif;
  font-size: 34px;
}

.title {
  text-align: center;
  font-family: Myriadpro Reg, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-5.password {
  margin-top: 0;
}

.div-block-5._404 {
  margin-top: 14px;
}

.quote {
  font-family: Myriadpro Italic, sans-serif;
}

.html-embed {
  margin-bottom: 0;
}

.footer-grid {
  grid-column-gap: 71px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
}

.footer-icon {
  border: 1px solid var(--white);
  width: 100%;
  height: 150px;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.footer-icon:hover {
  border-color: var(--sfta-black);
  background-color: var(--sfta-black);
  color: var(--white);
}

.footer-icon-heading {
  color: var(--white);
  font-family: Poppins, sans-serif;
}

.footer-copyright {
  color: #ffffff5e;
  text-align: center;
  justify-content: center;
  margin-top: 16px;
  display: flex;
}

.link {
  color: #fff6;
}

.div-block-6 {
  opacity: .31;
  background-image: url('../images/Footer-Graphics.png');
  background-position: 0 0;
  background-size: auto;
  height: 300px;
  margin-top: -179px;
  position: static;
  inset: auto 0% 0%;
}

.image-3 {
  position: relative;
  top: -65px;
}

.booking-form-div {
  margin-top: 12px;
}

.div-block-7 {
  opacity: .69;
  position: absolute;
  top: 1008.31px;
}

.bookings-container {
  margin-bottom: 0;
}

.utility-page-wrap {
  background-color: #eee;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.utility-page-wrap._404 {
  background-color: #fff;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 500px;
  display: flex;
}

.utility-page-content._404 {
  width: auto;
}

.utility-page-form {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px;
  display: flex;
  box-shadow: 1px 1px 8px #00000057;
}

.section-2 {
  width: 100%;
  height: 100vh;
}

.field-label {
  display: none;
}

.heading-2 {
  font-family: Poppins, sans-serif;
}

.password-protect-copy {
  margin-top: 22px;
  margin-bottom: 22px;
}

.text-field {
  font-family: Myriadpro Reg, sans-serif;
}

.submit-button-password-protect {
  border: 1px solid var(--sfta-red);
  background-color: var(--sfta-red);
  width: 100%;
  color: var(--white);
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Myriadpro Italic, sans-serif;
  font-size: 18px;
}

.submit-button-password-protect:hover {
  border: 1px solid var(--sfta-brown);
  background-color: var(--sfta-brown);
}

.preloader {
  z-index: 2147483647;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.div-block-8 {
  width: 15%;
}

.div-block-9 {
  display: none;
}

.back-to-top {
  background-color: #fff;
}

.c-faq-icon {
  background-color: var(--sfta-red);
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  margin-right: 6px;
  padding: 20px;
  position: relative;
}

.c-faq-q {
  background-image: linear-gradient(to bottom, var(--white), var(--white));
  color: var(--sfta-red);
  border: 0 solid #000;
  align-items: center;
  display: flex;
}

.c-content.cloneable {
  margin-top: 30px;
  padding-top: 20px;
}

.faq-a-text {
  font-size: 1em;
  line-height: 1.6em;
}

.c-faq-q-text {
  color: var(--white);
  flex: 1;
  align-items: center;
  padding: 20px;
  font-family: Myriadpro Bold, sans-serif;
  display: flex;
}

.faq-q-text {
  color: var(--sfta-black);
}

.c-faq-divider {
  background-color: #22222242;
  padding-left: 20px;
  padding-right: 20px;
}

.note {
  color: #aaa;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.6em;
}

.faq-stripe-1 {
  background-color: #fff;
  width: 2px;
  height: 100%;
}

.cloneable-area {
  min-height: 50vh;
}

.c-note {
  align-items: center;
  margin-bottom: 60px;
}

._w-faq-icon {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: relative;
}

.c-faq-a-text {
  padding: 20px;
}

.faq-divider {
  border-top: 1px dashed #ffffff40;
  height: 0;
}

.c-faq-a {
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  overflow: hidden;
}

.c-faq {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.word-highlight {
  color: #fff;
  font-weight: 400;
}

.c-faq-item {
  border-left: 3px solid var(--sfta-black);
  background-color: var(--white);
  cursor: pointer;
  margin-bottom: 41px;
  font-size: 1.2em;
  line-height: 1.6em;
}

.c-faq-item.bottom {
  margin-bottom: 0;
}

.faq-stripe-2 {
  background-color: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
}

.youtube-videos-grid {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 45px;
}

.number-for-enrollment {
  background-color: var(--sfta-black);
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 100vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
  font-size: 24px;
  display: flex;
}

.pricing-tabs {
  width: 30%;
  color: var(--sfta-black);
  text-align: center;
  background-color: #0000;
  border: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Myriadpro Light, sans-serif;
  font-size: 15px;
  transition: all .35s;
  display: flex;
}

.pricing-tabs:hover {
  background-color: var(--sfta-black);
  color: var(--white);
}

.pricing-tabs.w--current {
  background-color: var(--sfta-black);
  color: var(--white);
  font-family: Myriadpro Bold, sans-serif;
}

.tabs-menu {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.pricing-tabs-menu {
  margin-top: 36px;
}

.pricing-tabs-menu.old {
  display: none;
}

.pricing-tabs-content {
  border: 1px solid #000;
  margin-top: 0;
  padding-top: 29px;
  padding-bottom: 29px;
}

.pricing-grid {
  grid-column-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  margin-top: 42px;
}

.pricing-tabs-header {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 500;
}

.price-line-item {
  margin-left: 14px;
}

.actual-price {
  background-color: var(--sfta-brown);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  display: flex;
}

.price-description-with-icon {
  align-items: center;
  font-family: Myriadpro Reg, sans-serif;
  font-size: 16px;
  display: flex;
}

.mobile-nav-bar {
  display: none;
}

.container-4 {
  max-width: 950px;
}

.youtube-feed {
  margin-top: 25px;
}

.gun-trigger {
  border: 1px solid var(--sfta-red);
  background-color: #0000;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.trigger-this-text {
  color: var(--sfta-black);
  margin-left: 9px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-style: italic;
}

.paragraph {
  color: #fff;
  text-align: left;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}

.paragraph.smaller-p {
  backface-visibility: visible;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.heading-3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 30px;
}

.benefits-icon {
  width: 30%;
  height: 30%;
  margin-bottom: 30px;
}

.benefits-card-back-side {
  backface-visibility: hidden;
  background-color: #3d43bc;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: visible;
  transform: rotate(0);
}

.benefits-card-back-side._1 {
  background-color: var(--sfta-brown);
  transform-style: preserve-3d;
  border-radius: 0;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.benefits-card-back-side._2 {
  background-color: var(--sfta-red);
  transform-style: preserve-3d;
  border-radius: 0;
  display: flex;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.benefits-card-back-side._3 {
  background-color: var(--sfta-black);
  transform-style: preserve-3d;
  border-radius: 0;
  display: flex;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.benefits-new-group {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 90px 0 30px;
  display: flex;
  position: static;
  top: -754px;
}

.benefits-card-wrapper {
  backface-visibility: visible;
  perspective: 1200px;
  perspective-origin: 50%;
  width: auto;
  height: 300px;
}

.benefits-front-side {
  backface-visibility: hidden;
  background-color: #05c6e5;
  border-radius: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.benefits-front-side._1 {
  border: 2px solid var(--sfta-brown);
  background-color: var(--white);
  border-radius: 0;
  display: flex;
}

.benefits-front-side._2 {
  border: 2px solid var(--sfta-red);
  background-color: var(--white);
  border-radius: 0;
  display: flex;
}

.benefits-front-side._3 {
  background-color: var(--white);
  border: 2px solid #000;
  border-radius: 0;
  display: flex;
}

.div-card-group {
  perspective: 1200px;
  perspective-origin: 50%;
  margin-right: 0;
}

.div-card-group.no-margin-card {
  margin-right: 0;
}

.div-block-10 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.social-media-icon {
  background-image: url('../images/instagram-round-svgrepo-com.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
  margin-left: 36px;
}

.social-media-icon.sm {
  width: 60px;
  height: 60px;
}

.social-media-icons {
  background-image: url('../images/facebook-svgrepo-com.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
  display: flex;
}

.facebook-link-block {
  z-index: 2;
  background-image: url('../images/FB.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: flex;
}

.instagram-link-block {
  background-image: url('../images/insta.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  margin-left: 34px;
  display: flex;
}

.text-span, .bold-text {
  font-weight: 400;
}

.div-block-11 {
  margin-top: 35px;
}

.div-block-12 {
  line-height: 1;
}

.paragraph-2 {
  color: #ffffff8c;
  margin-top: -10px;
}

.paragraph-3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
}

.footer-note {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 25px;
}

.cc-notice {
  color: #555;
  background-color: #fff8f8;
  border-left: 4px solid #d83533;
  margin-bottom: 40px;
  padding: 16px 20px;
  font-size: .95em;
}

.cc-step {
  margin-bottom: 40px;
}

.cc-step-num {
  color: #fff;
  text-transform: none;
  vertical-align: middle;
  letter-spacing: 0;
  background-color: #d83533;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
}

.cc-checklist {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.cc-checklist-item {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.cc-checklist-item:before {
  color: #d83533;
  content: "✓";
  font-weight: 700;
  position: absolute;
  left: 0;
}

.cc-fee {
  color: #fff;
  background-color: #222;
  border-radius: 4px;
  margin: 6px 0;
  padding: 8px 16px;
  font-weight: 700;
  display: inline-block;
}

.cc-cta {
  text-align: center;
  margin-top: 20px;
}

.cc-cta-btn {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #d83533;
  border-radius: 4px;
  margin-top: 14px;
  padding: 12px 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.cc-li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.cc-heading {
  margin-bottom: 16px;
  font-size: 1.4em;
}

.image-5 {
  max-height: 100%;
}

.menu-container {
  background-color: #ffffff38;
  height: 100%;
}

.menu-container._2 {
  background-color: #0000;
}

@media screen and (min-width: 1440px) {
  .pop-out-menu {
    background-color: var(--sfta-black);
  }

  .navbar {
    background-color: #ffffff4f;
  }

  .container {
    background-color: #0000;
  }

  .paragraph-in-hero {
    width: 60%;
  }

  .button-block-primary.dark.spacing {
    margin-top: 29px;
  }

  .button-link {
    text-transform: uppercase;
  }

  .button-link.dark {
    color: var(--sfta-black);
  }

  .div-block-2 {
    position: absolute;
  }

  .hero-content-div {
    transition: all .45s;
  }

  .target-1 {
    top: -20%;
  }

  .target-3 {
    top: 847px;
  }

  .target-3.hide {
    bottom: -20%;
  }

  .image-left-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
  }

  .image-left-grid.right {
    grid-template-columns: 1.5fr 1fr;
  }

  .image-with-gradients {
    background-image: linear-gradient(to bottom, var(--sfta-red), var(--sfta-red));
    width: 100px;
    height: 100px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .sub-headings {
    background-image: linear-gradient(86deg, var(--sfta-red), white 88%);
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 27px;
    font-family: Poppins, sans-serif;
  }

  .sub-headings.grey {
    background-image: linear-gradient(86deg, var(--sfta-red), var(--grey) 88%);
    color: var(--sfta-red);
  }

  .sub-headings.footer {
    color: var(--sfta-black);
  }

  .sfta-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sfta-section.grey {
    background-color: var(--grey);
    color: var(--grey);
  }

  .heading {
    color: var(--sfta-black);
    font-family: Poppins, sans-serif;
  }

  .heading.footer, .heading.small-footer-note {
    color: var(--sfta-black);
  }

  .sfta-paragraph {
    color: var(--sfta-black);
    margin-left: 0;
    padding-top: 16px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .image-2 {
    margin-top: -24px;
    margin-left: 16px;
  }

  .image-in-front-of-shape {
    background-image: url('../images/SFTA---Swartland-Firearm-Training-Academy---12.jpeg');
    background-position: 50%;
    background-size: auto;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    padding-right: 0;
    position: relative;
  }

  .div-block-3 {
    background-image: url('../images/SFTA---Swartland-Firearm-Training-Academy---1.jpeg');
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    padding-right: 0;
    position: relative;
    top: -16px;
    bottom: 0;
    left: 16px;
  }

  .div-block-3.andre {
    background-image: url('../images/SFTA---Swartland-Firearm-Training-Academy---4.jpeg');
  }

  .div-block-4 {
    background-image: linear-gradient(to bottom, var(--sfta-red), var(--sfta-red));
    height: 100%;
    position: relative;
    top: 11px;
    left: -18px;
  }

  .div-block-4.right {
    background-image: linear-gradient(to bottom, var(--sfta-black), var(--sfta-black));
    left: 0;
  }

  .div-block-4.left {
    background-image: linear-gradient(to bottom, var(--sfta-brown), var(--sfta-brown));
  }

  .heading-for-courses {
    margin-top: 75px;
    margin-bottom: 0;
  }

  .bolded-heading {
    color: var(--sfta-black);
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
  }

  .courses-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 29px;
    margin-bottom: 44px;
  }

  .course-blurb {
    border: 2px solid var(--sfta-brown);
    width: 100%;
    height: 150px;
    color: var(--sfta-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    transition: all .4s ease-in;
    display: flex;
  }

  .course-blurb:hover {
    background-color: var(--sfta-brown);
    color: var(--white);
  }

  .course-blurb.red {
    border-color: var(--sfta-red);
  }

  .course-blurb.red:hover {
    background-color: var(--sfta-red);
  }

  .course-blurb.black {
    border-color: var(--sfta-black);
  }

  .course-blurb.black:hover {
    background-color: var(--sfta-black);
  }

  .number {
    margin-bottom: 14px;
    font-family: Myriadpro Bold, sans-serif;
    font-size: 34px;
  }

  .title {
    text-align: center;
    font-family: Myriadpro Reg, sans-serif;
    font-size: 20px;
    line-height: 26px;
  }

  .div-block-5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .quote {
    border-left: 0 solid #000;
    font-family: Myriadpro Bold, sans-serif;
    font-style: italic;
    font-weight: 400;
  }

  .booking-form-div {
    margin-top: 36px;
  }

  .div-block-7 {
    position: absolute;
    top: 1082.64px;
  }

  .bookings-container {
    margin-bottom: 53px;
  }

  .list-dark {
    color: var(--sfta-black);
  }

  .cc-li {
    color: #333;
  }

  .menu-container {
    background-color: #0000;
  }
}

@media screen and (min-width: 1920px) {
  .navbar {
    background-color: #ffffff59;
  }

  .container {
    background-color: #0000;
  }

  .paragraph-in-hero {
    margin-top: 17px;
  }

  .target {
    top: -83.8px;
    left: 989.2px;
  }

  .target-1 {
    top: -30%;
    transform: rotate(0);
  }

  .target-3 {
    top: 819px;
    left: -6px;
    transform: rotate(0);
  }

  .target-3.hide {
    bottom: -30%;
  }

  .sub-headings {
    background-image: linear-gradient(86deg, var(--sfta-red), white 88%);
  }

  .sfta-section.footer {
    padding-top: 93px;
  }

  .div-block-3 {
    background-image: url('../images/SFTA---Swartland-Firearm-Training-Academy---1.jpeg');
  }

  .heading-for-courses {
    font-size: 38px;
  }

  .bolded-heading {
    font-size: 30px;
  }

  .booking-form-div {
    margin-top: 11px;
  }

  .div-block-7 {
    opacity: .33;
    position: absolute;
    top: 1263.64px;
  }

  .bookings-container {
    margin-bottom: 51px;
  }

  .menu-container {
    background-color: #0000;
  }
}

@media screen and (max-width: 991px) {
  .div-block-2 {
    display: none;
  }

  .hero-content-div {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .target-3.hide {
    display: none;
  }

  .mobile-nav-bar {
    display: block;
  }

  .benefits-new-group {
    flex-direction: column;
  }

  .div-card-group {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .div-card-group.no-margin-card {
    margin-bottom: 0;
  }

  .footer-note {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .card-wrap {
    flex: 1;
  }

  .home-page-heading.black, .home-page-heading.red {
    font-size: 55px;
  }

  .hero-content-div {
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .image-left-grid {
    grid-template-columns: 1fr;
  }

  .image-left-grid.right {
    grid-template-columns: 1.5fr;
  }

  .image-left-grid.right.cape-hunt, .image-left-grid.sfta {
    grid-template-columns: 1fr;
  }

  .sfta-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .div-block-4 {
    width: 80%;
  }

  .pricing-tabs {
    font-size: 13px;
    line-height: 1.2em;
  }

  .paragraph {
    font-size: 16px;
    line-height: 32px;
  }

  .container-6 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 479px) {
  .navigation-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .pop-out-menu {
    display: none;
  }

  .navbar {
    height: auto;
    position: absolute;
    inset: 0%;
  }

  .nav-menu-2 {
    flex-direction: column;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    position: relative;
    inset: 0%;
  }

  .container._2 {
    position: relative;
  }

  .icons {
    display: none;
  }

  .nav-menu-block {
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-menu-block.w--current {
    height: auto;
  }

  .container-2 {
    height: 80%;
  }

  .home-page-heading.black, .home-page-heading.red {
    font-size: 26px;
    line-height: 1.2em;
  }

  .paragraph-in-hero {
    font-size: 16px;
  }

  .button-block-primary {
    font-size: 14px;
  }

  .button-link {
    font-size: 15px;
  }

  .div-block-2 {
    display: none;
  }

  .hero-section-for-home {
    width: 100%;
  }

  .hero-content-div {
    margin-top: 0;
  }

  .target {
    display: none;
  }

  .target-1 {
    display: none;
    top: 105px;
  }

  .target-2 {
    display: none;
  }

  .target-3 {
    top: 791px;
  }

  .target-4 {
    display: none;
  }

  .sub-headings.footer {
    background-image: linear-gradient(86deg, var(--white), #ffffff2b);
    flex-direction: column;
  }

  .sfta-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 49px;
    padding-bottom: 60px;
  }

  .sfta-section.grey {
    padding-bottom: 45px;
  }

  .heading {
    color: var(--sfta-black);
    font-size: 34px;
  }

  .heading.footer {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .heading.small-footer-note {
    width: 50%;
  }

  .heading.cc-heading {
    font-size: 1.4em;
    line-height: 1.2em;
  }

  .courses-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .bookings-container {
    max-width: 90%;
  }

  .back-to-top {
    margin-left: 32px;
    display: block;
  }

  .note {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  .pricing-tabs {
    width: 100%;
    margin-bottom: 20px;
  }

  .pricing-tabs.w--current {
    width: 100%;
  }

  .tabs-menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .pricing-grid {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .actual-price {
    width: 50%;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .price-description-with-icon {
    width: 100%;
  }

  .menu-button {
    color: var(--white);
    left: 105px;
  }

  .mobile-nav-bar {
    background-color: #ffffff9c;
    position: absolute;
    inset: 0% 0% auto;
  }

  .brand.w--current {
    background-image: none;
    position: absolute;
    inset: 18% auto auto 6%;
  }

  .container-3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-links {
    color: var(--sfta-black);
  }

  .nav-links:visited {
    color: var(--sfta-red);
  }

  .icon-2 {
    background-color: var(--sfta-black);
    color: var(--white);
  }

  .menu-button-2 {
    background-color: var(--sfta-black);
    top: -2px;
    right: 17px;
  }

  .menu-button-2.w--open {
    background-color: var(--sfta-black);
  }

  .gun-trigger {
    display: none;
  }

  .image-4 {
    display: block;
  }

  .paragraph {
    font-size: 15px;
    line-height: 32px;
  }

  .heading-3 {
    font-size: 25px;
    line-height: 35px;
  }

  .benefits-card-wrapper {
    width: 300px;
  }

  .div-block-10 {
    flex-direction: row;
    align-items: flex-start;
  }

  .instagram-link-block {
    margin-left: 0;
  }

  .paragraph-2, .footer-note {
    text-align: center;
  }

  .container-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-container._2 {
    position: relative;
  }
}

#w-node-_2189e80d-e1bd-18ca-a956-d092206f5175-206f5171, #w-node-_2189e80d-e1bd-18ca-a956-d092206f5176-206f5171, #w-node-_50fffc7e-cfeb-5ccc-75c6-394666118265-8bb2055a, #w-node-ad9c594f-5afe-7102-709d-c59df0ee1870-8bb2055a, #w-node-_837870f5-17d7-7405-8661-0d1ec84e4320-8bb2055a, #w-node-dc32b4cd-83ba-3681-d8a6-8a035945101a-8bb2055a, #w-node-_3acaa158-b066-28e7-e14b-844b2ffa54a8-8bb2055a, #w-node-_8336ecbf-e1e5-1991-1595-477785cc9670-8bb2055a, #w-node-_849a84d7-0396-f8b9-9f03-578edfb60a6b-8bb2055a, #w-node-_19014629-4edc-44a2-cb69-3a640dcd664a-8bb2055a, #w-node-_7ce124dc-e809-4a7d-9329-970f8941f8d7-8bb2055a, #w-node-b6c8baca-9a09-1671-be3e-ab95fef6b678-8bb2055a, #w-node-e3280715-dcf2-c32c-86f8-b9f23498a868-8bb2055a, #w-node-_098306af-4e69-8b0d-b6df-ee3ea2364cd1-8bb2055a, #w-node-_42106ac9-5225-b6c2-4993-25e450b392bf-8bb2055a, #w-node-_42106ac9-5225-b6c2-4993-25e450b392c1-8bb2055a, #w-node-_42106ac9-5225-b6c2-4993-25e450b392c3-8bb2055a, #w-node-_759fbe54-58e6-43a0-1919-3d40248f81b4-8bb2055a, #w-node-_759fbe54-58e6-43a0-1919-3d40248f81b6-8bb2055a, #w-node-_461cc32b-811b-b72e-ee16-efd422709758-8bb2055a, #w-node-_3bad0a0c-158c-eff3-9832-aa5e55130465-8bb2055a, #w-node-_3bad0a0c-158c-eff3-9832-aa5e55130467-8bb2055a, #w-node-a382faf0-23a0-f8d0-abd9-53bfabc6540f-8bb2055a, #w-node-_7eb85620-a13e-9322-df37-7bd443fd6123-8bb2055a, #w-node-_7eb85620-a13e-9322-df37-7bd443fd6125-8bb2055a, #w-node-_4e049f4b-97bd-a1b8-ac18-c20a1196b794-8bb2055a, #w-node-_2706fcc2-98fb-f3a8-fe96-0240f332a57b-8bb2055a, #w-node-_2706fcc2-98fb-f3a8-fe96-0240f332a57d-8bb2055a, #w-node-aae30b82-868a-2f79-d304-66026142dbde-8bb2055a, #w-node-_623c6f2b-e551-4a23-7c94-a4ffdc600051-8bb2055a, #w-node-_623c6f2b-e551-4a23-7c94-a4ffdc600053-8bb2055a, #w-node-_623c6f2b-e551-4a23-7c94-a4ffdc600055-8bb2055a, #w-node-_623c6f2b-e551-4a23-7c94-a4ffdc60005d-8bb2055a, #w-node-_623c6f2b-e551-4a23-7c94-a4ffdc60005f-8bb2055a, #w-node-_623c6f2b-e551-4a23-7c94-a4ffdc600061-8bb2055a, #w-node-_6ab85a8a-250a-e3fc-3382-2f800d08d773-8bb2055a, #w-node-_6ab85a8a-250a-e3fc-3382-2f800d08d775-8bb2055a, #w-node-_13c3494c-7bfe-4889-8dc1-c01b1b59c50a-8bb2055a, #w-node-fc97b4a7-47db-6397-6ab2-8f3b3f97d87b-8bb2055a, #w-node-fc97b4a7-47db-6397-6ab2-8f3b3f97d87d-8bb2055a, #w-node-cefc77e5-c969-ee44-5753-e9b5965b96ce-8bb2055a, #w-node-dca091c8-4610-627d-5834-5f052ee1e6a4-8bb2055a, #w-node-dca091c8-4610-627d-5834-5f052ee1e6a6-8bb2055a, #w-node-dca091c8-4610-627d-5834-5f052ee1e6a8-8bb2055a, #w-node-f7a60783-1534-70a8-cda0-3abe7d4e2a55-8bb2055a, #w-node-f7a60783-1534-70a8-cda0-3abe7d4e2a57-8bb2055a, #w-node-f7a60783-1534-70a8-cda0-3abe7d4e2a59-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c1fb-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c1fd-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c1ff-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c201-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c203-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c205-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c207-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c209-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c20b-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c20d-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c20f-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c211-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c213-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c215-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c217-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c219-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c21b-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c21d-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c223-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c225-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c227-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c22f-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c231-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c233-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c235-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c237-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c239-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c23f-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c241-8bb2055a, #w-node-a6623203-85f9-1c9d-430c-28db5f62c243-8bb2055a, #w-node-a2389e0f-5a2e-0bbb-f681-425f9919f0c6-0bb20557 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_25efc285-5c1d-6084-77c7-ea880880d13a-4ab20554, #w-node-_96935c61-d073-d2af-290b-24ead958aae0-4ab20554, #w-node-_2d71e499-476a-a8b0-4db4-93661c089805-4ab20554, #w-node-_2d71e499-476a-a8b0-4db4-93661c089803-4ab20554, #w-node-_5cc268d2-3600-3958-da8c-da0cf6f4eb9c-8bb2055a, #w-node-_96935c61-d073-d2af-290b-24ead958aae0-e1b20559, #w-node-_2d71e499-476a-a8b0-4db4-93661c089805-e1b20559, #w-node-_2d71e499-476a-a8b0-4db4-93661c089803-e1b20559, #w-node-b9092ea6-d78b-c3e5-3f32-93aaa987c111-e1b20559, #w-node-b9092ea6-d78b-c3e5-3f32-93aaa987c113-e1b20559, #w-node-_25efc285-5c1d-6084-77c7-ea880880d13a-00b20558, #w-node-_96935c61-d073-d2af-290b-24ead958aae0-00b20558, #w-node-_2d71e499-476a-a8b0-4db4-93661c089805-00b20558, #w-node-_2d71e499-476a-a8b0-4db4-93661c089803-00b20558, #w-node-_1f7ef3e6-bb32-87a2-c205-6f61ced480df-00b20558, #w-node-_47db6e3d-5757-d633-54b6-2462be7a1b7a-00b20558, #w-node-_47db6e3d-5757-d633-54b6-2462be7a1b7c-00b20558 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_25efc285-5c1d-6084-77c7-ea880880d13a-4ab20554 {
    justify-self: center;
  }

  #w-node-_96935c61-d073-d2af-290b-24ead958aae0-4ab20554 {
    order: -9999;
  }

  #w-node-_2d71e499-476a-a8b0-4db4-93661c089803-4ab20554, #w-node-_2d71e499-476a-a8b0-4db4-93661c089803-e1b20559, #w-node-b9092ea6-d78b-c3e5-3f32-93aaa987c111-e1b20559 {
    justify-self: center;
  }

  #w-node-b9092ea6-d78b-c3e5-3f32-93aaa987c113-e1b20559 {
    order: -9999;
  }

  #w-node-_25efc285-5c1d-6084-77c7-ea880880d13a-00b20558 {
    justify-self: center;
  }

  #w-node-_96935c61-d073-d2af-290b-24ead958aae0-00b20558 {
    order: -9999;
  }

  #w-node-_2d71e499-476a-a8b0-4db4-93661c089803-00b20558, #w-node-_47db6e3d-5757-d633-54b6-2462be7a1b7a-00b20558 {
    justify-self: center;
  }

  #w-node-_47db6e3d-5757-d633-54b6-2462be7a1b7c-00b20558 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Myriadpro Bold';
  src: url('../fonts/MYRIADPRO-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Myriadpro Italic';
  src: url('../fonts/MYRIADPRO-BOLDIT.OTF') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Myriadpro Reg';
  src: url('../fonts/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Myriadpro Semi Bold';
  src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Myriadpro Light';
  src: url('../fonts/MyriadPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}