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

/*-------------------------------------
  1. Text CSS
--------------------------------------*/
.ui.text.size-textxs {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-texts {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
}

.ui.text {
  color: var(--black_900);
  font-family: Roboto;
}

/*-------------------------------------
  2. Heading CSS
--------------------------------------*/
.ui.heading.size-headingxs {
  font-size: 20px;
  font-weight: 700;
  font-style: bold;
}

.ui.heading.size-textmd {
  font-size: 22px;
  font-weight: 500;
  font-style: bold;
}

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

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

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

.ui.heading {
  color: var(--white_a700);
  font-family: Outfit;
}

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