@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  background: #eaeaea;
  color: black;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.newsgrid a {
  position: relative;
}
.newsgrid a span.sm_title {
  position: absolute;
  background: rgba(0, 0, 0, 0.3137254902);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  left: 0;
  top: 0;
  z-index: 10;
  font-size: 80%;
  color: white;
  padding: 8px 12px;
}

.newstext {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
.newstext .mainblock {
  background: #ef6b32;
  color: white;
  padding: 14px;
  margin-bottom: 40px;
}
.newstext h3 {
  font-size: 160%;
  font-weight: lighter;
  margin-bottom: 50px;
}
.newstext a.tophref {
  color: black;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 100px;
  display: block;
}
.newstext img {
  width: 100%;
  height: auto;
}
.newstext p {
  margin: 20px 0;
  text-align: justify;
  line-height: 1.7;
}

.loading {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url("/_assets/images/logo_white.svg") no-repeat center #004433;
  background-size: 200px;
  z-index: 1000;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  width: 100%;
}
.loading:after {
  width: 340px;
  height: 100vh;
  content: "";
  position: absolute;
  -webkit-transform: translate(0px, 0px) skewX(-20deg);
          transform: translate(0px, 0px) skewX(-20deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 68, 51, 0)), color-stop(50%, rgb(0, 68, 51)), to(rgba(0, 68, 51, 0)));
  background: linear-gradient(90deg, rgba(0, 68, 51, 0) 0%, rgb(0, 68, 51) 50%, rgba(0, 68, 51, 0) 100%);
  -webkit-animation: load 2s infinite;
          animation: load 2s infinite;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: translate(100vw, 10vw) skewX(-20deg);
            transform: translate(100vw, 10vw) skewX(-20deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: translate(100vw, 10vw) skewX(-20deg);
            transform: translate(100vw, 10vw) skewX(-20deg);
  }
}
.shrink {
  width: 80px;
  background: url("/_assets/images/logo_white.svg") no-repeat center;
  background-color: #ef6b32;
  pointer-events: none !important;
  background-size: 50px;
}
.shrink:after {
  opacity: 0 !important;
}

* {
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

canvas {
  /*        position: absolute;*/
  left: 0;
  top: 0;
  z-index: 4;
  width: 100% !important;
  height: 100dvh !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.bannerPage {
  position: relative;
}
.bannerPage:after {
  content: "";
  width: 100%;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(204, 204, 204)), to(rgba(204, 204, 204, 0)));
  background: linear-gradient(0deg, rgb(204, 204, 204) 0%, rgba(204, 204, 204, 0) 100%);
}
.bannerPage .name {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  padding: 40px 60px;
  font-size: 500%;
  color: white;
}
.bannerPage img {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.contentPage {
  max-width: 1300px;
  margin: 100px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 1fr;
  grid-template-columns: 400px 1fr;
}
.contentPage .textblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
  z-index: 2;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  width: 400px;
}
.contentPage .textblock .text {
  font-size: 100%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7333333333);
  color: #444;
  line-height: 1.4;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transform: translateX(40px) translateY(-40px);
          transform: translateX(40px) translateY(-40px);
}
.contentPage .textblock .links {
  font-size: 100%;
  color: white;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.1882352941);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.contentPage .textblock .links a {
  color: white;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contentPage .textblock .links svg {
  width: 20px;
  margin-right: 10px;
  display: inline-block;
  fill: #fff !important;
}
.contentPage .textblock .links .showaddr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
}
.contentPage .textblock .links .showaddr .addresshow {
  font-size: 90%;
  line-height: 1.4;
  margin-bottom: 10px;
  display: block;
}
.contentPage .imgBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contentPage .imgBlock img {
  width: 100%;
}

