@font-face {
  font-family: "Cabin-Regular";
  src: url("../../assets/fonts/Cabin-Regular.woff2");
}
@font-face {
  font-family: "Cabin-SemiBold";
  src: url("../../assets/fonts/Cabin-SemiBold.woff2");
}
@font-face {
  font-family: "SinkinSans-Light";
  src: url("../../assets/fonts/SinkinSans-300Light.woff2");
}
@font-face {
  font-family: "SinkinSans-Regular";
  src: url("../../assets/fonts/SinkinSans-400Regular.woff2");
}
@font-face {
  font-family: "SinkinSans-SemiBold";
  src: url("../../assets/fonts/SinkinSans-600SemiBold.woff2");
}
@font-face {
  font-family: "SinkinSans-Bold";
  src: url("../../assets/fonts/SinkinSans-700Bold.woff2");
}
/*----------------------
    Global Parameters
 -----------------------*/
/*-------------------
    Global Mixins
 --------------------*/
/*------------------
    Global Styles
 -------------------*/
h1 {
  font-family: "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  font-size: 56px;
}

h2 {
  font-family: "SinkinSans-Regular", Helvetica, Arial, Verdana, sans-serif;
  font-size: 34px;
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-family: "SinkinSans-Regular", Helvetica, Arial, Verdana, sans-serif;
  font-size: 30px;
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 26px;
  }
}

/* Body Styles */
html {
  background-color: #2a2b30 !important;
}

.bg {
  background: url("../../assets/background-graphic.jpg") no-repeat center center;
  background-size: cover;
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.content {
  position: absolute;
  width: 100%;
}

body {
  font: 14px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif;
  line-height: 1.38rem;
  color: #f1f1f1;
  letter-spacing: 0.015rem;
  background-color: #2a2b30 !important;
  overflow-x: hidden;
}

a {
  color: #f1f1f1;
  font-family: "SinkinSans-Regular", Helvetica, Arial, Verdana, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #f1f1f1;
  text-decoration: underline !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  cursor: default;
}

button {
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #0fa1f6;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
}
button:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}

input:not([type=checkbox]):not([type=submit]) {
  --color1: #4c5057;
  --color2: #474b55;
  transition: --color1 406ms, --color2 406ms;
  background-color: transparent;
  background: linear-gradient(to bottom, #1e2024 0%, #31333a 8%, #3d4148 30%, #3d4148 87%, var(--color1) 99%, var(--color2) 100%);
  border: solid 2px #262a2d;
  letter-spacing: 0.018rem;
  border-radius: 0.5rem !important;
  color: #f1f1f1 !important;
  width: 100%;
  padding: 10px;
  font: 16px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
input:not([type=checkbox]):not([type=submit]):focus, input:not([type=checkbox]):not([type=submit]):active, input:not([type=checkbox]):not([type=submit]):focus-visible {
  --color1: #0fa1f6;
  --color2: #6e9ba3;
  box-shadow: none;
  background-clip: padding-box !important;
  outline: none !important;
}

input[type=submit] {
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #0fa1f6;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
}
input[type=submit]:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}

/*Change background of autofill text area to blue. Can't be transparent as of now.*/
input:-webkit-autofill,
select:-webkit-autofill,
input:-webkit-autofill:hover,
select:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #087ac5 inset !important;
}

/*Change text color in autofill text area*/
input:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: white !important;
}

/*Hides blue outline on safari browser*/
input:focus,
select:focus,
textarea:focus,
select-selected {
  outline: none !important;
}

/*----------------------
	  Scroll Bar Styles
------------------------*/
html {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
html ::-webkit-scrollbar {
  width: 8px;
}
html ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px rgba(20, 21, 23, 0.8);
  border-radius: 10px;
}
html ::-webkit-scrollbar-thumb {
  background: rgb(22, 23, 24);
  border-radius: 10px;
}
html ::-webkit-scrollbar-thumb:hover {
  background: rgb(20, 21, 23);
}

