.header {
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#303b40), to(rgba(48, 59, 64, 0)));
  background: transparent linear-gradient(180deg, #303b40 0%, rgba(48, 59, 64, 0) 100%);
  color: #fff;
  font-size: 0.875rem;
  height: 120px;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transition: background-color 0.15s ease, color 0.3s ease;
  transition: background-color 0.15s ease, color 0.3s ease;
  width: 100%;
  z-index: 100;
}
@media (min-width: 1400px) {
  .header {
    font-size: 1rem;
  }
}
.header > .container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .nav-link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: currentColor;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  line-height: 1.125rem;
  padding: 8px;
}
@media (min-width: 1400px) {
  .header .nav-link {
    padding: 8px 10px;
  }
}
.header .nav-link .icon {
  margin-left: 3px;
}
.header-brand {
  background: url(../images/supremo-secil-cimentos-logo-dark.svg) no-repeat center;
  background-size: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (min-width: 1200px) {
  .header-brand {
    margin-right: 16px;
  }
}
@media (min-width: 1400px) {
  .header-brand {
    margin-right: 24px;
  }
}
.header-brand > img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1200px) {
  .header-brand > img {
    height: 43px;
    width: 50px;
  }
}
@media (min-width: 1400px) {
  .header-brand > img {
    height: 82px;
    width: 96px;
  }
}
.header-brand-secil {
  background: url(../images/secil-logo-dark.svg) no-repeat center;
  background-size: cover;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 8px;
}
@media (min-width: 1200px) {
  .header-brand-secil {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.header-brand-secil > img {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 1200px) {
  .header-brand-secil > img {
    height: 32px;
    width: 34px;
  }
}
@media (min-width: 1400px) {
  .header-brand-secil > img {
    height: 42px;
    width: 44px;
  }
}
.header-toggle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 48px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: -6px;
  padding: 6px;
  position: relative;
  width: 48px;
}
.header-toggle > span {
  position: relative;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 36px;
}
.header-toggle:not(.collapsed) > span {
  background-color: #fdc300;
  height: 3px;
  position: absolute;
  top: 23px;
}
.header-toggle:not(.collapsed) > span:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-toggle:not(.collapsed) > span:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-toggle.collapsed > span {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-toggle.collapsed > span::after, .header-toggle.collapsed > span::before {
  border: 3px solid #fdc300;
  border-radius: 4px;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}
@media (min-width: 1200px) {
  .header-toggle {
    display: none;
  }
}
.header-nav {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}
@media (max-width: 1199px) {
  .header-nav {
    background-color: #fff;
    color: #303b40;
    font-size: 18px;
    height: calc(100vh - 120px);
    left: 0;
    line-height: 1.22223;
    overflow: auto;
    padding-bottom: 24px;
    padding-top: 24px;
    position: absolute;
    top: 120px;
    width: 100%;
  }
  .header-nav .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .header-nav .nav-item, .header-nav .nav-link {
    width: 100%;
  }
  .header-nav .nav-link {
    padding: 14px;
    text-align: center;
  }
  .header-nav:not(.show) {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.scrolled:not(.nav-open) .header {
  background: #fff;
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(48, 59, 64, 0.15);
          box-shadow: inset 0 -1px 0 0 rgba(48, 59, 64, 0.15);
  color: #303b40;
}
.scrolled:not(.nav-open) .header-brand > img {
  opacity: 0;
}
.scrolled:not(.nav-open) .header-brand-secil > img {
  opacity: 0;
}

.page-template-blog:not(.nav-open) .header {
  background: #fff;
  color: #303b40;
}
.page-template-blog:not(.nav-open) .header-brand > img {
  opacity: 0;
}
.page-template-blog:not(.nav-open) .header-brand-secil > img {
  opacity: 0;
}

.single-post:not(.nav-open) .header {
  background: #fff;
  color: #303b40;
}
.single-post:not(.nav-open) .header-brand > img {
  opacity: 0;
}
.single-post:not(.nav-open) .header-brand-secil > img {
  opacity: 0;
}

.single-product:not(.nav-open) .header {
  background: #fff;
  color: #303b40;
}
.single-product:not(.nav-open) .header-brand > img {
  opacity: 0;
}
.single-product:not(.nav-open) .header-brand-secil > img {
  opacity: 0;
}

.nav-open .header {
  background-color: #303b40;
}
@media (min-width: 1200px) {
  .nav-open .header {
    background: #fff;
    color: #303b40;
  }
  .nav-open .header-brand > img {
    opacity: 0;
  }
  .nav-open .header-brand-secil > img {
    opacity: 0;
  }
}

@media (max-width: 1199px) {
  .has-subnav.open > .nav-link {
    background-color: #fdc300;
  }
  .has-subnav.open > .nav-link .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .has-subnav.open > .nav-subnav {
    background-color: #495057;
    color: #f8f9fa;
  }
}
@media (min-width: 1200px) {
  .has-subnav:hover > .nav-link .icon {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

.nav {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.nav-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .nav-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
  }
}
.nav-link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1200px) {
  .nav-link .icon {
    height: 16px;
    width: 16px;
  }
}
.nav-subnav {
  display: none;
  padding-bottom: 24px;
  padding-top: 24px;
  width: 100%;
}
@media (max-width: 1199px) {
  .nav-subnav > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1200px) {
  .nav-subnav > .container .nav {
    display: grid;
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    gap: 16px 64px;
  }
}
@media (min-width: 1200px) {
  .nav-subnav {
    background-color: #f8f9fa;
    border-bottom: 7px solid #fdc300;
    color: #303b40;
    left: 0;
    min-height: 200px;
    padding-bottom: 40px;
    padding-top: 40px;
    position: absolute;
    top: 100%;
  }
}
@media (min-width: 1200px) {
  .nav-subnav::before {
    background-color: #fdc300;
    content: "";
    display: block;
    height: 8px;
    left: 50%;
    position: absolute;
    top: -4px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 52%;
  }
}
@media (max-width: 1199px) {
  .has-subnav.open .nav-subnav {
    display: block;
  }
}

@media (min-width: 1200px) {
  .has-subnav:hover .nav-subnav {
    display: block;
  }
}

.footer {
  background-color: #303b40;
  border-top: 30px solid #fdc300;
  color: #fff;
  font-size: 1rem;
  padding-top: 40px;
}
@media (min-width: 992px) {
  .footer {
    padding-top: 60px;
  }
}
.footer a {
  color: currentColor;
}
@media (max-width: 991px) {
  .footer .nav-item {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer .nav-link {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
@media (min-width: 992px) {
  .footer .nav-link {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
}
.footer-brand > img {
  margin: 0 auto 40px;
}
@media (min-width: 992px) {
  .footer-brand > img {
    margin-bottom: 0;
  }
}
.footer-nav {
  list-style: none;
  margin-bottom: 0.5rem;
  margin-top: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .footer-nav {
    margin-bottom: 0;
    margin-top: 1rem;
  }
}
.footer-contact {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #fdc300;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 56px;
  padding-bottom: 46px;
  padding-top: 46px;
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 128px;
    padding-bottom: 60px;
    padding-top: 72px;
  }
}
.footer-contact::before {
  background-color: #303b40;
  content: "Contato";
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  left: 50%;
  padding: 0 38px;
  position: absolute;
  top: -12px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer-contact p {
  margin-bottom: 14px;
}
.footer-contact .btn {
  color: #fdc300;
}
.footer-contact .link-units {
  color: #fdc300;
  display: block;
  font-weight: bold;
}
.footer-contact .link-units::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto 14px;
  width: 92px;
  opacity: 0.1;
}
.footer-contact .d-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer-copyright {
  background-color: #1a252b;
  padding-bottom: 18px;
  padding-top: 18px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.footer-copyright > .container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .footer-copyright > .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.footer-copyright .d-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  background-repeat: no-repeat;
  border: 1px solid transparent;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 6px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 24px;
  padding: 9px 23px;
  position: relative;
  text-align: center;
  -webkit-transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  z-index: 0;
}
a.btn:hover {
  text-decoration: none;
}

.btn .icon {
  fill: currentColor;
  vertical-align: bottom;
}
.btn.disabled, .btn:disabled {
  pointer-events: none;
}
.btn-arrow::after {
  border: 8px solid transparent;
  border-left-width: 12px;
  border-left-color: currentColor;
  border-right: none;
  content: "";
  display: block;
  margin-left: 8px;
}
.btn-arrow:hover::after {
  border-left-color: currentColor;
}
.btn-primary {
  background-color: #fdc300;
  border-color: #fdc300;
  color: #303b40;
  text-transform: uppercase;
}
.btn-primary:hover {
  background-color: #c39e0e;
  border-color: #c39e0e;
}
.btn-primary:active {
  background-color: #fdc300;
  border-color: #fdc300;
}
.btn-secondary {
  background-color: transparent;
  border-color: #303b40;
  color: #303b40;
}
.btn-secondary:hover {
  background-color: #303b40;
  color: #fff;
}
.btn-secondary:active {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}
.btn-info {
  color: #303b40;
  text-transform: uppercase;
}
.btn-info:hover {
  color: #1a2124;
}
.btn-info:active {
  color: #303b40;
}
.btn-transparent {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-color: #fdc300;
  color: #fdc300;
}
.btn-transparent:hover {
  background: rgba(26, 33, 36, 0.3);
}
.btn-transparent:active {
  background-color: rgba(255, 255, 255, 0.2);
}
.btn-dark {
  background-color: #303b40;
  color: #fdc300;
}
.btn-dark:hover {
  background-color: #1a2124;
}
.btn-dark:active {
  background-color: #303b40;
}
.btn-outline-primary {
  border-color: #fdc300;
  color: #fdc300;
}
.btn-outline-primary:hover {
  background-color: #1a2124;
}
.btn-outline-primary:active {
  background-color: #303b40;
}
.btn-outline-dark {
  border-color: #303b40;
  color: #303b40;
}
.btn-back {
  color: #fdc300;
  font-weight: normal;
  font-size: 12px;
  padding: 5px 0;
}
@media (max-width: 991px) {
  .btn-back {
    width: auto;
  }
}
.btn-back::before {
  border: 5px solid transparent;
  border-right-width: 8px;
  border-right-color: currentColor;
  border-left: none;
  content: "";
  display: block;
  margin-right: 2px;
}

.link {
  text-decoration: underline;
}
.link::after {
  display: none;
}
.link.bold {
  font-weight: 700;
}
.link-primary {
  color: #fdc300;
}
.link-dark {
  color: #303b40;
}

.slick-arrow {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #303b40;
  border: 1px solid #adb5bd;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  position: absolute;
  top: 50%;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  width: 30px;
  z-index: 1;
}
.slick-dots {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 24px 0 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .slick-dots {
    margin-top: 60px;
  }
}
.slick-dots button {
  background: none;
  border: none;
  display: block;
  font-size: 0;
  padding: 4px;
}
.slick-dots button::before {
  background-color: #dde3e3;
  border-radius: 6px;
  content: "";
  display: block;
  height: 12px;
  -webkit-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
  width: 12px;
}
.slick-dots .slick-active button::before {
  background-color: #4d2450;
}
.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slick-slide {
  height: inherit;
}
.slick-slide > div {
  height: 100%;
}
.slick-disabled {
  pointer-events: none;
}
.slick-controls {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
}
.slick-controls:empty {
  display: none;
}
@media (min-width: 992px) {
  .slick-controls {
    gap: 1.5rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
  }
}

.hero {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2b3d47;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 542px;
  line-height: 1.4;
  margin-bottom: 90px;
  padding: 120px 0 0;
  position: relative;
  text-align: center;
  z-index: 0;
}
@media (min-width: 992px) {
  .hero {
    font-size: 20px;
    height: 695px;
    margin-bottom: 114px;
    padding: 38px 0;
    text-align: left;
  }
}
.hero > .container {
  width: 100%;
}
@media (max-width: 991px) {
  .hero .w-line::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 992px) {
  .hero .h1 {
    margin-bottom: 0.5rem;
  }
}
.hero::before {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.hero-content {
  max-width: 500px;
}
.hero .video-bg,
.hero .wp-post-image {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.hero .video-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero .video-bg.loaded {
  opacity: 0.5;
}
.hero .wp-post-image {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero:after {
  background: url("../images/ball.webp") 0 0 repeat;
  bottom: -68px;
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 208px;
  margin: 0 0 0 116px;
  position: absolute;
  right: 0;
  width: 469px;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero:after {
    height: 134px;
    margin: 0 0 0 16px;
    width: 201px;
  }
}
@media (min-width: 768px) {
  .hero:after {
    left: 50%;
    right: auto;
  }
}
.hero:has(.video-bg.loaded) .wp-post-image {
  opacity: 0;
}

.section {
  padding: 20px 0;
}
@media (min-width: 992px) {
  .section {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media (min-width: 1400px) {
  .section {
    font-size: 18px;
  }
}
.section-title {
  margin-bottom: 40px;
}
.section ul.flex {
  list-style: none;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem;
  padding-left: 0;
}
.section ul.flex > li {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 992px) {
  .section ul.flex > li {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.section ul.flex .btn {
  width: 100%;
}
@media (min-width: 992px) {
  .section ul.flex .btn {
    width: auto;
  }
}

.section-default {
  overflow: hidden;
}
.section-default .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .section-default .col-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.section-default .wp-post-image {
  margin-bottom: 24px;
  max-width: none;
  position: relative;
}
@media (max-width: 991px) {
  .section-default .wp-post-image {
    margin-left: -1.25rem;
  }
}
@media (min-width: 992px) {
  .section-default .wp-post-image {
    margin-bottom: 0;
    width: 720px;
  }
}
@media (min-width: 992px) {
  .section-default:nth-of-type(odd) .col-img {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .section-default:nth-of-type(odd) .section-content {
    margin-left: 53px;
  }
}
@media (min-width: 992px) {
  .section-default:nth-of-type(even) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .section-default:nth-of-type(even) .section-content {
    margin-right: 53px;
  }
}

@media (max-width: 991px) {
  .section-content .btn {
    width: 100%;
  }
}
.section-content *:last-child {
  margin-bottom: 0;
}

.page-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .page-title {
    font-size: 80px;
    font-weight: 300;
  }
}
.page-content {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .page-content {
    padding-bottom: 100px;
  }
}
.page-content .alignnone {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .page-content .alignnone {
    margin-top: 80px;
  }
}
.page-content *:last-child {
  margin-bottom: 0;
}

.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

.wp-video {
  max-width: 100%;
}

.wp-video-shortcode {
  height: auto;
  max-width: 100%;
}

.card {
  line-height: 1.375;
  overflow: hidden;
  position: relative;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  z-index: 0;
}
.card a {
  color: currentColor;
}
.card-primary {
  background-color: #fdc300;
}
.card-dark {
  background-color: #303b40;
  color: #fff;
}
.card-body {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 20px;
}
@media (max-width: 991px) {
  .card-body {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .card-body {
    padding: 32px;
  }
}
.card-text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 24px;
}
.card-text *:last-child {
  margin-bottom: 0;
}
.card-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 992px) {
  .card-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.card-bg {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: -2;
}
.card-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .card-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .card-list .card {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 1%;
  }
}
@media (min-width: 992px) {
  .card-list.animation .card:not(:first-child), .card-list.animation:hover .card {
    width: 25%;
  }
}
.card-list.animation:not(:hover) .card:first-child {
  color: #fff;
}
.card-list.animation:not(:hover) .card:first-child::before {
  opacity: 1;
}
@media (min-width: 992px) {
  .card-list.animation:not(:hover) .card:first-child {
    width: 50% !important;
  }
}
@media (max-width: 991px) {
  .card-list.animation:not(:hover) .card:first-child .card-text {
    display: block;
  }
}
@media (min-width: 992px) {
  .card-list.animation:not(:hover) .card:first-child .card-text {
    opacity: 1;
  }
}
.card-list.animation:not(:hover) .card:first-child .card-btns > .btn {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.card-list.animation:not(:hover) .card:first-child .card-btns > .link {
  display: none;
}
.card-list.animation:not(:hover) .card:first-child .card-bg {
  opacity: 1;
}
.card-list.animation .card::before {
  background: linear-gradient(262.67deg, rgba(48, 59, 64, 0) 1.61%, #303b40 96.49%), linear-gradient(0deg, rgba(48, 59, 64, 0.6), rgba(48, 59, 64, 0.6));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: -1;
}
@media (min-width: 992px) {
  .card-list.animation .card {
    height: 290px;
  }
}
.card-list.animation .card-body {
  min-height: 150px;
}
@media (max-width: 991px) {
  .card-list.animation .card-text {
    display: none;
  }
}
@media (min-width: 992px) {
  .card-list.animation .card-text {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
    width: 375px;
  }
}
.card-list.animation .card:not(:hover) .card-btns > .btn {
  display: none;
}
.card-list.animation .card:hover {
  color: #fff;
}
.card-list.animation .card:hover::before {
  opacity: 1;
}
@media (min-width: 992px) {
  .card-list.animation .card:hover {
    width: 50% !important;
  }
}
@media (max-width: 991px) {
  .card-list.animation .card:hover .card-text {
    display: block;
  }
}
@media (min-width: 992px) {
  .card-list.animation .card:hover .card-text {
    opacity: 1;
  }
}
.card-list.animation .card:hover .card-btns > .link {
  display: none;
}
.card-list.animation .card:hover .card-bg {
  opacity: 1;
}
.card-list.animation .btn-primary {
  color: #303b40;
}

.tabs {
  display: none;
}
@media (min-width: 992px) {
  .tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    font-weight: 700;
  }
  .tabs .icon {
    fill: currentColor;
    margin-top: 8px;
  }
}
.tabs > .tab {
  padding: 18px 32px;
}
@media (min-width: 992px) {
  .tabs > .tab {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #303b40;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 13px 20px;
    -webkit-transition: background-color 0.15s ease, color 0.15s ease;
    transition: background-color 0.15s ease, color 0.15s ease;
    text-align: center;
    width: 1%;
  }
  .tabs > .tab:hover, .tabs > .tab.active {
    background-color: #fdc300;
    color: #373e42;
  }
}
.tabs .tab-title {
  display: block;
  font-size: 12px;
  margin-top: 0.5rem;
}
.tabs-content {
  width: 100%;
}
.tabs-content .card-text h3,
.tabs-content .card-text h4,
.tabs-content .card-text h5,
.tabs-content .card-text h6,
.tabs-content .card-text p,
.tabs-content .card-text ul,
.tabs-content .card-text ol {
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .tabs-content .card-text h3,
  .tabs-content .card-text h4,
  .tabs-content .card-text h5,
  .tabs-content .card-text h6,
  .tabs-content .card-text p,
  .tabs-content .card-text ul,
  .tabs-content .card-text ol {
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .tabs-content .icon {
    fill: currentColor;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 46px;
        -ms-flex: 0 0 46px;
            flex: 0 0 46px;
  }
  .tabs-content .h3 {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-size: 16px 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    padding: 18px 58px 18px 20px;
    position: relative;
    width: 100%;
  }
  .tabs-content .h3::after {
    background: url(../images/sprite.svg#tab-arrow) no-repeat center;
    background-size: cover;
    content: "";
    display: block;
    height: 24px;
    position: absolute;
    right: 24px;
    width: 24px;
  }
  .tabs-content .tab-pane {
    background: #303b40;
    border-bottom: 1px solid #fdc300;
    color: #fff;
    padding: 0;
  }
  .tabs-content .tab-pane.show .h3::after {
    -webkit-transform: rotateZ(180deg);
        -ms-transform: rotate(180deg);
            transform: rotateZ(180deg);
  }
  .tabs-content .tab-pane.show .card-text {
    display: block;
  }
  .tabs-content .card-text {
    background-color: #fff;
    color: #303b40;
    display: none;
    margin: 0 24px 24px;
    padding: 20px;
  }
}
@media (min-width: 992px) {
  .tabs-content > div:not(.show) {
    display: none;
  }
  .tabs-content .h3 {
    display: none;
  }
  .tabs-content .tab-pane {
    background-color: #fdc300;
    padding: 40px;
  }
}

.tabs-transparent .tabs-content .tab-pane {
  background-color: transparent;
}
@media (max-width: 991px) {
  .tabs-transparent .tabs-content .tab-pane.show .h3 {
    background-color: #fdc300;
    color: #303b40;
  }
  .tabs-transparent .tabs-content .tab-pane.show .h3::after {
    background-image: url(../images/sprite.svg#tab-arrow-dark);
  }
}
@media (max-width: 991px) {
  .tabs-transparent .tabs-content .h3 {
    background-color: #303b40;
  }
}
@media (max-width: 991px) {
  .tabs-transparent .card-text {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.tabs-transparent .card-text.flex {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
}
.tabs-transparent .card-text ul {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .tabs-transparent .card-text img {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .tabs-transparent .card-text img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 418px;
  }
}

.dropdown {
  border: 1px solid #373e42;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
  width: 100%;
}
.dropdown.show {
  background-color: rgba(255, 255, 255, 0.6);
  color: #424242;
}
.dropdown.show .dropdown-btn::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.dropdown.show .dropdown-collapse {
  grid-template-rows: 1fr;
}
.dropdown-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
.dropdown-btn {
  cursor: pointer;
  padding: 21px 20px;
  position: relative;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
}
.dropdown-btn::after {
  content: "";
  background: url(../images/sprite.svg#dropdown-arrow) no-repeat right center;
  background-size: cover;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
}
.dropdown-search {
  display: none;
}
.dropdown-collapse {
  -webkit-box-shadow: inset 0 1px 0 0 #373e42;
          box-shadow: inset 0 1px 0 0 #373e42;
  font-weight: normal;
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
}
.dropdown-menu {
  overflow: hidden;
}
.dropdown-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  padding: 22px 20px;
  text-decoration: none;
  -webkit-transition: background 0.15s ease;
  transition: background 0.15s ease;
}
.dropdown-item .icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.dropdown-item:hover {
  background-color: #fff;
}
.dropdown .wpcf7-form-control-wrap {
  display: block;
}
.dropdown .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.dropdown .wpcf7-list-item > label {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 22px 20px;
}
.dropdown .wpcf7-list-item input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #373e42;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20px;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  margin-right: 16px;
  width: 20px;
}
.dropdown .wpcf7-list-item input:checked {
  background-color: #373e42;
  -webkit-box-shadow: inset 0 0 0 4px #fff;
          box-shadow: inset 0 0 0 4px #fff;
}
.dropdown-secondary {
  background-color: #373E42;
  border: none;
  color: #F8F9FA;
}
.dropdown-secondary .dropdown-btn::after {
  background-image: url(../images/sprite.svg#dropdown-arrow-light);
}
.dropdown-secondary .dropdown-menu {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.dropdown-secondary .dropdown-item {
  color: #303B40;
  padding-bottom: 12px;
  padding-top: 12px;
}
.dropdown-secondary.show {
  background-color: #373E42;
  color: #FDC300;
}
.dropdown-secondary.show .dropdown-btn::after {
  background-image: url(../images/sprite.svg#dropdown-arrow-yellow);
}
.dropdown-secondary.show .dropdown-menu {
  background-color: #DEE2E6;
  padding-bottom: 12px;
  padding-top: 12px;
}
.dropdown-sm .dropdown-btn {
  padding-bottom: 14px;
  padding-top: 14px;
}

.form-control {
  background: #fff;
  border: 1px solid #303b40;
  color: #6c757d;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 11px 12px;
  width: 100%;
}

.modal {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  background-color: rgba(253, 195, 0, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  overflow-y: auto;
  position: fixed;
  padding: 1.25rem;
  top: 0;
  -webkit-transition: opacity 0.3s ease, display 0.3s ease allow-discrete;
  transition: opacity 0.3s ease, display 0.3s ease allow-discrete;
  z-index: 1000;
  width: 100vw;
}
@media (min-width: 992px) {
  .modal {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
body.modal-open {
  overflow: hidden;
}

.modal:not(.show) {
  display: none;
  opacity: 0;
}
.modal.show {
  opacity: 1;
}
.modal.show .modal-dialog {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.modal-close {
  background: none;
  border: none;
  color: #fdc300;
  height: 40px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  z-index: 1;
}
@media (min-width: 992px) {
  .modal-close {
    height: 48px;
    width: 48px;
  }
}
.modal-close > .icon {
  height: 18px;
  width: 18px;
}
@media (min-width: 992px) {
  .modal-close > .icon {
    height: 24px;
    width: 24px;
  }
}
@media (min-width: 992px) {
  .modal-close {
    right: 80px;
    top: 68px;
  }
}
.modal-dialog {
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
  width: 100%;
}
@media (min-width: 992px) {
  .modal-dialog {
    max-width: 710px;
  }
}
.modal-content {
  background-color: #fff;
  padding: 40px 20px 20px;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .modal-content {
    padding: 80px 144px;
  }
}
.modal-content li + li {
  margin-top: 5px;
}
.modal-content *:last-child {
  margin-bottom: 0;
}
.modal-title {
  margin-bottom: 20px;
  position: relative;
}
.modal-title > .icon {
  margin-right: 10px;
}
@media (min-width: 992px) {
  .modal-title > .icon {
    margin-right: 0;
    position: absolute;
    -webkit-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    top: 50%;
    left: -30px;
  }
}

@starting-style {
  .modal.show {
    opacity: 0;
  }
  .modal.show .modal-dialog {
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 1;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: bold;
  line-height: 1.2;
}

h4 {
  font-size: 1.275rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: #fff3cd;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #adb5bd;
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: rgba(173, 181, 189, 0.75);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

body {
  color: #303b40;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-variation-settings: "wdth" 100;
  line-height: 1.5;
}
@media (min-width: 1400px) {
  body {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  body.nav-open {
    overflow: hidden;
  }
}

a {
  text-decoration: none;
}

ul,
ol,
p {
  margin-bottom: 30px;
}

.d1,
.d2,
.d3,
.d4,
.d5 {
  font-weight: 300;
  line-height: 1.2;
}

.d1 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .d1 {
    font-size: 5rem;
  }
}

.d2 {
  font-size: 1.875rem;
}
@media (min-width: 992px) {
  .d2 {
    font-size: 4.5rem;
  }
}

.d3 {
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .d3 {
    font-size: 4rem;
  }
}

.d4 {
  font-size: 1.625rem;
}
@media (min-width: 992px) {
  .d4 {
    font-size: 3.5rem;
  }
}

.d5 {
  font-size: 1.375rem;
}
@media (min-width: 992px) {
  .d5 {
    font-size: 3rem;
  }
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .h1,
  h1,
  .h2,
  h2,
  .h3,
  h3,
  .h4,
  h4 {
    margin-bottom: 30px;
  }
}

.h1,
h1 {
  font-size: 2rem;
}
@media (min-width: 992px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }
}

.h2,
h2 {
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .h2,
  h2 {
    font-size: 2rem;
  }
}

.h3,
h3 {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .h3,
  h3 {
    font-size: 1.5rem;
  }
}

.h4,
h4 {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .h4,
  h4 {
    font-size: 1.25rem;
  }
}

.h5,
h5 {
  font-size: 1rem;
}

.h6,
h6 {
  font-size: 1rem;
}

[data-label]::before {
  color: #fdc300;
  content: attr(data-label);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 19px;
  margin-bottom: 8px;
}

.w-line {
  margin-bottom: 28px;
  padding-bottom: 20px;
  position: relative;
}
.w-line::after {
  background-color: #fdc300;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 52px;
}
.w-line > *:last-child {
  margin-bottom: 0;
}

.w-100 {
  width: 100%;
}
@media (min-width: 992px) {
  .w-lg-auto {
    width: auto;
  }
  .w-lg-100 {
    width: 100%;
  }
}

.container, .container-md {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.container {
  max-width: 1376px;
}
.container-md {
  max-width: 1150px;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.gy-5 {
  row-gap: 1.25rem;
}

.align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .grid-lg {
    grid-template-columns: 1fr 1fr;
  }
  .grid-lg-2-1 {
    grid-template-columns: 2fr 1fr;
  }
}

.img-fit {
  height: 100%;
  width: 100%;
}
.img-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.img-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.fancybox__container {
  --fancybox-bg: rgba(48, 59, 64, 0.8) !important;
  --fancybox-zIndex: 99999 !important;
}

.fancybox-iframe {
  --fancybox-bg: rgba(253, 195, 0, 0.8) !important;
}
.fancybox-iframe .is-close-btn {
  color: #000;
}

.has-iframe {
  --fancybox-bg: red !important;
}
.has-iframe .fancybox__content {
  padding: 0;
}

.icon {
  fill: currentColor;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.row > * {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.col {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.offset-3 {
  margin-left: 25%;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.offset-6 {
  margin-left: 50%;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
      -ms-flex-order: 7;
          order: 7;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
      -ms-flex-order: 8;
          order: 8;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.offset-9 {
  margin-left: 75%;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
      -ms-flex-order: 9;
          order: 9;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
      -ms-flex-order: 11;
          order: 11;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-12 {
  margin-left: 100%;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
      -ms-flex-order: 12;
          order: 12;
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-12 {
    margin-left: 100%;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
}
.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 0.125rem;
}

.mb-1 {
  margin-bottom: 0.125rem;
}

.mt-2 {
  margin-top: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.25rem;
}

.mt-3 {
  margin-top: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.5rem;
}

.mt-4 {
  margin-top: 0.75rem;
}

.mb-4 {
  margin-bottom: 0.75rem;
}

.mt-5 {
  margin-top: 1.5rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

.mt-6 {
  margin-top: 2.5rem;
}

.mb-6 {
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .mt-lg-1 {
    margin-top: 0.25rem;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem;
  }
  .mt-lg-2 {
    margin-top: 0.5rem;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem;
  }
  .mt-lg-3 {
    margin-top: 0.75rem;
  }
  .mb-lg-3 {
    margin-bottom: 0.75rem;
  }
  .mt-lg-4 {
    margin-top: 1rem;
  }
  .mb-lg-4 {
    margin-bottom: 1rem;
  }
  .mt-lg-5 {
    margin-top: 3rem;
  }
  .mb-lg-5 {
    margin-bottom: 3rem;
  }
  .mt-lg-6 {
    margin-top: 3.75rem;
  }
  .mb-lg-6 {
    margin-bottom: 3.75rem;
  }
}
.section-highlights {
  position: relative;
}
.section-highlights .asset {
  width: 167px;
  height: 450px;
  top: 126px;
  left: 50%;
  margin-left: -680px;
  position: absolute;
}
@media (max-width: 1199px) {
  .section-highlights .asset {
    margin-left: -640px;
  }
}
@media (max-width: 991px) {
  .section-highlights .asset {
    display: none;
  }
}