/* GLOBAL */
@font-face {
  font-family: 'Publico Banner';
  src: url('../fonts/PublicoBanner-Bold.eot');
  src: url('../fonts/PublicoBanner-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/PublicoBanner-Bold.woff2') format('woff2'),
    url('../fonts/PublicoBanner-Bold.woff') format('woff'),
    url('../fonts/PublicoBanner-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  background-color: #ffffff;
  color: #192933;
  font-family: 'neue-haas-grotesk-display', Arial, 'sans-serif';
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Publico Banner', 'Times New Roman', 'serif';
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 28px;
}
p {
  font-size: 24px;
}
/* SECTIONS - CONTAINERS */
.bg-gray-dark {
  background-color: #b4bcc1;
}
.bg-gray-light {
  background-color: #f5f5f5;
}
.bg-blue-dark {
  background-color: #192933;
}
.bg-blue-light {
  background-color: #3839ff;
}

/* HEADER */
.navbar {
  background-color: #192933;
  padding: 16px 0;
  height: 94px;
  z-index: 10;
}
.navbar .btns {
  display: flex;
  flex-grow: 1;
  flex-direction: row-reverse;
}
.navbar .btns i {
  color: #ffffff;
}

.navbar .btns .icons {
  cursor: pointer;
  padding: 12px;
  border-radius: 5px;
  margin-left: 16px;
}
.navbar .btns .icons:hover {
  background-color: #3939e9;
}
.navbar .btns .icons,
.navbar .btns .icons:hover {
  transition: background-color 0.3s ease-in-out;
}

/* MENU */
.menu {
  padding: 20px;
  position: fixed;
  height: 100%;
  right: 0;
  width: 991px;
  background-color: #192933;
  z-index: 100;
  transition: right 0.3s ease-in-out;
  overflow-y: scroll;
}
.noscroll {
  overflow: hidden;
}
.closed {
  right: -991px;
  transition: right 0.3s ease-in-out;
}
.menu .header {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 20px;
  margin-bottom: 32px;
  top: 0;
  width: 100%;
  background-color: #192933;
  z-index: 200;
}
.menu .header .search {
  flex-grow: 1;
}
.form-control:focus {
  box-shadow: none;
}
.menu .header .search input:focus {
  background-color: #ffffff;
  color: #000000;
}
.menu .header .search input,
.menu .header .search button {
  color: #f5f5f5;
  border: 1px solid #f5f5f5;
  background-color: #192933;
}
.menu .header .search button:hover {
  background-color: #d34633;
}
.menu .header .search input::placeholder {
  color: #69727b;
}
.menu .header .search button {
  border-radius: 0 5px 5px 0;
}
.menu .header .search img {
  margin-top: -4px;
}
.menu .header .btns {
  display: flex;
  flex-direction: row-reverse;
  width: 96px;
  padding: 8px 0;
}
.menu .header .btns i {
  cursor: pointer;
  color: #ffffff;
  margin-left: 24px;
}
.menu .header .btns i:hover {
  color: #d34633;
}
.menu .header .btns,
.menu .header .btns i {
  transition: color 0.3s ease-in-out;
}
.menu .content ul li {
  margin-bottom: 16px;
  padding-left: 8px;
  text-transform: uppercase;
  font-size: 16px;
  border-bottom: 1px solid #ffffff;
}
.menu .content a {
  text-decoration: none;
  color: #ffffff;
}
.menu .content a:hover {
  color: #192933;
}
.menu .content ul li:hover {
  background-color: #ffffff;
}

/* CONTENT */
.container,
.container-fluid {
  padding-top: 48px;
  padding-bottom: 48px;
}
h2 {
  margin-bottom: 16px;
  border-bottom: 1px solid #b4bcc1;
}
.bg-blue-dark h2,
.bg-blue-light h2,
.bg-blue-dark p,
.bg-blue-light p {
  color: #f5f5f5;
}
.bg-blue-dark h2,
.bg-blue-light h2 {
  border-color: #f5f5f5;
}
.bg-gray-dark h2 {
  border-color: #192933;
}
p span {
  font-weight: bold;
}

/* FOOTER */
.footer {
  color: #f5f5f5;
  background-color: #192933;
}
.footer .info {
  border-top: 1px solid #f5f5f5;
}
.footer h5 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer .links ul {
  list-style: none;
  padding: 0;
}
.footer .links ul li {
  font-size: 20px;
  margin-bottom: 8px;
}
.footer .links ul li a {
  color: #f5f5f5;
  text-decoration: underline;
}
.footer .links ul li a:hover {
  color: #3839fc;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  font-size: 18px;
  margin-bottom: 8px;
}
.footer ul li span {
  font-weight: bold;
}
.footer .links-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .links-wrapper .left,
.footer .links-wrapper .right {
  width: 50%;
}
.footer .social ul li {
  margin-right: 8px;
  float: left;
}
