/*--------------------------------------------------------------
# Core / theme / vars
--------------------------------------------------------------*/

/*
    Fonts
    font-family: 'Archivo Black', sans-serif;
    font-family: 'Roboto', sans-serif;
*/

:root {
    --PrimaryBG: rgb(22, 22, 22);
    --SecondaryBG: rgb(35, 35, 35);

    --FullWhite: rgb(255, 255, 255);
    --OpaqueWhite: rgba(255, 255, 255 , 0.8);

    --PrimaryTheme: rgb(81, 122, 236);
}
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color:var(--SecondaryBG);
    overflow-x: hidden; 
    margin: 0px;
    padding: 0px;
    width: 100%;
    outline: none;
    color: transparent;
}
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
* {
    margin: 0px;
    padding: 0px;
}
ul , li {
    list-style: none !important;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: none;
    padding: 0px;
    margin: 0px;
}

#PreviewHero {
    background-color: var(--SecondaryBG);
    height: 100vh;
    width: 100%;
    padding: 0%;
    margin: 0%;
    display: table;
    outline: none;
    white-space: normal;
}
#FeaturesHero {
    background-color: var(--PrimaryBG); 
    width: 100%;
    padding: 0%;
    height: auto;
    margin: 0%;
    display: table;
    outline: none;
    white-space: normal;
}
#ShowcaseHero {
    background-color: var(--SecondaryBG);
    height: auto;
    padding: 0%;
    margin: 0%;
    display: table;
    outline: none;
    white-space: normal;
    color: white;
}

#TestimonialsHero {
    background-color: var(--PrimaryBG); 
    height: auto;
    padding: 0%;
    margin: 0%;
    display: table;
    outline: none;
    white-space: normal;
}
#PricingHero {
    background-color: var(--SecondaryBG);
    height: auto;
    padding: 0%;
    margin: 0%;
    display: table;
    outline: none;
    white-space: normal;
    color: white;
    margin-left: 20px;
    margin-right: 20px;
}
#FAQHero {
    width: 100%;
    background: var(--SecondaryBG);
    display: table;
    margin: 0;
    padding: 0;
}
.FooterHero {
	background-color: var(--PrimaryBG);
    color: white;
    height: auto;
    width: 100%;
    position: absolute;
}


/*--------------------------------------------------------------
# Return to 'TOP' button 
--------------------------------------------------------------*/
.top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    text-decoration: none;
    color: white;
    z-index: 19;
    visibility: hidden;
}
.top:hover
{
    text-decoration: none;
    color: white;
}
a {
	text-decoration: none; 
	color: inherit; 
}


/*--------------------------------------------------------------
# Button + hover effect
--------------------------------------------------------------*/
.ExpandBTN {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    margin-right: 5%;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    cursor: none;
    margin-top: 15px;
    margin-bottom: 15px;
}
.ExpandBTN::after,
.ExpandBTN::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}
.ExpandBTN::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
}
.ExpandBTN::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}
.ExpandBTN:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}
.ExpandBTN:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}
.ExpandBTN:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}
.container h3 span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
}
.container h3 span.cursor.typing {
    animation: none;
}
@keyframes blink {
    0%  { background-color: #ccc; }
    49% { background-color: #ccc; }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100%  { background-color: #ccc; }
}



/*--------------------------------------------------------------
# Custom cursor
--------------------------------------------------------------*/
#cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
}
  
#cursor-border {
    --size: 25px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-shadow: 0 0 0 1px white;
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
    height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 999;
    opacity: 0.5;
}

input {
    font-family: "Century Gothic", sans-serif;
    font-size: 2rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #64ffda;
    border: 1px solid #64ffda;
    border-radius: 0;
    box-shadow: 0 0 10px #64ffda, 0 0 10px #64ffda inset;
    text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda;
    transition: 0.3s ease-out;
}
  
input:hover {
    color: black;
    background-color: #64ffda;
    border-color: #64ffda;
    box-shadow: 0 0 80px #64ffda;
}
  
input:active {
    transform: scale(0.85);
    box-shadow: 0 0 30px #64ffda;
}
  
input:nth-of-type(2) {
    margin-left: 2rem;
    color: white;
    border: 1px solid white;
    box-shadow: 0 0 10px white, 0 0 10px white inset;
    text-shadow: 0 0 5px white, 0 0 10px white;
}
  
