.screen-reader-text, .cart-collaterals .cart_totals h2 {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.site-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-y-gutters) var(--container-x-gutters);
  text-align: center;
}

.woocommerce-form-coupon-toggle {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px var(--spacing-7) 0px var(--spacing-7);
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .woocommerce-form-coupon-toggle {
    flex-direction: row;
    text-align: left;
  }
}

.input-text {
  width: 100%;
}

.variations .label {
  padding-bottom: 30px;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  gap: 20px;
}

.quantity input {
  border: 2px solid black;
  width: 100px;
  padding: 36px;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
}

.quantity::before {
  content: "Quantity";
}

.single-product .product .single_add_to_cart_button.button {
  --btn-bg-colour: transparent;
  text-transform: uppercase;
  font-weight: bold;
  padding: 16px 30px;
  font-size: var(--font-size-cat);
  border: 2px solid black;
  --btn-text-colour: black;
  --btn-bg-colour-interactive: var(--brand-1);
  --btn-text-colour-interactive: var(--white);
}

.product_meta {
  display: none;
}

.post-type-archive-product .container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.filter-button,
.shop-sidebar__inner {
  display: none;
}

ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-8);
}
ul.products li.product.type-product {
  padding: 0;
  position: relative;
}
ul.products .woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  color: var(--black);
  text-decoration: none;
}
ul.products .woocommerce-loop-product__title {
  font-size: var(--font-size-dog);
}
ul.products .price {
  font-size: var(--font-size-cat);
  display: block;
  font-weight: 700;
}
ul.products span.onsale {
  --radius-size: 50px;
  display: inline-block;
  width: var(--radius-size);
  height: var(--radius-size);
  font-size: var(--font-size-mouse);
  background-color: var(--brand-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 5px;
}
ul.products a.added_to_cart.wc-forward {
  margin-left: var(--spacing-3);
}

#shop-sidebar-wrapper {
  padding-left: var(--spacing-5);
  padding-right: var(--spacing-5);
  padding-top: var(--spacing-3);
  padding-bottom: var(--spacing-8);
  background-color: var(--white);
  color: var(--black);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: var(--layer-important);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: -webkit-transform 240ms var(--ease-out-1);
  transition: transform 240ms var(--ease-out-1);
  transition: transform 240ms var(--ease-out-1), -webkit-transform 240ms var(--ease-out-1);
}
#shop-sidebar-wrapper .shop-sidebar__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: var(--spacing-4);
}
#shop-sidebar-wrapper .shop-sidebar__inner .off-canvas__close {
  font-size: var(--font-size-wolf);
  color: var(--black);
}
#shop-sidebar-wrapper.off-canvas-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  #shop-sidebar-wrapper {
    width: 300px;
  }
}

.woocommerce-products-header {
  margin-bottom: var(--spacing-5);
}
.woocommerce-products-header .products-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce-products-header .products-meta .filter-button {
  --colour: var(--white);
  display: inline-flex;
  align-items: center;
  color: var(--colour);
  margin-top: 0;
}
.woocommerce-products-header .products-meta .filter-button svg {
  --size: 20px;
  fill: var(--colour);
  width: var(--size);
  height: var(--size);
  margin-right: var(--spacing-2);
}
.woocommerce-products-header .products-meta .woocommerce-notices-wrapper {
  display: block;
  width: 100%;
}
.woocommerce-products-header .products-meta .woocommerce-result-count {
  margin-right: auto;
}
.woocommerce-products-header .products-meta .woocommerce-ordering {
  width: 100%;
}
.woocommerce-products-header .products-meta .woocommerce-ordering select {
  width: 100%;
}
@media screen and (min-width: 480px) {
  .woocommerce-products-header .products-meta .woocommerce-ordering {
    width: auto;
    margin-left: var(--spacing-3);
  }
}

.woocommerce-pagination {
  margin-top: var(--spacing-8);
}

