/*
Theme Name:   solaris360
Description:  BlankSlate Child Theme
Author:       Eclipsedev
Template:     blankslate
Version:      1.0.0
*/


/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "termina";
  src: url(fonts/termina-regular.otf) format("opentype");
  font-weight: 400;
  font-display: swap;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    bottom: -20px;
  }
  50% {
    bottom: 10px;
  }
}

@keyframes moveWaves {
  0% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-30px) rotate(2deg); }
  50% { transform: translateX(0) rotate(0deg); }
  75% { transform: translateX(30px) rotate(-2deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
form,
fieldset {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: #091329 url(images/stars-bg.jpg);
  background-attachment: fixed;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.5vw, 18px);
  overflow-x: hidden;
  line-height: 1.4;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h2.wp-block-heading.has-text-align-center {
  font-weight: 500;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
  margin-bottom: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin-bottom: 15px;
  padding-left: 30px;
}

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

form {
  margin-bottom: 15px;
}

.close {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  z-index: 9;
  box-sizing: content-box;
  padding: 15px;
  transition: all 250ms;
}

.close:hover {
  color: #D61219;
  text-decoration: underline;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ffffffaa;
  color: #fff;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: 2px solid #fff;
}

body input[type="submit"]:not(#solaris-chat-input),
button:not(#solaris-chat-send),
.button,
#content .wp-block-button__link {
  display: inline-block;
  padding: 12px 24px;
  background: #ED1C24 !important;
  color: #fff;
  text-decoration: none !important;
  border-radius: 50px;
  transition: all 250ms;
  border: none;
  box-shadow: none;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
}

body input[type="submit"]:not(#solaris-chat-input):hover,
button:not(#solaris-chat-send):hover,
.button:hover,
#content .wp-block-button__link:hover {
  background: #D61219 !important;
}

.logo {
  flex: 1;
}

.no-scroll {
  overflow: hidden;
}

.has-avatar a {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  position: relative;
  padding-left: 60px !important;
}

.has-avatar a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 44px;
  height: 100%;
  background: url(images/blinky.gif) center center / 100% no-repeat;
}

.flex {
  display: flex;
  align-items: center;
  gap: 30px;
}

.container {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

.container.small {
  max-width: 900px;
}

.container.large {
  max-width: 1980px;
}

.overflow {
  overflow-x: hidden;
}

.block {
  display: block;
}

::before,
::after {
  pointer-events: none;
}

p:last-child,
li:last-child {
  margin-bottom: 0;
}

section {
  padding: 90px 0;
  position: relative;
}

.image-wrap,
.video-wrap {
  position: relative;
  overflow: hidden;
}

.image-wrap img,
.video-wrap video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#header {
  padding: 15px 0;
  transition: all 250ms;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  max-width: 100%;
}

.scroll #header {
  background-color: #13203C;
  transform: translateY(-100%);
}

.scroll-up #header {
  transform: translateY(0);
}

#header .container {
  justify-content: space-between;
}

#header_buttons {
  flex-wrap: wrap;
  justify-content: center;
}

.flyout {
  position: fixed;
  top: 0;
  right: 0;
  width: 580px;
  height: 100%;
  max-width: 100%;
  transform: translateX(100%);
  background-color: #fff;
  transition: all 250ms;
  z-index: 9;
  color: #303E48;
  overflow-y: auto;
}

.flyout .container {
  padding: 10% 0 0 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  position: relative;
  min-height: 100%;
}

.flyout .intro {
  padding: 0 10%;
}

.flyout.active {
  transform: translateX(0);
}

.flyout .intro > img {
  width: 80px;
  display: block;
  margin-bottom: 30px;
}

.flyout .intro small {
  display: block;
  margin-bottom: 15px;
}

.banner {
  padding: 0;
  height: 100vh;
  min-height: 700px;
}

.banner .container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
  max-width: 75%;
}

.banner .container h1 {
  color: #fff;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.banner .container h1 span {
  transition: all 1s;
  position: relative;
}

.graphic {
  position: absolute;
  pointer-events: none;
  transition: all 5s;
  z-index: 2;
}

.graphic img {
  display: block;
  width: 100%;
}

.banner .circle-small {
  top: 120px;
  right: 0;
  transform: translateX(60%) rotate(180deg);
  width: clamp(200px, 25vw, 600px);
}