input:nth-of-type(2):hover {
    color: black;
    background-color: white;
    border-color: white;
    box-shadow: 0 0 80px white;
}
  
input:nth-of-type(2):active {
    transform: scale(0.85);
    box-shadow: 0 0 30px white;
}

/*--------------------------------------------------------------
# Header content customization
--------------------------------------------------------------*/
.HeaderContent h1 {
    font-family: sans-serif;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -2px;
    color: white;
    font-size: 60px;
    padding: 0;
    margin: 0;
    text-align: left;
    background: linear-gradient(to right, #fff 50%, rgb(81, 122, 236) 50%,#274cc5);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.2s ease-out;
    overflow: hidden;
}
.HeaderContent h1:hover{
    background-position: -100%;
}
.HeaderContent h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
    text-align: left;
    padding: 0;
    margin: 0;
}
.HeaderContent h3 {
    font-family: 'Azeret Mono', monospace;
    font-weight: 600;
    letter-spacing: -2px;
    padding: 0;
    margin: 0;
    /* font-family: 'Red Hat Mono', monospace; */
    color: white;
    font-size: 40px;
    text-align: left;
}
.HeaderImage {
    border-radius: 0px;
    transform: scale(.9); 
    -ms-transform: scale(.9); 
    -webkit-transform: scale(.9);
    padding-top: 2px;
}
.HeaderImage:hover {
    border-radius: 10px;
    transform: scale(1.05); 
    -ms-transform: scale(1.05); 
    -webkit-transform: scale(1.05); 
    /*  Fix blur */
    -ms-transform:  rotate(0.00000000001deg);
    -webkit-transform:  rotate(0.00000000001deg);
    transform: rotate(0.00000000001deg);
}
.typed-text {
    color: white;
    font-family: sans-serif;
    letter-spacing: -1px;
    font-family: 'Space Mono', monospace;
}
.TypePrefix {
    color: white;
    font-family: sans-serif;
    letter-spacing: -1px;
    font-family: 'Space Mono', monospace;
}



.MascotContainer {
    position: absolute;
    /* background: yellow; */
    width: auto;
    padding: 0;
    margin:0;
    bottom: -40px;
    z-index: 1;
    margin-left: 2%;
}
.MascotContainer img {
    bottom: -100px !important;
    z-index: -1;
    min-height: 150px;

    display: block;
    max-width: 100%;
    height: auto;

}
.Mascot {
    background-color: purple;
    position: absolute;
    bottom: 0;

    
    padding: 0;
    margin:0;
}

