/*
Canvas and main body
*/

:root {
    --dark-color: hsl(var(--hue), 100%, 9%);
    --light-color: hsl(var(--hue), 95%, 98%);
    --base: hsl(var(--hue), 95%, 50%);
    --complimentary1: hsl(var(--hue-complimentary1), 95%, 50%);
    --complimentary2: hsl(var(--hue-complimentary2), 95%, 50%);
  
    --font-family: "Poppins", system-ui;
  
    --bg-gradient: linear-gradient(
      to bottom,
      hsl(var(--hue), 95%, 99%),
      hsl(var(--hue), 95%, 84%)
    );
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .main-home {
    padding: 2rem
  }
  
  body {
    max-width: 1920px;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    font-family: var(--font-family);
    color: var(--dark-color);
    background: var(--bg-gradient);
  }

  #progress-parent-text {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: black;
  }
  
  .orb-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }
  
  strong {
    font-weight: 600;
  }
  
  .overlay {
    width: 100%;
    max-width: 800px;
    max-height: 640px;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.375);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  .overlay__inner {
    max-width: 36rem;
  }
  
  .overlay__title {
    font-size: 1.875rem;
    line-height: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
  }
  
  .text-gradient {
    background-image: linear-gradient(
      45deg,
      var(--base) 25%,
      var(--complimentary2)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
  }
  
  .overlay__description {
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
  }
  
  .overlay__btns {
    width: 100%;
    max-width: 30rem;
    display: flex;
  }
  
  .overlay__btn {
    width: 50%;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--light-color);
    background: var(--dark-color);
    border: none;
    border-radius: 0.5rem;
    transition: transform 150ms ease;
    outline-color: hsl(var(--hue), 95%, 50%);
  }

  .loadersmall {
    margin: auto;
    margin-top: 0.5rem;
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.overlay-blog-btn {
  width: 12rem;
  height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-color);
  background: var(--dark-color);
  border: none;
  border-radius: 0.5rem;
  transition: transform 150ms ease;
  outline-color: hsl(var(--hue), 95%, 50%);
  margin-top: 20px;
  margin-right: 20px;
  position:absolute;
  top:0;
  right:0;
}

.blog-btn-format {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-color);
  background: var(--dark-color);
}
.successmessage {
  margin-top: 1rem;
  color: green;
}

.errormessage {
  margin-top: 1rem;
  color: red;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
  
  .overlay__btn:hover {
    transform: scale(1.05);
    cursor: pointer;
  }
  
  .overlay__btn--transparent {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    border-width: 2px;
    margin-right: 0.75rem;
  }
  
  .overlay__btn-emoji {
    margin-left: 0.375rem;
  }
  
  a {
    text-decoration: none;
    color: var(--dark-color);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Not too many browser support this yet but it's good to add! */
  @media (prefers-contrast: high) {
    .orb-canvas {
      display: none;
    }
  }
  
  @media only screen and (max-width: 1140px) {
    .overlay {
      padding: 8rem 4rem;
    }
  }
  
  @media only screen and (max-width: 840px) {
    body {
      padding: 0;
    }

    /* .main-home {
      padding: 0;
    } */
  
    .overlay {
      padding: 4rem;
      height: auto;
    }
  
    .overlay__title {
      font-size: 1.25rem;
      line-height: 2rem;
      margin-bottom: 1.5rem;
    }
  
    .overlay__description {
      font-size: 0.875rem;
      line-height: 1.5rem;
      margin-bottom: 2.5rem;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .overlay {
      display: block;
      padding: 1.5rem;
      justify-content: center;
    }
  
    .overlay__btns {
      flex-wrap: wrap;
    }
  
    .overlay__btn {
      width: 100%;
      font-size: 0.75rem;
    }
  
    .overlay__btn:first-child {
      margin-bottom: 1rem;
    }
  }
  



/*
FOOTER BEGINS HERE
*/
.container,
.container-sm,
.container-xs {
	width: 100%;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px
}

@media(min-width:481px) {

	.container,
	.container-sm,
	.container-xs {
		padding-left: 24px;
		padding-right: 24px
	}
}

.container {
	max-width: 1128px
}

.container-sm {
	max-width: 944px
}

.container-xs {
	max-width: 668px
}

[class*=container] [class*=container] {
	padding-left: 0;
	padding-right: 0
}

[class*=container] .container-sm {
	max-width: 896px
}

[class*=container] .container-xs {
	max-width: 620px
}

footer {
	display: block
}

.site-footer {
	position: absolute
}

.site-footer:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #333341;
    opacity:0.4;
	z-index: -3
}

.site-footer-inner {
	padding: 48px 0
}

.footer-top {
	padding-bottom: 12px
}

.footer-bottom {
	padding-top: 12px
}

.footer-blocks {
	display: flex;
	flex-wrap: wrap;
	margin-right: -24px;
	margin-left: -24px;
	margin-top: -12px
}

.footer-blocks:last-of-type {
	margin-bottom: 28px
}

.footer-blocks:not(:last-of-type) {
	margin-bottom: 12px
}

.footer-block {
	flex-grow: 1;
	flex-basis: 160px;
	box-sizing: content-box;
	padding: 12px 24px
}

.footer-block * {
	box-sizing: border-box
}

.footer-block ul li:not(:last-child) {
	margin-bottom: 4px
}

.footer-block a {
	color: #9ca9b3
}

.footer-block a:active,
.footer-block a:hover {
	color: #eceded
}

.footer-block-title {
	font-size: 14px;
	line-height: 22px;
	font-weight: 700;
	color: #eceded;
	text-transform: uppercase;
	margin-bottom: 8px
}

.invert-color .footer-block-title {
	color: #0c0c0f
}

.footer-nav a,
.footer-social a {
	display: flex
}

.footer-nav ul,
.footer-social ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	margin-bottom: 0
}

.footer-social ul {
	margin-right: -16px;
	margin-left: -16px
}

.footer-social li {
	padding: 0 8px
}

.footer-social a {
	padding: 8px
}

.footer-social a svg {
	fill: #2e73ff;
	transition: fill .15s ease
}

.footer-social a:hover svg {
	fill: #acadff
}

.footer-nav {
	margin-right: -12px;
	margin-left: -12px
}

.footer-nav a {
	color: #1a1c1e;
	padding: 0 12px
}

.footer-nav a:active,
.footer-nav a:hover {
	color: #eceded
}

@media(max-width:640px) {

	.footer-bottom>:not(:last-child),
	.footer-top>:not(:last-child) {
		margin-bottom: 24px
	}

  .video-not-play {
    font-size: 1rem;
  }
}

@media(min-width:641px) {
	.site-footer-inner {
		padding: 64px 0
	}

	.footer-bottom.space-between,
	.footer-top.space-between {
		display: flex;
		justify-content: space-between;
		align-items: center
	}

	.footer-bottom.invert-order-desktop>:first-child,
	.footer-top.invert-order-desktop>:first-child {
		order: 1
	}
}

.list-reset {
	list-style: none;
	padding: 0
}

.list-reset li {
	margin: 0;
    color: #000000
}

@media(max-width:640px) {
	.ta-l-mobile {
		text-align: left
	}

	.ta-c-mobile {
		text-align: center
	}

	.ta-r-mobile {
		text-align: right
	}

	.center-content-mobile {
		text-align: center
	}

	.center-content-mobile img,
	.center-content-mobile svg,
	.center-content-mobile video {
		margin-left: auto;
		margin-right: auto
	}

	.center-content-mobile .button-group {
		justify-content: center
	}

	.spacer-4-mobile {
		padding-top: 4px
	}

	.spacer-8-mobile {
		padding-top: 8px
	}

	.spacer-12-mobile {
		padding-top: 12px
	}

	.spacer-16-mobile {
		padding-top: 16px
	}

	.spacer-24-mobile {
		padding-top: 24px
	}

	.spacer-32-mobile {
		padding-top: 32px
	}

	.spacer-48-mobile {
		padding-top: 48px
	}

	.spacer-64-mobile {
		padding-top: 64px
	}
}

@media(max-width: 600px) {
  .site-footer {
    max-height: 150px;
  }

  .overlay__btn {
      margin-left: 0px;
      margin-right: 0 !important;
  }

  .site-footer-inner {
    padding: 20px 0;
  }

  /* .overlay {
    position: absolute;
    top: 20px;
  } */
} 

@media(max-width: 250px) {
  .site-footer {
    position: absolute !important;
    margin-top: 5rem;
    display: none;
  }

  body {
    padding: 0 !important;
  }

  /* .main-home {
    padding: 0 !important;
  } */

  .overlay {
    width: auto;
    text-align: center;
    justify-content: center;
    font-size: 9px;
    align-items: center;
    display: flex;
  }

  .overlay__description {
    margin-bottom: 5px;
  }

  .overlay__title {
    margin-bottom: 5px;
  }
}

@media(min-width:641px) {
	.ta-l-desktop {
		text-align: left
	}

	.ta-c-desktop {
		text-align: center
	}

	.ta-r-desktop {
		text-align: right
	}

	.center-content-desktop {
		text-align: center
	}

	.center-content-desktop img,
	.center-content-desktop svg,
	.center-content-desktop video {
		margin-left: auto;
		margin-right: auto
	}

	.center-content-desktop .button-group {
		justify-content: center
	}
}

.text-xxs,
figcaption {
	font-size: 14px;
	line-height: 22px
}