@font-face {
  font-family: 'OpenSans-Bold';
  src: url('../fonts/OpenSans-Bold.ttf');
}

@font-face {
  font-family: 'OpenSans-Light';
  src: url('../fonts/OpenSans-Light.ttf');
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('../fonts/OpenSans-Regular.ttf');
}

@media only screen and (max-width: 599px) {
  h1 {
    font-size: 12px;
    color: aqua;
  }
}

body {
  font-family: 'OpenSans-Regular';
}

.menu-btn {
  position: absolute;
  top: 17px;
  right: 10px;
  display: none;
}

@media only screen and (max-width: 1023px) {
  .menu-btn {
    display: block;
  }
}

.menu-btn div {
  height: 3px;
  width: 30px;
  background-color: #444444;
  margin: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.open__mb_menu .menu-btn div:nth-last-of-type(1) {
  -webkit-transform: translate(0px, -6px) rotate(45deg);
  -ms-transform: translate(0px, -6px) rotate(45deg);
  transform: translate(0px, -6px) rotate(45deg);
}

.open__mb_menu .menu-btn div:nth-last-of-type(2) {
  opacity: 0;
}

.open__mb_menu .menu-btn div:nth-last-of-type(3) {
  -webkit-transform: translate(0px, 9px) rotate(-45deg);
  -ms-transform: translate(0px, 9px) rotate(-45deg);
  transform: translate(0px, 9px) rotate(-45deg);
}

.pagination {
  margin-top: 15px;
}
.pagination li {
  border: 1px solid #00a79d;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  line-height: 28px;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
  margin-left: 2.5px;
  margin-right: 2.5px;
}

.pagination a {
  color: #000000;
}

.go-top {
  background: url('../images/arrow-up.png') no-repeat center center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: #dd0b1f;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 0.8;
  display: none;
}

a:hover {
  text-decoration: none;
}

nav {
  height: 110px;
  background-color: #000000;
  z-index: 10;
}
.nav-logo img {
  position: relative;
  width: 140px;
  top: 10px;
}

@media only screen and (max-width: 1023px) {
  nav {
    height: 60px;
  }
}

@media only screen and (max-width: 1023px) {
  nav .nav-logo img {
    width: 100px;
    top: 2px;
  }
}

.navigation {
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #2a3029;
    height: 100vh;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transform: translateX(-100%) !important;
    -ms-transform: translateX(-100%) !important;
    transform: translateX(-100%) !important;
    max-width: 80%;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.navigation > ul {
  text-align: right;
  margin: 0;
  height: 60px;
  padding-top: 40px;
  padding-left: 0;
}

@media only screen and (max-width: 1023px) {
  .navigation > ul {
    text-align: left;
  }
}

.navigation li {
  list-style: none;
  display: inline-block;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-left: 7.5px;
  margin-right: 7.5px;
}

@media only screen and (max-width: 1023px) {
  .navigation li {
    display: block;
  }
}

.navigation li:hover {
  text-decoration: underline;
}

.navigation li:hover a {
  color: #00a79d;
  text-decoration: none;
}

.navigation li a {
  color: #ffffff;
  font-size: 18px;
  font-family: 'OpenSans-Regular';
}

@media only screen and (max-width: 1023px) {
  .navigation li a {
    color: #ffffff;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.fixed_nav {
  -webkit-box-shadow: 0 0 10px black;
  box-shadow: 0 0 10px black;
}

.fixed_nav ul {
  padding-top: 10px;
}

.fixed_nav .nav-logo img {
  width: 100px;
  top: -3px;
}

@media only screen and (max-width: 1023px) {
  .fixed_nav .nav-logo img {
    width: 100px;
    top: 2px;
  }
}

.navigation .current-menu-item a {
  color: #00a79d;
}
.open__mb_menu .navigation {
  -webkit-transform: translateX(0) !important;
  -ms-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

.top-head {
  background-color: #b3b3b3;
  height: 45px;
  text-align: right;
  color: #ffffff;
  font-size: 14px;
  padding-top: 10px;
}

@media only screen and (max-width: 1023px) {
  .top-head {
    font-size: 10px;
    padding-top: 15px;
  }
}

.header {
  position: relative;
  /* background: url('../images/header/bg.jpg'), linear-gradient(top, bottom, red, blue) no-repeat center fixed; */
  background-image: url('../images/header/bg.jpg');
  background-repeat: no-repeat;
  background-position: center, bottom;
  -webkit-background-size: cover;
  background-size: cover;
  height: -webkit-calc(100vh - 155px);
  height: calc(100vh - 155px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.header_bg {
  /* background-image: linear-gradient(#00a79d 60%, rgba(255, 255, 255, 0)); */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.header__img {
  width: 200px;
}

@media only screen and (max-width: 1024px) {
  .header {
    height: -webkit-calc(100vh - 105px);
    height: calc(100vh - 105px);
  }
}

.header__title {
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 55px;
  color: #ffffff;
  text-shadow: 0 0 5px #000000;
}

@media only screen and (max-width: 599px) {
  .header__title {
    font-size: 30px;
  }
}
.page__header {
  height: 190px;
  color: #ffffff;
  font-size: 35px;
}
.page__header-title {
  display: flex;
  align-items: center;
  height: 100%;
}

.news {
  padding-top: 70px;
  padding-bottom: 95px;
}

.news__title {
  font-size: 20px;
  color: #000000;
  font-family: 'OpenSans-Regular';
}

.news__line {
  display: inline-block;
  width: 195px;
  height: 3px;
  background-color: #00a79d;
  margin-bottom: 20px;
  margin-top: 5px;
}

@media only screen and (max-width: 599px) {
  .news__item {
    margin-bottom: 20px;
  }
}

.news__item-text {
  color: #000000;
  font-size: 12px;
}

.news__item-date {
  margin-top: 10px;
  font-size: 12px;
  color: #00a79d;
}

.about {
  background: url('../images/about/bg.jpg') no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
  padding-top: 125px;
  padding-bottom: 125px;
  opacity: 1;
}

.about__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}

@media only screen and (max-width: 1023px) {
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about__item {
  text-align: center;
}

@media only screen and (max-width: 1023px) {
  .about__item {
    margin-bottom: 30px;
  }
}

.about__item-title {
  font-size: 18px;
  margin-bottom: 15px;
}

.about__item-count {
  font-size: 25px;
}

.footer {
  background-color: #00a79d;
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}

.footer__copyright {
  font-size: 12px;
  margin-bottom: 10px;
}

.footer__create {
  font-size: 12px;
}

.footer__create a {
  color: #ffffff;
}

.footer__contact {
  margin-top: 15px;
  font-size: 14px;
  text-align: right;
}

@media only screen and (max-width: 599px) {
  .footer__contact {
    font-size: 12px;
  }
}

.bread_crumbs {
  margin-top: 10px;
}
.bread_crumbs a {
  color: #000000;
}
.bread_crumbs span {
  color: #5f9a59;
}

.contact__form {
  margin: 20px 0;
}
.contact__form__title {
  color: #000000;
  font-size: 12px;
  margin-bottom: 15px;
}
.contact__form__wrapper {
  background-color: #f8f8f8;
  border: 1px solid rgb(180, 180, 180);
  border-radius: 4px;
  padding: 20px;
}
.contact__form-input {
}
.contact__form-input label {
  font-family: 'OpenSans-Bold';
  color: #000000;
  font-size: 12px;
}
.contact__form-input span {
  color: #c1c1c1;
  font-size: 10px;
}
.contact__form-input input {
  width: 100%;
  max-width: 250px;
  border: 1px solid rgb(180, 180, 180);
  height: 30px;
  border-radius: 3px;
  padding-left: 10px;
  color: #000000;
  font-size: 12px;
}
.contact__form-input input:focus,
.contact__form-input textarea:focus {
  outline: 1px solid rgb(34, 33, 33);
}
.contact__form input[type='submit'] {
  color: #2f2f2f;
  padding: 5px 15px;
  background-color: #ffffff;
  border: 1px solid rgb(180, 180, 180);
  border-radius: 3px;
}
.contact__form input[type='submit']:focus {
  outline: 1px solid rgb(34, 33, 33);
}
.contact__form-input textarea {
  padding-left: 10px;
  width: 100%;
  border: 1px solid rgb(180, 180, 180);
  border-radius: 3px;
  color: #000000;
  font-size: 12px;
}
