/* Reset and base styles  */
* {
 padding: 0px;
 margin: 0px;
 border: none;
 font-family: "Fira Sans", serif;
}

*,
*::before,
*::after {
 box-sizing: border-box;
 font-family: "Fira Sans", serif;
}

/* Links */

a,
a:link,
a:visited {
 text-decoration: none;
}

a:hover {
 text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
 display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
 font-size: inherit;
 font-weight: inherit;
}

ul,
ul li {
 list-style: none;
}

img {
 vertical-align: top;
}

img,
svg {
 max-width: 100%;
 width: 100%;
 height: auto;
}

address {
 font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
 font-family: inherit;
 font-size: inherit;
 color: inherit;
 background-color: transparent;
}

input::-ms-clear {
 display: none;
}

button,
input[type="submit"] {
 display: inline-block;
 box-shadow: none;
 background-color: transparent;
 background: none;
 cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
 outline: none;
}

button::-moz-focus-inner {
 padding: 0;
 border: 0;
}

label {
 cursor: pointer;
}

legend {
 display: block;
}

.container {
 background-color: #fff;
}

.header {
 padding: 20px;
 width: 100%;
 border-top: 3px solid rgb(191, 0, 0);
}

.header-title {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
}

.header-title img {
 max-width: 158px;
 width: 100%;
}

.header-title__menu,
.header-title__user {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.header-title__menu img,
.header-title__user img {
 max-width: 24px;
}

.header-title__menu p,
.header-title__user p {
 margin-top: 4px;
 font-size: 10px;
 font-weight: 200;
 color: #102447;
 text-align: center;
}

.header-nav__top-list {
 margin: 10px auto;
 max-width: 210px;
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 6px;
}

.header-nav__top-list__item {
 align-items: center;
}

.header-nav__top-list__item a {
 font-size: 14px;
 font-weight: 600;
 text-transform: uppercase;
 color: #102447;
 text-align: center;
}

.header-nav__top-list img {
 margin-top: 6px;
 max-width: 8px;
 align-items: center;
}

.header-nav__bottom-list {
 max-width: 100%;
 width: 100%;
 margin: 0;
 padding: 10px 0;
 border-top: 1px solid rgb(175, 175, 175);
 border-bottom: 1px solid rgb(175, 175, 175);
}

.header-nav__bottom-list .header-nav__top-list__item a {
 text-transform: capitalize;
 font-weight: 500;
}

.header-fixed {
 padding: 10px 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 background-color: rgb(191, 0, 0);

 position: fixed;
 top: 0;
 left: 0;
 right: 0;
}

.header-fixed .header-title__menu,
.header-fixed .header-title__user {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.header-fixed .header-title__menu img,
.header-fixed .header-title__user img {
 max-width: 24px;
}

.header-fixed .header-title__menu p,
.header-fixed .header-title__user p {
 margin-top: 4px;
 font-size: 10px;
 font-weight: 200;
 color: #fff;
 text-align: center;
}

.main {
 padding: 0 20px;
 width: 100%;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 gap: 12px;
}

.main > p {
 margin: 0;
 padding: 0;
 font-size: 112.5%;
 line-height: 1.6;
 color: #263238;
}

.main h1 {
 font-size: 24px;
 font-weight: 700;
 color: #263238;
}

.maint-time {
 margin: 10px 0;
 display: flex;
 align-items: center;
 justify-content: space-between;
 color: #546e7a;
 font-size: 12px;
 font-weight: 400;
}

.maint-time__com {
 display: flex;
 align-items: center;
 gap: 4px;
 color: #546e7a;
}

.maint-time__com p {
 margin-top: 2px;
}

.footer {
 margin-top: 20px;
 padding: 0 20px;
 padding-bottom: 24px;
 width: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;

 background: linear-gradient(180deg, #eff3f9 0%, transparent 100%);
}

.footer-logo {
 margin: 20px auto;
 max-width: 158px;
}

.footer-links {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 4px 12px;
 flex-wrap: wrap;
}

.footer-links__item {
 min-width: max-content;
}

.footer-links__item a {
 font-size: 14px;
 font-weight: 600;
 color: #102447;
 line-height: normal;
}

.footer-links_social {
 margin-top: 20px;
 gap: 20px;
}

.footer-links_social .footer-links__item {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 4px;
}

.footer-links_social .footer-links__item a {
 font-size: 12px;
 font-weight: 400;
}

.footer-links__item img {
 max-width: 24px;
}

.footer-cop {
 margin-top: 30px;
 font-size: 81.25%;
 font-weight: 400;
 text-align: center;
 line-height: 1.231;
}

.d-none {
 display: none;
}

@media screen and (min-width: 1200px) {
 body {
  background: #eff3f9;
 }
 .container {
  margin: 0 auto;
  max-width: 870px;
  position: relative;
 }

 .main h1 {
  margin-bottom: 20px;
  font-size: 42px;
 }

 .fx-h {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;

  margin: 0 auto;
  max-width: 870px;
 }
}
