/*=========== TABLE OF CONTENTS ===========
1. Text CSS
2. Heading CSS
3. Container CSS
==========================================*/

/*-------------------------------------
  1. Text CSS
--------------------------------------*/
.ui.text.size-textxs {
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-texts {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-textmd {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-text2xl {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.ui.text.size-text4xl {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  @media only screen and (max-width: 1050px) {
    font-size: 30px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 28px;
  }
}

.ui.text {
  color: var(--gray_700);
  font-family: Poppins;
}

/*-------------------------------------
  2. Heading CSS
--------------------------------------*/
.ui.heading.size-textlg {
  font-size: 18px;
  font-weight: 500;
  font-style: bold;
}

.ui.heading.size-textxl {
  font-size: 20px;
  font-weight: 500;
  font-style: bold;
}

.ui.heading.size-text3xl {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  @media only screen and (max-width: 1050px) {
    font-size: 14px;
  }
}

.ui.heading.size-text5xl {
  font-size: 50px;
  font-weight: 500;
  font-style: bold !important;
 
}

.ui.heading.size-headingxs {
  font-size: 18px;
  font-weight: 600;
  font-style: bold;
}

.ui.heading.size-headings {
  font-size: 20px;
  font-weight: 700;
  font-style: bold !important;
}

.ui.heading.size-headingmd {
  font-size: 50px;
  font-weight: 600;
  font-style: bold;
  @media only screen and (max-width: 1050px) {
    font-size: 46px;
  }

  @media only screen and (max-width: 550px) {
    font-size: 40px;
  }
}

.ui.heading {
  color: var(--black_900);
  font-size: 50px;
  font-weight: 500;
  font-family: Poppins,var(--default-font-family) ;
}

/*-------------------------------------
  3. Container CSS
--------------------------------------*/
.container-xs {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 1050px) {
    font-size: 46px;
}

@media only screen and (max-width: 550px) {
    font-size: 40px;
}