.banner .circle-large {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 80%) rotate(180deg);
  width: clamp(300px, 55vw, 1080px);
}

.loaded .banner .circle-small {
  transform: translateX(60%) rotate(0);
}

.banner .circle-large.in-view {
  transform: translate(-50%, 80%) rotate(0);
}

.banner .dot-mesh {
  top: 100%;
  left: 0;
  transform: translate(-50%, -50%);
  position: fixed;
  transition: all 2s;
  opacity: 0;
}

.loaded .banner .dot-mesh {
  top: 50%;
  opacity: 1;
}

.banner .end {
  flex-basis: 100%;
  transition-delay: 500ms !important;
}

.banner .image-wrap,
.banner .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner .video-wrap video {
  width: 110%;
  height: 110%;
  position: relative;
  top: -5%;
  left: -5%;
}

.banner .image-wrap img {
  transition: all 10s;
}

.banner::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: 2;
  background: url(images/lines.svg) center bottom / 100% no-repeat;
  animation: moveWaves 20s infinite ease-in-out;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

.scroll-arrow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  width: clamp(80px, 10vw, 100px);
  height: clamp(80px, 10vw, 100px);
  animation: bounce 2s infinite;
}

.scroll-arrow img {
  display: block;
  width: 100%;
  position: relative;
  bottom: 0;
  transition: all 250ms;
}

.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 1.5s linear;
  z-index: 1;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 1px;
  height: 1px;
  background-color: white;
  opacity: 0;
  animation: fadeInOut infinite ease-in-out;
  animation-duration: 3s;
  animation-delay: calc(-3s * var(--i));
  border-radius: 50%;
}

.star.big {
  width: 3px;
  height: 3px;
}

.icons {
  padding-bottom: 0 !important;
}

.icon-grid {
  display: flex;
  gap: 10%;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.icon-item {
  flex-basis: calc(33.33% - 10%);
  text-align: center;
  margin-bottom: 10%;
  font-weight: 300;
  transition: all 1s;
  position: relative;
  top: 60px;
}

.icon-item.in-view {
  top: 0;
}

.icon-item img {
  display: block;
  margin: 0 auto 30px;
}

.icon-item h3 {
  margin-bottom: 30px;
}

.cta {
  text-align: center;
}

.cta .image-wrap {
  border-radius: 15px;
  height: clamp(500px, 50vw, 800px);
  overflow: visible;
}

.cta .image-wrap > img {
  border-radius: 15px;
}

.cta .image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, #ed1c24, rgba(0,0,0,0.3) 50%);
  z-index: 1;
  pointer-events: none;
  border-radius: 15px;
}

.cta .container {
  position: relative;
}

.cta .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 75%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 30px 30px 90px 30px;
  font-weight: bold;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.cta .text {
  padding-bottom: 30px;
}

.cta .demo-trigger {
  display: inline-block;
}

.cta .circle-small {
  top: 0;
  left: 0;
  transform: translate(-30%, -10%) rotate(180deg);
  width: clamp(200px, 25vw, 600px);
}

.cta .circle-large {
  bottom: 0;
  right: 0;
  transform: translate(40%, 60%) rotate(180deg);
  width: clamp(300px, 60vw, 1080px);
}

.cta .circle-large.in-view {
  transform: translate(40%, 60%) rotate(0);
}

.cta .circle-small.in-view {
  transform: translate(-30%, -10%) rotate(0);
}

.cta .dot-mesh {
  transition: all 2s;
  top: 60px;
  right: 0;
  opacity: 0;
  transform: translateX(50%) scale(2);
  z-index: 4;
}

.cta .dot-mesh.in-view {
  opacity: 1;
  transform: translateX(50%) scale(1);
}

#footer {
  padding: 30px 0;
  background: linear-gradient(180deg, transparent, #ed1c24);
  position: relative;
}

.home #footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: clamp(500px, 50vw, 800px);
  background: url(images/lines-2.svg) center 70% / 100% no-repeat;
  z-index: 1;
  animation: moveWaves 20s infinite ease-in-out;
}

#footer .form {
  text-align: center;
}

#footer .form > img {
  display: block;
  margin: 0 auto 30px;
  width: 80px;
}

