* {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 1rem;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

h4 {
  font-family: Comic Sans, Comic Sans MS, Verdana, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

h5 {
  font-family: Comic Sans, Comic Sans MS, Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: justify;
}

blockquote p {
  color: hsl(210, 9%, 31%);
  margin-left: 1rem;
  font-size: 0.8rem;
}

li {
  text-align: justify;
}

table * {
  font-family: Comic Sans, Comic Sans MS, Verdana, Helvetica, Arial, sans-serif;
  letter-spacing: 0px;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  background-color: hsl(210, 17%, 98%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.header, .footer {
  background-color: hsl(351, 54%, 37%);
}

.header {
  position: sticky;
  top: 0px;
}
.header ul {
  list-style: none;
}

.footer {
  margin-top: auto;
}
.footer .container {
  display: flex;
}
.footer ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
}

.header .container-topbar {
  display: flex;
  align-items: center;
}

.header .container-menu {
  display: flex;
}
.header .container-menu > ul {
  margin: 4px 4px;
  display: flex;
}
.header .container-menu > ul > li {
  margin-right: 2rem;
}
.header .container-menu a {
  color: hsl(210, 17%, 98%);
  margin-left: 8px;
  margin-right: 8px;
  /*font-family: Helvetica, Arial, sans-serif;*/
  letter-spacing: 2px;
}
.header .container-menu a:hover {
  border-bottom: 1px solid hsl(210, 17%, 98%);
}

@media (min-width: 768px) {
  .header .container-menu li.parent {
    position: relative;
  }
  .header .container-menu li.parent ul {
    position: absolute;
    display: none;
    background-color: hsl(351, 54%, 37%);
    padding-top: 0.5rem;
  }
  .header .container-menu li.parent ul li {
    display: block;
    min-width: 10rem;
    margin-bottom: 4px;
  }
  .header .container-menu li.parent:hover ul, .header .container-menu li.parent:focus-within ul, .header .container-menu li.parent ul:hover {
    display: block;
  }
  .header .container-menu li.parent::after {
    content: "";
    position: relative;
    display: inline-block;
    width: 0px;
    height: 0px;
    border-top: 0.33rem solid hsl(210, 17%, 98%);
    border-left: 0.33rem solid transparent;
    border-right: 0.33rem solid transparent;
    top: 0.1rem;
    right: 0.2rem;
  }
}
@media (max-width: 767px) {
  .header .container-menu li.parent ul {
    padding-left: 0.66rem;
  }
  .header .container-menu li.parent ul li:before {
    content: "";
    position: relative;
    display: block;
    width: 0px;
    height: 0px;
    top: 0.6rem;
    border: 1px solid #f9fafb;
  }
}
.header .mod-custom {
  margin: 0px 8px;
}
.header .mod-custom img {
  height: 48px;
}

.header .mod-languages {
  margin-left: auto;
}
.header .mod-languages .visually-hidden {
  display: none;
}
.header .mod-languages ul {
  margin: 4px;
}
.header .mod-languages a {
  padding: 0px;
  margin: 0px;
}
.header .mod-languages img {
  border-left: 1px solid hsl(210, 17%, 98%);
  border-right: 1px solid hsl(210, 11%, 15%);
  border-top: 1px solid hsl(210, 17%, 98%);
  border-bottom: 1px solid hsl(210, 11%, 15%);
  width: 36px;
  border-radius: 2px;
  vertical-align: bottom;
}
.header .mod-languages .lang-active img {
  border-left: 1px solid hsl(210, 11%, 15%);
  border-right: 1px solid hsl(210, 17%, 98%);
  border-top: 1px solid hsl(210, 11%, 15%);
  border-bottom: 1px solid hsl(210, 17%, 98%);
}

@media (max-width: 479px) {
  .header .mod-languages img {
    width: 24px;
  }
  .header .mod-custom img {
    height: 32px;
  }
}
.burger {
  position: relative;
  /*display: block;*/
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  margin: 4px 12px;
  /*top: 50%;*/
  /*-webkit-transform: translateY(-50%);
          transform: translateY(-50%);*/
  /*left: 1.1rem;*/
  /*outline: hotpink solid 1px;*/
}

.burger span,
.burger::before,
.burger::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: hsl(210, 17%, 98%);
}

.burger span {
  left: 0;
  top: 0.7rem;
}

.burger::before {
  content: "";
  top: 0.2rem;
}

.burger::after {
  content: "";
  bottom: 0.2rem;
}

.active.burger span {
  display: none;
}

.active.burger::before {
  /*-webkit-transform: rotate(45deg) translate(0.2rem, 0.5rem);*/
  transform: rotate(45deg) translate(0.2rem, 0.5rem);
  width: 115%;
}

.active.burger::after {
  /*-webkit-transform: rotate(-45deg) translate(0.2rem, -0.5rem);*/
  transform: rotate(-45deg) translate(0.2rem, -0.5rem);
  width: 115%;
}

@media (max-width: 767px) {
  .burger {
    display: block;
  }
  .header .container-menu {
    display: none;
  }
  .header .container-menu.active {
    display: flex;
  }
  .header .container-menu.active ul {
    flex-direction: column;
  }
}
.footer ul {
  margin: 4px 4px;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.footer ul a {
  color: hsl(210, 17%, 98%);
  margin-left: 8px;
  margin-right: 8px;
  letter-spacing: 2px;
}
.footer ul a:hover {
  border-bottom: 1px solid hsl(210, 17%, 98%);
}
.footer ul img.home-icon {
  width: 24px;
  vertical-align: bottom;
}
.footer ul li {
  margin-right: 2rem;
}

.footer p {
  color: hsl(210, 17%, 98%);
  margin: 4px 4px;
}
.footer p img {
  vertical-align: bottom;
  max-height: 1rem;
}
@media (max-width: 374px) {
  .footer p {
    font-size: 0.8rem;
    margin: 5px 2px;
  }
  .footer p img {
    display: none;
  }
}

.main {
  padding: 4px;
}
.main a {
  color: hsl(351, 54%, 37%);
}
.main a:hover {
  border-bottom: 1px solid;
}
.main img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.main .item-image img {
  max-width: 20%;
  float: right;
  padding: 2rem;
}
@media (max-width: 767px) {
  .main .item-image img {
    padding: 1rem;
  }
}
.main ul {
  padding-left: 1rem;
  list-style-position: outside;
  list-style-type: "-";
}
.main li {
  padding-left: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  /*&::before {
    content: "";
    //position: absolute;
    left: -8px;
    color: $yuriy-color-primary;
  }*/
}
.main table {
  max-width: 100%;
  width: auto;
  border-bottom: 1px solid hsl(210, 16%, 93%);
}
.main table td {
  padding: 4px 8px;
}
.main tbody tr:nth-child(odd) {
  background-color: hsl(210, 16%, 93%);
}
.main thead tr {
  background-color: hsl(210, 11%, 15%);
  color: hsl(210, 17%, 98%);
}
@media (max-width: 767px) {
  .main table {
    min-width: 96%;
  }
}
.main .repl-ph img, .main .repl-ma img {
  vertical-align: bottom;
  max-height: 1.2rem;
}/*# sourceMappingURL=yuriy_main.css.map */