/*-------------------
	  Nav Bar Styles
---------------------*/
.synx-nav {
  position: sticky;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 70px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background-color: rgba(81, 81, 81, 0.3450980392);
}
.synx-nav .nav-logo {
  margin-top: 8px;
  height: 40px;
}
.synx-nav .nav-content-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 25px;
  max-width: 1650px;
}
.synx-nav .nav-content-wide ul {
  display: flex;
  align-items: baseline;
  list-style: none;
  margin: 0;
  padding: 0;
}
.synx-nav .nav-content-wide ul li:nth-of-type(2) {
  margin-left: 30px;
}
.synx-nav .nav-content-wide ul a {
  font: 18px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
@media only screen and (max-width: 675px) {
  .synx-nav .nav-content-wide {
    display: none;
  }
}
.synx-nav .nav-content-wide .nav-left {
  display: flex;
  align-items: center;
}
.synx-nav .nav-content-wide .nav-left ul {
  margin-left: 25px;
}
.synx-nav .nav-content-wide .nav-wide-signup {
  font-size: 21px;
  color: #0fa1f6;
}
.synx-nav .nav-content-narrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 25px;
}
.synx-nav .nav-content-narrow ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.synx-nav .nav-content-narrow ul li:nth-of-type(2) {
  margin-left: 30px;
}
.synx-nav .nav-content-narrow ul a {
  font: 18px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
@media only screen and (min-width: calc(676px)) {
  .synx-nav .nav-content-narrow {
    display: none;
  }
}
.synx-nav .nav-content-narrow .nav-narrow-signup {
  font: 24px "Cabin-SemiBold", Helvetica, Arial, Verdana, sans-serif;
}
.synx-nav .nav-content-narrow .hamburger-icon {
  width: 25px;
}

/*--------------------------
	  Hamburger Menu Styles
----------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  min-height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  background-color: rgba(24, 25, 28, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: 0.4s;
}
.mobile-menu a {
  font: 18px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
}
.mobile-menu.is-active {
  right: 0;
}
.mobile-menu .mobile-menu-top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 75px;
}
.mobile-menu .mobile-menu-top img {
  margin-bottom: 30px;
  width: 135px;
}
.mobile-menu .mobile-menu-top .menu-divider {
  color: #444752;
  width: 100px;
  margin: 0.65rem 0;
  box-shadow: 1px 1px 3px rgba(15, 15, 16, 0.5725490196);
}
.mobile-menu .mobile-menu-top .exit-menu {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
}
.mobile-menu .mobile-menu-bottom {
  display: flex;
  justify-content: center;
}
.mobile-menu .mobile-menu-bottom button {
  width: 119px;
  height: 36px;
}
.mobile-menu .mobile-menu-bottom .mobile-signin {
  position: relative;
  display: inline-block;
  letter-spacing: 0.01rem;
  border-radius: 1000px;
  border: solid 1px #5C616E;
  outline: solid 4px #25272C !important;
  background: linear-gradient(185deg, #25272C, #2A2C31);
  color: #f1f1f1;
  font: 17px "Cabin-Regular", Helvetica, Arial, Verdana, sans-serif;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.541), -1px -1px 10px rgba(255, 255, 255, 0.2);
  margin-right: 25px;
}
.mobile-menu .mobile-menu-bottom .mobile-signin:focus-visible {
  outline: solid 1px #f1f1f1 !important;
}

/*------------------
	  Footer Styles
--------------------*/
.synx-footer {
  width: 100%;
  height: 250px;
  background-color: rgba(81, 81, 81, 0.3450980392);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding: 0 20px;
}
.synx-footer .footer-top {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.synx-footer .footer-top .contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 25px;
}
.synx-footer .footer-top .contact .footer-title {
  font: 15px "SinkinSans-Bold", Helvetica, Arial, Verdana, sans-serif;
  margin-bottom: 4px;
}
.synx-footer .footer-top .contact a {
  font: 13px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif !important;
  padding: 0 0 5px 2px;
}
.synx-footer .footer-top .social {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 250px;
  margin: 18px 0;
}
@media only screen and (max-width: 575px) {
  .synx-footer .footer-top .social {
    flex-basis: 10%;
  }
}
.synx-footer .footer-top .request-demo {
  text-align: center;
}
.synx-footer .footer-top .request-demo a {
  font: 13px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif !important;
}
.synx-footer .legal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.synx-footer .legal .links {
  display: flex;
  justify-content: space-around;
  margin-bottom: 6px;
}
.synx-footer .legal .links a {
  font: 11px "SinkinSans-Light", Helvetica, Arial, Verdana, sans-serif !important;
}
.synx-footer .legal p {
  font-size: 10px;
  font-style: italic;
  margin: 0;
  text-align: center;
  line-height: 1.5em;
}

/*--------------------------
	  Error Page Styles
----------------------------*/
.p-error {
  min-height: calc(100vh - 250px - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*-----------------------------------------
    Privacy Policy & Terms of Use Pages
 ------------------------------------------*/
.p-privacypolicy, .p-terms {
  padding: 125px 20px;
}
@media only screen and (max-width: 575px) {
  .p-privacypolicy, .p-terms {
    padding: 75px 20px;
  }
}
.p-privacypolicy .s-policycontent, .p-privacypolicy .s-termscontent, .p-terms .s-policycontent, .p-terms .s-termscontent {
  padding: 15px 0 50px 40px;
  font-size: 14px;
  line-height: 1.75;
}
@media only screen and (max-width: 575px) {
  .p-privacypolicy .s-policycontent, .p-privacypolicy .s-termscontent, .p-terms .s-policycontent, .p-terms .s-termscontent {
    padding: 6px 0 30px 15px;
  }
}
.p-privacypolicy .s-policycontent h3, .p-privacypolicy .s-termscontent h3, .p-terms .s-policycontent h3, .p-terms .s-termscontent h3 {
  font: 17px "SinkinSans-Bold", Helvetica, Arial, Verdana, sans-serif;
  margin-top: 35px;
}
.p-privacypolicy .s-policycontent h4, .p-privacypolicy .s-termscontent h4, .p-terms .s-policycontent h4, .p-terms .s-termscontent h4 {
  font-size: 14px;
  text-decoration: underline;
  margin-top: 35px;
}
.p-privacypolicy .s-policycontent ul, .p-privacypolicy .s-termscontent ul, .p-terms .s-policycontent ul, .p-terms .s-termscontent ul {
  list-style-type: "-  ";
  padding-top: 15px;
}
.p-privacypolicy .s-policycontent ul li, .p-privacypolicy .s-termscontent ul li, .p-terms .s-policycontent ul li, .p-terms .s-termscontent ul li {
  padding-bottom: 10px;
}/*# sourceMappingURL=policies_terms.css.map */