body {
  background: #1A1F24;
  font-family: 'Proxima Nova', sans-serif;
  color: #9FA7AF
}


nav.c3d-menu {
  width: 100%;
  position: absolute;
  top: 0;
}

nav.c3d-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
}

section,
footer {
  max-width: 1200px;
  padding: 0 50px;
  margin: auto;
}

header {
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
  max-width: 1200px;
  margin: auto;
  margin: 60px auto;
}

header .c3d-header-info{
  padding-left: 50px;
}

header .c3d-header-info h1{
  font-size: 48px;
  font-weight: 700;
}

header .c3d-header-info p {
  margin-bottom: 50px;
  color: #9FA7AF;
}

header .c3d-header-info .c3d-go-to-action {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

header .c3d-cube {
  height: 60vh;
  min-height: 510px;
  width: 100%;
  overflow: hidden;
  position: relative;
}


header .c3d-spline-viewer {
  height: calc(60vh + 60px);
  min-height: 570px;
}

header .c3d-gradient-content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  overflow: hidden;
  z-index: -1;
}

header .c3d-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3F7CF3;
  opacity: 0.2;
  /* filter: blur(30px); */
  background: -webkit-linear-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(63, 124, 243, 1) 30%, rgba(63, 124, 243, 1) 50%, rgba(63, 124, 243, 0) 65%);
  background:  -moz-linear-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(63, 124, 243, 1) 30%, rgba(63, 124, 243, 1) 50%, rgba(63, 124, 243, 0) 65%);
  background: -o-linear-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(63, 124, 243, 1) 30%, rgba(63, 124, 243, 1) 50%, rgba(63, 124, 243, 0) 65%);
  background: linear-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(63, 124, 243, 1) 30%, rgba(63, 124, 243, 1) 50%, rgba(63, 124, 243, 0) 65%);
  z-index: 1;
}


header .c3d-gradient-bg {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

header .c3d-gradient-bg img {
  width: 100%;
  height: 100%;
}

header .c3d-gradient-bg:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 31, 35, 1) 100%;
  background: -webkit-linear-gradient(ellipse at center, rgba(25, 31, 35, 0) 0%, rgba(25, 31, 35, 1) 70%, rgba(25, 31, 35, 1) 100%);
  background: -moz-linear-gradient(ellipse at center, rgba(25, 31, 35, 0) 0%, rgba(25, 31, 35, 1) 70%, rgba(25, 31, 35, 1) 100%);
  background: -moz-linear-gradient(ellipse at center, rgba(25, 31, 35, 0) 0%, rgba(25, 31, 35, 1) 70%, rgba(25, 31, 35, 1) 100%);
  background: radial-gradient(ellipse at center, rgba(25, 31, 35, 0) 0%, rgba(25, 31, 35, 1) 70%, rgba(25, 31, 35, 1) 100%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}


button,
a.c3d-btn-primary,
a.c3d-btn-primary-outline {
  height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
}

.c3d-btn-primary {
  background: #2664E0;
  border: 1px solid #2664E0;
  border: none;
  color: white;
  text-decoration: none;
  padding: 0px 25px;
}

.c3d-btn-primary.c3d-btn-icon {
  padding: 0px 10px;
  cursor: pointer;
}

.c3d-btn-primary.c3d-btn-icon span {
  font-size: 14px;
}

.c3d-btn-primary-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  padding: 0px 25px;
}

.c3d-chat {
  width: auto;
  height: 120px;
  background: #24292D;
  display: flex;
  position: relative;
  gap: 50px;
}

.c3d-chat-bubble {
  display: flex;
  align-items: flex-end;
}

.c3d-chat-bubble img {
  height: 130%;
}

.c3d-chat-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  gap: 20px;
}


.c3d-chat-input {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  position: relative;
}



.c3d-chat-input label {
  margin-bottom: 10px;
}

.c3d-chat-input input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9FA7AF;
  color: white;
  line-height: 2;
}