/*--------------------------------------------------------------
# Animated circle pulse CSS 
--------------------------------------------------------------*/
.CircPulse {
	background: var(--FullWhite);
	opacity: 1;
	position: relative;
	content: '';
	height: 2000px;
	width: 2000px;
	left: -900px;
	right: 0;
	top: -800px;
	margin: 0 auto;
	border-radius: 50%;
	box-shadow: 0 0 1px var(--FullWhite);
	animation: pulsate 9s ease-out infinite;
}
.CircPulse :after {
    animation-delay: 2s;
	-webkit-animation-delay: 2s;
}
.CircPulse span{
    animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
@keyframes pulsate {
	0% {
        transform: scale(0, 0);
		-webkit-transform: scale(0, 0);
		opacity: .0291;
	}
	100% {
        transform: scale(0, 0);
		-webkit-transform: scale(1.2, 1.2);
		opacity: 0;
	}
} 
/*--------------------------------------------------------------
# Wave container & position
--------------------------------------------------------------*/
.WaveContainer {
    width: 100%;
    height:100%;
    position: relative;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    display: table-row;
    z-index: 666;
    vertical-align: middle;
    outline: none;
    color: var(--SecondaryBG);
}

.WaveContainer svg {
    animation: animateWave 1000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
    
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: auto;
    width: 100%;
    overflow: hidden;
}
@keyframes animateWave {
    0% {
      transform: scale(1,1);
    }
    100% {
      transform: scale(1,1);
    }
}
/*--------------------------------------------------------------
# Scroll down arrow "animation" on header hero
--------------------------------------------------------------*/
.scroll-down {
    position: absolute;
    left: 50%;
    top: 95%;
    display: block;
    text-align: center;
    font-size: 20px;
    z-index: 0;
    text-decoration: none;
    text-shadow: 0;
    width: 13px;
    height: 13px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, 0) rotate(45deg);;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
    animation: fade_move_down 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes fade_move_down {
    0% {
          transform: translate(0, -20px) rotate(45deg);
          opacity: 0;
    }
    50% {
          opacity: 1;
    }
    100% {
          transform: translate(0, 20px) rotate(45deg);
          opacity: 0;
    }
}

/*--------------------------------------------------------------
# Feature hero customization
--------------------------------------------------------------*/
.FeaturesShowcase {
    color: white;
    padding: 0;
    margin: 0;
    width: 100%;
}
.FeaturesTitle {
    font-family: sans-serif;
    font-size: 65px;
    font-weight: 785;
    letter-spacing: -2px;
    color: white;
    font-size: 60px;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 80px;
}
.nopadding {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.FeaturesShowcase .BoxContainerGrey {
    background-color: #1e1e1e;
    border-radius: 1rem;
}
.FeaturesShowcase .FeaturesShowcase .fs-sm {
    margin: 10px;
    color: var(--OpaqueWhite); 
}
.FeaturesShowcase .AnimatedFeatureBox:hover{
    opacity: 1;
    transform: scale(1.05);
    animation: ShakeAnim infinite 1.2s linear;
}
.Lightning:hover{
    color: #FFDD00;
}
.Cookie:hover {
    color: #b68f72;
}
.FeaturesShowcase .TextBoxContainer{
    color: var(--OpaqueWhite);
    font-family: 'Courier New', Courier, monospace;
}
.FeaturesShowcase .TextBoxContainer:hover{
    color: rgba(255, 255, 255, 1);
}
.FeaturesShowcase .FeatureHeader {
    color:white;
    font-style: bold;
}



.FeaturesSvg {
    overflow: hidden;
    vertical-align: bottom;
    outline: none;
    margin: 0;
    padding: 0;
    margin-bottom: -5px !important;
} 


@keyframes ShakeAnim {
    from { transform: scale3d(1, 1, 1); }
  
    10%, 20% {
      transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
  
    30%, 50%, 70%, 90% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
  
    40%, 60%, 80% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
  
    to { transform: scale3d(1, 1, 1); }
}



/*--------------------------------------------------------------
# FAQ (card / style)
--------------------------------------------------------------*/
.InnerContentTest {
    height: auto;
    /* background: rgb(75, 0, 146); */
    color: rgba(255, 255, 255, 0.6);
    width:  100%;
    left: 0;
    right: 0;
    display: table-row;
    z-index: 666;
}
.InnerContentTest h1 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-bottom: 5px;
    padding-left: 10px;
}
details {
    margin-bottom: .5rem;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    background-color: var(--PrimaryBG); 
    /* border: #00d07e solid; */
  }
  .TitleColour:hover
  {
    color:  var(--FullWhite);
  }
  summary {
    padding: 1rem;
    display: block;
    background: #333;
    padding-left: 2.2rem;
    position: relative;
    cursor: pointer;
  }
  
  summary:before {
    content: '';
    border-width: .4rem;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 1.3rem;
    left: 1rem;
    transform: rotate(0);
    transform-origin: .2rem 50%;
    transition: .25s transform ease;
  }
  
  /* THE MAGIC 🧙‍♀️ */
  details[open] > summary:before {
    transform: rotate(90deg);
  }
  
  details summary::-webkit-details-marker {
    display:none;
  }
  
  details > ul {
    padding-bottom: 1rem;
    margin-bottom: 0;
  }
  
  .details-expanded {
      padding: 0 2rem;
      padding-top: 6px;
  }
  

.details-expanded:hover {
    color: white;
}

/*--------------------------------------------------------------
# Footer & bottom content 
--------------------------------------------------------------*/
.FooterHero {
	background-color: var(--PrimaryBG);
    color: white;
    height: auto;
    width: 100%;
    position: absolute;
}
.footer-widget-area {
    padding: 10px 0;
}
.footer-widget-area p{
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
}	
.footer-widget-area li{
    margin-top: 10px;
    list-style-type: none; 
    z-index: 12;
}
.footer-widget-area li a{
    font-size: 20px;
    color: var(--black);
}

.footer-widget-area li a:hover{
 text-decoration: none;
 color:  rgb(81, 122, 236);
}

.footer-widget-heading h4{
    font-weight: bold;
    font-size: 25px;
}

.linkediting .fa{
    color:  rgb(81, 122, 236);

}

.FooterHero ul {
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}

.FooterHero ul li{
	list-style: none;
}

.FooterHero a:link { 
    text-decoration: none; 
}


.FooterHero a:visited { 
    text-decoration: none; 
}


.FooterHero a:hover { 
    text-decoration: none; 
}


.FooterHero a:active { 
    text-decoration: none; 
}



@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
   .footer-social-icon span{
     font-size: 14px;
 }
}

@media (max-width: 767.98px) {
    .copyright-text p{
    text-align:center;
     }

     .footer-menus ul{
     text-align:center;
    }

    .footer-social-icon span{
     font-size: 18px;
 }
}

@media (max-width: 575.98px) {
    .footer-widget-area{
        padding: 0 20px;
    }

    .copyright-text p{
        text-align:center;
        font-size:16px;
    }

    .footer-menus ul {
        text-align:center;
    }

    .footer-menus ul li a{
        font-size:16px;
    }
}

.FooterFa {
    color: white;
    padding-right: 10px;
}
.FooterFa:first-child {
    padding-left: 0 !important;
}
.FooterFa:hover {
    color:  rgb(81, 122, 236);
}


/*--------------------------------------------------------------
# Custom floating "squares" in footer container
--------------------------------------------------------------*/
.AnimatedContainer {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; 
}

.FooterHero .circles{
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0.5;

}

.FooterHero .circles li{
    position: relative;
    list-style: none;

    background: rgba(35, 35, 35, 1);
    animation: animate 15s linear infinite;
    bottom: -150px;

}

.FooterHero .circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.FooterHero .circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.FooterHero .circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.FooterHero .circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.FooterHero .circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.FooterHero .circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.FooterHero .circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.FooterHero .circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 5s;
    animation-duration: 45s;
}