.woocommerce-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}
.woocommerce-pagination ul li {
  padding: var(--spacing-1);
}
.woocommerce-pagination ul .page-numbers {
  --size: 32px;
  display: inline-flex;
  background-color: var(--brand-1);
  width: var(--size);
  height: var(--size);
  color: var(--white);
  text-align: center;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.woocommerce-breadcrumb {
  margin-top: var(--spacing-4);
  margin-bottom: var(--spacing-4);
}

.woocommerce-message {
  background: var(--brand-1);
  color: white;
  border-radius: var(--border-size-2);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: var(--spacing-4);
  align-items: center;
  margin-bottom: 40px;
}
.woocommerce-message .button {
  margin-top: 0;
}
.woocommerce-message a {
  color: white !important;
}

.single-product div.product.type-product {
  display: flex;
  flex-direction: column;
}
.single-product div.product.type-product .woocommerce-product-gallery,
.single-product div.product.type-product .summary.entry-summary,
.single-product div.product.type-product a .woocommerce-tabs,
.single-product div.product.type-product .related.products {
  margin: 0 0 var(--spacing-5);
}
@media screen and (min-width: 768px) {
  .single-product div.product.type-product {
    display: grid;
    gap: var(--spacing-5);
    grid-template-columns: 40% 60%;
  }
  .single-product div.product.type-product .woocommerce-product-gallery {
    grid-column: 1/2;
  }
  .single-product div.product.type-product .summary.entry-summary {
    grid-column: 2/3;
  }
  .single-product div.product.type-product .woocommerce-tabs,
  .single-product div.product.type-product .related.products {
    grid-column: span 2;
  }
}
@media screen and (min-width: 1024px) {
  .single-product div.product.type-product {
    gap: var(--spacing-10);
  }
}

.shop_table.woocommerce-checkout-review-order-table,
.woocommerce-order-details {
  background-color: var(--brand-1);
  color: white;
  padding: 20px;
}
.shop_table.woocommerce-checkout-review-order-table a,
.woocommerce-order-details a {
  color: white;
}

.woocommerce-product-gallery {
  position: relative;
}
.woocommerce-product-gallery figure.woocommerce-product-gallery__wrapper {
  margin: 0;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: var(--spacing-4);
  right: var(--spacing-4);
  z-index: var(--layer-5);
}

.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
  list-style: none;
  display: grid;
  gap: var(--spacing-3);
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  margin: 0;
  padding: var(--spacing-8) 0;
}

table.variations {
  border: none;
}
table.variations tr,
table.variations td,
table.variations th {
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  color: var(--black);
}
table.variations .value select {
  margin-bottom: 12px;
  background-color: var(--white);
  color: var(--black);
  font-weight: 500;
}

.reset_variations {
  margin-left: var(--spacing-2);
}

.woocommerce-variation-add-to-cart {
  margin-top: var(--spacing-3);
}