.c3d-chat-input input:-webkit-autofill,
.c3d-chat-input input:-webkit-autofill:hover, 
.c3d-chat-input input:-webkit-autofill:focus, 
.c3d-chat-input input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #24292D inset !important;
    -webkit-text-fill-color: white !important;
}

.c3d-chat-input input:focus-visible {
  border-color: #2664E0;
  outline-width: 0;
}

.c3d-contact-email{
  display: flex;
  align-items: center;
  color: white;
  font-size: 18px;
  line-height: 1.2;
}

.c3d-contact-email p{
  margin: 0;
}

.c3d-contact-email a{
  color: #9FA7AF;
}

.c3d-social-icons {
  /* display: flex; */
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 25px;
  padding: 60px 0;
}

.c3d-social-icons a {

  color: #9FA7AF;
  text-decoration: none;

}

.c3d-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  height: 60px;
}

.c3d-copyright .c3d-text {
  font-size: 12px;
}

.c3d-text-error{
  color: #FFB300;
  margin: 10px 0;
}

.c3d-text-success{
  color: #36ac68;
  margin: 10px 0;
}


.c3d-loading{
  /* position: absolute;
 right: 9%;
 bottom: 10px;
 opacity: 1; */
}

.c3d-circle-loader {
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-left-color: #36ac68;
  animation: loader-spin 1.2s infinite linear;
  position: relative;
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.c3d-load-complete {
  -webkit-animation: none;
  animation: none;
  border-color: #36ac68;
  transition: border 500ms ease-out;
}

.c3d-checkmark {
  display: none;
}
.c3d-checkmark.draw:after {
  animation-duration: 400ms;
  animation-timing-function: ease;
  animation-name: checkmark;
  transform: scaleX(-1) rotate(135deg);
}
.c3d-checkmark:after {
  opacity: 1;
  height: 10px;
  width: 5px;
  transform-origin: left top;
  border-right: 2px solid #36ac68;
  border-top: 2px solid #36ac68;
  content: "";
  left: 2px;
  top: 11px;
  position: absolute;
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 6px;
    opacity: 1;
  }
  40% {
    height: 5px;
    width: 6px;
    opacity: 1;
  }
  100% {
    height: 12px;
    width: 6px;
    opacity: 1;
  }
}


@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  header {
    min-height: 70vh;
  }
}



@media (min-width: 768px) and (max-width: 1024px) {
  .c3d-chat {
    height: 100px;
  }
  header .c3d-header-info .c3d-go-to-action{
    flex-direction: column;
    width: 80%;
    gap: 10px;
  }

  header .c3d-header-info .c3d-go-to-action a{   
   justify-content: center;
  }

  header .c3d-header-info h1{
    font-size: 38px;
  }
  header {
    gap: 40px;
  }

  header .c3d-cube{
    width: 150%;
  }
}

@media (min-width: 550px) and (max-width: 768px) {
  header {
    gap: 40px;
    flex-direction: column-reverse;
    padding: 0;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  header .c3d-header-info{
    padding: 0 50px;
  }
  
}

@media only screen and (max-width: 600px) {
  nav.c3d-menu ul {
    padding: 10px
  }
  section,
  footer {
    padding: 0 24px;
  }
  header {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  header .c3d-header-info{
    padding: 0 24px;
  }

  header .c3d-header-info h1{
    font-size: 42px;
  }

  header .c3d-header-info h3{
    font-size: 16px;
  }

  header .c3d-header-info .c3d-go-to-action {
    gap: 8px;
  }

  button, a{
    height: 44px;
  }

  .c3d-btn-primary-outline,
  .c3d-btn-primary {
    padding: 0px 16px;
    font-size: 14px;
  }

  .c3d-chat {
    height: auto;
     gap: 8px; 
    flex-direction: column; 
    width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .c3d-chat-bubble {

    align-items: flex-start;
  }

  .c3d-chat-bubble img {
    height: 60px;
  }

  .c3d-chat-form {
    gap: 16px;
  }
  .c3d-copyright{
    flex-direction: column;
  }
}



/* 
.c3d-lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height:40px;
}
.c3d-lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.c3d-lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.c3d-lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.c3d-lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */
