@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.static {
  color: #666C71;
  text-align: center;
  height: calc(100vh - 460px);
}
.static .container {
  height: 100%;
}
.static__message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 30px 0 60px 0;
}
.static__icon {
  max-width: 120px;
  width: 100%;
  margin: 40px 0;
}
.static__text p {
  color: #000000;
  text-align: center;
  margin: 0;
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.not-found {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 0;
  padding-bottom: 100px;
  width: 100%;
  height: calc(100vh - 110px);
  background-color: #002F6C;
}
.not-found__header {
  display: flex;
  width: 100%;
  margin-top: 0;
  background-color: #ffffff;
}
.not-found__header .container {
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.not-found__header__logo {
  display: flex;
  align-items: center;
}
.not-found__header__logo img {
  width: 145px;
  height: 70px;
}
.not-found__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.not-found__title {
  color: #ffffff;
  font-family: "Poppins-Bold";
  --font-size: 80px;
  --font-size-rem: 5rem;
  --line-height: 100px;
  --line-height-rem: 6.25rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  text-align: center;
}
.not-found__label {
  margin-bottom: 30px;
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  color: #ffffff;
  text-align: center;
}
.not-found__back {
  --font-size: 20px;
  --font-size-rem: 1.25rem;
  --line-height: 32px;
  --line-height-rem: 2rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  padding: 8px 32px;
  border: 1px solid #ffffff;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.not-found__back:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .static {
    height: calc(100vh - 300px);
  }
}
@media screen and (min-width: 992px) {
  .static__icon {
    max-width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .not-found {
    height: calc(100vh - 141px);
  }
  .not-found__header .container {
    padding: 25px;
  }
  .not-found__header__logo img {
    width: 190px;
    height: 91px;
  }
}