nav.mainpage {
  max-width: 600px;
  margin: auto;
}
nav.mainpage 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-top: 80px;
  gap: 10px;
}
nav.mainpage ul:hover a {
  opacity: 0.4;
}
nav.mainpage ul a {
  font-weight: lighter;
  color: white;
  text-decoration: none;
  font-size: 240%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: block;
}
nav.mainpage ul a:hover {
  opacity: 1;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.about {
  font-size: 120%;
  margin: 60px;
  padding: 100px;
  background: url("../images/about_bg.webp") no-repeat center #294f37;
  background-size: 150%;
  color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.about .about_content {
  max-width: 600px;
  font-size: 90%;
  line-height: 1.4;
  margin: auto;
}
.about h1 {
  font-size: 200%;
  font-weight: lighter;
  padding: 0;
  margin: 0;
}

.menuopen .label {
  background: #004433;
}
.menuopen .socials ul li span {
  opacity: 1 !important;
}
.menuopen .logo {
  background: transparent;
}
.menuopen nav {
  opacity: 1 !important;
  pointer-events: all !important;
  padding-left: 26px !important;
  position: absolute;
}
.menuopen .menu {
  width: 300px !important;
}
.menuopen .menu:after {
  opacity: 1 !important;
  background: url("../images/menu_bg2.jpg") left top !important;
  background-size: 100% auto !important;
  width: 300px !important;
}
.menuopen .page {
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
}

.w50 {
  position: absolute;
  background: linear-gradient(343deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  height: 100vh;
}

.logo {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  background: #EF6B32;
  margin-top: -80px;
}
.logo:hover img {
  width: 30px;
}
.logo svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  width: 23px;
  fill: white !important;
}

.hasLogo .logo {
  margin-top: 0px;
}

._4blocks {
  margin: 15px 0px !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
._4blocks .blogo {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  padding: 20px;
}
._4blocks .blogo img {
  max-width: 100px;
  width: 100%;
  margin: 0;
  height: auto;
}
._4blocks a {
  color: black;
  text-decoration: none;
}
._4blocks section {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 50vw;
  position: relative;
}
._4blocks section .blogo img {
  width: auto !important;
  height: auto;
}
._4blocks section:hover .black {
  opacity: 0;
}
._4blocks section:hover .imageLine img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
._4blocks section .imageLine img {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
._4blocks section .black {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2509803922);
  z-index: 2;
  pointer-events: none;
}
._4blocks section .about_content {
  background: rgba(255, 255, 255, 0.65);
  position: absolute;
  z-index: 3;
  padding: 20px;
  font-size: 80%;
  line-height: 1.5;
  left: 60px;
  top: 200px;
  width: 350px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
._4blocks section .about_content p {
  padding: 0;
  margin: 0;
}
._4blocks section .section_content {
  position: absolute;
  z-index: 2;
  left: 60px;
  top: 50px;
  width: 350px;
  height: 100px;
  color: white;
  text-align: left !important;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
._4blocks section .section_content b {
  font-size: 200%;
}
._4blocks section .section_content h2 {
  text-align: left;
  font-size: 200% !important;
}

.langs {
  position: absolute;
  right: -10px;
  top: -85px;
  margin-top: 40px;
  font-size: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.langs .selected {
  opacity: 0.5 !important;
}

.slider {
  height: 100vh;
}
.slider img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.page {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -ms-grid;
  display: grid;
  gap: 0px;
  -ms-grid-columns: 80px 0px 1fr;
  grid-template-columns: 80px 1fr;
}
.page .menu {
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
  position: fixed;
  top: 0;
  width: 80px;
  height: 100dvh !important;
  background: url("../images/menu_bg.jpg") no-repeat left top;
  background-size: 300px auto !important;
  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;
}
.page .menu:after {
  z-index: -1;
  opacity: 0;
  width: 60px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  content: "";
  position: absolute;
  background-size: 100% auto !important;
  left: 0;
  top: 0;
  height: 100vh;
}
.page .menu .socials {
  padding-bottom: 40px;
  width: 80px;
}
.page .menu .socials .pagename {
  letter-spacing: 5px;
  font-size: 120%;
  opacity: 0.5;
  padding-top: 30px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  color: white;
  width: 74px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page .menu .socials ul {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.page .menu .socials ul li {
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.page .menu .socials ul li span {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  color: white;
  font-size: 90%;
  margin-left: 10px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.page .menu .socials img,
.page .menu .socials svg {
  display: block;
  fill: white;
  margin: auto;
  width: 20px;
}
.page .menu nav {
  width: 250px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  padding-left: 0px;
}
.page .menu nav a {
  color: white;
  font-size: 120%;
  display: block;
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  white-space: nowrap;
}
.page .menu nav a:hover {
  opacity: 0.5;
}
.page .menu .navigation {
  width: 80px;
}
.page .menu .open_menu {
  padding: 6px;
  border-radius: 4px;
  width: 35px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 30px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page .menu .open_menu div {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #fff;
}
.page .menu a {
  color: white;
  text-decoration: none;
}
.page .content {
  position: relative;
}
.page .content.inside {
  background: #ccc;
  min-height: 100vh !important;
}
.page .content .txt {
  color: white;
  position: absolute;
  left: 60px;
  font-size: 400%;
  z-index: 3;
  top: 45px;
}
.page .content .logo_big {
  z-index: 3;
  opacity: 0.7;
  position: absolute;
  right: 60px;
  top: calc(100vh - 210px);
}
.page .content .logo_big img {
  width: 350px;
}
.page .content .mainbanner {
  min-height: 100vh;
}
.page .content .mainbanner .b img,
.page .content .mainbanner .video {
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.kurbansaid {
  position: relative;
}

.videoguide {
  position: sticky;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  right: 50px;
  top: 200px;
  padding-right: 100px;
}
.videoguide video {
  margin-top: 100px;
  width: 200px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1000px;
}
.videoguide video:hover {
  -webkit-transform: scale(1.45);
          transform: scale(1.45);
}

.btms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 100px;
  margin-top: 50px !important;
}
.btms a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.blog_txt {
  font-size: 120%;
  margin-top: 40px;
}
.blog_txt p {
  line-height: 1.7;
  margin-bottom: 30px;
}
.blog_txt p.big {
  padding: 50px;
  font-size: 140%;
  margin-bottom: 20px;
}

.imageLine {
  padding: 50px !important;
  margin: 40px 0;
  margin-bottom: 0px;
}

.label {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #EF6B32;
  color: white;
  padding: 10px;
  width: 200px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section {
  padding-top: 50px;
}
section .mapouter {
  -webkit-filter: grayscale(75%);
          filter: grayscale(75%);
}
section .blog {
  max-width: 1000px;
  margin: auto;
}
section img {
  max-width: 100%;
  height: auto;
}
section h1 {
  font-size: 200%;
  font-weight: lighter;
  margin: 0;
  padding: 0;
  text-align: center;
}
section h2 {
  font-size: 300%;
  font-weight: lighter;
  margin: 0;
  padding: 0;
  text-align: center;
}
section .blogo img {
  height: 120px;
  margin: 70px auto;
  display: block;
}

.film a {
  height: 230px !important;
}
.film img {
  height: 230px !important;
}

.flex {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  text-align: center;
}
.flex .grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.flex .grid a {
  -webkit-transition: 2s;
  transition: 2s;
  opacity: 0;
  position: relative;
  width: 400px;
  height: 280px;
  overflow: hidden;
}
.flex .grid a:hover h2:after {
  width: 100%;
}
.flex .grid a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.flex .grid a h2 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  background: rgba(0, 68, 51, 0.2509803922);
  -webkit-backdrop-filter: blur(6px) !important;
          backdrop-filter: blur(6px) !important;
  width: 100%;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: 300;
  margin: 0;
}
.flex .grid a h2:after {
  content: "";
  width: 0px;
  background: #f06b32;
  height: 100%;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.flex .grid a img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}

.mapouter {
  -webkit-filter: grayscale(60);
          filter: grayscale(60);
}

.contacts {
  position: absolute;
  left: 10vw;
  top: 10vw;
  z-index: 2;
  height: 25vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gaP: 10px;
  min-height: 200px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts .cdiv {
  padding: 40px;
  background: rgba(0, 68, 51, 0.5647058824);
  color: white;
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  font-size: 110%;
  width: 400px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contacts .cdiv h3 {
  font-size: 120%;
  font-weight: 400;
}
.contacts .cdiv a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.contacts .cdiv p {
  font-size: 90%;
  padding: 0;
  margin: 0;
}

.film .vbanner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40vh;
}
.film .vbanner img {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
}
.film video,
.film .v img {
  position: static;
  z-index: 1;
  width: 100%;
  height: 30vh !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 60px !important;
}

@media screen and (max-width: 500px) {
  ._4blocks {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  ._4blocks .blogo {
    padding: 10px !important;
  }
  ._4blocks .blogo img {
    height: 30px !important;
  }
  ._4blocks section {
    height: 100vw !important;
  }
  ._4blocks .section_content {
    left: 20px !important;
    top: 20px !important;
  }
  .newstext {
    background: #fff;
  }
  .newstext h3 {
    padding-left: 70px;
    margin-top: 0;
  }
  .flex {
    padding: 0;
  }
  .flex .grid {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .flex .grid a {
    width: 100vw;
  }
  .bannerPage .name {
    text-align: center;
    width: 100%;
    padding: 20px;
    font-size: 200%;
  }
  .bannerPage img {
    height: 30vh;
  }
  .contentPage {
    margin: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .contentPage .textblock {
    gap: 0;
    position: static;
    width: 100%;
  }
  .contentPage .textblock .links {
    position: static;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
  .contentPage .textblock .text {
    -webkit-transform: none;
            transform: none;
  }
  .about {
    margin-bottom: 60px !important;
    padding: 20px !important;
    margin: 0;
    font-size: 100%;
    background-size: 380%;
  }
  nav.mainpage ul {
    padding: 0 0 40px 0;
  }
  nav.mainpage ul a {
    font-size: 150% !important;
  }
  .film .vbanner {
    height: 30vh;
  }
  .film .vbanner video {
    height: 30vh;
  }
  .film .vbanner img {
    height: 200px !important;
  }
  .contacts {
    left: 0;
    bottom: 0;
    top: auto;
    height: auto !important;
  }
  .contacts .cdiv {
    width: 100%;
    padding-left: 100px;
  }
  .logo {
    background: transparent;
  }
  .logo svg {
    fill: #EF6B32 !important;
  }
  .hasLogo .socials ul {
    width: 40px;
    border-radius: 10px;
    padding: 14px 0 !important;
    background: #EF6B32 !important;
  }
  .hasLogo .socials ul a,
  .hasLogo .socials ul li {
    margin-left: 5px !important;
  }
  .hasLogo .open_menu {
    background: #EF6B32;
  }
  .holder,
  .w50,
  .videoguide {
    display: none !important;
  }
  .page {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
  }
  .page .menu {
    position: fixed;
    z-index: 100;
    background: transparent;
  }
  .page .content section {
    padding: 0 20px;
  }
  .page .content section .imageLine {
    margin-bottom: 40px;
    padding: 0 !important;
  }
  .page .content section .blog_txt {
    font-size: 100%;
    text-align: justify;
  }
  .page .content section .blog_txt p.big {
    padding: 0;
  }
  .page .content section .btms {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .page .content section h1 {
    font-size: 100%;
  }
  .page .content section h2 {
    font-size: 240%;
    margin: 10px 0;
  }
  .page .content .logo_big {
    bottom: 90px;
    top: inherit !important;
    right: 40px;
  }
  .page .content .logo_big img {
    width: 200px;
  }
  .page .content .txt {
    top: calc(50% - 70px);
    color: white;
    font-size: 300%;
    left: 30px;
  }
  .page .content .label {
    display: none;
  }
  .page .content .mainbanner {
    height: 100dvh;
    margin-bottom: 0px;
    position: relative;
  }
  .page .content .mainbanner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100dvh;
    width: 100px;
    pointer-events: none;
  }
  .page .content .mainbanner video {
    height: 100dvh;
  }
}