@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
  position: relative;
  font-family: "Montserrat", sans-serif;
  max-width: 100vw;
  background: #F2F2F2;
}

body.scroll {
  overflow-y: hidden;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  border: none;
  -moz-appearance: textfield;
}

input[type=number]:focus {
  outline: none;
}

input[type=tel] {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=text] {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=tel]:focus {
  outline: none;
}

input[type=text]:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

textarea {
  border: none;
  overflow: auto;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  resize: none;
}

select {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0px;
}

button:focus {
  border: none;
  outline: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

div {
  -webkit-tap-highlight-color: transparent;
}

input {
  border: none;
}

input:focus {
  outline: none;
}

.container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 30px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .container {
    padding: 0px 40px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0px 50px;
  }
}
@media (min-width: 1360px) {
  .container {
    padding: 0px 80px;
  }
}
@media (min-width: 1500px) {
  .container {
    padding: 0px 100px;
  }
}
@media (min-width: 1920px) {
  .container {
    padding: 0px 140px;
  }
}
.btn {
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  line-height: 50px;
  font-size: 16px;
  color: #000;
  border: 2px solid #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 10px;
  text-align: center;
  opacity: 0.4;
  padding: 0px 32px;
}
.btn:hover {
  background: #6795F9;
  border-color: #6795F9;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn.mob {
  display: block;
}
@media (min-width: 768px) {
  .btn.mob {
    display: none;
  }
}

.title_h2 {
  font-size: 40px;
  color: #000000;
  line-height: 50px;
  font-weight: 700;
}