.wrap-validation.elex-set-min-price {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.woocommerce-tabs .tabs.wc-tabs {
  display: flex;
  list-style: none;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.woocommerce-tabs .tabs.wc-tabs li {
  width: 100%;
  padding-right: var(--spacing-1);
}
.woocommerce-tabs .tabs.wc-tabs li a {
  color: var(--white);
  text-decoration: none;
  background-color: var(--brand-1);
  padding: var(--spacing-2) var(--spacing-4);
  border-top-left-radius: var(--radius-5);
  border-top-right-radius: var(--radius-5);
}
@media screen and (min-width: 480px) {
  .woocommerce-tabs .tabs.wc-tabs {
    flex-direction: row;
  }
  .woocommerce-tabs .tabs.wc-tabs li {
    width: auto;
  }
}

/**
 * Shop tables
 */
table.shop_table_responsive thead {
  display: none;
}

table.shop_table_responsive tbody th {
  display: none;
}

table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both;
}

table.shop_table_responsive tr td::before {
  float: left;
}

table.shop_table_responsive tr td.product-remove a {
  text-align: left;
}

table.shop_table_responsive tr td.product-remove::before {
  display: none;
}

table.shop_table_responsive tr td.actions::before,
table.shop_table_responsive tr td.download-actions::before {
  display: none;
}

table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group;
  }
  table.shop_table_responsive tbody th {
    display: table-cell;
  }
  table.shop_table_responsive tr th,
  table.shop_table_responsive tr td {
    text-align: left;
  }
  table.shop_table_responsive tr td {
    display: table-cell;
  }
  table.shop_table_responsive tr td::before {
    display: none;
  }
}
.woocommerce-cart .site-main .woocommerce,
.woocommerce-checkout .site-main .woocommerce .checkout.woocommerce-checkout {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-10) var(--spacing-7);
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .woocommerce-cart .site-main .woocommerce,
  .woocommerce-checkout .site-main .woocommerce .checkout.woocommerce-checkout {
    display: grid;
    gap: var(--spacing-8);
    align-items: start;
  }
  .woocommerce-cart .site-main .woocommerce .woocommerce-notices-wrapper,
  .woocommerce-checkout .site-main .woocommerce .checkout.woocommerce-checkout .woocommerce-notices-wrapper {
    grid-column: span 2;
  }
}

.cart_totals {
  background-color: var(--brand-1);
  color: white;
  padding: 20px;
}

.nuska-shop-page,
.woocommerce-order {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: var(--spacing-10) var(--spacing-7);
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .nuska-shop-page,
  .woocommerce-order {
    flex-direction: column;
    text-align: left;
    justify-content: center;
  }
}

.woocommerce .button {
  --btn-bg-colour: transparent;
  text-transform: uppercase;
  font-weight: bold;
  padding: 16px 30px;
  font-size: var(--font-size-cat);
  border: 2px solid var(--brand-3);
  --btn-text-colour: var(--brand-3);
  --btn-bg-colour-interactive: white;
  --btn-text-colour-interactive: var(--brand-3);
}

.button.wp-element-button.product_type_variable.add_to_cart_button {
  --btn-bg-colour: transparent;
  text-transform: uppercase;
  font-weight: bold;
  padding: 16px 30px;
  font-size: var(--font-size-cat);
  border: 2px solid black;
  --btn-text-colour: black;
  --btn-bg-colour-interactive: var(--brand-1);
  --btn-text-colour-interactive: var(--white);
}

.woocommerce-cart-form,
.cart-collaterals {
  border-radius: var(--radius-16);
  padding: var(--spacing-4);
  padding-left: var(--spacing-6);
  margin-bottom: var(--spacing-8);
}
.woocommerce-cart-form .coupon {
  display: none;
}

.shop_table.shop_table_responsive.cart {
  display: block;
  width: 100%;
}
.shop_table.shop_table_responsive.cart tbody,
.shop_table.shop_table_responsive.cart tr,
.shop_table.shop_table_responsive.cart th,
.shop_table.shop_table_responsive.cart td {
  display: block;
}
.shop_table.shop_table_responsive.cart thead,
.shop_table.shop_table_responsive.cart tfoot {
  display: none;
}
.shop_table.shop_table_responsive.cart tr {
  position: relative;
  margin-top: 16px;
}
.shop_table.shop_table_responsive.cart .woocommerce-cart-form__cart-item.cart_item {
  display: grid;
  grid-template-columns: minmax(60px, 90px) 1fr 110px;
  align-items: center;
  gap: var(--spacing-2);
  border-top: 1px solid var(--grey-600);
  padding: var(--spacing-5) var(--spacing-1) var(--spacing-1);
}
.shop_table.shop_table_responsive.cart .woocommerce-cart-form__cart-item.cart_item:nth-of-type(1) {
  border-top: 0;
}
@media screen and (min-width: 480px) {
  .shop_table.shop_table_responsive.cart .woocommerce-cart-form__cart-item.cart_item {
    grid-template-columns: minmax(60px, 90px) 1fr 120px 120px;
  }
}
@media screen and (min-width: 768px) {
  .shop_table.shop_table_responsive.cart .woocommerce-cart-form__cart-item.cart_item {
    gap: var(--spacing-5);
  }
}
.shop_table.shop_table_responsive.cart .product-thumbnail {
  max-width: 90px;
  min-width: 60px;
  order: 1;
}
.shop_table.shop_table_responsive.cart .product-name {
  order: 2;
  text-align: left;
}
.shop_table.shop_table_responsive.cart .product-name a {
  font-size: var(--font-size-fox);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}
