/* =============================
   FONT AWESOME CUSTOM PROPERTIES
============================= */
:host,
:root {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";

  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";

  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

/* =============================
   HTML & GLOBAL SETTINGS
============================= */
html {
  font-size: 10px;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*, ::before, ::after {
  box-sizing: border-box;
}

/* =============================
   BODY STYLES
============================= */
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.428571429;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}

body,
ul.nav-menu > li a {
  color: #696969;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* =============================
   HEADINGS & TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #1197d5;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 {
  text-align: center;
  font-size: 2em;
  margin: 0.67em 0;
}

.h1, h1 {
  font-size: 36px;
}

h1.codix-container-title {
  color: #1197d5;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 10px;
  padding: 0;
  text-transform: uppercase;
}

/* =============================
   LAYOUT CONTAINER
============================= */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* =============================
   GENERIC BLOCK ELEMENT
============================= */
element {
  display: block;
  position: static;
  float: none;
  line-height: normal;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  padding: 0;
  z-index: auto;
}
