.headerFox {
  width: 100%;
  position: relative;
  background-color: #003366;
  border-top: 2px solid red;
  padding: 11px 0;
  min-height: 48px;
  border-bottom: 1.5px solid silver;
}

.headerFox .container {
  max-width: 1300px;
  padding: 0 12px;
}

.headerFox__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerFox__logo {
  display: flex;
  align-items: center;
}

.headerFox__logo img {
  width: 125.63px;
  height: auto;
}

.headerFox__menu {
  display: flex;
  color: #fff;
}

.headerFox__item {
  margin-right: 15px;
  width: max-content;
  padding: 6px 8px;
  color: #fff;
  background-color: #d20f26;
  text-decoration: none;
  border-radius: 7px;
  transition: 0.15s all ease-in-out;
  font-size: 15px;
}

.headerFox__item:hover {
  background-color: #f33c51;
}

.headerFox__burger {
  width: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  padding-bottom: 3px;
}

.headerFox__burger span {
  width: 100%;
  position: relative;
}

.headerFox__burger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  background: #fff;
  top: 0;
  left: 0;
}

.notificationFox {
  width: 100%;
  position: relative;
  background-color: #003366;
}

.notificationFox .container {
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notificationFox__img {
  width: 100%;
  max-width: 500px;
}

.footerFox {
  width: 100%;
  position: relative;
  background-color: #036;
}

.footerFox__wrap {
  display: flex;
  gap: 60px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 25px 0 40px;
}

.footerFox__left,
.footerFox__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerFox__title,
.footerFox__name {
  color: #fff;
  text-decoration: none;
}

.footerFox__title {
  font-size: 20px;
  font-weight: 600;
}

.footerFox__name {
  font-size: 17px;
  color: rgb(223, 223, 223);
}

.footerFox__name:hover {
  text-decoration: underline;
}

@media(max-width: 1400px) {
  .headerFox .container {
    max-width: 1140px;
  }
}

@media(max-width: 1200px) {
  .headerFox .container {
    max-width: 960px;
  }
}

@media(max-width: 990px) {
  .headerFox .container {
    max-width: 720px;
  }
}

@media(max-width: 576px) {
  .headerFox .container {
    max-width: 540px;
  }
}