.FooterHero .circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.FooterHero .circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}



/*--------------------------------------------------------------
# Pricing section (content)
--------------------------------------------------------------*/
.PriceCardHeaderTitle {
    font-family: sans-serif;
    font-size: 55px;
    font-weight: 785;
    letter-spacing: -2px;
    color: white;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-bottom: 10px;
}
.PriceContainer {
    background-color: var(--PrimaryBG); 
    padding: 30px;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 60px;
}
.PaymentMethods {
    margin-right: 10px;
}
.PaymentMethodContainer svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
}
.card-s hr {
    width: 70%;
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 15px;
}
.iconlist {
    text-align: left;
    margin: 0;
    padding: 0;
    color: var(--OpaqueWhite);
    padding-right: 20px;
}
.PriceContainer:hover .iconlist{
    color: rgba(255, 255, 255, 1);
}
.card-s .fa-solid {
    color: var(--OpaqueWhite);
    padding-right: 10px;
    text-align: center;
}
.card-s:hover {
    border: solid white 0.5px;
}
.card-s:hover .PriceCardText {
    color: white;
}
.PriceCardHeader {
    font-family: sans-serif;
    font-size: 65px;
    font-weight: 785;
    letter-spacing: -2px;
    color: white;
    font-size: 60px;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 5px;
}
.PriceCardText {
    color: var(--OpaqueWhite);
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 999;
}
.USD {
    color: white;
    font-size: 60px;
    padding-right: 1px;
    font-style: bold;
}
.PriceCardTerm {
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: 200;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: +1px;
}
.ShowcaseBTN {
    border-radius: 0.75rem;
    background-color:  rgb(81, 122, 236);
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 8px 10px;
    transition: ease-in-out 0.7s;
}
.ShowcaseBTN:hover {
    background: rgba(81, 122, 236 , 0.8) radial-gradient(circle, transparent 1%,rgba(81, 122, 236,0.8)1%) center/15000%;
}
.iconlist li ul {
    text-decoration: none;
    list-style-type: none;
    list-style: none;
}
.card-s {
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    width: 100%;
    background-color: var(--SecondaryBG);
    background-clip: border-box;
    border-radius: 1rem;
    padding: 10px;
}



