/* Table of Contents
1. General Body Styling (BODY_STYLING)
2. Header (H1-H6) Styling (HEADER_STYLING)
3. Text Elements (P, Span, Li) Styling (TEXT_ELEMENTS_STYLING)
4. Link Styling (LINK_STYLING)
    a. Unvisited Links
    b. Visited Links
5. Arrow Bullet Styling (ARROW_BULLET)
6. Blue Color Styling (BLUE_COLOR_STYLING)
7. Icon Blue Styling (ICON_BLUE_STYLING)
*/

/* 1. General Body Styling (BODY_STYLING) */
body {
  overflow-x: hidden;
  /* font-family: 'Lato'; */
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
  color: #000 !important;
  /* background-color:#000; */
  font-size: 16px;
}

/* 2. Header (H1-H6) Styling (HEADER_STYLING) */
h1, h2, h3, h4, h5, h6 {
  /* font-family: 'Lato'; */
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
}

/* 3. Text Elements (P, Span, Li) Styling (TEXT_ELEMENTS_STYLING) */
p, span, li {
  /* font-family: 'Lato'; */
  font-family: "Open Sans", Helvetica, Arial, Verdana, sans-serif;
}

/* 4. Link Styling (LINK_STYLING) */

/* a. Unvisited Links */
a:link {
  color: #000;
  text-decoration: none;
}

/* b. Visited Links */
a:visited {
  color: #000;
  text-decoration: none;
}

/* 5. Arrow Bullet Styling (ARROW_BULLET) */
.arrow_bullet {
  display: block;
  margin-top: -10px !important;
  position: absolute;
}

/* 6. Blue Color Styling (BLUE_COLOR_STYLING) */
.blue_color {
  /* color: #093d9d; */
  color: #146394;
}

/* 7. Icon Blue Styling (ICON_BLUE_STYLING) */
.icon_blue {
  color: #107bbf;
  /* color:#146394 */
}
