/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 4rem;

  /*===== Colors =====*/
  --first-color: #5B65F5;
  --first-color-light: #C4C7F5;
  --dark-color: #0E1026;
  --white-color: #FBFBFB;

  /*===== Font and typography =====*/
  --body-font: 'Open Sans', sans-serif;
  --nav-name-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*===== z index =====*/
  --z-fixed: 100;
}

@media screen and (min-width: 1023px) {
  :root {
    --nav-name-font-size: 1rem;
    --normal-font-size: 1rem;
  }
}

/*===== BASE =====*/
*, ::before, ::after {
  box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 500;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content ul, .fullcontent ul {
  margin: 0;
  padding: 0;
  list-style: disc;
    margin-left: 20px;
}






ul.mylist {
  display: block;
  margin-left: 30px;
}

ul.mylist li {
  display: block;
  position: relative;
}

ul.mylist li:not(:last-child) {
  margin-bottom: 16px;
}

ul.mylist li:before {
  content: "";
  position: absolute;
  top: 1.3em;
  left: -30px;
  margin-top: -.9em;
  background: #e95095;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}






ul.myinnerlist {
  display: block;
  margin-left: 30px;
}

ul.myinnerlist li {
  display: block;
  position: relative;
}

ul.myinnerlist li:not(:last-child) {
  margin-bottom: 16px;
}

ul.myinnerlist li:before {
    content: "";
    position: absolute;
    top: 1.3em;
    left: -30px;
    margin-top: -0.9em;
    background: #33ca12;
    height: 8px;
    width: 8px;
    border-radius: 50%;
}









a {
  text-decoration: none;
    color: #e95095;
}

.bd-grid {
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

/*===== HEADER =====*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding: 0 1rem;
  background-color: #FFF;
  z-index: var(--z-fixed);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 15px 5px 20px 10px rgb(84 84 84 / 10%);
    min-height: 60px;
}

.header__logo {
  color: var(--dark-color);
}

.header__toggle {
  font-size: 1.7rem;
  cursor: pointer;
}

/*===== NAV =====*/
@media screen and (max-width: 1023px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #ededed;
    width: 80%;
    height: 100vh;
    padding: 0.3rem 0;
    z-index: var(--z-fixed);
    transition: .5s;
    overflow-y: auto;
  }
}

.nav__content {
  display: flex;
  flex-direction: column;
}

.nav__perfil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}

.nav__img {
  display: flex;
  justify-content: left;
  overflow: hidden;
  margin-bottom: 1rem;
}

.nav__img img {

}

.nav__name {
  display: block;
  font-size: var(--nav-name-font-size);
  color: var(--white-color);
}

.nav__item {
  margin-bottom: 2rem;
}

.nav__link {
  color: #333;
}

.nav__link:hover {
  color: #666;
}

/*Show menu*/
.show {
  left: 0;
  z-index: 999999;
}

/*Active link*/
.active {
  color: #666;
}

/*=== Dropdown ===*/
.dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown__icon {
  font-size: 1.3rem;
  transition: .5s;
}

.dropdown__menu {
  margin: 1rem 0 0 1rem;
  display: none;
}

.dropdown__item {
  margin: 1rem 0;
}

.dropdown:hover > .dropdown__menu {
  display: block;
    z-index: 9999;
}

.dropdown:hover .dropdown__icon {
  transform: rotate(180deg);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  .nav {
    width: 288px;
  }
}

@media screen and (min-width: 1024px) {
  body {
    margin: 0;
  }
  .header {
    height: calc(var(--header-height) + 1rem);
  }
  .header__logo, .header__toggle {
    display: none;
  }
  .nav {
    width: 100%;
  }
  .nav__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .nav__perfil {
    flex-direction: row;
    text-align: initial;
    margin-bottom: 0;
  }
  .nav__img {

    margin-right: .5rem;
    margin-bottom: 0;
  }
  .nav__img img {

  }
  .nav__name {
    color: var(--dark-color);
  }
  .nav__list {
    display: flex;
    align-items: center;
  }
  .nav__item {
    margin: 0 1.5rem;
    padding: 1.4rem 0;
  }
  .nav__link {
    color: var(--dark-color);
  }
  .nav__link:hover {
    color: var(--first-color);
  }
  /*Active link new color*/
  .active {
    color: var(--first-color);
  }
  .dropdown {
    position: relative;
  }
  .dropdown__menu {
    position: fixed;
    margin: 0;
    top: calc(var(--header-height) + 1rem);
    padding: .5rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
  }
  .dropdown__item {
    margin: .5rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
}


.footer {
    background: #f2f2f2;
    padding:2rem 0;
}

.footer-about {
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #959595;
    font-size: 0.7em!important;
}

.footer-copyright {
    color: #aba9a9!important;
    font-family: var(--font-body)!important;
    font-size: 12px!important;
    text-align: center;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 200px;
    text-align:center;
}





            .header {
                position: unset;
                }
            
            body {
                margin: 0 0 0 0;
                font-weight: 500;
                line-height: 1.6rem;
            }
            
            
            
            @media screen and (min-width: 1024px) {
                .bd-grid {
                    margin-left: auto;
                    margin-right: auto;
                    max-width: 1440px !important;
                }

            }
            
            @media screen and (max-width: 1240px) {
                .bd-grid {
                    margin: 0 3rem;
                }
            }
            
            @media screen and (min-width: 1023px) {
                .dropdown__menu {
                    min-width: 200px;
                    margin-top: -10px;
                    background: #fff;
                }
                

                .nav__link:hover, .active {
                    color: #939393;
                }
                
                .nav__item {
                    margin: 0 0rem;
                    padding: 1.5rem 0.9rem;
                }
                
                .dropdown__item {
                    margin: 0 0;
                    padding: 0.8rem 0;
                }

            }
            

    

            header.header li a {
                font-size: 0.85rem;
                font-weight: 500;
            }

            .content{
                max-width: 1440px;
                padding-top: 1rem;
                margin: 0 auto;
                min-height: 70vh;
            }
            
            .acontent{
                max-width: 1440px;
                padding-top: 1rem;
                margin: 0 auto;
                padding: 0 1.5rem;
            }

             .footer-content{
                max-width: 1440px;
                margin: 0 auto;
            }
        
        
            @media screen and (max-width: 1240px) {
                .content{
                    margin: 0 1.5rem !important;
                }
                
                .footer-content{
                    margin: 0 1.5rem;
                }
            }
            
            .fas, .fa-solid {
                padding-right: 7px;
            }

.bx-x {
    background: red;
    color: white;
}

p {
    margin:20px 0;
}

h2.centertext {
    text-align: center;
    font-size: 2.0rem;
}

.centertext {
    text-align: center;
}

        
.asection {
    clear: both;
    padding: 30px 0px;
    margin:  0px;
}

/*  COLUMN SETUP  */
.acol {
    display: block;
    float:left;
    margin: 1% 0 1% 1.6%;
}
.acol:first-child { margin-left: 0; }

/*  GROUPING  */
.agroup:before,
.agroup:after { content:""; display:table; }
.agroup:after { clear:both;}
.agroup { zoom:1; /* For IE 6/7 */ }




/*  GRID OF THREE  */
.aspan_3_of_3 { width: 100%; }

.aspan_2_of_3 { 
    width: 66.13%;
    min-height: 300px;
    }

.aspan_1_of_3 {
    width: 32.26%;
    max-height: 300px;
    text-align: center;
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
    .acol {  margin: 1% 0 1% 0%; }
    .aspan_3_of_3, .aspan_2_of_3, .aspan_1_of_3 { width: 100%; }
}



.acol h1 {
font-size: 3.5rem;
line-height: 1.2;
color: #42a4ae;
font-weight: 100;
}

.acol h2 {
color: #989898;
font-weight: 100;
}

.acol img {
width: 300px;
height: auto;
margin: 10px auto;
}


.section2 {
    border-top: 1px solid #f3f3f3;
    background: #f8f8f8;
}


.iconbox {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.iconbox .fa-solid {
    color: #359f1e;
}

.icontext {
    text-align: left;
    color: #686060;
    font-size: 12px;
    padding-top: 20px;
}


.btn {
  background: #d96534;
  background-image: -webkit-linear-gradient(top, #d96534, #b82b2b);
  background-image: -moz-linear-gradient(top, #d96534, #b82b2b);
  background-image: -ms-linear-gradient(top, #d96534, #b82b2b);
  background-image: -o-linear-gradient(top, #d96534, #b82b2b);
  background-image: linear-gradient(to bottom, #d96534, #b82b2b);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 50px 10px 50px;
  text-decoration: none;
}

.btn:hover {
  background: #fcb33c;
  background-image: -webkit-linear-gradient(top, #fcb33c, #876c13);
  background-image: -moz-linear-gradient(top, #fcb33c, #876c13);
  background-image: -ms-linear-gradient(top, #fcb33c, #876c13);
  background-image: -o-linear-gradient(top, #fcb33c, #876c13);
  background-image: linear-gradient(to bottom, #fcb33c, #876c13);
  text-decoration: none;
}

.mybutton {
    text-align: center;
}

.g-recaptcha {
        display: inline-block;
    }



/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }


/*  GRID OF THREE  */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66.13%; }
.span_1_of_3 { width: 32.26%; }

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
}





/*  GRID OF TWO  */
.span_2_of_2 {
	width: 100%;
}
.span_1_of_2 {
	width: 49.2%;
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
}

@media only screen and (max-width: 480px) {
	.span_2_of_2, .span_1_of_2 { width: 100%; }
}



.toolgroup {
    background: #f6f6f6;
    padding: 20px;
    margin: 25px 7px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
}


.toolgroup h2 {
    padding-bottom: 20px;
}

.col.span_1_of_3.sticky {
    position: sticky;
    top: 10px;
    border: 1px solid #DDD;
    padding: 20px;
    border-radius: 10px;
    margin-top: 45px;
}




.button-top,
.button-bottom {
    position: fixed;
    right: 20px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    background-color: unset;
    cursor: pointer;
    padding: 10px;
    transition: 2s;
}

.button-top {
    bottom: 60px;
    border-radius: 30px 30px 0 0;
}

.button-bottom {
    bottom: 6px;
    border-radius: 0 0 30px 30px;
}

.button-top:hover,
.button-bottom:hover {
    background-color: unset;
}

.button-top .fa-solid, .button-bottom .fa-solid {
    padding-right: 0;
}





.features .fa, .features .fa-solid, .features .fas, .features .fa-duotone {
    font-size: 24px;
    color: #e95095;
}

span.feature {
    font-size: 1.2rem;
    color: #929291;
    padding-left: 10px;
}

h3.feature {
    font-size: 1.2rem;
    font-weight:100;
    color: #929291;
    padding-left: 10px;
    display:inline;
}

.feature-text {
    font-family: sans-serif;
    font-size: 14px;
    padding-top: 10px;
}

.single-feature {
    padding: 20px;
    margin: 10px 10px 0 0;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 2px #1a1a1a1a;
}





@media screen and (max-width: 990px) {
      .features .fa, .features .fa-solid, .features .fas, .features .fa-duotone {
        font-size: 18px;
    }

    span.feature {
        font-size: 0.9rem;
        padding-left: 0px;
    }
    
    h3.feature {
        font-size: 0.9rem;
        padding-left: 5px;
    }

    .feature-text {
        font-family: sans-serif;
        font-size: 14px;
        padding-top: 10px;
    }
}








#faq {
  width: auto;
  margin: auto;
  padding: 20px 0;
  text-align: left;
}

section.faq {
  padding-top: 2em;
  padding-bottom: 3em;
}

#faq ul {
  text-align: left;
}
.transition, p, ul li i:before, ul li i:after {
  transition: all 0.3s;
}

#faq .no-select, #faq h2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

#faq h1 {
  margin-bottom: 15px;
  margin-top: 15px;
}

#faq h2 {
  color: #e95095;
  font-family: 'hm_light', sans-serif;
  font-size: 20px;
  line-height: 34px;
  text-align: left;
  padding: 15px 15px 0;
  text-transform: none;
  font-weight: 300;
  letter-spacing: 1px;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: .2s;
}

#faq p {
  color: #999;
  text-align: left;
  font-family: 'hm_light', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  position: relative;
  overflow: hidden;
  max-height: 250px;
  will-change: max-height;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 50px 0 15px;
  transition: .3s opacity, .6s max-height;
  hyphens: auto;
  z-index: 2;
}

#faq ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
#faq ul li {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  /*padding-bottom: 4px;*/
  /*padding-top: 18px;*/
  background: unset;
  box-shadow: 0 3px 10px -2px rgba(0,0,0,0.1);
  -webkit-tap-highlight-color: transparent;
}
#faq ul li + li {
  margin-top: 15px;
}
#faq ul li:last-of-type {
  padding-bottom: 0;
}
#faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 28px;
  right: 15px;
}
#faq ul li i:before, #faq ul li i:after {
  content: "";
  position: absolute;
  background-color: #cc071e;
  width: 3px;
  height: 9px;
}
#faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
#faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
#faq ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  touch-action: manipulation;
}
#faq ul li input[type=checkbox]:checked ~ h2 {
  color: unset;
  margin-right: 20px;
}
#faq ul li input[type=checkbox]:checked ~ p {
  /*margin-top: 0;*/
  max-height: 0;
  transition: .3s;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}
#faq ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
#faq ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}


