html, body {
  margin: 0;
  padding: 0;
}

.aci-header {
  background-color: #4c5f7a;
  background-image: none;
  position: relative;
  z-index: 20;
  margin: 0 !important;
  padding: 0 !important;
}

.aci-header-content {
  position: relative;
  margin: 0 auto;
  width: 1140px;
  max-width: 100%;
  padding: 0 15px;
  height: 157px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aci-header-content::after {
  content: "";
  display: table;
  clear: both;
}

.aci-logo-link {
  display: block;
  width: 220px;
  height: 47px;
  position: relative;
  z-index: 2;
}

.aci-logo-image {
  width: 100%;
  height: 100%;
  display: block;
}

.aci-nav {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.aci-nav > * {
  pointer-events: auto;
}

.aci-desktop-menu {
  display: none;
}

.aci-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.aci-nav-item {
  margin: 0;
  padding: 0;
}

.aci-nav-link {
  display: block;
  padding: 10px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s;
  text-align: center;
}

.aci-nav-link:hover,
.aci-nav-link:focus {
  color: #a1a1a1 !important;
}

.aci-nav-link strong {
  font-weight: 700;
}

.aci-nav-link sup {
  font-size: 0.7em;
  color: #de4640;
  font-weight: 700;
}

.aci-menu-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.aci-hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
}

.aci-hamburger-icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.aci-mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.5s;
}

.aci-mobile-menu.aci-menu-open {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s;
}

.aci-sidenav {
  background-color: rgba(0, 0, 0, 0.95);
  width: 250px;
  height: 100vh;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1001;
}

.aci-mobile-menu.aci-menu-open .aci-sidenav {
  transform: translateX(0);
}

.aci-sidenav-content {
  padding: 20px;
  position: relative;
}

.aci-menu-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.aci-menu-close::before,
.aci-menu-close::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  top: 50%;
  left: 0;
}

.aci-menu-close::before {
  transform: rotate(45deg);
}

.aci-menu-close::after {
  transform: rotate(-45deg);
}

.aci-social-icons {
  display: flex;
  gap: 10px;
  margin: 40px auto 0;
  justify-content: center;
  width: 116px;
  height: 32px;
}

.aci-social-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
  flex: 1;
}

.aci-social-icon {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.aci-social-icon svg {
  width: 100%;
  height: 100%;
}

.aci-social-icon.aci-facebook {
  color: rgb(59, 89, 152);
}

.aci-social-icon.aci-instagram {
  color: rgb(197, 54, 126);
}

.aci-social-icon.aci-youtube {
  color: rgb(255, 0, 0);
}

.aci-search-form {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  display: flex;
  margin: 20px 0;
  border-radius: 4px;
  overflow: hidden;
}

.aci-search-button {
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aci-search-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.aci-search-icon svg {
  width: 100%;
  height: 100%;
  fill: #333333;
}

.aci-search-input {
  border: none;
  outline: none;
  padding: 10px;
  flex: 1;
  font-size: 1rem;
}

.aci-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.aci-mobile-nav-item {
  margin: 8px 0;
}

.aci-mobile-nav-link {
  display: block;
  padding: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.3s;
}

.aci-mobile-nav-link:hover,
.aci-mobile-nav-link:focus {
  color: #a1a1a1 !important;
}

.aci-mobile-nav-link strong {
  font-weight: 700;
}

.aci-mobile-nav-link sup {
  font-size: 0.7em;
  color: #de4640;
  font-weight: 700;
}

.aci-login-btn,
a.aci-login-btn,
.aci-mobile-nav-item .aci-login-btn {
  display: inline-block;
  padding: 6px 18px;
  background-color: #c4daf2 !important;
  color: #111111 !important;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  line-height: 1.1;
  transition: background-color 0.3s, color 0.3s;
}

.aci-login-btn:hover,
.aci-login-btn:focus,
a.aci-login-btn:hover,
a.aci-login-btn:focus,
.aci-mobile-nav-item .aci-login-btn:hover,
.aci-mobile-nav-item .aci-login-btn:focus {
  background-color: #5580af !important;
  color: #111111 !important;
}

.aci-user-greeting {
  text-align: center;
  margin: 20px 0;
}

.aci-user-greeting h6 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  max-width: 220px;
  margin: 0 auto;
  word-wrap: break-word;
  white-space: normal;
}

.aci-username-link {
  color: #de4640;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.aci-username-link:hover,
.aci-username-link:focus {
  color: #b93832;
  text-decoration: underline;
}

.aci-logout-btn {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: #5580af;
  border: 2px solid #5580af;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.aci-logout-btn:hover,
.aci-logout-btn:focus {
  background-color: #5580af;
  color: #ffffff;
  border-color: #4b739f;
}

.aci-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.aci-desktop-social-icons {
  display: none;
  gap: 10px;
  width: 116px;
  height: 32px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (min-width: 1200px) {
  .aci-header-content {
    width: 1140px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .aci-header-content {
    width: 940px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .aci-header-content {
    width: 720px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .aci-header-content {
    width: 540px;
  }
}

@media (max-width: 575px) {
  .aci-header-content {
    width: 100%;
    height: 100px;
  }

  .aci-logo-link {
    width: 180px;
    height: 38px;
  }

  .aci-desktop-social-icons {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .aci-desktop-social-icons {
    display: flex;
  }
}

.aci-hidden {
  display: none !important;
}

body.aci-menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

* {
  box-sizing: border-box;
}

.aci-header {
  position: relative;
  z-index: 20;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}