.shop_table.shop_table_responsive.cart .product-name a:hover, .shop_table.shop_table_responsive.cart .product-name a:focus {
  text-decoration: underline;
}
.shop_table.shop_table_responsive.cart .product-quantity {
  order: 3;
}
.shop_table.shop_table_responsive.cart .product-quantity .quantity {
  display: flex;
  align-items: center;
  height: 100%;
}
.shop_table.shop_table_responsive.cart .product-quantity .quantity input {
  --size: 35px;
  padding: var(--spacing-1);
  text-align: center;
  margin: 0 var(--spacing-1);
  width: var(--size);
  height: var(--size);
  color: var(--black);
}
.shop_table.shop_table_responsive.cart .product-quantity .quantity button {
  --btn-size: 30px;
  width: var(--btn-size);
  height: var(--btn-size);
  padding: var(--spacing-1);
  border-radius: 50%;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.shop_table.shop_table_responsive.cart .product-quantity input[type=number]::-webkit-outer-spin-button,
.shop_table.shop_table_responsive.cart .product-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop_table.shop_table_responsive.cart .product-quantity input[type=number] {
  -moz-appearance: textfield;
}
.shop_table.shop_table_responsive.cart .product-subtotal {
  order: 4;
  display: none;
}
@media screen and (min-width: 480px) {
  .shop_table.shop_table_responsive.cart .product-subtotal {
    display: inline-block;
    font-size: var(--font-size-fox);
    color: var(--black);
    font-weight: 700;
    text-align: right;
  }
}
.shop_table.shop_table_responsive.cart .product-price {
  display: none;
}
.shop_table.shop_table_responsive.cart .product-remove {
  position: absolute;
  border: none;
  left: var(--spacing--2);
  top: var(--spacing-2);
}
.shop_table.shop_table_responsive.cart .product-remove .remove {
  --size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  background-color: var(--alert);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-weight: 700;
}

.cart-collaterals .shop_table.shop_table_responsive tr {
  font-size: var(--font-size-fox);
}
.cart-collaterals .shop_table.shop_table_responsive tr th,
.cart-collaterals .shop_table.shop_table_responsive tr td {
  border-bottom: 1px solid var(--grey-600);
  padding: var(--spacing-2);
}
.cart-collaterals .shop_table.shop_table_responsive tr td {
  text-align: right;
}
.cart-collaterals .shop_table.shop_table_responsive .woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-collaterals .shop_table.shop_table_responsive .woocommerce-shipping-methods input {
  margin-right: var(--spacing-2);
}

.nfb-account-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--spacing-10) var(--spacing-7);
  display: flex;
  flex-direction: column;
}
.nfb-account-container h3 {
  margin-top: var(--spacing-10);
}
@media screen and (min-width: 768px) {
  .nfb-account-container {
    display: grid;
    gap: var(--spacing-8);
    grid-template-columns: 250px 1fr;
    grid-template-areas: "sidebar main";
  }
  .nfb-account-container .nfb-account-main {
    grid-area: main;
  }
  .nfb-account-container .nfb-account-sidebar {
    grid-area: sidebar;
  }
}

.account-welcome-title {
  margin-top: 0;
}