/*--------------------------------------------------------------
# Testimonials section & content
--------------------------------------------------------------*/
#testimonial_area {
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    background-color: var(--PrimaryBG); 
    height: auto;
    padding-top: 10px;
}
.box-area {
    padding: 30px;
    position: relative;
    display: block;
    background: rgb(35,35,35);
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 40px 0;
    border-radius: 1rem;
}
.box-area h5 {
    font-size: 16px;
    font-weight: 700;
    color: rgb(123, 109, 255);
    margin-top: 30px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.box-area span {
    color: white;
    display: block;
    font-size: 13px;
    margin: 0 0 10px;
    font-weight: 400;
}
.box-area .content {
    color: white;
}
.box-area .img-area {
    width: 90px;
    height: 90px;
    position: absolute;
    top: -40px;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    right: 0;
    z-index: 1;
    border-radius: 1rem;
}
.box-area .img-area img {
    width: 100%;
    height: auto;
    width: 90PX;
    height: 91px;
}
.socials {
    margin-top: 30px;
}
.socials i:hover
{
    color: rgba(255, 255, 255, 1);
}
.socials i {
    margin: 0 10px;
    color: var(--OpaqueWhite);
    font-size: 18px;
}
#testimonial_area .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}
#testimonial_area .owl-prev, #testimonial_area .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: rgb(255,255,255,0.8);
    border-radius: 50%;
    text-align: center;
   /* background: #fff;
    */
    position: absolute;
}
#testimonial_area .owl-prev, #testimonial_area .owl-next:hover{
    color: rgb(255,255,255,1);
}
#testimonial_area .owl-prev {
    left: -60px;
    top: -30px;
}
#testimonial_area .owl-next {
    right: -60px;
    top: -30px;
}
@media only screen and (max-width: 991px) {
    .owl-nav {
        display: none;
   }
}
@media only screen and (max-width: 767px) {
    .box-area {
        text-align: center;
   }
    .owl-nav {
        display: none;
   }
}

/*--------------------------------------------------------------
# ShowcaseHero / Choose us section
--------------------------------------------------------------*/
.StatsSVG {
    padding-top: 24px;
}
.wow {
    visibility: hidden;
}
.ShowcaseTitle {
    font-family: sans-serif;
    font-size: 65px;
    font-weight: 785;
    letter-spacing: -2px;
    color: white;
    font-size: 60px;
    padding: 0;
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 48px;
}
p.console{
    font-family: 'Ubuntu Mono', monospace;
    font-weight: 200px;
    font-style: bold;
}
p.console2{
    font-family: 'Ubuntu Mono', monospace;
    padding: 0;
    margin: 0;
}
header.terminal{
   background:var(--PrimaryBG);
   height:30px;
   border-radius:8px 8px 0 0;
   padding-left:10px;
}
.terminal-container header .button{
   width:12px;
   height:12px;
   margin:10px 4px 0 0;
   display:inline-block;
   border-radius:8px;
}
.green{
   background-color: #3BB662 !important;
}
.red{
   background-color: #E75448 !important;
}
.yellow{
   background-color: #E5C30F !important;
}
.terminal-container{
   text-align:left;
   width:100%;
   border-radius:10px;
   margin:auto;
   margin-bottom:14px;
   position:relative;
}
.terminal-fixed-top{
   margin-top: 30px;
}
.terminal-home{
    background-color: #1f1f1f;
    padding: 1.5em 1em 1em 2em;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    color: #FAFAFA;
}
.UsHeader {
    font-family: 'Inter', sans-serif;
    font-size: 65px;
    font-weight: 755;
    letter-spacing: -1px;
    color: white;
    font-size: 60px;
    padding: 0;
    margin: 0;
}
.UsSubText {
    color: var(--OpaqueWhite);
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
}
.UsSubText:hover {
    color: var(--FullWhite);
}


/*--------------------------------------------------------------
# Sellix embed customization ?
--------------------------------------------------------------*/
.sellix-backdrop {
    background: #00000075 !important;
    backdrop-filter: blur(8px) !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
}


/*--------------------------------------------------------------
# Manual media query for smaller devices (fix some misc bugs)
--------------------------------------------------------------*/
@media (max-width: 978px) {
    .IframeVim {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .PaymentMethods {
        margin-right: 0px;
        text-align: center;
        align-items: center;
    }
    .PaymentMethodContainer {
      text-align: center;
      align-items: center;
    }
    .ContentPT {
        padding-top:  0px;
        margin-top: 0px;
    }
    .ContentPB {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .IframeVim {
        height: 300px;
    }
    .PriceCardText p {
        font-size: 15px;
    }

    .UsHeader {
        /* //text-align: center; */
        font-size: 53px;
    }

    .typed-text {
        font-size: 34px;
    }

    .InnerContentTest h1 {
        font-size: 49px;
    }
  }
