
.columnheaderlog {
  margin-bottom: 4px;
  width: 100%;
  display: block;
  flex-direction: column;
  align-items: center;
}

.header {
  gap: 24px;
  display: flex;
  background-color: #FFF!important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) 30px;
  @media  only screen and (max-width: 1050px) {
    flex-direction: row;
  }

  @media only screen and (max-width: 550px) {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header__logo {
  height: 32px;
  width: 250px;
  object-fit: contain;
}

.header__navigation {
  gap: var(--space-4xl);
  display: flex;
  flex: 1;
  justify-content: end;
  align-items: center;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    display: none;
  }

  @media only screen and (max-width: 550px) {
    align-self: stretch;
  }
}

.header__menu {
  gap: 42px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header__menu-item {
  color: #3a1f65!important;
  font-weight: 500 !important;
}

.header__button--login {
  color: #3a1f65!important;
  padding-left: 32.67px;
  padding-right: 32.67px;
  font-size: 15px;
  font-weight: 500;
  height: 42px;
  min-width: 130px;
  border-radius: 20px !important;
  border: 1.33px solid #3a1f65 !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.header__button--start {
  color: var(--neutral_colors_white) !important;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
  font-weight: 500;
  gap: var(--space-sm);
  background-color: var(--green_a700) !important;
  height: 42px;
  min-width: 214px;
  border-radius: 20px !important;
  @media only screen and (max-width: 550px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.header__promo {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm);
  @media only screen and (max-width: 1050px) {
    display: flex;
  }
}

.header__promo-image {
  height: 20px;
  width: 20px;
}


.accordion__header {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-2xl);
  margin-bottom: 4px;
  position: relative;
  cursor: pointer;
  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    left: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1;
    background-image: url(../public/images/img_iconbutton.svg);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
  }
}

details[open] .accordion__header::before {
  background-image: url(../public/images/img_iconbutton.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center;
}

.header{
    padding: var(--space-lg) 40px;
}

    button {
        position: relative;
        display: inline-block;
        cursor: pointer;
        outline: none;
        border: 0;
        vertical-align: middle;
        text-decoration: none;
        background: transparent;
        padding: 0;
        font-size: inherit;
        font-family: inherit;
    }

    button.learn-more {
        width: 12rem;
        height: auto;
    }
    
    
    button.learn-more .circle {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: #00c853;
        border-radius: 1.625rem;
    }

    button.learn-more .circle .icon {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #fff;
    }

    button.learn-more .circle .icon.arrow {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        left: 0.625rem;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
    }

    button.learn-more .circle .icon.arrow::before {
        position: absolute;
        content: "";
        top: -0.29rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid #fff;
        border-right: 0.125rem solid #fff;
        transform: rotate(45deg);
    }

    button.learn-more .button-text {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.75rem 0;
        margin: 0 0 0 1.85rem;
        color: #00c853;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-transform: none;
    }
    
    button.learn-more2 {
        width: 14rem;
        height: auto;
    }

    button.learn-more2 .circle {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: relative;
        display: block;
        margin: 0;
        width: 3rem;
        height: 3rem;
        background: #00c853;
        border-radius: 1.625rem;
    }

    button.learn-more2 .circle .icon {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #fff;
    }

    button.learn-more2 .circle .icon.arrow {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        left: 0.625rem;
        width: 1.125rem;
        height: 0.125rem;
        background: none;
    }

    button.learn-more2 .circle .icon.arrow::before {
        position: absolute;
        content: "";
        top: -0.29rem;
        right: 0.0625rem;
        width: 0.625rem;
        height: 0.625rem;
        border-top: 0.125rem solid #fff;
        border-right: 0.125rem solid #fff;
        transform: rotate(45deg);
    }

    button.learn-more2 .button-text {
        transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.75rem 0;
        margin: 0 0 0 1.85rem;
        color: #00c853;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        text-transform: none;
    }

    button:hover .circle {
        width: 100%;
    }

    button:hover .circle .icon.arrow {
        background: #fff;
        transform: translate(1rem, 0);
    }

    button:hover .button-text {
        color: #fff;
    }
    .button {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 15px;
        border-radius: 10px;
        border: none;
        overflow: hidden;
        background: #00c853;
        color: #fff;
        border-radius: 20px !important;
    }
    .button.heightbutton{
        height:42px!important;
    }

    .button-text2 {
        transform: translateX(15px);
        font-size: 15px;
        font-weight: 700;
        transition-duration: 0.3s;
    }

    .iconer {
        transform: translateY(35px);
        transition-duration: 0.3s;
    }

    .button:hover .button-text2 {
        transform: translateX(0px);
    }

    .button:hover .iconer {
        transform: translateY(1.5px);
    }
    .button2 {
        display: inline-block;
        transition: all 0.2s ease-in;
        position: relative;
        overflow: hidden;
        z-index: 1;
        color: #090909;
        padding: 0.7em 3.3em 0.7em 1.7em;
        font-size: 18px;
        border-radius: 0.5em;
        background: #e8e8e8;
        border: 1px solid #e8e8e8;
        box-shadow: 6px 6px 12px #c5c5c5,
                   -6px -6px 12px #ffffff;
    }

    .button2 > svg {
        height: 30px;
        position: absolute;
        padding: 0px 5px;
        margin-top: -4px;
    }

    .button2:active {
        color: #666;
        box-shadow: inset 4px 4px 12px #c5c5c5,
                   inset -4px -4px 12px #ffffff;
    }

    .button2:before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scaleY(1) scaleX(1.25);
        top: 100%;
        width: 140%;
        height: 180%;
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        display: block;
        transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
        z-index: -1;
    }

    .button2:after {
        content: "";
        position: absolute;
        left: 55%;
        transform: translateX(-50%) scaleY(1) scaleX(1.45);
        top: 180%;
        width: 160%;
        height: 190%;
        background-color: #009087;
        border-radius: 50%;
        display: block;
        transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
        z-index: -1;
    }

    .button2:hover {
        color: #ffffff;
        border: 1px solid #009087;
    }

    .button2:hover:before {
        top: -35%;
        background-color: #009087;
        transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }

    .button2:hover:after {
        top: -45%;
        background-color: #009087;
        transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
    }
.sidepanel  {
  width: 0;
  position: fixed;
  z-index: 1;
  height: 360px;
  top: 70px;
  right: 0;
  background-color: #FFF;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 0px;
  text-align: center;
}

.sidepanel a {
  padding: 20px 8px 8px 0px;
  text-decoration: none;
  font-size: 14px;
  color: #3a1f65;
  display: block;
  transition: 0.3s;
}

.sidepanel a:hover {
  color: #000;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 25px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color:#444;
}
.container-button {
  position: relative;
  padding-top:10px;
}

.vertical-center-button {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, 0%);
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


/* Modal Content */
.modal-content-sm {
  background-color: #fefefe;
  margin: auto;
  padding: 25px;
  border: 1px solid #888;
  width: 50%;
  max-width:450px;
  border-radius:20px;
}
/* Modal Content */
.modal-content-md {
  background-color: #fefefe;
  margin: auto;
  padding: 25px;
  border: 1px solid #888;
  width: 55%;
  border-radius:20px;
}
/* Modal Content */
.modal-content-lg {
  background-color: #fefefe;
  margin: auto;
  padding: 25px;
  border: 1px solid #888;
  width: 80%;
  border-radius:20px;
}
.header{
    padding: var(--space-lg) 40px;
}
@media only screen and (max-width: 1050px) {
    .modal-content-sm {
        width:80%;
    }
    .modal-content-md {
        width:80%;
    }
    .modal-content-lg {
        width:80%;
    }
    .ui.heading.size-brincus_home___1_desktop_headings_heading_3 {
        font-size: 24px;
        font-weight: 700;
    }
    .homepage__section__image {
        margin-top: 0px;
    }   
    .homepage-column__content p{
        padding-left:8px;
        padding-right:8px;
    }
    .homepage__column--secondary {
        width:100%!important;
        padding-left: 0;
        padding-right: 0;
    }
    .columnvideothum {
        width:100%!important;
    }
    .accordion__content{
        margin: 8px 8px 8px 8px;
    }
    .header{
        padding: var(--space-lg) 40px;
    }
}
@media only screen and (max-width: 550px) {
    .content-section__column--intro {
        width:100%!important;
    }
    .exameneslibres {
        padding-bottom: 60px!important;
    }
    
    .homepage__section__buttons {
        display: inline-grid;
    }
    .content-section__column--features {
        width:100%!important;
        padding-left: var(--space-2xl);
        padding-right: var(--space-2xl);
    }
    .content-section__features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))!important;
    }
    .header{
        padding: var(--space-lg) 20px;
    }
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-top: -20px;
  margin-right: -10px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.form-input-text{
    border-radius: 10px;
    border: 1px solid #ECEDEC;
    gap:10px;
    height: 40px;
    width:100%;
    padding: 10px;
}
.form p{
    padding: 15px 0px 15px 0px;
}
.form a{
    color:#2d79f3;
    font-weight: 500;
    font-size: 14px;
}
.form span p{
    font-size:14px;
    font-weight: 400;
    padding:0;
}
#togglePassword {
    display: inline !important;
    cursor: pointer;
    margin-left: 350px;
    color: #000 !important;
}
.pwd{
	position: relative;
}
.p-viewer {
	z-index: 9999;
	position: absolute;
	top: 30%;
	right: 10px;
}
.forgot{
    padding-top:15px;
    padding-bottom:15px;
    text-align: right;
}
.loginbutton{
    width:100%;
    background-color:#fe990d!important;
    color:#FFF!important;
    border:1px solid #fe990d!important;
    margin-bottom:15px;
}
.pull-left{
    float: left;
}
.pull-right{
    float: right;
}
.accordion-container:hover{
    border: 1px solid var(--orange_500);
}
.homepage-column:hover{
    border: 1px solid var(--orange_500);
}

