.header {
  background-color: var(--white);
  padding: 1rem 0;
  border: 1px solid #ccc;
  font-family: var(--pf-din-2);
}

.header__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.header__socials {
  display: flex;
  gap: 9px;
}

.header__bars {
  display: none;
}

.header__logo svg {
  width: 378px;
}

.header__utils {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
}

.nav {
  border-bottom: 1px solid #ccc;
  font-family: var(--pf-din-2);
  font-size: 22px;
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.socials {
}

.socials__col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.socials__date {
}

.socials__bar {
  display: flex;
  flex-direction: column;
  font-size: 20px;
}

.socials__bar span {
  width: 50px;
  height: 50px;
  position: relative;
  border: 1px solid #ccc;
  cursor: pointer;
}

.socials__bar span:hover > i {
  color: var(--red);
  transition: 0.3s;
}

.socials__bar span > i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main {
  margin-top: 2rem;
}

.main__breadcr {
  color: var(--red);
  font-family: var(--pf-din-2);
  font-size: 30px;
}

.main__title {
  font-family: var(--open-sans);
  margin-bottom: 1rem;
  font-size: 30px;
}

.info {
  font-family: var(--open-sans);
  font-size: 18px;
}

.info__title {
  margin-bottom: 1rem;
}

.info__text {
  margin-bottom: 1rem;
}

.info__list {
  background-color: rgb(0, 95, 158);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
}

.info__list-sec {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  padding-left: 2rem;
}

.info__list li {
  font-weight: 700;
}

.info__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #f5f5f5;
  padding: 1rem;
  align-items: center;
  border-radius: 3px;
  margin-bottom: 2rem;
}

.info__block-img {
  max-width: 200px;
  margin: auto;
}

.info__block-name {
  font-style: italic;
  font-weight: 700;
  color: var(--red);
}

.info__block p {
  max-width: 80%;
}

.red {
}

.info__block-time {
}

.info__important {
  margin-bottom: 1rem;
  margin-top: 1rem;
  border-left: 7px solid var(--red);
  padding: 7px 0px 7px 16px;
  background-color: #f5f5f5;
  font-style: italic;
  font-weight: 400;
}

.info__note {
  color: var(--red);
  border: 3px solid var(--red);
  background-color: rgba(255, 0, 0, 0.1);
  padding: 1.4rem 1rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.info__fito {
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.info__fito-img {
  max-width: 300px;
  float: left;
  padding-right: 1rem;
}

.adv {
}

.adv__col {
}

.adv__title {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 30px;
}

.adv__block {
  background-color: #f5f5f5;
  padding: 10px 20px;
  text-align: center;
  font-size: 20px;
}

.adv__block span {
  color: var(--red);
}

.adv__block p {
  border-bottom: 1px solid #ccc;
  transition: 0.3s;
  cursor: pointer;
}

.adv__block p:hover {
  text-decoration: underline;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.disc-t_on_wheel {
  position: absolute;
  font-weight: bold;
  font-size: 50px;
  right: 56px;
  top: 51px;
  transform: rotate(44deg);
}

@media (max-width: 520px) {
  .disc-t_on_wheel {
    font-size: 32px;
    right: 34px;
    top: 32px;
    transform: rotate(46deg);
  }
}
