<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  font-size: 18px;
}
body {
  margin: 0;
  background: #fff;
  color: #1c75bc;
  font-size: 1em;
  line-height: 1.5em;
  font-family: "proxima-nova";
}
body, html {
  height: 100%;
}
.site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
.content {
  width: 100%;
  margin-left: 0;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  text-transform: lowercase;
  font-weight: 300;
}
h2 {
  font-size: 5vw;
  line-height: 1em;
  margin-bottom: 0;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 1400px) {
  h2 {
    font-size: 10vw;
  }
}
a {
  text-decoration: none;
}
#header {
  display: none !important;
}
/*--- MENU ---*/
@media screen and (min-width: 1024.1px) {
  .menu-mobile, .menu-mob-trig, #menu-icon {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .menu-desk {
    display: none !important;
  }
}
.links-menu-mobile, .links-menu-desk {
  text-transform: lowercase;
  font-family: "roc-grotesk-wide";
  font-weight: 700;
  font-size: 1em;
}
.menu-desk {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.menu-desk input, .menu-desk .sub-menu-arrow {
  display: none;
}
.menu-desk .links-menu-desk {
  padding-top: 0px;
}
.menu-desk .links-menu-desk a {
  color: #000;
}
.menu-desk .links-menu-desk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-desk .links-menu-desk ul.nav-drop {
  left: 0;
  opacity: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  top: 100%;
  padding-top: 0.2em;
  text-align: left;
}
.menu-desk .links-menu-desk ul.nav-drop &gt; li {
  display: block;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.menu-desk .links-menu-desk ul.nav-drop:not(.menu-level-1):not(.menu-level-0) {
  left: 100%;
  top: 0;
}
.menu-desk .links-menu-desk ul li {
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.menu-desk .links-menu-desk ul li:hover {
  transition: background-color 0.6s linear;
}
.menu-desk .links-menu-desk ul li:hover &gt; ul.nav-drop {
  transition: opacity 0.6s linear;
  opacity: 1 !important;
  overflow: visible;
}
.menu-desk .links-menu-desk ul li:not(:hover) {
  transition: background-color 0.6s linear;
  /* transition-delay: -0.3s; */
}
.menu-desk .links-menu-desk ul li:not(:hover) &gt; ul.nav-drop {
  transition: opacity 0.6s linear;
  /* transition-delay: -0.3s; */
  pointer-events: none;
}
.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  /* background: url(../img/circle-4.png) no-repeat;
    background-position: 70%;
    background-size: 100vh;
    background-color: #000; */
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  translate: 0% -100%;
  opacity: 0;
}
.menu-mobile .mm-wrap {
  width: 90%;
}
.menu-mobile .links-menu-mobile label {
  position: relative;
}
.menu-mobile .links-menu-mobile label span.sub-menu-arrow {
  position: absolute;
  right: 0em;
  text-align: right;
}
.menu-mobile .links-menu-mobile .hidden-checkbox {
  display: none;
}
.menu-mobile .links-menu-mobile ul {
  list-style: none;
  padding: 0;
}
.menu-mobile .links-menu-mobile ul li {
  margin: 1.5em 0;
}
.menu-mobile .links-menu-mobile ul li a, .menu-mobile .links-menu-mobile ul li label {
  text-align: center;
  display: block;
  text-transform: lowercase;
  font-family: "roc-grotesk-wide";
  font-weight: 700;
  text-align: left;
  font-size: 1.6em;
}
.menu-mobile .links-menu-mobile ul.nav-drop {
  display: grid;
  font-size: 0.8em;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
  padding-left: 2em;
}
.menu-mobile .links-menu-mobile ul.nav-drop &gt; div {
  overflow: hidden;
}
.menu-mobile .links-menu-mobile .submenu-trig:not(:checked) + label &gt; span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label &gt; span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label + ul {
  grid-template-rows: 1fr;
}
#menu-mob-trig {
  display: none !important;
}
#menu-icon {
  position: relative;
  display: none !important;
  z-index: 1010;
  margin-top: 22px;
}
#menu-icon .hamburger-menu {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
#menu-icon .hamburger-menu .line {
  width: 100%;
  height: 3px;
  background-color: #000;
  /* You can adjust the color */
}
#menu-icon .close-menu {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
#menu-icon .close-menu .line {
  width: 100%;
  height: 3px;
  background-color: #000;
  /* You can adjust the color */
  transform-origin: center;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
}
#menu-icon .close-menu .line:first-child {
  transform: rotate(45deg);
}
#menu-icon .close-menu .line:last-child {
  transform: rotate(-45deg);
}
#menu-mob-trig:not(:checked) + #menu-icon .close-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon .hamburger-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon + .menu-mobile {
  translate: 0% 0%;
  opacity: 1;
}
/**
*
* General overrides for woocommerce. Don't edit this section unless needed.
*
**/
.shop-archive_page .sap-wrapper {
  display: grid;
  grid-template-columns: 1fr 0;
}
.shop-archive_page .sap-wrapper .sap-content ul.products {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.shop-archive_page .sap-wrapper .sap-content ul.products:before {
  display: none;
}
@media screen and (max-width: 1200px) {
  .shop-archive_page .sap-wrapper .sap-content ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 980px) {
  .shop-archive_page .sap-wrapper .sap-content ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.shop-archive_page .sap-wrapper .sap-content ul.products &gt; li.product {
  width: 100% !important;
  margin: 0;
}
.shop-archive_page .sap-wrapper .sap-content ul.products &gt; li.product &gt; a {
  display: block;
}
@media screen and (min-width:800px) {
  .single-product_page .sp-gallery-summary-wrap {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-gap: 2em;
  }
  .single-product_page .sp-gallery-summary-wrap &gt; div {
    width: 100% !important;
  }
}
@media screen and (max-width:799px) {
  .single-product_page .sp-gallery-summary-wrap .summary {
    text-align: center;
  }
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form {
  display: inline-block;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form .woocommerce-variation-add-to-cart {
  display: inline-flex;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form .variations td {
  padding-left: 1em;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form .variations td a.reset_variations {
  position: absolute;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart:not(.variations_form) {
  display: inline-flex;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart .quantity .qty {
  height: 100%;
}
.single-product_page .related.products {
  text-align: center;
}
/*--- GENERAL HOME ---*/
.home-section {
  width: 100%;
  min-height: 100vh;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .home-section {
    min-height: 60vh;
  }
}
.home-section .inner-content {
  width: 70%;
  max-width: 1200px;
  padding: 5em;
}
.home-section .inner-content h2 {
  text-align: left !important;
}
@media screen and (max-width: 1024px) {
  .home-section .inner-content {
    width: 100%;
    padding: 2em;
  }
  .home-section .inner-content h2 {
    text-align: center !important;
  }
}
.sapphire-logo {
  margin-left: -1em;
  width: 500px;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .sapphire-logo {
    margin-left: 0;
  }
}
.intro {
  background: url(../../assets/img/white-bg.webp) #fff;
  background-size: cover;
  background-position: center;
  color: #1c75bc;
}
.clients {
  background: url(../../assets/img/footer-bg.webp) #1c75bc;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.contact {
  background: url(../../assets/img/contact-bg.webp) #fff;
  background-size: cover;
  background-position: center;
  color: #1c75bc;
  text-align: left;
}
.contact a {
  color: #1c75bc;
}
.contact a:hover {
  color: #839eb3;
}
@media screen and (max-width: 1024px) {
  text-align: center;
  h2 {
    text-align: center;
  }
}
.home-section .inner-content h2 {
  padding-top: 0;
  margin-top: 0;
}
/*--- FOOTER ---*/
#footer {
  text-align: left;
  font-size: 1em;
  padding-top: 5em;
  padding-left: 5em;
  padding-bottom: 5em;
  background: url(../../assets/img/blue-bg.webp) #1c75bc;
  background-size: cover;
  background-position: center;
  color: #fff;
  color: #fff;
  text-transform: lowercase;
}
@media screen and (max-width: 1024px) {
  #footer {
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
  }
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #839eb3;
}
/*--- CLIENTS ---*/
.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.client-grid .client {
  padding: 20px;
  text-align: center;
}
.client-grid .client img {
  max-width: 100%;
  max-height: 150px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1400px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=https://sapphireeye.net/wp-content/themes/bb-theme-1.1.0/assets/css/cs.map */</pre></body></html>