.accordion-container[open]{
    border: 1px solid var(--orange_500);
}
details[open] .accordion__header::before {
    content: ''!important;
    transform: rotate(180deg) translate(50%, 50%);
}
.seccion-2{
    max-height: 1020px;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: .3s ease;
  background-color: transparent;
}

.icon-imageyoutube {
  color: red;
  font-size: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.fa-youtube:hover {
  color: #eee;
}
.containerimageyoutube{
    position:relative;
}
.accordion__header {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
    &::before {
        content:''!important;
        position: absolute;
        left:95%!important;
    }
}
.w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
}
header{  
  position: fixed;
  z-index: 100;
}

.button-text2{
    font-weight:500;
}

.startup-logo{
    object-fit: contain;
}

.ui.text.size-brincus_home___1_desktop_body_caption_regular {
    font-size: 14px;
    font-weight: 400;
}

::-webkit-details-marker {   display:none!important; }


.footer {
  display: flex;
  background-color: var(--neutral_colors_white);
  justify-content: center;
  align-items: center;
}

.footer-top-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    padding-left: var(--space-2xl);
    padding-right: var(--space-2xl);
  }
}

.footer-services {
  width: 100%;
  padding: 26px;
  @media only screen and (max-width: 550px) {
    padding: var(--space-2xl);
  }
}

