
:root {

    --clr-accent-300: #081521;
    --clr-accent-100: hsl(13, 100%, 96%);
  
    --clr-primary-400: #F3F3F3;
  
    --clr-neutral-900: 	rgb(0, 2, 11);
    --clr-neutral-100: hsl(0, 0%, 100%);
  
    --ff-primary: 'Montserrat Medium', sans-serif;
    --ff-body: var(--ff-primary);
    --ff-heading: var(--ff-primary);
  
    --fw-regular: 400;
    --fw-semi-bold: 500;
    --fw-bold: 700;
  
    --fs-300: 0.8125rem;
    --fs-400: 0.875rem;
    --fs-500: 0.9375rem;
    --fs-600: 1rem;
    --fs-700: 1.875rem;
    --fs-800: 2.5rem;
    --fs-900: 3.5rem;
  
    --fs-body: var(--fs-400);
    --fs-primary-heading: var(--fs-800);
    --fs-secondary-heading: var(--fs-700);
    --fs-nav: var(fs--500);
    --fs-button: var(--fs-300);
  
    --size-100: 0.25rem;
    --size-200: 0.5rem;
    --size-300: 0.75rem;
    --size-400: 1rem;
    --size-500: 1.5rem;
    --size-600: 2rem;
    --size-700: 3rem;
    --size-800: 4rem;
    --size-900: 5rem;
  
  }
  
  @media (min-width: 50em){
    :root{
  
        --fs-body: var(--fs-500);
        --fs-primary-heading: var(--fs-900);
        --fs-secondary-heading: var(--fs-800);
        --fs-nav: var(--fs-300);
        
    }
  }
  
  
  /* Box sizing rules */
  *,
  *::before,
  *::after {
  box-sizing: border-box;
  }
  
  /* Remove default margin */
  *{
  margin: 0;
  padding: 0;
  font: inherit;
  
  }
  
  /* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
  ul[role='list'],
  ol[role='list'] {
  list-style: none;
  }
  
  /* Set core root defaults */
  html:focus-within {
  scroll-behavior: smooth;
  }
  
  html,
  body{
    height: 100%
  }
  
  /* Set core body defaults */
  body {
  text-rendering: optimizeSpeed;
  line-height: 1.75;
  }
  
  /* A elements that don't have a class get default styles */
  a:not([class]) {
  text-decoration-skip-ink: auto;
  }
  
  /* Make images easier to work with */
  img,
  picture,
  svg {
  max-width: 100%;
  display: block;
  }
  
  
  
  /* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
  @media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  }
  
  
  
  
  
  
  /* general styling */
  
  body{
    font-size: var(--fs-body);
    font-family: var(--ff-body);
    color: var(--clr-primary-400);
    /* background-color: 	rgb(0, 2, 11); */
    background-color: #000;
  
  }
  
  p:not([class]) {
    opacity: 0.7;
    
  }
  
  p[data-width="wide"] {
    max-width: 43ch;
  }
  
  .gradient {
    background: -webkit-linear-gradient(left,#1BD8D7,#1BA8DE);
    background: linear-grdient(to right,#1BD8D7,#1BA8DE);
  
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  
  
  /* button */
  
  .button {
    display: inline-flex;
    cursor: pointer;
    text-decoration: none;
    border: 0;
    border-radius: 100px;
    padding: 1.25em 2.5em;
    font-weight: var(--fw-bold);
    font-size: var(--fs-button);
    line-height: 1;
    color: var(--clr-neutral-100);
    background-color: var(--clr-accent-400);
    box-shadow: 0 1em 0.5em -1em var(--clr-accent-500);
  
  }
  
  .button[data-type="inverted"] {
    background-color: var(--clr-neutral-100);
    color: var(--clr-accent-400);
  
  }
  
  .button:hover,
  .button:focus-visible {
    background-color: #6dc66d;
    scale:1.03
  }
  
  .button[data-type="inverted"]:hover,
  .button[data-type="inverted"]:focus-visible {
    background-color: var(--clr-neutral-100);
    color: var(--clr-accent-300);
  
  }
  
  /* navigation */
  
  .logo-top {
    width: 180px;
  }
  
  .logo-bottom {
    width: 210px;
    margin-bottom: 5px;
  }
  
  
  .blur {
    position: absolute;
    top: 250px;
    right: 15%;
    width: 150px;
    height: 150px;
    opacity: 0.9;
    background: linear-gradient( 213.94deg, var(--clr-accent-500) 90%, var(--clr-accent-500) 90% );
    filter: blur(120.604px);
    border-radius: 21.3448px;
    z-index: -100;
  }
  .blur2 {
    position: absolute;
    top: 450px;
    left: 35%;
    width: 150px;
    height: 150px;
    opacity: 0.9;
    background: linear-gradient( 213.94deg, var(--clr-accent-500) 90%, var(--clr-accent-500) 90% );
    filter: blur(120.604px);
    border-radius: 21.3448px;
    z-index: -100;
  }
   
  
  
  
  
  
  
  .Socials {
    display: flex;
    padding-left: 10PX;
  }
  
  .twitter-icon {
    margin-left: 15px;
    width: 24px;
    height: 19.5px;
  }
  
  .twitter-icon:hover {
    scale: 1.1;
    filter: brightness(100);
  }
  
  .instagram-icon {
    margin-left: 15px;
  }
  
  .instagram-icon:hover {
    scale: 1.1;
    filter: brightness(100);
  }
  
  .youtube-icon:hover {
    scale: 1.1;
    filter: brightness(100);
  }
  
  
  .primary-header {
    padding-top: 2rem;
  }
  
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
  }
  
  .mobile-nav-toggle {
    display: none;
  }
  
  .nav-list {
    font-size: var(--fs-nav);
    
  }
  
  .nav-list {
    display: flex;
    gap: clamp(var(--size-400), 5vw, var(--size-700));
    font-weight: var(--fw-semi-bold);
  }
  
  .nav-list a {
    text-decoration: none;
    color: var(--clr-primary-400);
  }
  
  .nav-list a:hover, 
  .nav-list a:focus {
    color: var(--clr-accent-400);
  }
  
  @media (max-width: 50em) {
    .primary-navigation {
        display: none;
        position: fixed;
        padding: var(--size-700);
        inset: 5rem var(--size-400) auto;
        max-width: 25rem;
        margin-left: auto;
        background: #16121E;
        border-radius: var(--size-100);
        box-shadow: 0 0 0.75em rgb(0,0,0,0.05)
  
    }
  
    .primary-header[data-overlay]::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: linear-gradient(rgb(0 0 0/0), rgb(0 0 0/0.8));
    }
  
    .nav-list {
        display: grid;
        gap: var(--size-600);
        text-align: center;
        font-weight: var(--fw-bold);
        
    }
  
    
  
    .primary-navigation[data-visible] {
        display: block;
        z-index: 300;
        
    }
  
    .mobile-nav-toggle {
        display: block;
        position: fixed;
        top: var(--size-600);
        right: var(--size-400);
        cursor: pointer;
        background: transparent;
        border:0;
        padding: 0.5em;
        z-index: 300;
    }
    
    .mobile-nav-toggle .icon-close{
        display: none;
    }
  }
  
  /* footer nav */
  
  .footer-nav{
    columns: 2;
  }
  
  .footer-nav a {
    color:var(--clr-neutral-100);
    text-decoration: none;
    line-height: 2.5;
    
  
  }
  
  .footer-nav a:is(:hover, :focus) {
    color:var(--clr-accent-400);
  }
  
  
  
  /* cta */
  
  .cta {
    position: relative;
    isolation: isolate;
    text-align: center;
    background-image: linear-gradient(to right, var(--clr-accent-400) , var(--clr-accent-300));
  }
  
  @media (min-width: 50em) {
    .cta {
        text-align: left;
    }
  }
  
  /* .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: 
        url('images/bg-tablet-pattern.svg'),
        url('images/bg-tablet-pattern.svg');
    background-position: -15rem -5rem, 80rem -42rem;
    background-repeat: no-repeat;
    opacity: 0.1;
  } */
  
  
  /* Utility classes */
  
  .visually-hidden {
    position: absolute;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  }
  
  .container {
    --max-width: 1110px;
    --padding: 1rem;
  
    width: min(var(--max-width), 100% - (var(--padding)*2));
    margin-inline: auto;
  }
  
  .even-columns {
    display: grid;
    gap: 1rem;
  }
  
  .even-columns p{
     /* set the width of the paragraph based on the number of characters per line */
  overflow-wrap: break-word; /* break words that exceed the width */
  word-wrap: break-word; /* same as overflow-wrap for some older browsers */
  max-width: 460px;
  }
  
  
  .uneven-columns {
    display: flex;
    padding:0px 0px 1rem 0px;
    border-style: solid;
    border-color: #181818;
    border-width: 1px;
    border-radius: 20px;
    transition: 200ms;
    
  }
  
  .uneven-columns:hover {
    display: flex;
    background-image: linear-gradient(#30303B,#16121E);
    border-radius: 20px;
    scale:1.02;
  }
  
  
  .div-icon { 
    display: flex;
    width:100px;
    
  }
  
  .icons-mid {
    width: 60px;
    margin:auto;
    background-color: rgba(0, 255, 255, 0.048);
    border-radius: 100000px;
    padding: 16px;
  }
  
  
  
  
  @media (min-width: 50em) {
    .even-columns{
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }
  }
  
  .vertical-align-center{
    align-items: center;
  }
  
  /* .justify-self-end {
    justify-self: end;
  } */
  
  
  @media (min-width: 50em) {
    .justify-self-end-md {
        justify-self: end;
    }
  }
  
  
  
  :where(.flow :not(:first-child)) {
    margin-top: var(--flow-spacer, 3em);
  }
  
  
  
  .text-primary-400 {
    color: var(--clr-primary-400);
  }
  .text-accent-400 {
    color: var(--clr-accent-400);
  }
  .text-accent-100 {
    color: var(--clr-accent-100);
  }
  .text-neutral-100 {
    color: var(--clr-neutral-100);
  }
  .text-neutral-900 {
    color: var(--clr-neutral-900);
  }
  
  .bg-primary-400 {
    background-color: var(--clr-primary-400);
  }
  .bg-accent-400 {
    background-color: var(--clr-accent-400);
  }
  .bg-accent-100 {
    background-color: var(--clr-accent-100);
  }
  .bg-neutral-100 {
    background-color: var(--clr-neutral-100);
  }
  .bg-neutral-900 {
    background-color: #080808;
  }
  
  .fw-bold {
    font-weight: var(--fw-bold);
  }
  .fw-semi-bold {
    font-weight: var(--fw-semi-bold);
  }
  .fw-regular {
    font-weight: var(--fw-regular);
  }
  
  .fs-primary-heading {
    font-size: var(--fs-primary-heading);
    line-height: 1.1;
  }
  
  .fs-primary-heading2 {
    font-size: 3rem;
    line-height: 1.1;
    
  }
  .fs-secondary-heading {
    font-size: var(--fs-secondary-heading);
    line-height: 1.1;
  }
  
  .fs-300 {
    font-size: var(--fs-300);
  }
  .fs-400 {
    font-size: var(--fs-400);
  }
  .fs-500 {
    font-size: var(--fs-500);
  }
  .fs-600 {
    font-size: var(--fs-600);
  }
  
  
  .padding-block-900 {
    padding-block: var(--size-900);
  }
  
  .padding-block-700 {
    padding-block: var(--size-700);
  }
  
  .display-sm-none {
    display: none;
  }
  
  @media (min-width: 50em) {
    .display-md-inline-flex {
        display: inline-flex;
  }
  }
  
  /* Pricing Table */
  /* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Open Sans", sans-serif;
  } */
  
  /* body{
    display: grid;
    place-items: center;
    min-height: 100vh;
    background-color: #171717;
  } */
  
  .pricing-plans {
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .pricing-card {
    --col: var(--clr-accent-500);
    position: relative;
    min-width: 350px;
    padding: 32px;
    padding-bottom: 96px;
    border-radius: 20px;
    border: 1px solid #262626;
    background-color: #26262620;
    box-shadow: 0 0 32px transparent;
    text-align: center;
    max-width: 350px;
  }
  
  
  
  .pricing-card.basic {
    --col: var(--clr-accent-500);
  }
  
  .pricing-card.standard {
    --col: var(--clr-accent-500);
  }
  
  .pricing-card.premium {
    --col: var(--clr-accent-500);
  }
  
  .pricing-card:hover {
    border-color: var(--col);
    background-color: #26262680;
    box-shadow: 0 0 32px #171717;
    transform: translateY(-5px) scale(1.02);
    transition: all 0.5s ease;
  }
  
  .pricing-card > *:not(:last-child) {
    margin-bottom: 14px;
  }
  
  .pricing-card .heading h4 {
    padding-bottom: 12px;
    color: var(--col);
    font-size: 24px;
    font-weight: normal;
  }
  
  .pricing-card .heading p {
    color: #a3a3a3;
    font-size: 14px;
    font-weight: lighter;
  }
  
  .pricing-card .price {
    position: relative;
    color: var(--col);
    font-size: 60px;
    font-weight: bold;
  }
  
  .pricing-card .price sub {
    position: absolute;
    bottom: 14px;
    color: #a3a3a3;
    font-size: 14px;
    font-weight: lighter;
  }
  
  .pricing-card .features li {
    padding-bottom: 16px;
    color: #a3a3a3;
    font-size: 16px;
    font-weight: lighter;
    text-align: left;
  }
  
  .pricing-card .features li i,
  .pricing-card .features li strong {
    color: #e4e4e7;
    font-size: 16px;
    text-align: left;
  }
  
  .pricing-card .features li strong {
    padding-left: 24px;
  }
  
  .pricing-card .cta-btn {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    padding: 8px;
    border-radius: 200px;
    border: 1px solid var(--col);
    background-color: var(--col);
    color: #e4e4e7;
    font-size: 18px;
    font-weight: bold;
  }
  
  .pricing-card .cta-btn:active {
    background-color: transparent;
    color: var(--col);
    transition: all 0.3s ease;
  }
  
  ::marker {
    color: transparent;
  }
  
  
  
  
  /* How it works */
  :root {
    --surface-color: #0F0F0F;
    --curve: 40;
  }
  
  * {
    box-sizing: border-box;
  }
  
  
  .how-it-works {
    max-width: 1000px; /* largura máxima desejada */
    margin: 0 auto; /* centralizar horizontalmente */
    margin-bottom: 8rem;
  }
  
  .titles{
    font-size: large;
    width: 300px;
    text-align: center;
    margin: 0 auto;
  }
  
  
  
  .cards {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 2rem;
    padding: 0;
    list-style-type: none;
    margin: 1rem auto; /* centralizar verticalmente */
  }
  
  .card {
    position: relative;
    display: block;
    height: 100%;  
    border-radius: calc(var(--curve) * 1px);
    overflow: hidden;
    text-decoration: none;
  }
  
  
  
  .card__image {      
    width: 100%;
    height: auto;
  }
  
  .card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;      
    border-radius: calc(var(--curve) * 1px);    
    background-color: var(--surface-color);      
    transform: translateY(100%);
    transition: .2s ease-in-out;
  }
  
  .card:hover .card__overlay {
    transform: translateY(0);
  }
  
  .card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 2em;
    border-radius: calc(var(--curve) * 1px) 0 0 0;    
    background-color: var(--surface-color);
    transform: translateY(-100%);
    transition: .2s ease-in-out;
    border: solid;
    border-color: #0f0f0f;
    border-width: 2px 0px 0px 0px;
    
  }
  
  .card__arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;      
    z-index: 1;
  }
  
  .card__arc path {
    fill: var(--surface-color);
    d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
    
  }       
  
  .card:hover .card__header {
    transform: translateY(0);
  }
  
  .card__thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;      
    border-radius: 50%;      
  }
  
  .card__title {
    font-size: 1em;
    margin: 0 0 .3em;
    color: #FFF;
  }
  
  .card__tagline {
    display: block;
    margin: 1em 0;
    font-family: "MockFlowFont";  
    font-size: .8em; 
    color: #ffffff;  
  }
  
  .card__status {
    font-size: .8em;
    color: #ffffff;
  }
  
  .card__description {
    padding: 0 2em 2em;
    margin: 0;
    color: darkgrey;
    font-family: "Outfit";   
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }    
  
  /* Our partners */
  
  .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    row-gap: 0px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 2rem;
    margin-top: 1rem;
    justify-content: center;
    
  }
  
  .partners a{
    align-self: center;
  }
  
  .partners img{
    min-width: 75px;
    transition: 0.4ms;
  }
  
  .partners img:hover{
    filter: brightness(200%);
  }
  
  .xenith {
    width: 190px;
    align-self: center;
    
  }
  
  .tradetracker {
    width: 170px;
    align-self: center;
    
  }
  
  .mustasheets {
    width: 200px;
    align-self: center;
    
    
  }
  
  .stocksniper {
    width: 170px;
    align-self: center;
    
  }
  
  .gaiatrading {
    width: 120px;
    align-self: center;
   
  }
  
  .video {
    
    position: absolute;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 700px;
    top: 180px;
    left: 50%;
    z-index: -2;
    transform: translate(-100px,0);
  }
  
  @media (max-width: 50em) {
    .video{
  
      left: 0;
      transform: translate(0px,380px);
      max-width: 600px;
    }
  }
  
  
  .space  {
    height: 0px;
  }
  .space2  {
    height: 80px;
  }
  
  @media (max-width: 50em) {
  .space  {
    height: 300px;
  }
  }
  
  @media (max-width: 50em) {
    .space2  {
      height: 60px;
    }
  }
  
  @media (max-width: 50em) {
  .padding-block-900  {
    padding-block: 50px;
  }
  }
  
  .ytvideo {
    display: flex;
  
  margin-left: auto;
  margin-right: auto;
  justify-self: center;
  justify-content: center;
  margin-bottom: 2rem;
  margin-top: 1rem;
  
  
  
  }
  .ytvideo iframe {
  border-radius: 20px; /* set the border radius to 10 pixels */
  border-color: rgb(123, 123, 123);
  }
  
  .ytvideo iframe {
  
  }
  
  @media (max-width: 767px) {
    .ytvideo {
      scale: 0.9;
    }
  }
  
  .buttonmiddle {
  display: flex;
  width: 300px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  
  
  }
  
  /* testimonials */
  
  <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap" rel="stylesheet">
  /* *,
  *:after,
  *:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
  }
  
  html {
    width: 100%;
    height: auto;
  }
  
  body {
  font-family: 'Montserrat', sans-serif!important;
    width: 100%;
    height: auto;
    font-size: 14px;
  /*     font-family: Dubai-Light;
    background: #fff;
  overflow:hidden;
  } */
  .testim {
    width: 100%;
    position:absolute;
    top:50%;
    -webkit-transform:translatey(-50%);
    -moz-transform:translatey(-50%);
    -ms-transform:translatey(-50%);
    -o-transform:translatey(-50%);
    transform:translatey(-50%);
  }
  
  .testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
  }
  
  .testim .arrow {
    display: block;
    position: absolute;
    color: #333;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
  }
  
  .testim .arrow:before {
    cursor: pointer;
  }
  
  .testim .arrow:hover {
    color: var(--clr-accent-300);
  }
    
  
  .testim .arrow.left {
    left: 70px;
  }
  
  .testim .arrow.right {
    right: 70px;
  }
  
  .testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
  }
  
  .testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--clr-accent-300);
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
    position: relative;
  }
  
  .testim .dots .dot.active,
  .testim .dots .dot:hover {
    background: var(--clr-accent-300);
    border-color: var(--clr-accent-300);
  }
  
  .testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
  }
    
  .testim .cont {
    position: relative;
    overflow: hidden;
  }
  
  .testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
  }
  
  .testim .cont > div.inactive {
    opacity: 1;
  }
    
  
  .testim .cont > div.active {
    position: relative;
    opacity: 1;
  }
    
  
  .testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
  }
  
  .testim .cont div h2 {
    color: var(--clr-accent-300);
    font-size: 1em;
    margin: 15px 0;
  }
  
  .testim .cont div p {
    font-size: 1.15em;
    color: #333;
    width: 70%;
    margin: auto;
  }
  
  .testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
  }
  
  .testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
  }
  
  .testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
  }
  
  .testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
  }
  
  .testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
  }
  
  .testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
  }
  
  @-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
  
    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }
  
    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }
  
    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
  }
  
  @-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
  
    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }
  
    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }
  
    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
  }
  
  @-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
  
    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }
  
    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }
  
    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
  }
  
  @-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }
  
    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }
  
    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }
  
    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
  }
  
  @keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
  
    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }
  
    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }
  
    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
  }
  
  @-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
  }
  
  @-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
  }
  
  @-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
  }
  
  @-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
  }
  
  @keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
  }
  
  @-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
  }
  
  @-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
  }
  
  @-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
  }
  
  @-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
  }
  
  @keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
  }
  
  @-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
  }
  
  @-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
  }
  
  @-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
  }
  
  @-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
  }
  
  @keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
  }
  
  @-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
  }
  
  @-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
  }
  
  @-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
  }
  
  @-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
  }
  
  @keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
  }
  
  @media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
  }
  
  @media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }
  
  .testim .cont div p {
    line-height: 25px;
  }
  
  }
  
  /* leaderbenefits */
  
  
  .benefitscontainer{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 7rem;
  }
  
  .flexbenefits1 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  
  }
  
  @media (max-width: 907px){
  .flexbenefits1 {
    justify-content: center;
  }
  
  .flexbenefits2 {
    justify-content: center;
  }
  
  .flexbenefits3 {
    justify-content: center;
  }
  
  }
  
  
  .flexbenefits1 div{
  display: flex;
  flex-direction: column;
  max-width: 550px;
  min-width: 200px;
  padding: 20px;
  justify-content: center;
  
  }
  
  .flexbenefits1 img{
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  }
  
  
  .flexbenefits2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  flex-direction: row-reverse;
  
  }
  
  .flexbenefits2 div{
  display: flex;
  flex-direction: column;
  max-width: 550px;
  min-width: 200px;
  padding: 20px;
  justify-content: center;
  }
  
  .flexbenefits2 img{
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  }
  
  .flexbenefits3 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  flex-direction: row-reverse;
  
  }
  
  .flexbenefits3 div{
  display: flex;
  flex-direction: column;
  max-width: 550px;
  min-width: 200px;
  padding: 20px;
  justify-content: center;
  }
  
  .flexbenefits3 img{
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  }
  
  
  .image1benefits {
  width: 350px;
  }
  
  .image2benefits {
  width: 470px;
  }
  
  .image3benefits {
  width: 390px;
  
  
  }
  
  #pricing {
  padding-top: 5rem;
  }
  
  /* form */
  
  .form  {
    display: flex;
    flex-direction: column;
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
    
   
  }
  
  .form  h4{
   color: darkgrey;
   margin-left: auto;
   margin-right: auto;
   
  }
  
  .buttonform {
    display: flex;
    width: 100px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  
  }
  
  .youremail {
    display: flex;
    flex-direction: column;
    
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  
  }
  
  .yourmessage {
    display: flex;
    flex-direction: column;
    
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  
  
  }
  .textform {
    width: 80vw;
    max-width: 500px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    background-color: #FFF;
    color: rgb(19, 19, 19);
    padding:0px 10px;
  }
  
  .emailform {
    width: 80vw;
    max-width: 500px;
    height: 40px;
    margin-left: 0px;
    border-radius: 10px;
    background-color: #FFF;
    color: rgb(19, 19, 19);
    padding:0px 10px;
  }
  
  
  /* toggle */
  
  .toggle {
    opacity: 0;
    font-size: 0;
    padding: 0;
    //from page load the delay is on font-size.
    transition: 
      font-size .2s .3s linear,
      padding .2s .3s linear,
      opacity .2s linear;
  }
  .open {
    opacity: 1;
    font-size: 16px;
    padding: 10px;
    // after toggling the delay is on opacity to create the fade at the right time.
    transition: 
      font-size .2s linear,
      padding .2s linear,
      opacity .2s .3s linear;
  }
  
  button {
   
    background: transparent;
    border: 0;
    color: white;
    padding: 0px;
    border-radius: 5px;
    cursor: pointer;
  }
  .toggle {
    
    color: darkgrey;
    background: transparent;
  }
  
  .learnmorep {
    opacity: 0.7;
    color: darkgrey;
    display: flex;
    text-align: initial;
    font-size: smaller;
    
   
  }
  
  .letstoggle {
    color: #1BA8DE;
    display: flex;
  }
  
  .letstoggle:hover {
    color: #FFF
  }
  
  
  
  .triangle {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #1BA8DE; /* Change the color here */
    margin-left: 6px; /* Change the distance between the text and the triangle */
    margin-top: 10px;
    vertical-align: middle;
  }
  
  
  .packageslearnmore {
  
    display: flex;
    flex-direction: column;
    min-width: 400px;
    max-width: 1200px;
    margin-left: auto;
    padding-left: 50px;
    padding right: 50px;
    margin-right: auto;
    margin-bottom: 5rem;
  }
  
  
  .cta-btn a{
    text-decoration: none;
    color: white;
  }
  
  
  /*Colorpicker*/
  
  .colorpickercontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  @media (max-width: 50em) {
    .colorpickercontainer {
      display: none;
    }
  }
  
  #cor {
    margin-top: 1rem;
    position: relative;
    width:1100px;
    height:534px;
    border-radius: 56px;
    margin-bottom: 1rem;
  }
  
  #cor2 {
    
    position: absolute;
    top: 287px;
    left: 500px;
    width:530px;
    height:100px;
    border-radius: 20px;
    margin-bottom: 5rem;
    background-color: white;
    z-index: 300;
  }
  
  /* .colorpickercontainer h1 {
    
    font-size: 3rem;
    color: white;
    font-family: "Berkshire Swash", cursive;
    text-align: center;
  } */
  
  input[type="color"] {
      background-color: #0F0F0F;
      padding: 4px;
      width: 120px;
      height: 25px;
      cursor: pointer;
      border: 2px solid #303030;
      border-radius: 20px;
      margin: 10px;
  }
  
  
  
  b {
    
  }
  
  code {
    
    color: #fff;
    
  }
  
  .colorpickerimg {
    z-index: 1000;
    position: absolute;
    
  }
  
  .colorpositive  {
    width: 380px;
    border: solid;
    border-color: rgb(35, 35, 35);
    border-width: 1px;
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #0F0F0F;
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    
    
  }
  
  .colornegative  {
    width: 380px;
    border: solid;
    border-color: rgb(35, 35, 35);
    border-width: 1px;
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #0F0F0F;
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    
  }
  
  .posnegcontainer {
    margin-top: 0rem;
    margin-top: 1rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    
  }
  
  .button2 {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }
  
  .youtubevideo {
   
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  
  
  
  @media (max-width: 50em){
  .lastsection p{
    
    max-width: 18ch;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  }


  .gridcommunity {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1300px;
    padding: 50px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;

  }

  .gridcommunity p{
    height: 200px;
   
    
  }

  .communitycard {
    width: 350px;
    height: 590px;
    padding-bottom: 10px;
    border-radius: 40px;
    /* background-color: #080808; */
    background-image: linear-gradient(#0f0f0f,#1d1d1d);
  }

  .communitycard2 {
    width: 350px;
    height: 205px;
    padding: 10px;
    border-radius: 40px;
    /* background-color: #080808; */
    background-image: linear-gradient(#0f0f0f,#1d1d1d);
    transition: 0.5;
  }

  .communitycard2:hover {
    cursor: pointer;
    scale: 1.02;
  }

  .communitycardimage {
    border-radius: 40px;
    background-color: transparent;
    
    min-height: 185px;
  }

  

  .sstcard {
    border-radius: 35px;
    box-shadow: 2px 2px 30px #000;
  }

  .sstcard:hover {
    cursor: pointer;
    scale: 1.02;
  }
  .xenithcard:hover {
    cursor: pointer;
    scale: 1.02;
  }
  .mustasheetscard:hover {
    cursor: pointer;
    scale: 1.02;
  }

  

  .xenithcard {
    border-radius: 35px;
    box-shadow: 2px 2px 30px #000;
  }

  .textocard {
    
    color: white;
    
    height: 305px;
    padding: 20px;
    padding-top: 10px;
    margin: 5px;
    margin-top: 10px;
    border-radius: 30px;
  }

  .textocard p{
    max-height: 120px;
  }


  .buttonsst{

  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 100px;
  padding: 1.25em 2.5em;
  font-weight: var(--fw-bold);
  font-size: var(--fs-button);
  line-height: 1;
  color: var(--clr-neutral-100);
  background-color: red;
  box-shadow: 0 1em 0.5em -1em black;
  margin: 5px;
  margin-left: 20px;
  z-index: 1000;
}


.buttonsst:hover{

  color: black;
}


.buttonxenith{

  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 100px;
  padding: 1.25em 2.5em;
  font-weight: var(--fw-bold);
  font-size: var(--fs-button);
  line-height: 1;
  color: var(--clr-neutral-100);
  background-color: #8A59FC;
  box-shadow: 0 1em 0.5em -1em black;
  margin: 5px;
  margin-left: 20px;
  z-index: 1000;
}


.buttonxenith:hover{

  color: #000;
}

.buttonmustasheets{

  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  border: 0;
  border-radius: 100px;
  padding: 1.25em 2.5em;
  font-weight: var(--fw-bold);
  font-size: var(--fs-button);
  line-height: 1;
  color: var(--clr-neutral-100);
  background-color: #1BA8DE;
  box-shadow: 0 1em 0.5em -1em black;
  margin: 5px;
  margin-left: 20px;
  z-index: 1000;
}


.buttonmustasheets:hover{

  color: #000;
}

.titlecommunity {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    text-align: center;
}

.titlecommunity h1{
    color: white;
    font-size: 30px;
    font-family: outfit;
}

.linksite {
  color: #FFF;
}

.sstvideo {
  width: 350px;
  border-radius: 30px;
}

.sstvideo:hover {
  scale: 1.03;
}

@import url(https://fonts.googleapis.com/css?family=Lato);

@import url(https://fonts.googleapis.com/css?family=Open Sans);

.faq-heading {
  font-family: Outfit;   
  font-weight: 400;
  font-size: 18px;
   -webkit-transition: text-indent 0.2s;
  
  color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
}

.faq-text {
  font-family: Outfit;   
  font-weight: 400;
  color: darkgrey;
  width:95%;
  padding-left:30px;
  margin-bottom:30px;
  margin-top: 20px;
}

.faq {
  width: fit-content;
  padding-right: 30px;
  padding-left: 30px;
  max-width: 730px;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 8rem;
  background: transparent;
  border-radius: 4px;
  position: relative;
  border: 0px solid #E1E1E1;
  
}
.faq label {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 56px;
  padding-top:23px;
  padding-bottom:5px;
  box-shadow: 10px 10px 10px 2px rgb(0, 0, 0, 0.5);
  margin-bottom: 7px;
  background-color: #0d0d0d;
  border-bottom: 1px solid transparent;
  border-radius: 10px;

}

.faq input[type="checkbox"] {
  display: none;
}

.faq .faq-arrow {
  width: 5px;
  height: 5px;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 2px solid darkgrey;
  border-right: 2px solid darkgrey;
  float: right;
  position: relative;
  top: -20px;
  right: 27px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

 .faq input[type="checkbox"]:checked + label > .faq-arrow {
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
 .faq input[type="checkbox"]:checked + label {
  display: block;
  background: #0d0d0d !important;
  color: darkgrey;
  height: 230px;
  transition: height 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

 .faq input[type='checkbox']:not(:checked) + label {
  display: block;
  transition: height 0.8s;
  height: 76px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (max-width: 767px) {
  .faq input[type='checkbox']:not(:checked) + label {
    display: block;
    transition: height 0.8s;
    height: 106px;
    -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
}

@media (max-width: 767px) {
  .faq input[type='checkbox']:not(:checked) + label p.faq-text{
    display: none;
  }
}



::-webkit-scrollbar {
  display: none;
}

main {
  padding-top: 5rem;
}

  /* ------------------------Footer----------------- */
  .row_footer div {
    padding: 11px;
  }
  
  .row_footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .footer_left_wrapper p{
  
    margin-left: 31px;
  
  }
  .site-footer {
    background-color: transparent;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
  }
  .site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5;
  }
  .site-footer hr.small {
    margin: 20px 0;
  }
  .site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px;
  }
  .site-footer a {
    color: #737373;
  }
  .site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
  }
  .footer-links {
    padding-left: 0;
    list-style: none;
  }
  .footer-links li {
    display: block;
  }
  .footer-links a {
    color: #737373;
  }
  .footer-links a:active,
  .footer-links a:focus,
  .footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
  }
  .footer-links.inline li {
    display: inline-block;
  }
  .site-footer .social-icons {
    text-align: right;
  }
  .site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d;
  }
  .copyright-text {
    margin: 0;
  }
  @media (max-width: 991px) {
    .site-footer [class^='col-'] {
      margin-bottom: 30px;
    }
  }
  @media (max-width: 767px) {
    .site-footer {
      padding-bottom: 0;
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
      text-align: center;
    }
  }
  .social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    
    
  }
  .social-icons li {
    display: inline-block;
    margin-bottom: 4px;
  }
  .social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px;
  }
  .social-icons a {
    
    background-color: #34343C;
    color: #80878F; 
    font-size: 17px;
    display: inline-block;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    margin-right: 1px;
    margin-left: 1px;
    border-radius: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;

   
  }
  .social-icons a:active,
  .social-icons a:focus,
  .social-icons a:hover {
    color: #fff;
    background-color: #29aafe;
  }
  .social-icons.size-sm a {
    align-items: center;
    justify-content: center;
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
  }
  .social-icons a.facebook:hover {
    background-color: #b75bdb;
  }
  .social-icons a.twitter:hover {
    background-color: #5864F2;
  }
  .social-icons a.linkedin:hover {
    background-color: #2FA2D8;
  }
  .social-icons a.dribbble:hover {
    background-color: #e94b4b;
  }
  .social-icons a.tiktok:hover {
    background-color: #24ECE6;
  }
  @media (max-width: 767px) {
    .social-icons li.title {
      display: block;
      margin-right: 0;
      font-weight: 600;
    }
  }
  
  .social-icons-div {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-self: end;
  }
  
  @media (max-width: 767px) {
    .social-icons-div {
      justify-self: auto;
    }
  }
  
  a {
    text-decoration: auto;
  }
  
    
  
  
  .logo-footer {
    width: 180px;
    margin-left: 27px;
  }
  
  .logopoweredby {
    width: 110px;
    margin-left: 7px;
    margin-bottom: 27px;
  
  }
  
  .poweredbywrapper {
    display: flex;
    flex-direction: row;
  }


  .nav-list-footer {
    font-size: var(--fs-nav);
  }
  
  .nav-list-footer {
    display: flex;
    gap: 10px;
    font-weight: var(--fw-semi-bold);
    flex-direction: column;
    padding-top: 75px;
    padding-left: 50px;
  }
  
  .nav-list-footer a {
    text-decoration: none;
    color: var(--clr-primary-400);
  }
  
  .nav-list-footer a:hover,
  .nav-list-footer a:focus {
    color: var(--clr-accent-400);
  }
  
  
  
  
  
  
  
  .nav-list-footer2 {
    font-size: var(--fs-nav);
  }
  
  .nav-list-footer2 {
    display: flex;
    gap: 10px;
    font-weight: var(--fw-semi-bold);
    flex-direction: column;
    padding-top: 75px;
    
  }
  
  .nav-list-footer2 a {
    text-decoration: none;
    color: var(--clr-primary-400);
  }
  
  .nav-list-footer2 a:hover,
  .nav-list-footer2 a:focus {
    color: var(--clr-accent-400);
  }