.nfb-account-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nfb-account-links li {
  width: 100%;
}
.nfb-account-links li a {
  display: block;
  color: var(--white);
  background-color: var(--brand-1);
  padding: var(--spacing-2) var(--spacing-5);
  margin-bottom: var(--spacing-4);
  text-decoration: none;
}

.account-business-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 768px) {
  .account-business-details {
    grid-template-columns: 250px 1fr;
  }
}
.account-business-details dt,
.account-business-details dd {
  margin: 0;
  border-bottom: 1px solid var(--brand-1);
  padding: var(--spacing-3);
}

.nfb-card-grid {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .nfb-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .nfb-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.notification-card {
  width: 100%;
  background-color: var(--brand-1);
  color: var(--white);
  padding: var(--spacing-4);
  display: flex;
  flex-direction: column;
  font-weight: 700;
  margin-bottom: var(--spacing-1);
  position: relative;
}
.notification-card .ns-btn {
  --btn-bg-colour: var(--white);
  --btn-text-colour: var(--black);
  --btn-bg-colour-interactive: var(--brand-2);
  --btn-text-colour-interactive: var(--black);
  margin-top: 0;
}
.notification-card .notification-card__close {
  position: absolute;
  top: 4px;
  right: 4px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .notification-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .notification-card .notification-card__content {
    flex-grow: 2;
  }
  .notification-card .notification-card__close {
    position: static;
    margin-left: var(--spacing-5);
  }
}

.lead {
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid var(--brand-1);
  margin-bottom: var(--spacing-4);
  padding-bottom: var(--spacing-4);
}
.lead .ns-btn {
  --btn-bg-colour: var(--brand-1);
  --btn-text-colour: var(--white);
  --btn-bg-colour-interactive: var(--brand-2);
  --btn-text-colour-interactive: var(--black);
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .lead {
    display: grid;
    grid-template-columns: 60% 40%;
  }
  .lead .lead-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .lead {
    grid-template-columns: 70% 30%;
  }
}

.nfb-card-grid.archive-posts.archive-posts--documents section article {
  height: 100%;
}

#input_8_4 {
  display: flex;
  flex-direction: column;
}
#input_8_4 .gchoice {
  padding-bottom: var(--spacing-2);
}
@media screen and (min-width: 480px) {
  #input_8_4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.site-footer .site-footer__main {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--spacing-20);
  padding-bottom: 0px;
  padding-left: var(--spacing-7);
  padding-right: var(--spacing-7);
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .site-footer .site-footer__main {
    text-align: left;
    padding-bottom: var(--spacing-5);
    display: grid;
    align-items: flex-start;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-10);
    color: black;
  }
}
.site-footer .footer-menu-wrapper .ns-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-menu-wrapper .ns-menu li {
  padding: 0;
}
.site-footer .footer-menu-wrapper .ns-menu a {
  color: black;
  text-decoration: none;
  font-size: var(--font-size-fox);
  font-family: var(--font-body);
  line-height: 1.7;
}
.site-footer .footer-column--one a {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-8);
}
.site-footer .footer-column--one a img {
  max-width: 220px;
  height: auto;
  display: block;
}
.site-footer .footer-column--one,
.site-footer .footer-column--two {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-column--one {
    align-items: flex-start;
  }
  .site-footer .footer-column--one img {
    max-width: 220px;
    margin-bottom: var(--spacing-8);
  }
}
.site-footer .footer-title {
  color: black;
  font-size: var(--font-size-wolf);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
}
.site-footer .footer-title2 {
  color: black;
  font-size: var(--font-size-wolf);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}
.site-footer .ns-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer .ns-menu li a {
  font-size: var(--font-size-fox);
  color: black;
  font-weight: 600;
  text-decoration: none;
}
.site-footer .ns-menu li a:hover {
  text-decoration: underline;
}
.site-footer .ns-menu li.current-menu-item a {
  color: var(--brand-1);
}