#footer .form h2 {
  max-width: 520px;
  margin: 0 auto 60px;
}

#footer .gform_wrapper {
  text-align: left;
  padding: 0 15%;
}

#footer form {
  margin: 0;
}

#footer .gform_footer {
  padding-bottom: 0;
}

#wrapper .gform_wrapper label {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
}

#wrapper input:not([type="submit"]) {
  background: transparent;
  padding: 15px;
  border-radius: 10px;
  background: rgba(9, 19, 41, 0.4);
  color: #fff;
}

#wrapper .gform_required_legend,
#wrapper .gfield--type-captcha {
  display: none !important;
}

.messaging {
  padding: clamp(120px, 15vw, 320px) 0;
  text-align: center;
}

.messaging h3 {
  font-weight: 400;
  text-align: center;
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-family: "termina", sans-serif;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  justify-content: space-between;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-bottom a,
#wrapper legend {
  color: #fff;
}

#member_container.container {
  padding: 0px;
  z-index: 8;
}

#member_container section {
  padding: 30px;
}

#greeting_section {
  padding: 180px 30px 30px !important;
}

#greeting_section h1 {
  margin: 0;
}

#membership_section {
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 90px !important;
}

#membership_section > div {
  flex: 1;
}

#license_key_section .licenseKey {
  padding: 5px 10px;
  background: #fff;
  color: #000;
  border-radius: 5px;
}

#download_section .button-wrap {
  display: flex;
  gap: 15px;
}

#download_section .button-wrap .button {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
}

#upgrade_section select,
#wrapper #upgrade_section input:not([type="submit"]) {
  background-color: #e8e8e8;
  border-radius: 5px;
  color: #091329;
}

#upgrade_section #field_7_11,
#upgrade_section #field_7_3 {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  border-bottom: 1px solid #091329;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

#upgrade_section #field_7_11 label,
#upgrade_section #field_7_3 label,
#upgrade_section #input_7_3 {
  margin: 0;
  padding: 0;
}

#upgrade_section #field_7_11 label {
  white-space: nowrap;
}

#wrapper #upgrade_section #ginput_base_price_7_11,
#wrapper #upgrade_section #input_7_3 {
  margin: 0;
  background-color: transparent !important;
  border-radius: 0;
  color: #091329;
  padding: 0;
}

#upgrade_section #field_7_3 > label,
#upgrade_section #input_7_3 {
  font-size: 22px;
}

#wrapper #upgrade_section legend {
  color: #D61219;
}

#upgrade_section #input_7_14 {
  row-gap: 30px;
}

#upgrade_section h3 {
  margin-bottom: 60px;
}

#download_section #upgrade_button.active {
  background-color: #fff !important;
  color: #091329 !important;
}

#wrapper #upgrade_section .gform_wrapper label {
  color: #091329;
}

#field_7_11 > label,
#field_7_3 label {
  color: #ed1c24 !important;
}

#upgrade_section #ginput_product_price_7_11 {
  display: flex;
  gap: 10px;
}

#gform_wrapper_7 {
  overflow-x: hidden;
}

#premium_features {
  background-color: #fff;
  color: #091329;
}

.page-template-members #content {
  min-height: 100vh;
}

.page-template-members #footer {
  display: none;
}

#support_features {
  background-color: #fff;
  color: #091329;
}

#wrapper #support_features .gform_wrapper label {
  color: #091329;
}

#wrapper #support_features input:not([type="submit"]),
#wrapper #support_features textarea {
  background-color: #fff;
  border-radius: 5px;
  color: #091329;
}

#gform_wrapper_8 {
  padding-top: 60px;
}

.page-id-106 #footer {
  display: none;
}

@media (max-width: 1100px) {
  .icon-item {
    flex-basis: calc(50% - 10%);
  }
}

@media (max-width: 768px) {
  .icon-item {
    flex-basis: 100%;
  }
  .banner .container {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  #header .container,
  #membership_section {
    flex-direction: column;
  }
  .messaging h3 {
    font-size: 1.2rem;
  }
  .cta .content {
    padding: 15px 15px 45px 15px;
    font-weight: normal;
  }
  .footer-bottom {
    text-align: center;
  }
  #footer .gform_wrapper {
    padding: 0 30px;
  }
  .logo {
    max-width: 260px;
  }
}
