* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    padding-top: 80px;
  }
}
.wrapper header,
.wrapper main,
.wrapper footer {
  display: block;
  width: 100%;
}

footer {
  margin-top: auto;
}

main {
  flex-grow: 1;
}

html {
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: normal;
  font-size: 10px;
  color: #000;
  letter-spacing: -0.015em;
}
@media screen and (max-width: 1650px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 7.7px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
}

select,
button,
input,
textarea {
  font-family: "Ubuntu", sans-serif;
}

a {
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s, background 0.3s;
  color: inherit;
  outline: 0;
}

.a, .dropdown-menu .show-sub-menu:after, .dropdown-menu > li > a:after, .lang-dropdown .lang-dropdown__current:after, .post .post__thumb:after, .search .search__form:after {
  content: "";
  display: block;
}

.content {
  max-width: calc(150rem + 40px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content._small {
  max-width: calc(98rem + 40px);
}

.entry-content {
  line-height: 1.5;
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .entry-content {
    font-size: 1.8rem;
  }
}
.entry-content a:not(.tags__link) {
  text-decoration: underline;
}
.entry-content a:not(.tags__link):hover {
  color:#293863;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  line-height: 1.2;
  font-weight: 700;
}
.entry-content h2 {
  font-size: 1.5em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .entry-content h2 {
    font-size: 1.3em;
  }
}
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-size: 1.2em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    font-size: 1.111em;
  }
}
.entry-content p {
  margin-bottom: 2rem;
}
.entry-content ul:not(.tags) {
  margin-left: 22px;
  margin-bottom: 2rem;
}
.entry-content ul:not(.tags) li {
  list-style: disc;
}
.entry-content ul:not(.tags) li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.entry-content ol {
  margin-left: 22px;
  margin-bottom: 2rem;
}
.entry-content ol li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.entry-content blockquote {
  padding-left: 13rem;
  font-style: italic;
  line-height: 1.33;
  font-size: 1.1em;
  margin-bottom: 3rem;
  background: url(../images/icons/quote.svg) 4rem center no-repeat;
  background-size: 3.7rem auto;
}
.entry-content blockquote * {
  padding: 0;
  margin: 0;
}
.entry-content blockquote cite {
  font-size: 0.818em;
  margin-top: 1rem;
  font-style: normal;
  display: block;
}
@media screen and (max-width: 767px) {
  .entry-content blockquote {
    padding-left: 0;
    background-position: center 1.5rem;
    padding-top: 6rem;
  }
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .wp-block-columns {
  margin-bottom: 2rem;
}
.entry-content .wp-block-embed figcaption,
.entry-content .wp-block-image figcaption {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.entry-content .wp-block-embed iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*-----------------input-list----------------------*/
.input-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 500;
}

.input-list__item {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.privacy-row {
  display: flex;
  align-items: flex-start;
}
.privacy-row a {
  text-decoration: underline;
}
.privacy-row a:hover {
  text-decoration: none;
}

/*-----------------submit----------------------*/
button[type=submit],
input[type=submit] {
  appearance: none;
  cursor: pointer;
  transition: 0.3s;
  border: 0;
  outline: 0;
}

/*-----------------input----------------------*/
textarea,
input[type=search],
input[type=number],
input[type=password],
input[type=email],
input[type=text],
input[type=tel] {
  height: 54px;
  border: 0;
  padding: 0 12px;
  font-size: 16px;
  display: block;
  outline: none;
  width: 100%;
  border: 1px solid #eaeaea;
  border-radius: 0;
  -webkit-appearance: none;
  font-weight: 300;
  background: #fafafa;
}
textarea.search-form__input,
input[type=search].search-form__input,
input[type=number].search-form__input,
input[type=password].search-form__input,
input[type=email].search-form__input,
input[type=text].search-form__input,
input[type=tel].search-form__input {
  height: 40px;
  font-size: 14px;
  background: #fff;
  color: #000;
  border: 0;
}
@media screen and (max-width: 1000px) {
  textarea.search-form__input,
  input[type=search].search-form__input,
  input[type=number].search-form__input,
  input[type=password].search-form__input,
  input[type=email].search-form__input,
  input[type=text].search-form__input,
  input[type=tel].search-form__input {
    font-size: 16px;
  }
}

textarea {
  height: 150px;
  padding-top: 15px;
  resize: none;
  overflow: auto;
}

/*---------------placeholder------------------------*/
*::-webkit-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

*:-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

*::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

*:-ms-input-placeholder {
  color: #bfbfbf;
  opacity: 1;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

textarea:focus::-webkit-input-placeholder,
input[type=search]:focus::-webkit-input-placeholder,
input[type=number]:focus::-webkit-input-placeholder,
input[type=password]:focus::-webkit-input-placeholder,
input[type=email]:focus::-webkit-input-placeholder,
input[type=text]:focus::-webkit-input-placeholder,
input[type=tel]:focus::-webkit-input-placeholder {
  opacity: 0;
}
textarea:focus:-moz-placeholder,
input[type=search]:focus:-moz-placeholder,
input[type=number]:focus:-moz-placeholder,
input[type=password]:focus:-moz-placeholder,
input[type=email]:focus:-moz-placeholder,
input[type=text]:focus:-moz-placeholder,
input[type=tel]:focus:-moz-placeholder {
  opacity: 0;
}
textarea:focus::-moz-placeholder,
input[type=search]:focus::-moz-placeholder,
input[type=number]:focus::-moz-placeholder,
input[type=password]:focus::-moz-placeholder,
input[type=email]:focus::-moz-placeholder,
input[type=text]:focus::-moz-placeholder,
input[type=tel]:focus::-moz-placeholder {
  opacity: 0;
}
textarea:focus:-ms-input-placeholder,
input[type=search]:focus:-ms-input-placeholder,
input[type=number]:focus:-ms-input-placeholder,
input[type=password]:focus:-ms-input-placeholder,
input[type=email]:focus:-ms-input-placeholder,
input[type=text]:focus:-ms-input-placeholder,
input[type=tel]:focus:-ms-input-placeholder {
  opacity: 0;
}

textarea.wpcf7-not-valid,
input[type=password].wpcf7-not-valid,
input[type=email].wpcf7-not-valid,
input[type=text].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
textarea.valid-error,
input[type=password].valid-error,
input[type=email].valid-error,
input[type=text].valid-error,
input[type=tel].valid-error {
  border-color: red;
}
textarea.wpcf7-not-valid::-webkit-input-placeholder,
input[type=password].wpcf7-not-valid::-webkit-input-placeholder,
input[type=email].wpcf7-not-valid::-webkit-input-placeholder,
input[type=text].wpcf7-not-valid::-webkit-input-placeholder,
input[type=tel].wpcf7-not-valid::-webkit-input-placeholder,
textarea.valid-error::-webkit-input-placeholder,
input[type=password].valid-error::-webkit-input-placeholder,
input[type=email].valid-error::-webkit-input-placeholder,
input[type=text].valid-error::-webkit-input-placeholder,
input[type=tel].valid-error::-webkit-input-placeholder {
  color: red;
}
textarea.wpcf7-not-valid:-moz-placeholder,
input[type=password].wpcf7-not-valid:-moz-placeholder,
input[type=email].wpcf7-not-valid:-moz-placeholder,
input[type=text].wpcf7-not-valid:-moz-placeholder,
input[type=tel].wpcf7-not-valid:-moz-placeholder,
textarea.valid-error:-moz-placeholder,
input[type=password].valid-error:-moz-placeholder,
input[type=email].valid-error:-moz-placeholder,
input[type=text].valid-error:-moz-placeholder,
input[type=tel].valid-error:-moz-placeholder {
  color: red;
}
textarea.wpcf7-not-valid::-moz-placeholder,
input[type=password].wpcf7-not-valid::-moz-placeholder,
input[type=email].wpcf7-not-valid::-moz-placeholder,
input[type=text].wpcf7-not-valid::-moz-placeholder,
input[type=tel].wpcf7-not-valid::-moz-placeholder,
textarea.valid-error::-moz-placeholder,
input[type=password].valid-error::-moz-placeholder,
input[type=email].valid-error::-moz-placeholder,
input[type=text].valid-error::-moz-placeholder,
input[type=tel].valid-error::-moz-placeholder {
  color: red;
}
textarea.wpcf7-not-valid:-ms-input-placeholder,
input[type=password].wpcf7-not-valid:-ms-input-placeholder,
input[type=email].wpcf7-not-valid:-ms-input-placeholder,
input[type=text].wpcf7-not-valid:-ms-input-placeholder,
input[type=tel].wpcf7-not-valid:-ms-input-placeholder,
textarea.valid-error:-ms-input-placeholder,
input[type=password].valid-error:-ms-input-placeholder,
input[type=email].valid-error:-ms-input-placeholder,
input[type=text].valid-error:-ms-input-placeholder,
input[type=tel].valid-error:-ms-input-placeholder {
  color: red;
}

/*------------------checkbox---------------------*/
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + .check-style,
input[type=checkbox] + .check-style {
  display: block;
  border: 1px solid #767676;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  margin-right: 18px;
  min-width: 13px;
  font-size: 0;
  margin-top: 3px;
  color: transparent;
}

input[type=radio] + .check-style {
  border-radius: 50%;
}

input[type=radio]:checked + .check-style,
input[type=checkbox]:checked + .check-style {
  background: #FF0000 url(../images/icons/check_white.svg) center no-repeat;
  background-size: 9px 9px;
  border-color: #FF0000;
}

input[type=radio]:checked + .check-style {
  background: #fff;
  border-width: 5px;
}

/*------------------FILE---------------------*/
input[type=file] {
  display: none;
}

.psevdo-file {
  display: block;
  width: 100%;
}

.file-btn {
  height: 55px;
  background: #d0d0d0;
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: #5f6375;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 8px;
  max-width: 200px;
}
.file-btn span {
  display: block;
  max-width: calc(100% - 40px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-btn .fas {
  font-size: 19px;
  margin-right: 10px;
}
.file-btn:hover {
  background: #dddddd;
}

/*------------------select---------------------*/
select {
  appearance: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*------------------WPCF7 Loader---------------------*/
.input-list .ajax-loader {
  visibility: hidden;
}

.input-list .ajax-loader {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.7) url(../images/loading.gif) center no-repeat !important;
  background-size: 50px auto !important;
  z-index: 600 !important;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 40px;
  background: #FF0000;
  color: #fff;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 3rem;
}
.btn:disabled {
  opacity: 0.5;
}
.btn.search-form__button {
  background: #293863;
}
@media (hover: hover) {
  .btn.search-form__button:hover {
    background: #304275;
  }
}

.button-style {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 10px 0 54px;
  background: #FF0000;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
  min-width: 145px;
}
.button-style:before {
  font-size: 20px;
  margin-right: 7px;
}
@media (hover: hover) {
  .button-style:hover {
    background: #293863;
  }
}

/* ------- Scroll to Top Finish---------- */
.icon-menu {
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 10px 8px;
  transition: 0.3s;
}
@media screen and (min-width: 999px) {
  .icon-menu {
    display: none;
  }
}
.icon-menu.active {
  background: #FF0000;
  transform: translateY(20px);
}

.sw-topper,
.sw-bottom,
.sw-footer {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 35px;
  height: 2px;
  background: #fff;
  border: none;
  transition: transform 0.5s, top 0.2s, background 0.3s;
}

.sw-bottom {
  top: 5px;
}

.sw-footer {
  top: 10px;
}

.icon-menu.active .sw-topper {
  top: 8px;
  transform: rotate(135deg);
}

.icon-menu.active .sw-bottom {
  top: 6px;
  transform: rotate(-135deg);
}

.icon-menu.active .sw-footer {
  top: 0;
  transform: rotate(180deg);
  opacity: 0;
}

.header {
  background: #1F2A50;
  color: #fff;
  padding: 1rem 0;
  letter-spacing: normal;
}
@media screen and (min-width: 1000px) {
  .header._home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: 0;
  }
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 8px 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12rem;
}
@media screen and (max-width: 1000px) {
  .header .content {
    height: 65px;
  }
}
.header .header__row {
  display: flex;
  align-items: center;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 1000px) {
  .header .header__row {
    display: none;
  }
}
.header .header__nav {
  padding-bottom: 0.5rem;
}
.header .header__search {
  margin-right: 1rem;
  margin-left: 2rem;
}

.logo {
  display: block;
  width: 28.8rem;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .logo._header {
    width: 20rem;
  }
}
@media screen and (max-width: 1000px) {
  .logo._header {
    width: 190px;
  }
}

.social {
  display: flex;
  padding: 0.5rem 0;
}
.social li:not(:last-child) {
  margin-right: 1rem;
}
.social a {
  width: 4rem;
  height: 4rem;
  background: #2D3969;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social a img {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  object-position: center center;
  object-fit: contain;
}
@media (hover: hover) {
  .social a:hover {
    background: #FF0000;
  }
}

.header-nav {
  display: flex;
  line-height: 1.9;
  text-transform: uppercase;
  letter-spacing: normal;
}
.header-nav li {
  padding: 0 1rem;
}
@media (hover: hover) {
  .header-nav li a:hover {
    color: #FF0000;
  }
}

.search {
  position: relative;
}
.search .search__toggle {
  cursor: pointer;
  transition: 0.3s;
}
.search .search__toggle svg {
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 1000px) {
  .search .search__toggle {
    display: none;
  }
}
div.search.active .search__toggle {
  color: #FF0000;
}
div.search.active .search__form {
  transform: translateY(12px);
  visibility: visible;
  opacity: 1;
}
div.search .search__form {
  position: absolute;
  top: 100%;
  right: -9px;
  background: #FF0000;
  z-index: 800;
  padding: 15px;
  width: 400px;
  transform: translateY(22px);
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
@media screen and (max-width: 1000px) {
  div.search .search__form {
    position: static;
    visibility: visible;
    opacity: 1;
    padding: 0;
    border: 0;
    width: 100%;
    margin-bottom: 15px;
    transform: none;
  }
  div.search .search__form:after {
    display: none;
  }
}
div.search .search__form:after {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: -6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid #FF0000;
}
@media screen and (max-width: 1150px) {
  div.search .search__form:after {
    right: 12px;
  }
}

@media screen and (max-width: 1000px) {
  .navigation {
    position: fixed;
    z-index: 9999;
    top: 80px;
    right: 0;
    width: 100%;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FF0000;
    padding: 15px;
    font-size: 15px;
    transform: translateX(101%);
    transition: 0.3s;
  }
  .navigation.active {
    transform: translateX(0);
  }
}
.navigation .header__social {
  display: flex;
  justify-content: center;
}
.navigation .header-nav {
  flex-direction: column;
  align-items: center;
}
.navigation .header-nav li {
  padding: 0 0 11px 0;
}
.navigation .header__search {
  margin: 0;
}

.main {
  padding: 2rem 0 3rem;
}

.video {
  background: rgba(41, 56, 99, 0.03);
  padding-top: 3rem;
}
.video._home {
  background: 0;
  padding-top: 2rem;
}

.more-article {
  padding: 3rem 0 2rem;
}

.author {
  padding-top: 3rem;
}
.author .author__thumb {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .author .author__thumb {
    margin: 0 auto;
  }
}
.author .author__head {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .author .author__head {
    text-align: center;
  }
}
.author .title-30 {
  text-transform: none;
  margin-bottom: 0;
}
.author .author__position {
  font-size: 2rem;
  max-width: 30rem;
}
@media screen and (max-width: 767px) {
  .author .author__position {
    max-width: 100%;
  }
}
.author .author__social {
  padding-top: 1.5rem;
}
.author .author__desc {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.3;
  padding-top: 4rem;
  max-width: 76rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .author .social {
    justify-content: center;
  }
}

.news-blog {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.news-blog .news-blog__content {
  width: 100%;
  background: rgba(41, 56, 99, 0.03);
  margin-bottom: 3rem;
  padding: 1.5rem 4rem 0;
}
@media screen and (max-width: 767px) {
  .news-blog .news-blog__content {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}

.investigation {
  padding: 2rem 0;
  background: #293863;
}
.investigation .title-30 {
  color: #fff;
}
.investigation .col-12 .col-lg-8 .post__thumb {
  padding-bottom: 67.5%;
}

.publications {
  padding: 2rem 0;
}

.thoughts .thoughts__item {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(41, 56, 99, 0.03);
  margin-bottom: 3rem;
  padding: 2.2rem 2rem;
  font-size: 2.4rem;
  line-height: 1.25;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .thoughts .thoughts__item {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .thoughts .thoughts__item {
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 -20px 20px;
    width: calc(100% + 40px);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 2rem;
  }
}
.thoughts .thoughts__thumb {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .thoughts .thoughts__thumb {
    width: 10rem;
    height: 10rem;
  }
}
.thoughts .thoughts__content {
  width: calc(100% - 20rem);
}
@media screen and (max-width: 1200px) {
  .thoughts .thoughts__content {
    width: calc(100% - 12rem);
  }
}
@media screen and (max-width: 767px) {
  .thoughts .thoughts__content {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
  }
}
.thoughts .thoughts__txt {
  margin-bottom: 1rem;
  display: inline-block;
}
.thoughts .thoughts__author {
  color: #293863;
  font-size: 0.75em;
}
@media (hover: hover) {
  .thoughts a.thoughts__txt:hover,
  .thoughts a.thoughts__author:hover {
    color: #FF0000;
  }
}

.offer {
  padding: 17rem 0 5rem;
  position: relative;
  z-index: 200;
    min-height: 900px;
}
@media screen and (max-width: 1000px) {
  .offer {
    padding: 0;
      min-height:1px;
  }
}
.offer .post {
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .offer .post {
    margin-left: -20px;
    margin-right: -20px;
  }
  .offer .post .post__body {
    padding-left: 0;
    padding-right: 0;
  }
}
.offer .post .post__row {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.offer .post .post__row .post__category {
  width: auto;
  margin: 0;
  padding-right: 1rem;
}
.offer .post .post__row .post__category a {
  background: #FF0000;
  color: #fff;
}
@media (hover: hover) {
  .offer .post .post__row .post__category a:hover {
    opacity: 0.7;
  }
}
.offer .offer__news {
 background: #293863;
  color: #fff;
  padding: 1rem 4rem 1rem;
  width: 48rem;
  margin-left: auto;
  position: relative;
  z-index: 200;
}
@media screen and (max-width: 1000px) {
  .offer .offer__news {
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.offer .offer__news .title-30 {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.offer .offer__news .news__item {
  border-color: rgba(255, 255, 255, 0.5);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.offer .offer__news .news__item:last-child {
  border-bottom: 0;
}
.offer .offer__news .news__time {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.offer .offer__news .news__category {
  background: #FF0000;
}
@media (hover: hover) {
  .offer .offer__news .news__category:hover {
    opacity: 0.7;
  }
}
.offer .offer__news .news__title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
    .offer { display: flex;}
    .offer .content { width: 100%; margin-top: auto;}
  .offer .post {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .offer .post .post__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .offer .post .content {
    padding-right: 53rem;
  }
  .offer .post .post__body {
    padding-bottom: 5rem;
  }
  .offer .post .post__title-white {
    margin-bottom: 0;
    font-size: 5rem;
    line-height: 1;
  }
    .offer .offer__news { background: none; padding-bottom: 0;}
    .offer .offer__news .news__item:last-child { margin-bottom: 0; padding-bottom: 0;}
}

.post {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .post._big .post__author-list {
    font-size: 1.6rem;
  }
  .post._big .post__title-video {
    font-size: 3.6rem;
    line-height: 1;
  }
  .post._big .post__desc {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .post {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .post {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.post .post__content {
  position: relative;
}
.post .post__thumb {
  padding-bottom: 66.6%;
}
@media screen and (max-width: 767px) {
  .post .post__thumb {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.post .post__thumb:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.post .post__thumb._video {
  padding-bottom: 56.7%;
}
@media screen and (max-width: 991px) {
  .post .post__thumb._video {
    padding-bottom: 66.6%;
  }
}
.post .post__thumb._bg70:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 70%);
}
.post .post__thumb._bg50:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 70%);
}
.post .post__thumb._bg80:after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.22) 25%, rgba(0, 0, 0, 0.4) 60%);
}
.post .post__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 3rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .post .post__body {
    padding: 0 15px 15px;
  }
}
.post .post__body._static {
  position: relative;
  padding: 1.5rem 0 0 0;
}
.post .post__full-width {
  width: 100%;
  padding-top: 0.5rem;
}
.post .post__title {
  line-height: 1.3;
  color: #fff;
  font-size: 1.667em;
  font-weight: bold;
  background: #293863;
  padding: 0.6rem 1rem;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (hover: hover) {
  .post .post__title:hover {
    color: #FF0000;
  }
}
@media screen and (max-width: 767px) {
  .post .post__title {
    font-size: 2.2rem;
  }
}
.post .post__title-video {
  font-size: 1.111em;
  line-height: 1.2;
  font-weight: bold;
  display: inline-block;
}
@media (hover: hover) {
  .post .post__title-video:hover {
    color: #FF0000;
  }
}
@media screen and (max-width: 767px) {
  .post .post__title-video {
    font-size: 20px;
  }
}
.post .post__title-white {
  font-size: 1.556em;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
  display: inline-block;
}
@media (hover: hover) {
  .post .post__title-white:hover {
    color: #FF0000;
  }
}

.post .post__author {
  color: #fff;
  background: #293863;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  margin-right: 1rem;
  font-size: 0.9em;
  line-height: 1;
  font-weight:500
}

@media screen and (max-width: 767px) {
  .post .post__author {
    margin-bottom: 1rem;
  }
}
.post .post__author a {
  white-space: ;
}
@media (hover: hover) {
  .post .post__author a:hover {
    color: #FF0000;
  }
}
.post .post__video {
  width: 4rem;
  height: 4rem;
  background: #293863 url(../images/icons/play2.svg) center no-repeat;
  background-size:75%;
  margin-bottom: 1rem;
  align-self: center;
}
.post .post__date {
  color: #fff;
  font-weight: 500;
}
.post .post__author-list {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #293863;
  text-transform: uppercase;
  width: 100%;
}
.post .post__author-list a {
  white-space: nowrap;
}
@media (hover: hover) {
  .post .post__author-list a:hover {
    color: #FF0000;
  }
}
.post .post__date-bg {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  z-index: 10;
  font-weight: 500;
  color: #fff;
  background: #293863;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .post .post__date-bg {
    left: 15px;
    bottom: 15px;
  }
}
.post .post__desc {
  padding-top: 1.5rem;
}
.post .post__author-thumb {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.post .post__author-thumb .post__author-thumb-item {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin-right: 1rem;
  border: 3px solid #FFF;
  transition: 0.3s;
}
@media (hover: hover) {
  .post .post__author-thumb a.post__author-thumb-item:hover {
    border-color: #FF0000;
  }
}
@media screen and (max-width: 1300px) {
  .post .post__author-thumb {
    display: none;
  }
}
.post .post__category {
  width: 100%;
  display: flex;
  margin-bottom: 1rem;
}
.post .post__category a {
  display: inline-flex;
  color: #fff;
  background: #293863;
  margin-right: 1rem;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  height: 4rem;
  padding: 0 1.5rem;
  align-items: center;
  justify-content: center;
  min-width: 15rem;
}
@media screen and (max-width: 767px) {
  .post .post__category a {
    min-width: 10rem;
  }
}
@media (hover: hover) {
  .post .post__category a:hover {
    color: #FF0000;
  }
}

@media screen and (max-width: 767px) {
  .post-list._adaptive-type .post__body {
    position: relative;
    padding: 15px 0 0 0;
  }
  .post-list._adaptive-type .post__title,
  .post-list._adaptive-type .post__author {
    padding: 0;
    background: 0;
  }
  .post-list._adaptive-type .post__title br,
  .post-list._adaptive-type .post__author br {
    display: none;
  }
  .post-list._adaptive-type .post__video {
    position: absolute;
    right: 0;
    bottom: calc(100% + 15px);
    margin: 0;
    pointer-events: none;
    width: 40px;
    height: 40px;
  }
  .post-list._adaptive-type .post__category {
    position: absolute;
    left: 0;
    bottom: calc(100% + 15px);
    margin: 0;
  }
}
@media screen and (min-width: 991px) {
  .post-list._publications .post__thumb {
    padding-bottom: 56.5%;
  }
    .investigation .post-list._publications .col-lg-4 .post__thumb {
        padding-bottom:66.6%;
    }
}
.post-list._publications .post__title {
  background: 0;
  padding: 0;
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .post-list._publications .post__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .investigation .post-list._publications .post__title, .post-list._publications .post-big .post__title { font-size: 2rem;}
  .publications .post-list .post__title {
    font-size: 1.4em;
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  .publications .post-list .post__author {
    color: #293863;
  }
}
.post-list._publications .post__date {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .post-list._publications .post__date {
    color: #000;
    padding-top: 1rem;
  }
}

.news {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .news {
    font-size: 1.6rem;
  }
}
.news._home .news__item {
  border: 0;
  margin-bottom: 2.5rem;
}
.news._home .news__item._important .news__title {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .news._home .news__item {
    margin-bottom: 1rem;
  }
}
.news._home .news__title {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
}
.news._home .news__category {
  border: 1px solid #293863;
  color: #293863;
  margin-right: 1rem;
}
@media (hover: hover) {
  .news._home .news__category:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
    .news._single-page .news__item {
        padding-left: 100px;
    }
  .news._home .news__item, .news._single-page .news__item__time {
    padding-left: 65px;
  }
  .news._home .news__row, .news._single-page .news__row {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .news._home .news__time, .news._single-page .news__time {
    position: absolute;
    left: 20px;
    top: 2px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .news._home .news__category, .news._single-page .news__category {
    display: none;
  }
}
.news .news__date {
  text-transform: uppercase;
  font-weight: bold;
  color: #293863;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(41, 56, 99, 0.2);
}
@media screen and (max-width: 767px) {
  .news .news__date {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news .news__item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(41, 56, 99, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .news .news__item {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news .news__item._with-thumb {
  min-height: 14rem;
}
.news .news__item._with-thumb .news__title,
.news .news__item._with-thumb .news__desc {
  margin-left: 20rem;
}
@media screen and (max-width: 767px) {
  .news .news__item._with-thumb .news__title,
  .news .news__item._with-thumb .news__desc {
    margin-left: 0;
  }
}
.news .news__thumb {
  position: absolute;
  width: 18rem;
}
.news .news__thumb .thumb { padding-bottom: 56.25%;}
@media screen and (max-width: 767px) {
  .news .news__thumb {
    position: relative;
    margin-bottom: 1rem;
  }
}
.news .news__title {
  font-size: 1.333em;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}
@media (hover: hover) {
  .news .news__title:hover {
    color: #FF0000;
  }
}
.news .news__desc {
  padding-top: 1rem;
  line-height: 1.2;
}
.news .news__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.news .news__time {
  margin-right: 1.5rem;
  color: #293863;
  font-weight: 500;
}
.news .news__category {
  display: inline-flex;
  align-items: center;
  height: 2.2rem;
  border: 1px solid #FF0000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 0.8rem;
}
@media (hover: hover) {
  .news .news__category:hover {
    background: #FF0000;
    color: #fff;
  }
}

.footer {
  padding: 3rem 0 4rem;
  background: #1F2A50;
  color: #fff;
  letter-spacing: normal;
}
.footer .footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer .footer__row {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer__col-2 {
  padding: 0 30px;
  display: flex;
  align-items: center;
  min-height: 10rem;
}
@media screen and (max-width: 767px) {
  .footer .footer__col-2 {
    min-height: 1px;
    width: 100%;
    justify-content: center;
    padding: 3rem 0 0 0;
  }
}
.footer .footer__col-3 {
  display: flex;
  align-items: center;
  min-height: 10rem;
}
@media screen and (max-width: 767px) {
  .footer .footer__col-3 {
    min-height: 1px;
    justify-content: center;
    width: 100%;
    padding-top: 2.2rem;
  }
}
.footer .footer__txt {
  line-height: 1.3;
}
.footer .footer__txt p {
  margin-top: 2rem;
}
@media (hover: hover) {
  .footer .footer__txt a:hover {
    color: #FF0000;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__txt {
    text-align: center;
  }
}
.footer .footer__copyright {
  text-align: center;
  padding-top: 2rem;
}
.footer .footer__copyright._mt {
  padding-top: 0;
  margin-top: -2rem;
}
@media screen and (max-width: 1200px) {
  .footer .footer__copyright._mt {
    margin-top: 0;
    padding-top: 3rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav li {
  padding: 0.8rem 0.8rem;
}
@media (hover: hover) {
  .footer-nav li:hover {
    color: #FF0000;
  }
}

.single-post {
  padding-top: 1rem;
  font-size: 1.8rem;
}
.single-post .single-post__share {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .single-post .single-post__share {
    justify-content: center;
  }
}
.single-post .single-post__date {
  font-weight: 500;
  margin: 0.5rem 0.5rem;
}
.single-post .single-post__cat a {
  margin: 0.5rem 0.5rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background: #FF0000;
  padding: 0 1rem;
  height: 3rem;
}
@media (hover: hover) {
  .single-post .single-post__cat a:hover {
    opacity: 0.5;
  }
}
.single-post .single-post__thumb {
  margin-bottom: 3rem;
}
.single-post .single-post__thumb .thumb {
  padding-bottom: 0;
}
.single-post .single-post__thumb .thumb img { position: relative; height: auto; max-height: 650px;}
@media screen and (min-width: 1200px) {
    .single-post .single-post__thumb .thumb img { position: relative; height: auto; max-height: 750px;}
}
@media screen and (max-width: 991px) {
  .single-post .single-post__thumb .thumb {
    margin: 0 -20px;
      padding-bottom:56.25%;
  }
    .single-post .single-post__thumb .thumb img { position: absolute; height: 100%; max-height: none;}
}
.single-post .single-post__thumb span {
  display: block;
  padding-top: 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 991px) {
  .single-post .single-post__content {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
}
.single-post .single-post__tags {
  /*font-size: 2.4rem;*/
}
.single-post .single-post__tags a {
  color: #293863;
  text-decoration: underline;
}
@media (hover: hover) {
  .single-post .single-post__tags a:hover {
    color: #FF0000;
    text-decoration: none;
  }
}

.similar-news {
  background: rgba(41, 56, 99, 0.03);
  padding: 2rem;
}
@media screen and (max-width: 991px) {
  .similar-news {
    margin: 0 -15px;
    padding: 3rem 15px;
  }
}
.similar-news .title-30 {
  line-height: 1.3;
  margin-bottom: 1.4rem;
}
.similar-news .news__title {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.25;
}
.similar-news .news__item {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 2rem;
}
.similar-news .news__item:last-child {
  margin-bottom: 0;
}

.single-post-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .single-post-author {
    margin-bottom: 20px;
  }
}
.single-post-author .single-post-author__thumb {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
.single-post-author .single-post-author__body {
  width: calc(100% - 7rem);
  line-height: 1.2;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .single-post-author .single-post-author__body a:hover {
    color: #FF0000;
  }
}
.single-post-author .single-post-author__name {
  color: #293863;
  font-weight: 700;
  font-size: 1.9rem;
}
.single-post-author .single-post-author__position a {
  text-decoration: underline;
}

.row {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.row > * {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.row._offset80 {
  margin-left: -4rem;
  margin-right: -4rem;
}
.row._offset80 > * {
  padding-left: 4rem;
  padding-right: 4rem;
}
.row._offset20 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.row._offset20 > * {
  padding-left: 1rem;
  padding-right: 1rem;
}

.txt-center {
  text-align: center;
}

.title-48 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #293863;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .title-48 {
    font-size: 2.5rem;
  }
}

.title-30 {
  text-transform: uppercase;
  font-size: 3rem;
  color: #293863;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  padding: 1.2rem 0;
}

.thumb {
  position: relative;
  display: block;
  overflow: hidden;
}
.thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.thumb .play-icon {
  background: url(../images/icons/play.svg) center no-repeat;
  background-size: contain;
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.mb-20 {
  margin-bottom: 2rem;
}

.size-30 {
  font-size: 3rem !important;
}

.c-pagination {
  padding: 4rem 0;
}
.c-pagination .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-pagination .wp-pagenavi .nextpostslink,
.c-pagination .wp-pagenavi .previouspostslink,
.c-pagination .wp-pagenavi .extend,
.c-pagination .wp-pagenavi .last,
.c-pagination .wp-pagenavi .current,
.c-pagination .wp-pagenavi .page {
  height: 4rem;
  min-width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  margin: 0 1px;
  order: 2;
  color: #293863;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-pagination .wp-pagenavi .nextpostslink,
  .c-pagination .wp-pagenavi .previouspostslink,
  .c-pagination .wp-pagenavi .extend,
  .c-pagination .wp-pagenavi .last,
  .c-pagination .wp-pagenavi .current,
  .c-pagination .wp-pagenavi .page {
    min-width: 3rem;
  }
}
.c-pagination .wp-pagenavi .nextpostslink svg,
.c-pagination .wp-pagenavi .previouspostslink svg,
.c-pagination .wp-pagenavi .extend svg,
.c-pagination .wp-pagenavi .last svg,
.c-pagination .wp-pagenavi .current svg,
.c-pagination .wp-pagenavi .page svg {
  width: 4rem;
}
@media (hover: hover) {
  .c-pagination .wp-pagenavi .nextpostslink:hover,
  .c-pagination .wp-pagenavi .previouspostslink:hover,
  .c-pagination .wp-pagenavi .page:hover,
  .c-pagination .wp-pagenavi .last:hover {
    background: #FF0000;
    color: #fff;
  }
}
.c-pagination .wp-pagenavi .current {
  background: #FF0000;
  color: #fff;
}
.c-pagination .wp-pagenavi .nextpostslink,
.c-pagination .wp-pagenavi .previouspostslink {
  padding: 0;
}
.c-pagination .wp-pagenavi .previouspostslink {
  order: 1;
}
.c-pagination .wp-pagenavi .nextpostslink {
  order: 10;
}

.lang-dropdown {
  position: relative;
  -webkit-user-select: none;
          user-select: none;
}
.lang-dropdown:hover .lang-menu {
  visibility: visible;
  opacity: 1;
}
.lang-dropdown .lang-dropdown__current {
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: #FF0000;
  font-size: 1.4rem;
}
.lang-dropdown .lang-dropdown__current:after {
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.6rem solid #FF0000;
  margin-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .lang-dropdown .lang-dropdown__current {
    display: none;
  }
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  background: #FF0000;
  z-index: 700;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  padding: 0.5rem 0;
}
@media screen and (max-width: 1000px) {
  .lang-menu {
    visibility: visible;
    opacity: 1;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.lang-menu li a {
  line-height: 1.7;
  padding: 0 1rem;
  display: block;
  font-weight: bold;
}
@media (hover: hover) {
  .lang-menu li a:hover {
    opacity: 0.7;
  }
}
.lang-menu li.current-menu-item a {
  display: none;
}
@media screen and (max-width: 1000px) {
  .lang-menu li.current-menu-item a {
    display: flex;
    background: #293863;
  }
}

.dropdown-menu {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  flex-wrap: wrap;
  letter-spacing: normal;
}
@media screen and (max-width: 1000px) {
  .dropdown-menu {
    padding-top: 15px;
  }
}
.dropdown-menu li {
  position: relative;
  transition: 0.3s;
}
.dropdown-menu > li {
  padding: 0 1rem;
}
@media screen and (max-width: 1000px) {
  .dropdown-menu > li {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
.dropdown-menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 5.5rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 1000px) {
  .dropdown-menu > li > a {
    height: 40px;
    width: 100%;
  }
}
.dropdown-menu > li > a:after {
  position: absolute;
  z-index: 3;
  bottom: 0;
  height: 2px;
  left: 0;
  background: #FF0000;
  width: 0;
  opacity: 0;
  transition: 0.3s;
}
.dropdown-menu > li > a.active .show-sub-menu {
  transform: scale(1, -1);
}
@media (hover: hover) {
  .dropdown-menu > li:hover > a {
    color: #FF0000;
  }
  .dropdown-menu > li:hover > a:after {
    opacity: 1;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .dropdown-menu > li.current-menu-item > a {
    background: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (min-width: 999px) {
  .dropdown-menu > li.current-menu-item > a {
    color: #FF0000;
  }
  .dropdown-menu > li.current-menu-item > a:after {
    width: 100%;
    opacity: 1;
  }
}
.dropdown-menu .show-sub-menu {
  display: flex;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  position: relative;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.dropdown-menu .show-sub-menu:after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #fff;
}
@media screen and (min-width: 999px) {
  .dropdown-menu .show-sub-menu {
    display: none;
  }
}
.dropdown-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 1rem;
  background: #FF0000;
  z-index: 666;
  padding: 1rem 2rem;
  min-width: 100%;
}
@media screen and (max-width: 1000px) {
  .dropdown-menu .sub-menu {
    position: static;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    margin: 0 -15px;
  }
}
.dropdown-menu .sub-menu li a {
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: bold;
  transition: opacity 0.3s;
  line-height: 1.7;
  display: block;
}
.dropdown-menu .sub-menu li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .dropdown-menu .sub-menu li a {
    font-size: 14px;
    line-height: 2;
  }
}

.main-404 {
  padding: 80px 0;
}

.page-404 {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
  font-weight: 300;
}

.page-404__title {
  font-size: 80px;
  font-weight: bold;
}

.page-404__img {
  margin: 0 auto -50px;
  max-width: 505px;
  width: 100%;
  display: block;
  transform: translateX(-10px);
}

.page-404__text {
  padding-bottom: 35px;
  font-size: 16px;
}
.page-404__text p {
  padding-bottom: 15px;
}
.page-404__text strong {
  font-size: 22px;
  font-weight: 500;
}

@media screen and (max-width: 500px) {
  .page-404__img {
    transform: none;
    margin-bottom: -30px;
  }
  .page-404__text {
    font-size: 14px;
  }
  .page-404__text strong {
    font-size: 18px;
  }
}