/*=========== TABLE OF CONTENTS ===========
1. Button CSS
2. Text CSS
3. Heading CSS
4. Container CSS
==========================================*/

/*-------------------------------------
  1. Button CSS
--------------------------------------*/
.ui.button.circle {
  border-radius: 50%;
}

.ui.button.round {
  border-radius: var(--radius-lg);
}

.ui.button.size-lg {
  height: 48px;
  padding-left: 12px;
  padding-right: 12px;
}

.ui.button.size-sm {
  height: 36px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.ui.button.size-xs {
  height: 30px;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  font-size: 13px;
}

.ui.button.size-md {
  height: 42px;
  padding-left: 34px;
  padding-right: 34px;
  font-size: 15px;
}

.ui.button.outline.neutral_colors_headings_black {
  color: var(--neutral_colors_headings_black);
  border: 1px solid var(--neutral_colors_headings_black);
}

.ui.button.fill.blue_500 {
  background-color: var(--blue_500);
  color: var(--neutral_colors_white);
}

.ui.button.fill.orange_500 {
  background-color: var(--orange_500);
}

.ui.button.fill.green_a700 {
  background-color: var(--green_a700);
  color: var(--neutral_colors_white);
}

.ui.button {
  text-align: center;
  display: flex;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/*-------------------------------------
  2. Text CSS
--------------------------------------*/
.ui.text.size-parrafo_normal {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-brincus_home___1_desktop_body_highlight_standard {
  font-size: 18px;
  font-weight: 400;
}

.ui.text.size-brincus_home___1_desktop_body_content_regular {
  font-size: 16px;
  font-weight: 400;
}

.ui.text.size-brincus_home___1_desktop_body_highlight_emphasis {
  font-size: 18px;
  font-weight: 400;
}

.ui.text.size-brincus_home___1_mobile_body_caption_emphasis {
  font-size: 12px;
  font-weight: 400;
}

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

.ui.text {
  color: var(--gray_700);
  font-family: Inter;
}

/*-------------------------------------
  3. Heading CSS
--------------------------------------*/
.ui.heading.size-brincus_home___1_desktop_headings_heading_1 {
  font-size: 56px;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 48px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 42px;
  }
}

.ui.heading.size-button_large {
  font-size: 15px;
  font-weight: 500;
}

.ui.heading.size-brincus_home___1_desktop_headings_heading_2 {
  font-size: 48px;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 44px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 38px;
  }
}

.ui.heading.size-brincus_home___1_desktop_headings_heading_3 {
  font-size: 40px;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 38px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 36px;
  }
}

.ui.heading.size-brincus_home___1_desktop_body_highlight_bold {
  font-size: 18px;
  font-weight: 700;
}

.ui.heading.size-brincus_home___1_desktop_body_content_bold {
  font-size: 16px;
  font-weight: 700;
}

.ui.heading.size-brincus_home___1_desktop_headings_heading_4 {
  font-size: 32px;
  font-weight: 700;
  @media only screen and (max-width: 1050px) {
    font-size: 30px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.ui.heading.size-brincus_home___1_desktop_body_caption_bold {
  font-size: 14px;
  font-weight: 700;
}

.ui.heading.size-brincus_home___1_desktop_body_content_accent {
  font-size: 16px;
  font-weight: 600;
}

.ui.heading.size-textxs {
  font-size: 15px;
  font-weight: 500;
  font-style: bold;
}

.ui.heading {
  color: var(--black_900);
  font-family: Inter;
}

/*-------------------------------------
  4. Container CSS
--------------------------------------*/
.container-xs {
  max-width: 1080px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