.site-footer .footer-column .social-media-footer a {
  color: var(--black);
}

.site-footer .contact a,
.site-footer .contact address {
  color: black;
  text-decoration: none;
}

.site-footer__bottom {
  background-color: black;
  color: white;
}
.site-footer__bottom .site-info {
  max-width: 1600px;
  margin: 0 auto;
  padding: var(--spacing-2) var(--spacing-4) 0;
  text-align: center;
}
.site-footer__bottom .site-info p {
  margin: 0;
  padding-bottom: var(--spacing-2);
}
.site-footer__bottom .site-info a {
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .site-footer__bottom .site-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-2);
    padding-bottom: var(--spacing-2);
  }
  .site-footer__bottom .site-info p {
    padding: var(--spacing-4);
  }
}
@media screen and (max-width: 768px) {
  .site-footer__bottom .site-info {
    align-items: center;
    justify-content: start;
  }
}

.footer-nav {
  padding-left: 50px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    padding-top: var(--spacing-8);
    padding-left: 0px;
    text-align: center;
  }
}

.design-by-link {
  font-weight: 900;
  color: white;
  text-decoration: none;
}

.site-info {
  font-family: var(--font-body);
}

.footer-split {
  display: flex;
  text-align: left;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
  line-height: 4;
  text-align: center;
  padding-right: 0px;
  margin-bottom: var(--spacing-6);
}
.footer-split a {
  color: black;
  text-decoration: none;
  line-height: 1;
}
.footer-split li {
  list-style: none;
  padding-right: 0;
}
.footer-split ul {
  padding-left: 0;
}
@media screen and (min-width: 1024px) {
  .footer-split {
    align-items: flex-start;
  }
  .footer-split ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-split li {
    padding-left: var(--spacing-2);
    padding-right: var(--spacing-2);
  }
}

.footer-contact-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding-left: var(--spacing-7);
  padding-right: var(--spacing-7);
  padding-bottom: var(--spacing-10);
  max-width: var(--container-width);
}
.footer-contact-container .contact {
  padding: 4px;
  padding-right: 8px;
  font-size: var(--font-size-fox);
  font-family: var(--font-body);
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer-contact-container .contact img {
  width: 16px;
  margin-bottom: var(--spacing-3);
}
@media screen and (min-width: 1024px) {
  .footer-contact-container .contact {
    flex-direction: column;
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .footer-contact-container {
    flex-direction: row;
    align-items: center;
  }
  .footer-contact-container .contact--social-media {
    margin-left: auto;
  }
}

.footer-social-media {
  display: flex;
  flex-direction: row;
}
.footer-social-media i {
  font-size: 32px;
  padding-right: 20px;
}
.footer-social-media:last-of-type i {
  padding-right: 0;
}

.footer-social-media:hover i {
  color: var(--brand-2);
}

.nav-address {
  line-height: 2;
}
.nav-address address {
  font-style: normal;
  margin: 0;
}

/* Contact block */
.contact-box {
  background: var(--brand-1);
  padding: var(--spacing-10) var(--spacing-7);
  flex-direction: column;
  text-align: center;
  margin-top: var(--spacing-20);
}
.contact-box h2 {
  color: white;
  font-size: var(--font-size-lion);
  text-transform: uppercase;
}
.contact-box p {
  color: white;
}

.contact-inside {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-width: 1542px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact-inside {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }
}

.contact-block {
  display: flex;
  background: #efefef;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .contact-block {
    flex-direction: row;
  }
}

.contact-left {
  width: 65%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contact-left {
    padding-left: 180px;
    text-align: left;
  }
}

.contact-right {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 1024px) {
  .contact-right {
    height: 600px;
  }
}

.contact-title {
  color: black;
  font-size: var(--font-size-wolf);
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.address-title {
  color: black;
  font-size: var(--font-size-wolf);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 60px;
}

.contact {
  font-size: var(--font-size-fox);
}
.contact a {
  color: black;
  text-decoration: none;
  font-size: var(--font-size-fox);
}

.contact--social-media {
  margin-top: var(--spacing-6);
}
@media screen and (min-width: 1024px) {
  .contact--social-media {
    margin-top: 0;
  }
}

/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: relative;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.nfb-lead-card,
.job-listing-page,
.job-header {
  background-color: var(--white);
}
.nfb-lead-card article,
.job-listing-page article,
.job-header article {
  height: 100%;
}
.nfb-lead-card ul,
.job-listing-page ul,
.job-header ul {
  list-style: none;
  margin: var(--spacing-3) 0 0 0;
  padding: 0;
}
.nfb-lead-card ul li.cap,
.job-listing-page ul li.cap,
.job-header ul li.cap {
  text-transform: capitalize;
}
.nfb-lead-card ul li span::after,
.job-listing-page ul li span::after,
.job-header ul li span::after {
  content: ",";
}
.nfb-lead-card ul li span:last-child::after,
.job-listing-page ul li span:last-child::after,
.job-header ul li span:last-child::after {
  display: none;
}

.profile-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
.desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
.desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
   * Description for mobiles
   * something like facebook does the description
   * for the photos
  */
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.find-contractor-box-container {
  margin: 0 auto;
  padding: var(--spacing-10) var(--spacing-7) 0;
  max-width: var(--container-width);
}

.find-contractor-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--brand-1);
  padding: var(--spacing-10) 0;
  justify-content: center;
  position: relative;
  padding: var(--spacing-10) var(--spacing-7);
  max-width: 1542px;
  margin: 0 auto;
}
.find-contractor-box h2 {
  color: white;
  text-align: center;
  font-size: var(--font-size-lion);
  text-transform: uppercase;
}

