        /* Main Global Styles */
body {
  color: #000;
}
  h1  {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  a {
    font-size: 18px;
  }
  li {
    font-size: 18px;
  }
  .wrapper {
    width: 100%;
    position: relative;
  }
  .background {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-image: url('img/bg.jpg');
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
  .current_page_item a{
    color: #f15a29;
    font-weight: 600;
  }
  section li {
    margin-bottom: 5px;
    list-style-type: disc;
    margin-left: 40px;
  }
  section {
    max-width: 1100px;
    flex-direction: column;
    background-color: #fff;
    margin: 70px auto 0 auto;
    box-shadow: 0 0 25px rgba(0,0,0,0.8);
  }

        /* End of Global styles */

        /* Nav container */
header {
  position: fixed;
  background-color: #003A77;
  width: 100%;
  height: 70px;
  z-index: 100;
}
.header__content {
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  max-width: 300px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 60%;
  margin-left: 50px;
}
nav ul {
  display: flex;
  flex-direction: row;
}
nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: row;
}
 nav ul li {
  position: relative;
}
nav ul li a {
  padding: 0 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #e5e5e5;
}
nav ul li a:hover {
  color: red;
}
.header__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F15A29;
  display: flex;
  flex-direction: column;
  position: relative;
  display: none;
}
.header__button span {
  width: 24px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 11px;
  left: 8px;
}
.header__button span:nth-child(2) {
  top: 19px;
}
.header__button span:nth-child(3) {
  top:27px;
}
        /* End of Nav container */

        /* Main */
.main__container {
  width: calc(100% - 100px);
  margin: 30px auto;
}
section img {
  display: block;
  margin: 0 auto;
}

/* btn-styles */
.link {
  color: red;
  text-decoration: underline;
}
.link:hover {
  color: #000;
  text-decoration: none;
}
.btn {
  text-transform: uppercase;
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #003AE9;
  text-align: center;
  border-radius: 10px;
  color: #f1f1f1;
  font-weight: 800;
  transition: all .5s;
}
.btn_m {
  width: 290px;
}
.btn:hover, .btn_m:hover {
  background-color: #F15A29;
  color: #000;
  transition: all .5s;
  transform: translate(0,-5px);
}

/* Contacts */

form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          width: calc(100% - 20px);
          max-width: 380px;
          margin: 20px auto;
}
label {
  width: 100%;
}
input, textarea {
  border: 2px solid #adadad;
  border-radius: 5px;
  background-color: #f1f1f1;
  width: 100%;
  padding: 5px;
  padding-left: 10px;
  margin-bottom: 10px;
}
input[type="submit"] {
  background-color: #e5e5e5;
  color: #f1f1f1;
  background-color: #003AE9;
  transition: all .5s;
}
input:focus, textarea:focus {
  background-color: #fff;
}
input:hover, textarea:hover {
  background-color: #fff;
}
input[type="submit"]:hover {
  background-color: #F15A29;
  color: #000;
  transition: all .5s;
  transform: translate(0,-5px);
}
        /* Articles */
.s1__container {
  width: calc(100% - 100px);
  margin: 30px auto;
  display: flex;
  flex-direction: column;
}
.massive {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.massive article {
  width: calc(100%/4 - 20px);
  height: auto;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: all .4s;
  text-align: center;
  border: 3px solid black;
}
.massive article .img-item {
  border-bottom: 3px solid black;
}
.massive article:hover {
  box-shadow: 0 4px 4px rgba(0,0,0,.5);
  transition: all .4s;
  transform: translateY(-3px);
}
.massive article .img-item {
  position: relative;
  z-index: 0;
}
time {
  width: 100%;
  color: white;
  padding: 2px 5px;
  background-color: #003A77;
  border-top: 2px solid black;
}

.article__container {
  width: calc(100% - 100px);
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}

.post-ratings {
  display: flex;
  margin: 10px;
}

footer {
  display: flex;
  align-items: center;
  max-width: 1100px;
  min-height: 50px;
  background-color: #003A77;
  margin: 0 auto;
  color: #e5e5e5;
}
footer p {
  padding: 5px 10px;
}

      /* wp Discuz comments */
#wc-main-form-wrapper-0_0 {
  width: 100%;
}
#wc-main-form-wrapper-0_0 form {
  max-width: 1100px;
}
#wpcomm.wpdiscuz_auth .wc-field-submit {
  display: flex;
  justify-content: flex-end;
}
label {
  width: auto;
}
.comments-area {
  width: 100% !important;
}
#wpcomm .wpdiscuz-form-top-bar {
  color: #fff;
}
#wpcomm .wpdiscuz-textarea-wrap,
#wpcomm .wc-field-textarea textarea,
#wpcomm .wc-field-textarea textarea::placeholder,
#wpcomm .wpdiscuz-form-top-bar #wc_show_hide_loggedin_username,
#wpcomm .wpdiscuz-form-top-bar .wpdiscuz-user-settings {
  color: #fff;
}
#wc-textarea-0_0 {
  color: #00b38f !important;
  width: 100%;
}
#wp_comm_form {
  width: calc(100% - 20px);
}
#wpcomm .wpdiscuz-form-top-bar {
  display: none;
}
#wpcomm .wpdiscuz-front-actions {
  display: none;
}

      /* End of wp Discuz comments */

#breadcrumbs {
  width: 100%;
  padding:2px 2px 2px 10px;
  margin: 0 auto;
  border-bottom: 2px solid black;
  border-top: 2px solid black;
}
#breadcrumbs a {
  color: red;
}
#breadcrumbs a:hover {
  color: #000;
}

@media screen and (min-width: 320px) and (max-width: 800px) {
  nav {
    position: fixed;
    top: 70px;
    left:-50px;
    width: 100vw;
    background-color: #003A77;
    display: none;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    min-height: 30px;
  }
  nav ul {
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 100%;
  }
  nav ul li {
    width: 100%;
    padding: 2px;
    margin: 2px 0;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
  }
  nav ul li a {
    width: 100%;
  }
  .header__button {
    display: block;
  }
  .main__container {
    width: calc(100% - 20px);
  }
  .s1__container {
    width: calc(100% - 20px);
  }
  .article__container {
    width: calc(100% - 20px);
  }
  .massive article {
    width: 300px;
  }
  .massive {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .img-item {
    width: 100%;
  }
}
