* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ul li {
  margin: 0px;
  padding: 0px;
}
img {
  width: 100%;
}
ul li {
  list-style: none;
}
body {
  display: block;
  width: 100%;
  background: rgb(242, 242, 242);
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
.wrapper {
  display: block;
  width: 100%;
  max-width: 1150px;
  margin: 0px auto;
}
p {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 10px;
  color: rgb(0, 0, 0);
}
header {
  background: rgb(255, 255, 255);
  margin-bottom: 15px;
}
header .top {
  display: flex;
  align-items: center;
  background: rgb(15, 144, 250);
  min-height: 120px;
}
header .top .logo {
  display: block;
  width: 100%;
  max-width: 642px;
  margin: 0px auto;
  font-size: 40px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-align: center;
}
.menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menu-ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menu-ul li {
  padding: 16px 18px;
  position: relative;
}
.menu-ul li::after {
  content: " ";
  height: 25px;
  width: 0px;
  background: rgb(192, 192, 192);
  border-right: 0.75px solid rgb(192, 192, 192);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
}
.menu-ul li:last-child {
  padding-right: 55px;
}
.menu-ul li:last-child::after {
  content: none;
}
.menu-ul li a {
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.content {
  background: rgb(255, 255, 255);
  padding: 30px 50px;
}
.red {
  color: rgb(15, 144, 250);
}
.current-category {
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 25px;
  line-height: 29px;
  margin-bottom: 22px;
  color: rgb(15, 144, 250);
}
.title {
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 40px;
  line-height: 47px;
  color: rgb(0, 0, 0);
}
.post-date {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 31px;
  position: relative;
  padding: 0px 7px;
  display: inline-block;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
}
.post-date::before {
  content: " ";
  height: 14px;
  width: 0px;
  border-left: 0.75px solid rgb(0, 0, 0);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
}
.post-date::after {
  content: " ";
  height: 14px;
  width: 0px;
  border-right: 0.75px solid rgb(0, 0, 0);
  margin: auto;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
}
.categories {
  margin: 15px 0px;
}
.categories ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.categories ul li {
  background: rgb(192, 192, 192);
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  color: rgb(255, 255, 255);
  margin-right: 13px;
  margin-bottom: 5px;
}
.categories ul li.current {
  background: rgb(15, 144, 250);
}
.categories ul li:last-child {
  margin-right: 0px;
}
.content .image {
  display: block;
  margin: 40px auto;
  border-top: 5px solid rgb(15, 144, 250);
}
.content .image.horizontal {
  width: 100%;
  max-width: 600px;
}
h2 {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 29px;
  color: rgb(15, 144, 250);
}
a {
  cursor: pointer;
  color: blue;
  text-decoration: none;
}
@media screen and (max-width: 1150px) {
  .menu {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  header {
    margin-bottom: 0px;
  }
  header .top {
    padding: 0px 20px;
    min-height: auto;
    max-height: 75px;
  }
  header .top .logo {
    max-width: 320px;
    font-size: 25px;
    line-height: 90px;
  }
  .content {
    padding: 30px 15px;
  }
  .current-category {
    display: none;
  }
  .title {
    font-size: 30px;
    line-height: 35px;
  }
  .post-date {
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
  }
  .categories ul li {
    font-size: 12px;
    line-height: 14px;
    margin-right: 5px;
    letter-spacing: 0.15em;
  }
  .content .image.horizontal,
  .content .image.vertical {
    max-width: 100%;
  }
  .content .image {
    margin: 35px auto;
    border-top: 4px solid rgb(15, 144, 250);
  }
  p {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
.comments {
  display: block;
}
.comment {
  display: block;
  margin: 15px auto;
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(235, 235, 235);
}
.comment p {
  margin-left: 70px;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px !important;
}
@media screen and (max-width: 500px) {
  .comment p,
  .comment .comm-img {
    margin-left: auto;
  }
}
@media screen and (max-width: 330px) {
  header .top .logo {
    font-size: 26px;
  }
}
a,
button {
  cursor: pointer;
}
footer {
  padding: 20px 5px;
}
footer p {
  font-size: 14px;
  margin: 0px;
  line-height: 1.5;
  text-align: center;
}

#w0 {
  display: flex;
  flex-direction: column;
}

#w0 .order-form-submit-button {
  align-self: center;
}

label.error {
  display: none !important;
}

input.error {
  border: 2px solid red !important;
}

.sert-image {
  width: 100%;
  border: 3px solid #0d7ee7;
  border-radius: 10px;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.05);
}

.sert-link {
  font-style: italic;
  font-weight: 700;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: red;
}

.sert-box {
  text-align: center;
}

.categories ul li {
  list-style: none !important;
}

.modal .content {
  padding: 0 !important;
}