.header {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  background-color: #fff;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 6;
}
.header_block {
  position: relative;
}
.header_block_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header_block_logo svg path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header_block ul {
  display: none;
}
.header_block_switcher {
  display: none;
}
.header_block_burger {
  margin-left: auto;
  position: relative;
  width: 33px;
  height: 19px;
  cursor: pointer;
}
.header_block_burger span {
  width: 100%;
  position: absolute;
  height: 2px;
  background: #282D32;
  left: 0px;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background-color: #6795F9;
}
.header_block_burger span:first-child {
  top: 0px;
}
.header_block_burger span:nth-child(2) {
  top: 8px;
}
.header_block_burger span:last-child {
  top: 16px;
}
.header_drop {
  position: absolute;
  width: 100%;
  top: 100px;
  height: calc(100vh - 100px);
  background-color: #6795F9;
  display: none;
}
.header_drop_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 100px;
}
.header_drop_block_switcher {
  position: absolute;
  left: 50%;
  top: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header_drop_block_switcher_lang {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  z-index: 2;
  padding: 15px;
}
.header_drop_block_switcher_lang span {
  font-size: 13px;
  color: #fff;
  line-height: 17px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header_drop_block_switcher_list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 15px 15px 15px;
  width: 100%;
  display: none;
  z-index: 1;
}
.header_drop_block_switcher_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  cursor: pointer;
  opacity: 0.5;
}
.header_drop_block_switcher_list_item span {
  font-size: 13px;
  color: #707070;
  line-height: 17px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header_drop_block_switcher_list_item:first-child {
  margin-top: 5px;
}
.header_drop_block_switcher.active {
  background: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header_drop_block_switcher.active .header_drop_block_switcher_lang span {
  color: #707070;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header_drop_block ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.header_drop_block ul li a {
  font-size: 15px;
  line-height: 19px;
  color: #fff;
}
.header_drop_block_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}
.header_drop_block_question span {
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}
.header_drop_block_question a {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
}
.header_drop_block p {
  font-size: 10px;
  line-height: 13px;
  color: #fff;
  margin-top: 50px;
}
.header.scam .header_block_logo svg path {
  fill: #000000;
}
.header.scam .header_block_burger span {
  background-color: #000;
}
.header.scam .header_block ul li::after {
  background-color: #000000;
}
.header.show {
  background-color: #6795F9;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header.show .header_block_logo svg path {
  fill: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header.show .header_block_burger span {
  background: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header.show .header_block_burger span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
}
.header.show .header_block_burger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header.show .header_block_burger span:last-child {
  top: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  .header {
    height: auto;
  }
  .header_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header_block_logo {
    position: relative;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    left: 0px;
    top: 0px;
  }
  .header_block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_block ul li {
    margin-right: 25px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 50px 0px;
    position: relative;
  }
  .header_block ul li a {
    font-size: 14px;
    line-height: 18px;
    color: #707070;
  }
  .header_block ul li::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background-color: #6795F9;
    height: 10px;
    display: none;
  }
  .header_block ul li:last-child {
    margin-right: 0px;
  }
  .header_block ul li.current_page_item a {
    color: #000000;
    font-weight: 700;
  }
  .header_block ul li.current_page_item::after {
    display: block;
  }
  .header_block_switcher {
    position: relative;
    width: 110px;
    display: block;
  }
  .header_block_switcher_wrap {
    position: absolute;
    left: 0px;
    top: -31px;
    width: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  }
  .header_block_switcher_wrap_lang {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
    z-index: 2;
    padding: 15px;
  }
  .header_block_switcher_wrap_lang span {
    font-size: 13px;
    color: #707070;
    line-height: 17px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .header_block_switcher_wrap_list {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0px 15px 15px 15px;
    width: 100%;
    display: none;
    z-index: 1;
  }
  .header_block_switcher_wrap_list_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
    cursor: pointer;
    opacity: 0.5;
  }
  .header_block_switcher_wrap_list_item span {
    font-size: 13px;
    color: #707070;
    line-height: 17px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .header_block_switcher_wrap_list_item:first-child {
    margin-top: 5px;
  }
  .header_block_switcher_wrap.active {
    background: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .header_block_switcher_wrap.active .header_drop_block_switcher_lang span {
    color: #707070;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .header_block_burger {
    display: none;
  }
}
@media (min-width: 1600px) {
  .header_block ul li {
    margin-right: 40px;
  }
}

.home {
  position: relative;
  background: #6795F9;
  overflow: hidden;
}

.home .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
}

.home__content {
  position: absolute;
  top: 22%;
  left: 50%;
  padding: 0 40px;
}

.home__logo {
  padding: 0 40px;
  -webkit-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
}

._preloader .home__logo {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.home__jingliki {
  position: relative;
  height: 100vh;
  padding-top: 130px;
}

.home__jingliki img {
  max-width: inherit;
}

.home__jingliki > div {
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}

._preloader .home__jingliki > div {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.home__cockroach {
  position: absolute;
  right: 61%;
  bottom: -200px;
}

.home__vanya {
  position: absolute;
  right: 100%;
  bottom: -290px;
}

.home__pankrat {
  position: absolute;
  right: 75%;
  bottom: -200px;
}

.home__manunja {
  position: absolute;
  right: 61%;
  bottom: -320px;
}

.home__fedunya {
  position: absolute;
  right: 38%;
  bottom: -240px;
}

.home__frosya {
  position: absolute;
  left: 48%;
  bottom: -260px;
}

.home__bedacur {
  position: absolute;
  left: 66%;
  bottom: -310px;
}

.home__denek {
  position: absolute;
  left: 71%;
  bottom: -500px;
}

.home__kotya {
  position: absolute;
  left: 102%;
  bottom: -230px;
}

@media (max-width: 1600px) {
  .home__jingliki {
    padding-top: 90px;
  }
  .home__content {
    padding: 0;
  }
  .home__logo {
    padding: 15px;
  }
  .home__cockroach {
    max-width: 850px;
    right: 58%;
  }
  .home__fedunya {
    max-width: 340px;
    right: 34%;
  }
  .home__kotya {
    max-width: 320px;
    left: 88%;
    bottom: -170px;
  }
  .home__pankrat {
    max-width: 310px;
    right: 64%;
    bottom: -160px;
  }
  .home__frosya {
    max-width: 340px;
    left: 50%;
  }
  .home__denek {
    max-width: 450px;
    left: 60%;
    bottom: -410px;
  }
  .home__vanya {
    max-width: 270px;
    right: 85%;
    bottom: -290px;
  }
  .home__manunja {
    max-width: 340px;
    right: 52%;
  }
  .home__bedacur {
    max-width: 340px;
    left: 63%;
  }
}
@media (max-width: 1300px) {
  .home__content {
    left: 40%;
  }
}
@media (max-width: 1024px) {
  .home__content {
    text-align: center;
    left: 0;
    right: 0;
  }
  .home__jingliki > div {
    max-width: 290px;
    max-height: 70%;
    right: 0;
    bottom: -60px;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
  .home__jingliki > div._active {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.home_two {
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1000px;
}

.home_one {
  position: absolute;
  left: 100%;
  top: 90px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 500px;
}

@media (min-width: 1200px) {
  .home_one {
    left: auto;
    right: 0px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    width: 800px;
  }
  .home_two {
    right: auto;
    left: 0px;
    width: 100%;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.about_home {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 100px 0px;
  overflow: hidden;
}
.about_home_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about_home_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 100px;
}
.about_home_block_left_title .btn {
  display: none;
}
.about_home_block_left p {
  font-size: 14px;
  line-height: 25px;
  color: #000000;
  margin-top: 20px;
}
.about_home_block_right {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  height: 300px;
}
.about_home_block_right_one {
  height: 300px;
  position: absolute;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
}
.about_home_block_right_two {
  height: 300px;
  position: absolute;
  left: 30%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
}
.about_home_block_right_three {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
  width: 400px;
}
.about_home .btn {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .about_home_block_left_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about_home_block_left_title .btn {
    display: block;
    margin-top: 0px;
    margin-left: 35px;
  }
  .about_home_block_right {
    height: 400px;
  }
  .about_home_block_right_one {
    height: 400px;
  }
  .about_home_block_right_two {
    height: 400px;
  }
  .about_home_block_right_three {
    width: 600px;
    bottom: -130px;
  }
}
@media (min-width: 1024px) {
  .about_home_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
  .about_home_block_left {
    width: 400px;
    min-width: 400px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0px;
  }
  .about_home_block_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 450px);
  }
}
@media (min-width: 1200px) {
  .about_home {
    overflow: visible;
    padding: 150px 0px 100px 0px;
  }
  .about_home_block_right_one {
    height: 500px;
    left: 50%;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .about_home_block_right_two {
    height: 500px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .about_home_block_right_three {
    right: -190px;
    left: auto;
    width: 950px;
    bottom: -400px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@media (min-width: 1440px) {
  .about_home_block_left {
    z-index: 2;
  }
  .about_home_block_right_three {
    width: 1150px;
    bottom: -450px;
  }
}
@media (min-width: 1600px) {
  .about_home {
    padding: 150px 0px 150px 0px;
  }
  .about_home_block_left {
    width: 570px;
    min-width: 570px;
  }
  .about_home_block_right {
    width: calc(100% - 570px);
  }
  .about_home_block_right_three {
    width: 1200px;
  }
}
@media (min-width: 1920px) {
  .about_home {
    padding: 150px 0px 200px 0px;
  }
  .about_home_block_right_one {
    height: 680px;
  }
  .about_home_block_right_two {
    height: 680px;
  }
  .about_home_block_right_three {
    width: 1500px;
    bottom: -650px;
  }
}

.creators_home {
  background: #6795F9;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-bottom: 50px;
}
.creators_home_back {
  display: none;
}
.creators_home_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.creators_home_block_right {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.creators_home_block_right_logo {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 4;
}
.creators_home_block_right_two {
  display: block;
  position: absolute;
  width: calc(100% + 100px);
  left: -50px;
  top: 0px;
  z-index: 1;
}
.creators_home_block_right_three {
  width: 150%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
  z-index: 3;
}
.creators_home_block_right_one {
  width: 100%;
  position: relative;
  z-index: 2;
}
.creators_home_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 100px;
}
.creators_home_block_left_title h2 {
  color: #fff;
}
.creators_home_block_left_title_btn {
  display: none;
}
.creators_home_block_left p {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  margin-top: 20px;
}
.creators_home_block_left p.bold {
  font-size: 16px;
  font-weight: 700;
}
.creators_home_block_left ul {
  margin-top: 20px;
  list-style: inside;
}
.creators_home_block_left ul li {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
  margin-top: 0px;
}
.creators_home_block_left ul.second {
  margin-top: 0px;
}
.creators_home_block_left ul.second li {
  font-weight: 400;
}
.creators_home_block_left_mob_btn {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 60px;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 48px;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
  color: #6795F9;
  text-align: center;
}
@media (min-width: 768px) {
  .creators_home_block_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .creators_home_block_right_one {
    width: 70%;
  }
  .creators_home_block_right_three {
    bottom: -180px;
  }
}
@media (min-width: 1024px) {
  .creators_home_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .creators_home_block_left {
    width: 400px;
    min-width: 400px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    z-index: 5;
  }
  .creators_home_block_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 450px);
  }
}
@media (min-width: 1200px) {
  .creators_home {
    background: transparent;
    position: relative;
  }
  .creators_home_back {
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .creators_home .container {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
  }
  .creators_home_block {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .creators_home_block_left {
    width: 500px;
    min-width: 500px;
    margin-top: 0px;
  }
  .creators_home_block_left_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .creators_home_block_left_title_btn {
    display: block;
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-weight: 700;
    line-height: 50px;
    font-size: 16px;
    color: #6795F9;
    border: 2px solid #fff;
    background: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 10px;
    text-align: center;
    opacity: 0.5;
    padding: 0px 32px;
    margin-left: 35px;
  }
  .creators_home_block_left_title_btn:hover {
    opacity: 1;
    background: transparent;
    border-color: #fff;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .creators_home_block_left_mob_btn {
    display: none;
  }
  .creators_home_block_right {
    width: calc(100% - 550px);
  }
  .creators_home_block_right_one {
    width: 80%;
  }
  .creators_home_block_right_two {
    width: 1100px;
    left: auto;
    right: -150px;
  }
  .creators_home_block_right_three {
    bottom: -150px;
    right: -60px;
    left: auto;
    width: 800px;
  }
}
@media (min-width: 1440px) {
  .creators_home_block_right_one {
    width: 70%;
  }
}
@media (min-width: 1600px) {
  .creators_home_block_right_two {
    width: 1300px;
  }
  .creators_home_block_right_three {
    width: 1100px;
    bottom: -200px;
  }
}
@media (min-width: 1920px) {
  .creators_home_block_right_two {
    width: 1600px;
    top: 100px;
  }
  .creators_home_block_right_three {
    width: 1200px;
    right: 0px;
  }
}

.partners_home {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 60px 0px;
  overflow: hidden;
}
.partners_home_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.partners_home_block_right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.partners_home_block_right_main {
  width: 450px;
  position: relative;
  z-index: 2;
}
.partners_home_block_right_cloud {
  width: 450px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.partners_home_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.partners_home_block_left_title {
  margin-bottom: 48px;
}
.partners_home_block_left_title .btn {
  display: none;
}
.partners_home_block_left p {
  font-size: 14px;
  line-height: 25px;
  color: #000000;
  margin-top: 20px;
}
.partners_home_block_left .btn {
  margin-top: 25px;
}
.partners_home_block .btn {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 28px;
}
@media (min-width: 576px) {
  .partners_home_block_left_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .partners_home_block_left_title .btn {
    display: block;
    margin-top: 0px;
    margin-left: 35px;
  }
  .partners_home_block_right_main {
    width: 100%;
  }
  .partners_home_block_right_cloud {
    width: 550px;
  }
}
@media (min-width: 1024px) {
  .partners_home_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .partners_home_block_left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 350px;
    max-width: 350px;
  }
  .partners_home_block_left_title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .partners_home_block_left_title .btn {
    margin-left: 0px;
    margin-top: 20px;
  }
  .partners_home_block_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .partners_home_block_right_main {
    width: 800px;
    z-index: 1;
  }
  .partners_home_block_right_cloud {
    width: 800px;
    z-index: 2;
  }
}
@media (min-width: 1200px) {
  .partners_home {
    overflow: visible;
    padding: 120px 0px 0px 0px;
  }
  .partners_home_block {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .partners_home_block_left {
    max-width: 480px;
    min-width: 480px;
    position: relative;
    z-index: 3;
  }
  .partners_home_block_left_title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .partners_home_block_left_title .btn {
    margin-top: 0px;
    margin-left: 35px;
  }
  .partners_home_block_right {
    width: calc(100% - 550px);
    position: relative;
  }
  .partners_home_block_right_main {
    width: 1100px;
  }
  .partners_home_block_right_cloud {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    left: auto;
    right: -150px;
    width: 1100px;
    bottom: -100px;
  }
}
@media (min-width: 1600px) {
  .partners_home_block_right_main {
    right: 0px;
    width: 1200px;
  }
  .partners_home_block_right_cloud {
    width: 1100px;
  }
}
@media (min-width: 1920px) {
  .partners_home_block_right_main {
    width: 1500px;
    height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .partners_home_block_right_cloud {
    width: 100%;
    min-width: 1200px;
    right: 0px;
  }
}

.news {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-top: 80px;
  background-color: #fff;
  padding-bottom: 80px;
}
.news_title .btn {
  display: none;
}
.news_slider_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 15px;
  margin-top: 25px;
  padding: 40px;
}
.news_slider_item_wrap_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.news_slider_item_wrap_title_date {
  min-width: 60px;
  width: 60px;
}
.news_slider_item_wrap_title_date span {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item_wrap_title_date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item_wrap_title h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item_wrap_body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px;
}
.news_slider_item_wrap_body p {
  font-size: 12px;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item button {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:hover {
  background: #6795F9;
  border-color: #6795F9;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:hover .news_slider_item_wrap_title_date span {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:hover .news_slider_item_wrap_title_date p {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:hover .news_slider_item_wrap_title h3 {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:hover .news_slider_item_wrap_body p {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:hover button {
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_slider_item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news_slider_item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news_slider_item:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news .btn {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .news_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news_title .btn {
    display: block;
    margin-top: 0px;
    margin-left: 35px;
  }
  .news_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    overflow-x: scroll;
    margin-top: 50px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .news_slider::-webkit-scrollbar {
    display: none;
  }
  .news_slider_item {
    min-width: 480px;
    margin-right: 20px;
    margin-top: 0px;
    display: block;
  }
  .news_slider_item:last-child {
    margin-right: 0px;
  }
}
@media (min-width: 1200px) {
  .news {
    padding-bottom: 160px;
  }
  .news .progress {
    width: 100%;
    height: 4px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    background-color: #DDDDDD;
    background-image: -webkit-gradient(linear, left top, right top, from(#6795F9), to(#6795F9));
    background-image: linear-gradient(to right, #6795F9, #6795F9);
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size 0.4s ease-in-out;
    transition: background-size 0.4s ease-in-out;
    margin-top: 80px;
  }
  .news_slider {
    overflow: visible;
    margin-top: 80px;
  }
  .news_slider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .news_slider .slick-slide {
    height: inherit !important;
    position: relative;
    margin: 0 10px;
  }
  .news_slider .slick-slide > div {
    height: 100%;
  }
  .news_slider_item {
    min-width: 100%;
    height: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .news_slider_item_wrap_title_date {
    min-width: 80px;
    width: 80px;
  }
  .news_slider_item_wrap_title_date span {
    font-size: 20px;
    line-height: 24px;
  }
  .news_slider_item_wrap_title_date p {
    font-size: 20px;
    line-height: 24px;
  }
  .news_slider_item_wrap_title h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

.media {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 60px 0px;
  background-color: #fff;
}
.media_title .btn {
  display: none;
}
.media_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 15px;
  margin-top: 40px;
  padding: 40px;
}
.media_list_item_wrap_title_img {
  margin-bottom: 25px;
}
.media_list_item_wrap_title_img svg path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item_wrap_title h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item_wrap_body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px;
}
.media_list_item_wrap_body p {
  font-size: 12px;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item button {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item:hover {
  background: #6795F9;
  border-color: #6795F9;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item:hover .media_list_item_wrap_title .media_list_item_wrap_title_img svg path {
  fill: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item:hover .media_list_item_wrap_title h3 {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item:hover .media_list_item_wrap_body p {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item:hover button {
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.media_list_item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.media_list_item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.media_list_item:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.media .btn {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .media_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media_title .btn {
    display: block;
    margin-top: 0px;
    margin-left: 35px;
  }
  .media_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    overflow-x: scroll;
    margin-top: 50px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .media_list::-webkit-scrollbar {
    display: none;
  }
  .media_list_item {
    min-width: 480px;
    margin-right: 20px;
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .media_list_item:last-child {
    margin-right: 0px;
  }
}
@media (min-width: 1200px) {
  .media {
    padding: 166px 0px 80px 0px;
  }
  .media_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-x: visible;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
  }
  .media_list_item {
    width: calc(50% - 10px);
    margin-top: 20px;
    margin-right: 0px;
  }
  .media_list_item_wrap_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media_list_item_wrap_title_img {
    width: 140px;
    min-width: 140px;
    margin-bottom: 0px;
  }
  .media_list_item_wrap_title_img svg {
    max-width: 100%;
    width: auto;
  }
  .media_list_item_wrap_title h3 {
    font-size: 21px;
    line-height: 26px;
    margin-left: 30px;
  }
}

.awards {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #6795F9;
  position: relative;
}
.awards_wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-top: 600px;
  overflow: hidden;
  padding-bottom: 100px;
}
.awards_one {
  position: absolute;
  left: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 210px;
  top: -30px;
  z-index: 2;
}
.awards_two {
  position: absolute;
  left: 70%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 134px;
  top: -30px;
  z-index: 2;
}
.awards_clouds_one {
  position: absolute;
  width: 150%;
  top: 300px;
  z-index: 2;
  left: -20%;
}
.awards_clouds_two {
  position: absolute;
  width: 200%;
  top: 0px;
  right: -270px;
}
.awards_clouds_three {
  position: absolute;
  left: -300px;
  width: 600px;
  top: 43%;
}
.awards_clouds_four {
  position: absolute;
  right: -300px;
  width: 600px;
  bottom: 28%;
}
.awards_clouds_five {
  position: absolute;
  width: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10%;
}
.awards_block h2 {
  font-size: 40px;
  color: #fff;
  line-height: 49px;
  font-weight: 700;
}
.awards_block_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.awards_block_list_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}
.awards_block_list_item_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.awards_block_list_item svg {
  display: none;
  width: 150px;
  height: auto;
}
.awards_block_list_item span {
  font-size: 200px;
  color: #fff;
  line-height: 200px;
  font-weight: 900;
}
.awards_block_list_item p {
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.awards_block_list_item button {
  width: 100%;
  position: relative;
  height: 72px;
  line-height: 72px;
  font-size: 15px;
  color: #000000;
  z-index: 2;
  margin-top: 30px;
}
.awards_block_list_item::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 72px;
  background-color: #fff;
  border-radius: 30px;
}
@media (min-width: 576px) {
  .awards_clouds_one {
    width: 860px;
  }
  .awards_clouds_one {
    width: 1150px;
  }
  .awards_wrap {
    padding-top: 700px;
  }
  .awards_one {
    width: 310px;
  }
  .awards_two {
    width: 234px;
  }
}
@media (min-width: 768px) {
  .awards_clouds_one {
    width: 700px;
    left: 50%;
    top: 400px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .awards_clouds_two {
    width: 800px;
    top: 0px;
    right: -141px;
  }
  .awards_clouds_three {
    display: none;
  }
  .awards_clouds_four {
    display: none;
  }
  .awards_clouds_five {
    display: none;
  }
  .awards_wrap {
    padding-bottom: 150px;
  }
  .awards_block_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .awards_block_list_item {
    width: calc(50% - 20px);
    margin-top: 0px;
  }
  .awards_block_list_item_wrap {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .awards_block_list_item span {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    position: relative;
    z-index: 2;
  }
  .awards_block_list_item p {
    text-align: center;
  }
  .awards_block_list_item svg {
    display: block;
    opacity: 0;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  .awards_block_list_item:first-child {
    margin-top: 0px;
  }
  .awards_block_list_item::after {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  .awards_block_list_item:hover svg {
    opacity: 1;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  .awards_block_list_item:hover span {
    color: #6795F9;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  .awards_block_list_item:hover p {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    color: #000;
  }
  .awards_block_list_item:hover .awards_block_list_item_wrap {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  .awards_block_list_item:hover::after {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    height: 350px;
  }
}
@media (min-width: 1200px) {
  .awards {
    overflow: hidden;
  }
  .awards_one {
    left: -103px;
    bottom: -30px;
    top: auto;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .awards_two {
    right: -36px;
    bottom: -30px;
    left: auto;
    top: auto;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .awards_wrap {
    padding-top: 100px;
    position: relative;
    z-index: 3;
  }
  .awards_clouds_one {
    display: none;
  }
  .awards_clouds_two {
    top: -130px;
    right: -141px;
    width: 600px;
  }
  .awards_clouds_four {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 100%;
    width: auto;
    top: 10%;
  }
  .awards_block_list {
    margin-top: 50px;
  }
  .awards_block_list_item {
    width: calc(25% - 12px);
  }
  .awards_block_list_item span {
    font-size: 160px;
  }
  .awards_block_list_item p {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (min-width: 1440px) {
  .awards_one {
    width: 360px;
  }
}
@media (min-width: 1600px) {
  .awards_one {
    left: -74px;
  }
}

.partners {
  background-color: #6795F9;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.partners_cloud {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100px;
  width: 600px;
  opacity: 0.3;
}
.partners_wrap {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 160px;
  padding-bottom: 70px;
}
.partners_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.partners_block_right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.partners_block_right_main {
  width: 450px;
}
.partners_block_right_cloud {
  width: 450px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.partners_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 80px;
}
.partners_block_left h1 {
  font-size: 40px;
  color: #fff;
  line-height: 49px;
  font-weight: 700;
}
.partners_block_left p {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  margin-top: 20px;
}
.partners_block_left p.bold {
  font-weight: 700;
}
.partners_block_left_down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.partners_block_left_down span {
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}
.partners_block_left_down a {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  margin-top: 14px;
}
@media (min-width: 576px) {
  .partners_cloud {
    width: 700px;
  }
  .partners_block_right_main {
    width: 100%;
  }
  .partners_block_right_cloud {
    width: 550px;
  }
}
@media (min-width: 768px) {
  .partners_cloud {
    width: 800px;
  }
  .partners_block_right_cloud {
    width: 750px;
  }
}
@media (min-width: 1024px) {
  .partners_cloud {
    position: fixed;
    right: 0px;
    top: 0px;
    left: auto;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .partners_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .partners_block_left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 0px;
    min-width: 400px;
    width: 400px;
    position: relative;
    z-index: 2;
  }
  .partners_block_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: fixed;
    z-index: 1;
    width: calc(100% - 450px);
    right: 0px;
  }
  .partners_block_right_main {
    width: 800px;
  }
  .partners_block_right_cloud {
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .partners_cloud {
    max-width: 100%;
    width: auto;
  }
  .partners_wrap {
    padding-top: 260px;
    padding-bottom: 150px;
  }
  .partners_block_right {
    right: -50px;
  }
  .partners_block_right_main {
    width: 1100px;
  }
  .partners_block_right_cloud {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    right: 0px;
    left: auto;
    bottom: -40px;
    width: 900px;
  }
}
@media (min-width: 1600px) {
  .partners_block_left {
    width: 550px;
  }
  .partners_block_right {
    width: calc(100% - 600px);
  }
  .partners_block_right_main {
    width: 1200px;
  }
  .partners_block_right_cloud {
    width: 1100px;
  }
}
@media (min-width: 1900px) {
  .partners_block_right {
    right: -50px;
  }
  .partners_block_right_main {
    width: auto;
  }
  .partners_block_right_cloud {
    width: 100%;
  }
}

.news_page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 126px 0px 44px 0px;
}
.news_page_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 15px;
  margin-bottom: 26px;
  padding: 40px;
}
.news_page_list_item_wrap_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.news_page_list_item_wrap_title_date {
  min-width: 60px;
  width: 60px;
}
.news_page_list_item_wrap_title_date span {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item_wrap_title_date p {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item_wrap_title h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item_wrap_body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px;
}
.news_page_list_item_wrap_body p {
  font-size: 12px;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item button {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item:hover {
  background: #6795F9;
  border-color: #6795F9;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item:hover .news_page_list_item_wrap_title_date span {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item:hover .news_page_list_item_wrap_title_date p {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item:hover .news_page_list_item_wrap_title h3 {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item:hover .news_page_list_item_wrap_body p {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.news_page_list_item:hover button {
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (min-width: 768px) {
  .news_page_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news_page_list_item {
    width: calc(50% - 13px);
  }
}
@media (min-width: 1200px) {
  .news_page {
    padding: 204px 0px 100px 0px;
  }
  .news_page_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .news_page_list_item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .news_page_list_item_wrap_title_date {
    min-width: 80px;
    width: 80px;
  }
  .news_page_list_item_wrap_title_date span {
    font-size: 20px;
    line-height: 24px;
  }
  .news_page_list_item_wrap_title_date p {
    font-size: 20px;
    line-height: 24px;
  }
  .news_page_list_item_wrap_title h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .news_page_list_item:nth-child(3n) {
    margin-right: 0px;
  }
}

.massmedia {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 126px 0px 44px 0px;
}
.massmedia_block_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 15px;
  margin-bottom: 26px;
  padding: 40px;
}
.massmedia_block_item_wrap_title_img {
  margin-bottom: 25px;
}
.massmedia_block_item_wrap_title_img svg path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item_wrap_title h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item_wrap_body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px;
}
.massmedia_block_item_wrap_body p {
  font-size: 12px;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item button {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  color: #000;
  opacity: 0.4;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item:hover {
  background: #6795F9;
  border-color: #6795F9;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item:hover .massmedia_block_item_wrap_title .massmedia_block_item_wrap_title_img svg path {
  fill: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item:hover .massmedia_block_item_wrap_title h3 {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item:hover .massmedia_block_item_wrap_body p {
  color: #fff;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.massmedia_block_item:hover button {
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media (min-width: 768px) {
  .massmedia_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .massmedia_block_item {
    width: calc(50% - 13px);
  }
}
@media (min-width: 1200px) {
  .massmedia {
    padding: 204px 0px 100px 0px;
  }
  .massmedia_block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-x: visible;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .massmedia_block_item {
    width: calc(33.3333333333% - 13.3333333333px);
    margin-bottom: 20px;
    margin-right: 20px;
  }
  .massmedia_block_item_wrap_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .massmedia_block_item_wrap_title_img {
    width: 140px;
    min-width: 140px;
    margin-bottom: 0px;
  }
  .massmedia_block_item_wrap_title_img svg {
    max-width: 100%;
    width: auto;
  }
  .massmedia_block_item_wrap_title h3 {
    font-size: 21px;
    line-height: 26px;
    margin-left: 30px;
  }
  .massmedia_block_item:nth-child(3n) {
    margin-right: 0px;
  }
}

.awards_page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #6795F9;
  padding: 126px 0px 44px 0px;
  overflow: hidden;
}
.awards_page_cloud {
  position: fixed;
  top: 50px;
  right: -100px;
  width: 500px;
}
.awards_page_block_item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  position: relative;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  margin-bottom: 26px;
}
.awards_page_block_item_num {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.awards_page_block_item_num span {
  font-size: 150px;
  color: #84AAFA;
  line-height: 150px;
  font-weight: 900;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.awards_page_block_item_num p {
  font-size: 30px;
  line-height: 36px;
  color: #000;
  font-weight: 400;
  text-align: center;
}
.awards_page_block_item_text {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 20px;
}
.awards_page_block_item_text p {
  font-size: 12px;
  line-height: 19px;
  color: #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.awards_page_block_item svg {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 150px;
  height: auto;
}

.awards_page_block_item svg path {
  fill: #84AAFA;
}

@media (min-width: 768px) {
  .awards_page_cloud {
    width: 800px;
  }
}
@media (min-width: 1024px) {
  .awards_page_block_item svg path {
    fill: #fff;
  }
  .awards_page_block_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    background-color: #84AAFA;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item_num {
    margin-top: 0px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 210px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 30px;
  }
  .awards_page_block_item_num span {
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item_num p {
    text-align: left;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item_text {
    margin-top: 0px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .awards_page_block_item_text p {
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item svg {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    min-width: 150px;
    margin-left: 30px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item svg path {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item:hover {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color: #fff;
  }
  .awards_page_block_item:hover .awards_page_block_item_num span {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    color: #84AAFA;
  }
  .awards_page_block_item:hover .awards_page_block_item_num p {
    color: #000;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item:hover .awards_page_block_item_text p {
    color: #000;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .awards_page_block_item:hover svg path {
    fill: #84AAFA;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
}
@media (min-width: 1200px) {
  .awards_page {
    padding: 240px 0px 100px 0px;
  }
  .awards_page_cloud {
    width: 1200px;
    top: 0px;
  }
  .awards_page_block_item {
    padding: 40px;
  }
  .awards_page_block_item_text p {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (min-width: 1600px) {
  .awards_page_cloud {
    width: auto;
    max-width: 100%;
  }
  .awards_page_block_item {
    padding: 50px;
  }
  .awards_page_block_item_num {
    margin-right: 100px;
  }
  .awards_page_block_item_text p {
    font-size: 15px;
    line-height: 30px;
  }
  .awards_page_block_item svg {
    margin-left: 100px;
  }
}
@media (min-width: 1920px) {
  .awards_page_block_item {
    padding: 60px;
  }
}

.warning {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-top: 140px;
  padding-bottom: 70px;
  overflow: hidden;
}
.warning_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.warning_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.warning_block_left p {
  font-size: 14px;
  line-height: 25px;
  color: #000;
  margin-top: 20px;
}
.warning_block_left p.bold {
  font-weight: 700;
}
.warning_block_right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
}
.warning_block_right_one {
  width: 100%;
  position: relative;
  right: -60px;
}
.warning_block_right_two {
  position: absolute;
  left: -100px;
  bottom: 0px;
  width: 400px;
  z-index: 2;
}
.warning_block_right_three {
  position: absolute;
  left: -30px;
  bottom: 100px;
  width: 80%;
}
@media (min-width: 576px) {
  .warning_block_right_one {
    width: 60%;
    display: block;
    margin-left: auto;
    right: 0px;
  }
  .warning_block_right_three {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .warning_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .warning_block_left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 400px;
    width: 400px;
  }
  .warning_block_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .warning_block_right_one {
    width: 80%;
    right: -100px;
  }
  .warning_block_right_two {
    left: 0px;
    width: 100%;
  }
  .warning_block_right_three {
    width: 70%;
    left: 50px;
  }
}
@media (min-width: 1200px) {
  .warning {
    padding-bottom: 0px;
    padding-top: 100px;
  }
  .warning_block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .warning_block_left {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 100px;
  }
  .warning_block_right {
    width: calc(100% - 500px);
    max-width: 700px;
  }
}
@media (min-width: 1440px) {
  .warning_block_left {
    width: 460px;
    min-width: 460px;
  }
}
@media (min-width: 1600px) {
  .warning_block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .warning_block_left {
    padding-top: 0px;
  }
  .warning_block_right {
    margin-left: 100px;
  }
}
@media (min-width: 1920px) {
  .warning_block_right {
    max-width: 750px;
    margin-left: 200px;
  }
}

.about {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 70px;
}
.about_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 100px;
}
.about_block_left h1 {
  font-size: 40px;
  color: #000;
  line-height: 49px;
  font-weight: 700;
}
.about_block_left p {
  font-size: 14px;
  line-height: 25px;
  color: #000;
  margin-top: 20px;
}
.about_block_left p.subtitle {
  font-size: 16px;
}
.about_block_left p.bold {
  font-weight: 700;
}
.about_block_right {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  height: 300px;
}
.about_block_right_one {
  height: 300px;
  position: absolute;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
}
.about_block_right_two {
  height: 300px;
  position: absolute;
  left: 30%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
}
.about_block_right_three {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
  width: 400px;
}
@media (min-width: 768px) {
  .about_block_right {
    height: 400px;
  }
  .about_block_right_one {
    height: 400px;
  }
  .about_block_right_two {
    height: 400px;
  }
  .about_block_right_three {
    width: 600px;
    bottom: -130px;
  }
}
@media (min-width: 1024px) {
  .about {
    padding-top: 100px;
  }
  .about_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
  .about_block_left {
    margin-top: 0px;
    position: relative;
    z-index: 2;
  }
  .about_block_left h1 {
    display: none;
  }
  .about_block_left p {
    width: 400px;
    min-width: 400px;
    margin-top: 150px;
  }
  .about_block_right {
    position: fixed;
    top: 140px;
    right: 0px;
    width: calc(100% - 450px);
  }
}
@media (min-width: 1200px) {
  .about {
    padding-bottom: 130px;
    padding-top: 0px;
  }
  .about_block_left p {
    margin-top: 350px;
  }
  .about_block_left p.subtitle {
    font-size: 24px;
    line-height: 32px;
  }
  .about_block_left p.bold {
    font-size: 21px;
    line-height: 32px;
    width: 550px;
  }
  .about_block_right_one {
    height: 500px;
    left: 50%;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .about_block_right_two {
    height: 500px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .about_block_right_three {
    right: 0px;
    left: auto;
    width: 950px;
    bottom: -300px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@media (min-width: 1600px) {
  .about_block_left p {
    width: 414px;
    min-width: 414px;
  }
  .about_block_left p.bold {
    width: 856px;
  }
  .about_block_right_three {
    width: 1200px;
    bottom: -350px;
  }
}
@media (min-width: 1920px) {
  .about_block_right_one {
    height: 680px;
  }
  .about_block_right_two {
    height: 680px;
  }
  .about_block_right_three {
    width: 1500px;
    bottom: -650px;
  }
}

.creators {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #6795F9;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 70px;
}
.creators_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.creators_block_right {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.creators_block_right_logo {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 4;
}
.creators_block_right_two {
  display: block;
  position: absolute;
  width: calc(100% + 100px);
  left: -50px;
  top: 0px;
  z-index: 1;
}
.creators_block_right_three {
  width: 150%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
  z-index: 3;
}
.creators_block_right_one {
  width: 100%;
  position: relative;
  z-index: 2;
}
.creators_block_left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 100px;
}
.creators_block_left_item p {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  margin-top: 20px;
}
.creators_block_left_item p.bold {
  font-size: 16px;
  font-weight: 700;
}
.creators_block_left_item ul {
  margin-top: 20px;
  list-style: inside;
}
.creators_block_left_item ul li {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
  margin-top: 0px;
}
.creators_block_left_item ul.second {
  margin-top: 0px;
}
.creators_block_left_item ul.second li {
  font-weight: 400;
}
.creators_block_left_item h5 {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  color: #fff;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .creators_block_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .creators_block_right_one {
    width: 70%;
  }
  .creators_block_right_three {
    bottom: -180px;
  }
}
@media (min-width: 1024px) {
  .creators_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .creators_block_left {
    width: 400px;
    min-width: 400px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    z-index: 5;
  }
  .creators_block_right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 450px);
  }
  .creators_block_right_logo {
    top: 300px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .creators_block_right_one {
    position: fixed;
    top: 0px;
    width: calc(100% - 600px);
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .creators_block_right_two {
    position: fixed;
    right: -20%;
    top: 150px;
    width: 90%;
    left: auto;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  .creators_block_right_three {
    width: calc(100% - 250px);
    position: fixed;
    right: 0px;
    left: auto;
    top: 400px;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@media (min-width: 1200px) {
  .creators {
    padding-top: 160px;
  }
  .creators_block_left_item:last-child {
    margin-top: 200px;
  }
  .creators_block_right {
    width: calc(100% - 600px);
  }
  .creators_block_right_logo {
    top: 200px;
  }
  .creators_block_right_one {
    width: 560px;
  }
  .creators_block_right_two {
    width: 100%;
  }
  .creators_block_right_three {
    width: calc(100% - 350px);
  }
}
@media (min-width: 1440px) {
  .creators_block_right_two {
    top: 50px;
  }
  .creators_block_right_three {
    width: calc(100% - 550px);
    top: 450px;
  }
}
@media (min-width: 1600px) {
  .creators_block_left {
    width: 500px;
    min-width: 500px;
  }
  .creators_block_left_item {
    margin-bottom: 250px;
  }
  .creators_block_left_item:last-child {
    margin-bottom: 0px;
  }
}

.single_main {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single_main_back {
  display: none;
}
.single_main img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single_main h1 {
  font-size: 25px;
  font-weight: 700;
  color: #000000;
  line-height: 35px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 15px;
  margin-top: 15px;
}
.single_main p {
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  margin-top: 40px;
  text-align: center;
}
.single_main p b {
  font-weight: 700;
}
@media (min-width: 768px) {
  .single_main h1 {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 100px;
    width: 100%;
  }
  .single_main p {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -15px;
  }
}
@media (min-width: 1200px) {
  .single_main img {
    height: auto;
  }
  .single_main h1 {
    font-size: 40px;
    line-height: 40px;
  }
}

.footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background: #404040;
  padding: 50px 0px;
  z-index: 3;
}
.footer_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer_block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 30px;
}
.footer_block ul li {
  margin-top: 20px;
}
.footer_block ul li a {
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  opacity: 0.5;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer_block ul li a:hover {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.footer_block_question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.footer_block_question span {
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}
.footer_block_question a {
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
}
.footer_block p {
  font-size: 10px;
  line-height: 13px;
  color: #fff;
  margin-top: 50px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 1024px) {
  .footer_block ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 50px;
  }
  .footer_block ul li {
    margin-top: 0px;
    margin-left: 25px;
  }
  .footer_block ul li:first-child {
    margin-left: 0px;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 100px 0px 42px 0px;
  }
  .footer_block ul {
    margin-top: 80px;
  }
  .footer_block ul li {
    margin-left: 42px;
  }
  .footer_block_question {
    margin-top: 80px;
  }
  .footer_block p {
    margin-top: 86px;
  }
}

.single_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 70px 0px;
  font-size: 14px;
  line-height: 25px;
  color: #000000;
}

.single_content p {
  margin-top: 20px;
}


.single_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 70px 0px;
  /* Sections
  	 ========================================================================== */
  /**
   * Remove the margin in all browsers.
   */
  /**
   * Render the `main` element consistently in IE.
   */
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
  /* Grouping content
  	 ========================================================================== */
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  /* Text-level semantics
  	 ========================================================================== */
  /**
   * Remove the gray background on active links in IE 10.
   */
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  /**
   * Add the correct font size in all browsers.
   */
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  /* Embedded content
  	 ========================================================================== */
  /**
   * Remove the border on images inside links in IE 10.
   */
  /* Forms
  	 ========================================================================== */
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
  /**
   * Correct the padding in Firefox.
   */
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *		`fieldset` elements in all browsers.
   */
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  /* Interactive
  	 ========================================================================== */
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  /*
   * Add the correct display in all browsers.
   */
  /* Misc
  	 ========================================================================== */
  /**
   * Add the correct display in IE 10+.
   */
  /**
   * Add the correct display in IE 10.
   */
  /* Box sizing
  --------------------------------------------- */
  /* Inherit box-sizing to more easily change it's value on a component level.
  @link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  /*--------------------------------------------------------------
  # Base
  --------------------------------------------------------------*/
  /* Typography
  --------------------------------------------- */
  /* Elements
  --------------------------------------------- */
  /* Make sure embeds and iframes fit their containers. */
  /* Links
  --------------------------------------------- */
  /* a:visited {
  	color: #800080;
  } */
  /* a:hover,
  a:focus,
  a:active {
  	color: #191970;
  } */
  /* Forms
  --------------------------------------------- */
  /*--------------------------------------------------------------
  # Layouts
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Components
  --------------------------------------------------------------*/
  /* Navigation
  --------------------------------------------- */
  /* Small menu. */
  /* Posts and pages
  --------------------------------------------- */
  /* Comments
  --------------------------------------------- */
  /* Widgets
  --------------------------------------------- */
  /* Media
  --------------------------------------------- */
  /* Make sure logo link wraps around logo image. */
  /* Captions
  --------------------------------------------- */
  /* Galleries
  --------------------------------------------- */
  /*--------------------------------------------------------------
  # Plugins
  --------------------------------------------------------------*/
  /* Jetpack infinite scroll
  --------------------------------------------- */
  /* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
  /* Re-display the Theme Footer when Infinite Scroll has reached its end. */
  /*--------------------------------------------------------------
  # Utilities
  --------------------------------------------------------------*/
  /* Accessibility
  --------------------------------------------- */
  /* Text meant only for screen readers. */
  /* Do not show the outline on the skip link target. */
  /* Alignments
  --------------------------------------------- */
}
.single_content html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
.single_content body {
  margin: 0;
}
.single_content main {
  display: block;
}
.single_content h1 {
  font-size: 2em;
}
.single_content hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}
.single_content pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
.single_content a {
  background-color: transparent;
}
.single_content abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.single_content b,
.single_content strong {
  font-weight: bolder;
}
.single_content code,
.single_content kbd,
.single_content samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.single_content small {
  font-size: 80%;
}
.single_content sub,
.single_content sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.single_content sub {
  bottom: -0.25em;
}
.single_content sup {
  top: -0.5em;
}
.single_content img {
  border-style: none;
}
.single_content button,
.single_content input,
.single_content optgroup,
.single_content select,
.single_content textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
.single_content button,
.single_content input {
  overflow: visible;
}
.single_content button,
.single_content select {
  text-transform: none;
}
.single_content button,
.single_content [type=button],
.single_content [type=reset],
.single_content [type=submit] {
  -webkit-appearance: button;
}
.single_content button::-moz-focus-inner,
.single_content [type=button]::-moz-focus-inner,
.single_content [type=reset]::-moz-focus-inner,
.single_content [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.single_content button:-moz-focusring,
.single_content [type=button]:-moz-focusring,
.single_content [type=reset]:-moz-focusring,
.single_content [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.single_content fieldset {
  padding: 0.35em 0.75em 0.625em;
}
.single_content legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
.single_content progress {
  vertical-align: baseline;
}
.single_content textarea {
  overflow: auto;
}
.single_content [type=checkbox],
.single_content [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
.single_content [type=number]::-webkit-inner-spin-button,
.single_content [type=number]::-webkit-outer-spin-button {
  height: auto;
}
.single_content [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.single_content [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.single_content ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
.single_content details {
  display: block;
}
.single_content summary {
  display: list-item;
}
.single_content template {
  display: none;
}
.single_content [hidden] {
  display: none;
}
.single_content *,
.single_content *::before,
.single_content *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.single_content html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single_content body,
.single_content button,
.single_content input,
.single_content select,
.single_content optgroup,
.single_content textarea {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
}
.single_content h1,
.single_content h2,
.single_content h3,
.single_content h4,
.single_content h5,
.single_content h6 {
  clear: both;
}
.single_content dfn,
.single_content cite,
.single_content em,
.single_content i {
  font-style: italic;
}
.single_content blockquote {
  margin: 0 1.5em;
}
.single_content address {
  margin: 0 0 1.5em;
}
.single_content pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
.single_content code,
.single_content kbd,
.single_content tt,
.single_content var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
.single_content abbr,
.single_content acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
.single_content mark,
.single_content ins {
  background: #fff9c0;
  text-decoration: none;
}
.single_content big {
  font-size: 125%;
}
.single_content body {
  background: #fff;
}
.single_content hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
.single_content ul,
.single_content ol {
  margin: 0 0 1.5em 3em;
}
.single_content ul {
  list-style: disc;
}
.single_content ol {
  list-style: decimal;
}
.single_content li > ul,
.single_content li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
.single_content dt {
  font-weight: 700;
}
.single_content dd {
  margin: 0 1.5em 1.5em;
}
.single_content embed,
.single_content iframe,
.single_content object {
  max-width: 100%;
}
.single_content img {
  height: auto;
  max-width: 100%;
}
.single_content figure {
  margin: 1em 0;
}
.single_content table {
  margin: 0 0 1.5em;
  width: 100%;
}
.single_content a {
  color: #4169e1;
}
.single_content a:hover,
.single_content a:active {
  outline: 0;
}
.single_content button,
.single_content input[type=button],
.single_content input[type=reset],
.single_content input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
.single_content button:hover,
.single_content input[type=button]:hover,
.single_content input[type=reset]:hover,
.single_content input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
.single_content button:active,
.single_content button:focus,
.single_content input[type=button]:active,
.single_content input[type=button]:focus,
.single_content input[type=reset]:active,
.single_content input[type=reset]:focus,
.single_content input[type=submit]:active,
.single_content input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}
.single_content input[type=text],
.single_content input[type=email],
.single_content input[type=url],
.single_content input[type=password],
.single_content input[type=search],
.single_content input[type=number],
.single_content input[type=tel],
.single_content input[type=range],
.single_content input[type=date],
.single_content input[type=month],
.single_content input[type=week],
.single_content input[type=time],
.single_content input[type=datetime],
.single_content input[type=datetime-local],
.single_content input[type=color],
.single_content textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.single_content input[type=text]:focus,
.single_content input[type=email]:focus,
.single_content input[type=url]:focus,
.single_content input[type=password]:focus,
.single_content input[type=search]:focus,
.single_content input[type=number]:focus,
.single_content input[type=tel]:focus,
.single_content input[type=range]:focus,
.single_content input[type=date]:focus,
.single_content input[type=month]:focus,
.single_content input[type=week]:focus,
.single_content input[type=time]:focus,
.single_content input[type=datetime]:focus,
.single_content input[type=datetime-local]:focus,
.single_content input[type=color]:focus,
.single_content textarea:focus {
  color: #111;
}
.single_content select {
  border: 1px solid #ccc;
}
.single_content textarea {
  width: 100%;
}
.single_content .main-navigation {
  display: block;
  width: 100%;
}
.single_content .main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.single_content .main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.single_content .main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.single_content .main-navigation ul ul li:hover > ul,
.single_content .main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
.single_content .main-navigation ul ul a {
  width: 200px;
}
.single_content .main-navigation ul li:hover > ul,
.single_content .main-navigation ul li.focus > ul {
  left: auto;
}
.single_content .main-navigation li {
  position: relative;
}
.single_content .main-navigation a {
  display: block;
  text-decoration: none;
}
.single_content .menu-toggle,
.single_content .main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  .single_content .menu-toggle {
    display: none;
  }
  .single_content .main-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.single_content .wpcf7-response-output {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.single_content .site-main .comment-navigation,
.single_content .site-main .posts-navigation,
.single_content .site-main .post-navigation {
  margin: 0 0 1.5em;
}
.single_content .comment-navigation .nav-links,
.single_content .posts-navigation .nav-links,
.single_content .post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single_content .comment-navigation .nav-previous,
.single_content .posts-navigation .nav-previous,
.single_content .post-navigation .nav-previous {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}
.single_content .comment-navigation .nav-next,
.single_content .posts-navigation .nav-next,
.single_content .post-navigation .nav-next {
  text-align: end;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}
.single_content .sticky {
  display: block;
}
.single_content .post,
.single_content .page {
  margin: 0 0 1.5em;
}
.single_content .updated:not(.published) {
  display: none;
}
.single_content .page-content,
.single_content .entry-content,
.single_content .entry-summary {
  margin: 1.5em 0 0;
}
.single_content .page-links {
  clear: both;
  margin: 0 0 1.5em;
}
.single_content .comment-content a {
  word-wrap: break-word;
}
.single_content .bypostauthor {
  display: block;
}
.single_content .widget {
  margin: 0 0 1.5em;
}
.single_content .widget select {
  max-width: 100%;
}
.single_content .page-content .wp-smiley,
.single_content .entry-content .wp-smiley,
.single_content .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.single_content .custom-logo-link {
  display: inline-block;
}
.single_content .wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.single_content .wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single_content .wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.single_content .wp-caption-text {
  text-align: center;
}
.single_content .gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}
.single_content .gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.single_content .gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.single_content .gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.single_content .gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.single_content .gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.single_content .gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.single_content .gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.single_content .gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.single_content .gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.single_content .gallery-caption {
  display: block;
}
.single_content .infinite-scroll .posts-navigation,
.single_content .infinite-scroll.neverending .site-footer {
  display: none;
}
.single_content .infinity-end.neverending .site-footer {
  display: block;
}
.single_content .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.single_content .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.single_content #primary[tabindex="-1"]:focus {
  outline: 0;
}
.single_content .alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}
.single_content .alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.single_content .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

@media (min-width: 1200px) {
  .single_content {
    padding: 80px 0px 140px 0px;
  }
}



.single_media {
  box-sizing: border-box;
  padding: 126px 0px 44px 0px;
  font-size: 14px;
  line-height: 25px;
  color: #000000;
}

.single_media_block h1 {
  margin-bottom: 30px;
}

.single_media_block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 30px;
  /* Sections
  	 ========================================================================== */
  /**
   * Remove the margin in all browsers.
   */
  /**
   * Render the `main` element consistently in IE.
   */
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
  /* Grouping content
  	 ========================================================================== */
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  /* Text-level semantics
  	 ========================================================================== */
  /**
   * Remove the gray background on active links in IE 10.
   */
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  /**
   * Add the correct font size in all browsers.
   */
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  /* Embedded content
  	 ========================================================================== */
  /**
   * Remove the border on images inside links in IE 10.
   */
  /* Forms
  	 ========================================================================== */
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
  /**
   * Correct the padding in Firefox.
   */
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *		`fieldset` elements in all browsers.
   */
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  /* Interactive
  	 ========================================================================== */
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  /*
   * Add the correct display in all browsers.
   */
  /* Misc
  	 ========================================================================== */
  /**
   * Add the correct display in IE 10+.
   */
  /**
   * Add the correct display in IE 10.
   */
  /* Box sizing
  --------------------------------------------- */
  /* Inherit box-sizing to more easily change it's value on a component level.
  @link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  /*--------------------------------------------------------------
  # Base
  --------------------------------------------------------------*/
  /* Typography
  --------------------------------------------- */
  /* Elements
  --------------------------------------------- */
  /* Make sure embeds and iframes fit their containers. */
  /* Links
  --------------------------------------------- */
  /* a:visited {
  	color: #800080;
  } */
  /* a:hover,
  a:focus,
  a:active {
  	color: #191970;
  } */
  /* Forms
  --------------------------------------------- */
  /*--------------------------------------------------------------
  # Layouts
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Components
  --------------------------------------------------------------*/
  /* Navigation
  --------------------------------------------- */
  /* Small menu. */
  /* Posts and pages
  --------------------------------------------- */
  /* Comments
  --------------------------------------------- */
  /* Widgets
  --------------------------------------------- */
  /* Media
  --------------------------------------------- */
  /* Make sure logo link wraps around logo image. */
  /* Captions
  --------------------------------------------- */
  /* Galleries
  --------------------------------------------- */
  /*--------------------------------------------------------------
  # Plugins
  --------------------------------------------------------------*/
  /* Jetpack infinite scroll
  --------------------------------------------- */
  /* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
  /* Re-display the Theme Footer when Infinite Scroll has reached its end. */
  /*--------------------------------------------------------------
  # Utilities
  --------------------------------------------------------------*/
  /* Accessibility
  --------------------------------------------- */
  /* Text meant only for screen readers. */
  /* Do not show the outline on the skip link target. */
  /* Alignments
  --------------------------------------------- */
}
.single_media_block html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
.single_media_block body {
  margin: 0;
}
.single_media_block main {
  display: block;
}
.single_media_block h1 {
  font-size: 2em;
}
.single_media_block hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}
.single_media_block pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
.single_media_block a {
  background-color: transparent;
}
.single_media_block abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
.single_media_block b,
.single_media_block strong {
  font-weight: bolder;
}
.single_media_block code,
.single_media_block kbd,
.single_media_block samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
.single_media_block small {
  font-size: 80%;
}
.single_media_block sub,
.single_media_block sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.single_media_block sub {
  bottom: -0.25em;
}
.single_media_block sup {
  top: -0.5em;
}
.single_media_block img {
  border-style: none;
}
.single_media_block button,
.single_media_block input,
.single_media_block optgroup,
.single_media_block select,
.single_media_block textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
.single_media_block button,
.single_media_block input {
  overflow: visible;
}
.single_media_block button,
.single_media_block select {
  text-transform: none;
}
.single_media_block button,
.single_media_block [type=button],
.single_media_block [type=reset],
.single_media_block [type=submit] {
  -webkit-appearance: button;
}
.single_media_block button::-moz-focus-inner,
.single_media_block [type=button]::-moz-focus-inner,
.single_media_block [type=reset]::-moz-focus-inner,
.single_media_block [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
.single_media_block button:-moz-focusring,
.single_media_block [type=button]:-moz-focusring,
.single_media_block [type=reset]:-moz-focusring,
.single_media_block [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
.single_media_block fieldset {
  padding: 0.35em 0.75em 0.625em;
}
.single_media_block legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
.single_media_block progress {
  vertical-align: baseline;
}
.single_media_block textarea {
  overflow: auto;
}
.single_media_block [type=checkbox],
.single_media_block [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
.single_media_block [type=number]::-webkit-inner-spin-button,
.single_media_block [type=number]::-webkit-outer-spin-button {
  height: auto;
}
.single_media_block [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.single_media_block [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.single_media_block ::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
.single_media_block details {
  display: block;
}
.single_media_block summary {
  display: list-item;
}
.single_media_block template {
  display: none;
}
.single_media_block [hidden] {
  display: none;
}
.single_media_block *,
.single_media_block *::before,
.single_media_block *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.single_media_block html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single_media_block body,
.single_media_block button,
.single_media_block input,
.single_media_block select,
.single_media_block optgroup,
.single_media_block textarea {
  color: #404040;
  font-size: 1rem;
  line-height: 1.5;
}
.single_media_block h1,
.single_media_block h2,
.single_media_block h3,
.single_media_block h4,
.single_media_block h5,
.single_media_block h6 {
  clear: both;
  font-weight: 700;
}
.single_media_block dfn,
.single_media_block cite,
.single_media_block em,
.single_media_block i {
  font-style: italic;
}
.single_media_block blockquote {
  margin: 0 1.5em;
}
.single_media_block address {
  margin: 0 0 1.5em;
}
.single_media_block pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
.single_media_block code,
.single_media_block kbd,
.single_media_block tt,
.single_media_block var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
.single_media_block abbr,
.single_media_block acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
.single_media_block mark,
.single_media_block ins {
  background: #fff9c0;
  text-decoration: none;
}
.single_media_block big {
  font-size: 125%;
}
.single_media_block body {
  background: #fff;
}
.single_media_block hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
.single_media_block ul,
.single_media_block ol {
  margin: 0 0 1.5em 3em;
}
.single_media_block ul {
  list-style: disc;
}
.single_media_block ol {
  list-style: decimal;
}
.single_media_block li > ul,
.single_media_block li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
.single_media_block dt {
  font-weight: 700;
}
.single_media_block dd {
  margin: 0 1.5em 1.5em;
}
.single_media_block embed,
.single_media_block iframe,
.single_media_block object {
  max-width: 100%;
}
.single_media_block img {
  height: auto;
  max-width: 100%;
}
.single_media_block figure {
  margin: 1em 0;
}
.single_media_block table {
  margin: 0 0 1.5em;
  width: 100%;
}
.single_media_block a {
  color: #4169e1;
}
.single_media_block a:hover,
.single_media_block a:active {
  outline: 0;
}
.single_media_block button,
.single_media_block input[type=button],
.single_media_block input[type=reset],
.single_media_block input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
.single_media_block button:hover,
.single_media_block input[type=button]:hover,
.single_media_block input[type=reset]:hover,
.single_media_block input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}
.single_media_block button:active,
.single_media_block button:focus,
.single_media_block input[type=button]:active,
.single_media_block input[type=button]:focus,
.single_media_block input[type=reset]:active,
.single_media_block input[type=reset]:focus,
.single_media_block input[type=submit]:active,
.single_media_block input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}
.single_media_block input[type=text],
.single_media_block input[type=email],
.single_media_block input[type=url],
.single_media_block input[type=password],
.single_media_block input[type=search],
.single_media_block input[type=number],
.single_media_block input[type=tel],
.single_media_block input[type=range],
.single_media_block input[type=date],
.single_media_block input[type=month],
.single_media_block input[type=week],
.single_media_block input[type=time],
.single_media_block input[type=datetime],
.single_media_block input[type=datetime-local],
.single_media_block input[type=color],
.single_media_block textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.single_media_block input[type=text]:focus,
.single_media_block input[type=email]:focus,
.single_media_block input[type=url]:focus,
.single_media_block input[type=password]:focus,
.single_media_block input[type=search]:focus,
.single_media_block input[type=number]:focus,
.single_media_block input[type=tel]:focus,
.single_media_block input[type=range]:focus,
.single_media_block input[type=date]:focus,
.single_media_block input[type=month]:focus,
.single_media_block input[type=week]:focus,
.single_media_block input[type=time]:focus,
.single_media_block input[type=datetime]:focus,
.single_media_block input[type=datetime-local]:focus,
.single_media_block input[type=color]:focus,
.single_media_block textarea:focus {
  color: #111;
}
.single_media_block select {
  border: 1px solid #ccc;
}
.single_media_block textarea {
  width: 100%;
}
.single_media_block .main-navigation {
  display: block;
  width: 100%;
}
.single_media_block .main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.single_media_block .main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.single_media_block .main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.single_media_block .main-navigation ul ul li:hover > ul,
.single_media_block .main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}
.single_media_block .main-navigation ul ul a {
  width: 200px;
}
.single_media_block .main-navigation ul li:hover > ul,
.single_media_block .main-navigation ul li.focus > ul {
  left: auto;
}
.single_media_block .main-navigation li {
  position: relative;
}
.single_media_block .main-navigation a {
  display: block;
  text-decoration: none;
}
.single_media_block .menu-toggle,
.single_media_block .main-navigation.toggled ul {
  display: block;
}
@media screen and (min-width: 37.5em) {
  .single_media_block .menu-toggle {
    display: none;
  }
  .single_media_block .main-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.single_media_block .wpcf7-response-output {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.single_media_block .site-main .comment-navigation,
.single_media_block .site-main .posts-navigation,
.single_media_block .site-main .post-navigation {
  margin: 0 0 1.5em;
}
.single_media_block .comment-navigation .nav-links,
.single_media_block .posts-navigation .nav-links,
.single_media_block .post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single_media_block .comment-navigation .nav-previous,
.single_media_block .posts-navigation .nav-previous,
.single_media_block .post-navigation .nav-previous {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}
.single_media_block .comment-navigation .nav-next,
.single_media_block .posts-navigation .nav-next,
.single_media_block .post-navigation .nav-next {
  text-align: end;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}
.single_media_block .sticky {
  display: block;
}
.single_media_block .post,
.single_media_block .page {
  margin: 0 0 1.5em;
}
.single_media_block .updated:not(.published) {
  display: none;
}
.single_media_block .page-content,
.single_media_block .entry-content,
.single_media_block .entry-summary {
  margin: 1.5em 0 0;
}
.single_media_block .page-links {
  clear: both;
  margin: 0 0 1.5em;
}
.single_media_block .comment-content a {
  word-wrap: break-word;
}
.single_media_block .bypostauthor {
  display: block;
}
.single_media_block .widget {
  margin: 0 0 1.5em;
}
.single_media_block .widget select {
  max-width: 100%;
}
.single_media_block .page-content .wp-smiley,
.single_media_block .entry-content .wp-smiley,
.single_media_block .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.single_media_block .custom-logo-link {
  display: inline-block;
}
.single_media_block .wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.single_media_block .wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.single_media_block .wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.single_media_block .wp-caption-text {
  text-align: center;
}
.single_media_block .gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}
.single_media_block .gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.single_media_block .gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.single_media_block .gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.single_media_block .gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.single_media_block .gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.single_media_block .gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.single_media_block .gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}
.single_media_block .gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}
.single_media_block .gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}
.single_media_block .gallery-caption {
  display: block;
}
.single_media_block .infinite-scroll .posts-navigation,
.single_media_block .infinite-scroll.neverending .site-footer {
  display: none;
}
.single_media_block .infinity-end.neverending .site-footer {
  display: block;
}
.single_media_block .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.single_media_block .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.single_media_block #primary[tabindex="-1"]:focus {
  outline: 0;
}
.single_media_block .alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}
.single_media_block .alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.single_media_block .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}