.footer-bottom {
  margin-bottom: 36px;
  gap: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom-row {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-2xl);
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    gap: 40px;
    justify-content: flex-start;
  }
}

.footer-logo {
  height: 32px;
  width: 100%;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 250px;
    height: auto;
  }
}


.footer-divider {
  height: 1px;
  margin-left: 40px;
  margin-right: 40px;
  transform: rotate(180deg);
  background-color: var(--orange_500);
  align-self: stretch;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}


.disc-image {
  height: 30px;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100px;
  }
}

.forbes-logo {
  height: 14px;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 60px;
    height: auto;
    display: block;
  }
}

.images-logo {
  height: 14px;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100px;
    height: auto;
  }
}

.startup-row {
  background-color: var(--neutral_colors_white);
  display: flex;
  border-radius: var(--radius-xs);
}

.startup-logo {
  height: 20px;
  object-fit: contain;
  @media only screen and (max-width: 1050px) {
    width: 100px;
    height: auto;
  }
}


.logo-and-social-row {
  gap: var(--space-6xl);
  display: flex;
  width: 70%;
  justify-content: center;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    flex-direction: column;
    width: 100%;
  }
}

.logo-column {
  gap: var(--space-lg);
  align-self: center;
  display: flex;
  width: 38%;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.social-media-icons {
  gap: var(--space-lg);
  display: flex;
}

.link-icon {
  height: 36px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  background-color: var(--orange_500) !important;
  width: 36px;
  border-radius: 8px !important;
}

.contact-column {
  gap: var(--space-sm);
  display: flex;
  width: 78%;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  @media only screen and (max-width: 1050px) {
    width: 100%;
  }
}

.faq-button {
  color: var(--neutral_colors_white);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  letter-spacing: 0.46px;
  font-family: Nunito;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  background-color: var(--orange_500) !important;
  box-shadow: var(--shadow-sm);
  align-self: stretch;
  height: 30px;
  border-radius: 14px !important;
  @media only screen and (max-width: 1050px) {
    font-size: 16px;
    padding: 8px;
    font-weight: 500;
    display: flex;
    text-transform: none;
    flex-direction: row;
    width: fit-content;
    font-family: Inter;
  }
}

.menu-links-row {
  width: 62%;
  display: flex;
  justify-content: space-between;
  gap: var(--space-2xl);
  @media only screen and (max-width: 1050px) {
    width: 100%;
    justify-content: flex-start;
  }

  @media only screen and (max-width: 550px) {
    flex-direction: column;
  }
}

.menu-column {
  gap: var(--space-xl);
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    font-weight: 500;
    font-family: Inter;
  }

  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}

.community-column {
  gap: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    font-weight: 500;
    font-family: Inter;
  }
}

.recognition-column {
  gap: var(--space-3xl);
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: start;
  @media only screen and (max-width: 1050px) {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}

.accordion-container {
  box-shadow: var(--shadow-xs);
  flex: 1;
  border-radius: var(--radius-md);
}

.accordion__title {
  color: var(--black_900_dd) !important;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
}

.accordion__content {
  margin: 8px 16px 14px 16px;
  @media only screen and (max-width: 1050px) {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.accordion__description {
  color: var(--black_900_dd) !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  @media only screen and (max-width: 550px) {
    font-size: 14px;
    padding: 10px;
  }
}

.homepage__expandable-list {
  gap: 16px;
  display: flex;
  width: 100%;
  flex-direction: column;
  @media only screen and (max-width: 550px) {
    width: 100%;
  }
}