.contractor-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: var(--spacing-5);
  width: 90%;
  max-width: 1060px;
}
@media screen and (min-width: 1024px) {
  .contractor-search {
    flex-direction: row;
  }
}
.contractor-search .ns-btn {
  width: auto !important;
}
.contractor-search select {
  text-transform: uppercase;
  border: 2px solid var(--brand-3);
  padding: var(--spacing-4);
  width: 300px;
  font-weight: 900;
  height: auto;
  border-radius: 0;
  color: var(--black);
  width: 100%;
}
.contractor-search select:focus {
  outline: none;
}
.contractor-search input[type=text],
.contractor-search textarea {
  font-weight: 900;
  text-transform: uppercase;
  padding: var(--spacing-4);
  border: 2px solid var(--brand-3);
  width: 100%;
  color: var(--black);
}
.contractor-search input[type=text]:focus,
.contractor-search textarea:focus {
  outline: none;
}
.contractor-search ::-webkit-input-placeholder {
  color: var(--black);
  opacity: 1;
  padding-left: 10px;
}
.contractor-search ::placeholder {
  color: var(--black);
  opacity: 1;
  padding-left: 10px;
}
.contractor-search .input-container {
  position: relative;
  width: 100%;
  margin-bottom: var(--spacing-8);
}
@media screen and (min-width: 1024px) {
  .contractor-search .input-container {
    width: auto;
    margin-bottom: 0;
    flex: 1 1 33.3333333333%;
  }
}
.contractor-search label {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 var(--spacing-4);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  transition: all 250ms var(--ease-2);
}
.contractor-search input:focus + label,
.contractor-search select:focus + label,
.contractor-search input.is-valid + label,
.contractor-search select.is-valid + label {
  top: var(--spacing--3);
  color: var(--white);
  padding: 0;
  font-size: 12px;
}

/* ---------------------------------------
Setup and Variables
------------------------------------------ */
/* ---------------------------------------
Core Styles
------------------------------------------ */
/* ---------------------------------------
Component Styles
------------------------------------------ */
/*# sourceMappingURL=main-style.1689756369766.css.map */