@font-face {
  font-family: "Graphik Regular";
  src: url("../fonts/graphikLCG/Graphik-Regular-Web.woff2") format("woff2"), url("../fonts/graphikLCG/Graphik-Regular-Web.woff") format("woff"), url("../fonts/graphikLCG/Graphik-Regular-Web.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Kazimir Regular";
  src: url("../fonts/kazimir/Kazimir-Regular-Web.woff2") format("woff2"), url("../fonts/kazimir/Kazimir-Regular-Web.woff") format("woff"), url("../fonts/kazimir/Kazimir-Regular-Web.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.btn-primary {
  background: rgb(138, 94, 59);
  color: rgb(255, 255, 255);
  padding: 0px 20px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: "Graphik Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  transition: 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: rgb(162, 107, 63);
  color: rgb(255, 255, 255);
}
.btn-primary:active {
  background: rgb(162, 107, 63);
  color: rgb(255, 255, 255);
}
.btn-primary:disabled {
  background: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

.btn-primary_white {
  color: rgb(138, 94, 59);
  background: rgb(255, 255, 255);
  padding: 0px 20px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: "Graphik Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: 0.2s;
}
.btn-primary_white:hover {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.btn-primary_white:active {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.btn-primary_white:disabled {
  background: rgb(255, 255, 255);
  color: rgba(0, 0, 0, 0.2);
}

.btn-ghost {
  color: rgb(138, 94, 59);
  padding: 0px 20px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: "Graphik Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: 0.2s;
}
.btn-ghost:hover {
  background: rgb(255, 255, 255);
  color: rgb(138, 94, 59);
}
.btn-ghost:active {
  background: transparent;
  color: rgb(0, 0, 0);
}
.btn-ghost:disabled {
  background: transparent;
  color: rgba(138, 94, 59, 0.4);
}

.btn-ghost_small {
  border: 0;
  margin: 0 auto;
  text-align: center;
  background: transparent;
  padding: 0;
  color: rgb(138, 94, 59);
  font-family: "Graphik Regular";
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
}
.btn-ghost_small:hover {
  background: rgb(255, 255, 255);
  color: rgb(138, 94, 59);
}
.btn-ghost_small:active {
  background: transparent;
  color: rgb(0, 0, 0);
}
.btn-ghost_small:disabled {
  background: transparent;
  color: rgba(138, 94, 59, 0.4);
}

@media screen and (max-width: 1220px) {
  .btn-primary {
    padding: 0px 20px;
    height: 40px;
    font-family: "Graphik Regular";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.005em;
  }
  .btn-primary_white {
    padding: 0px 20px;
    height: 40px;
    font-family: "Graphik Regular";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.005em;
  }
  .btn-ghost {
    padding: 0px 20px;
    height: 40px;
    font-family: "Graphik Regular";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.005em;
  }
}
.btn-arrow {
  width: 16px;
  height: 16px;
  transition: 0.2s;
  display: flex;
  align-items: center;
}
.btn-arrow svg path {
  fill: rgb(255, 255, 255);
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scale-rightup {
  0% {
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scale-rightdown {
  0% {
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    transform: translateX(100%);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes openBlock {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
  }
}
html,
body {
  background: rgb(255, 255, 255);
  font-family: "Graphik Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: rgb(0, 0, 0);
  font-weight: 400;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 10px 0px;
}

a {
  color: rgb(138, 94, 59);
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  color: rgb(0, 0, 0);
}

section {
  margin-top: 120px;
}

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

#main {
  background: rgb(245, 242, 235);
  width: 100%;
  height: 100vh;
}
@supports (height: 100dvh) {
  #main {
    height: 100dvh;
  }
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 3;
  transition: 0.3s;
}
.menu.active {
  display: flex;
  position: fixed;
  animation: scale-rightup 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.menu.inactive {
  display: flex;
  animation: scale-rightdown 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.menu.fixed {
  position: fixed;
  top: 0px;
  margin-top: 20px;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, 0);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2em;
  padding: 4px;
}

.menu_mobile {
  right: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}
.menu_mobile.fixed {
  position: relative;
  position: fixed;
}
.menu_mobile.fixed::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: 0.2s;
}
.menu_mobile.fixed svg {
  position: relative;
  z-index: 3;
  transition: 0.2s;
}

.menu_desctiption_mob {
  display: none;
}

.menu_item.selected {
  background: transparent;
  color: rgb(0, 0, 0);
}

.menu_mobile {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 8px;
  display: none;
}

.burger-menu {
  z-index: 9;
  cursor: pointer;
  transition: 0.3s;
}
.burger-menu:hover {
  opacity: 0.5;
}
.burger-menu.active {
  transform: rotate(-270deg);
}

.main_screen {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
}

.zones {
  display: flex;
  width: 100%;
  height: 100vh;
}
@supports (height: 100dvh) {
  .zones {
    height: 100dvh;
  }
}

.zone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-size: 18px;
  position: relative;
}

.diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.half {
  position: relative;
  overflow: hidden;
  width: 175px;
  height: 320px;
}
.half.left {
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 55% 100%, 0% 50%);
  margin-right: 10px;
}
.half.right {
  clip-path: polygon(0 0, 45% 0, 100% 50%, 45% 100%, 0 100%);
  margin-left: 10px;
}
.half .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.half .image.old {
  opacity: 1;
  z-index: 1;
}
.half .image.new {
  opacity: 0;
  z-index: 2;
}

.main_title {
  font-family: "Kazimir Regular";
  font-size: 34px;
  line-height: 38px;
  letter-spacing: -0.01em;
  position: absolute;
  left: 40px;
  top: 40px;
  max-width: 210px;
  margin: 0;
}

.main_adress {
  position: absolute;
  right: 40px;
  top: 40px;
  max-width: 210px;
  font-family: "Graphik Regular";
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
}

.news_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Graphik Regular";
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
}

.news_header_name {
  display: flex;
  align-items: center;
}
.news_header_name img {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.news_header_subscribe {
  display: flex;
  align-items: center;
  padding: 0;
}
.news_header_subscribe svg {
  transition: 0.2s;
  margin-right: 10px;
}
.news_header_subscribe svg path {
  transition: 0.2s;
  fill: rgb(138, 94, 59);
}
.news_header_subscribe:hover {
  color: rgb(0, 0, 0);
}
.news_header_subscribe:hover svg path {
  fill: rgb(0, 0, 0);
}

.news_list {
  margin-top: 40px;
  transition: 0.3s;
  width: 100%;
  clip-path: content-box;
  overflow: hidden;
  position: relative;
}

.news_item {
  position: relative;
  margin: 1px 0px;
  transition: 0.3s;
  clip-path: content-box;
  cursor: pointer;
}
.news_item:hover .news__blank-icon {
  opacity: 1;
}

.news_item_blank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  background: rgb(237, 239, 242);
}

.news__blank-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.news__blank-informer {
  width: calc(100% - 60px);
}

.news__blank-date {
  margin-right: 32px;
  position: relative;
}
.news__blank-date::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(0, 0, 0);
  top: 50%;
  right: -20px;
  transform: translate(-50%, -50%);
}

.news__blank-icon {
  width: 28px;
  height: 28px;
  background-size: cover;
  opacity: 0.5;
  transition: 0.2s;
}
.news__blank-icon:hover {
  opacity: 1;
}

.news__blank-name {
  font-family: "Kazimir Regular";
  font-size: 34px;
  line-height: 38px;
  letter-spacing: -0.01em;
  color: rgb(0, 0, 0);
}

.news_item_block {
  position: relative;
  top: 0;
  left: 0;
  padding: 32px 36px 44px 36px;
  width: calc(100% - 72px);
  color: rgb(255, 255, 255);
  display: none;
  justify-content: space-between;
  cursor: alias;
}
.news_item_block.active {
  display: flex;
  animation: openBlock 0.3s;
}

.news__block-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.news__block-date {
  margin-right: 32px;
  position: relative;
}
.news__block-date::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  top: 50%;
  right: -20px;
  transform: translate(-50%, -50%);
}

.no-action {
  cursor: auto;
}

.news__block-img {
  cursor: alias;
}

.news__block-informer {
  max-width: 650px;
}

.news__block-name {
  font-family: "Kazimir Regular";
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.01em;
}

.news__block-descript {
  margin-top: 20px;
  margin-bottom: 48px;
}

.news__block-btn {
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.2s;
  position: relative;
}
.news__block-btn .btn-arrow {
  width: 0px;
  margin-left: 0;
}
.news__block-btn:hover {
  padding: 0px 16px 0px 20px;
}
.news__block-btn:hover .btn-arrow {
  width: 14px;
  margin-left: 10px;
}

.expansion_block {
  background: rgb(245, 242, 235);
  width: 100%;
  padding-bottom: 55px;
  text-align: center;
  position: relative;
}

.expansion_img {
  height: 160px;
  width: 368px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
  margin: 0 auto;
}
.expansion_img img {
  width: 100%;
}

.expansion_content {
  text-align: center;
}

.expansion_title {
  font-family: "Kazimir Regular";
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.01em;
  margin: 0 auto;
  margin-top: 48px;
  max-width: 80%;
}

.expansion_descript {
  margin: 0 auto;
  margin-top: 15px;
  max-width: 640px;
}
.expansion_descript p {
  margin: 10px 0px 0px 0px;
}
.expansion_descript p:first-child {
  margin: 0px;
}

.expansion_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 16px;
}

.expansion_label {
  display: flex;
  align-items: center;
  position: absolute;
  top: 36px;
  left: 36px;
}

.expansion_label_icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 12px;
  background-color: #E62C2C;
  animation: blink 2s infinite both;
}

.promovideo_block {
  width: 100%;
  height: 675px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promovideo_block video {
  height: 100%;
}

.maininformer_text {
  font-family: "Kazimir Regular";
  font-size: 56px;
  line-height: 64px;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 auto;
  max-width: 950px;
}

.maininformer_author {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.maininformer_author-desc {
  margin-left: 32px;
  position: relative;
}
.maininformer_author-desc::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: -16px;
  background: rgb(138, 94, 59);
}

#cards {
  margin-bottom: -110px;
}

.cards_container {
  display: flex;
  justify-content: center;
}

.cards_list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cards_content {
  z-index: 1;
  position: relative;
}

.cards_item {
  padding: 32px 64px 32px 32px;
  width: 288px;
  height: 400px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.cards_item:hover .cards_arrow {
  left: 52px;
}

.cards_header {
  font-family: "Kazimir Regular";
  font-size: 34px;
  line-height: 38px;
  letter-spacing: -0.01em;
  color: rgb(255, 255, 255);
}

.cards_descript {
  color: rgb(255, 255, 255);
  margin-top: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cards_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
}
.cards_bg img {
  width: 100%;
  display: block;
}

.cards_arrow {
  position: absolute;
  left: 40px;
  bottom: 40px;
  transition: 0.2s;
}
.cards_arrow svg {
  width: 28px;
  height: 28px;
}
.cards_arrow svg path {
  fill: rgb(255, 255, 255);
}

.card_tg .cards_header {
  color: rgb(0, 0, 0);
}
.card_tg .cards_descript {
  color: rgb(0, 0, 0);
}
.card_tg .cards_bg {
  width: 100%;
  height: 100%;
}
.card_tg .cards_bg .cards_bg_desktop {
  height: 100%;
  display: block;
  background-size: cover;
}
.card_tg .cards_arrow svg path {
  fill: rgb(0, 0, 0);
}

#footer {
  background: rgb(237, 239, 242);
  padding: 110px 0px 50px 0px;
}

.footer_container {
  margin-top: 120px;
  text-align: center;
  font-family: "Graphik Regular";
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
}

.footer_logo {
  width: 32px;
  height: 32px;
  display: block;
  margin: 16px auto;
}
.footer_logo img {
  width: 100%;
}

.footer_link {
  color: black;
  position: relative;
}
.footer_link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
.footer_link:hover {
  color: #8a5e3b;
}
.footer_link:hover::after {
  background: rgba(138, 94, 59, 0.15);
  width: 50%;
  left: 50%;
  transform: translate(-50%, 0);
}

.cards_decader {
  display: block;
  width: 32px;
}

.cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 16px;
  width: 199px;
  height: 74px;
  text-align: center;
  z-index: 99;
  display: none;
  animation: fade-in 1s;
}
.cookies span {
  display: block;
  text-align: center;
  font-family: "Graphik Regular";
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0;
}
.cookies button {
  width: 100%;
  padding: 6px 0px;
  cursor: pointer;
}

@media screen and (max-width: 1220px) {
  body {
    font-family: "Graphik Regular";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.005em;
  }
  .wrapper {
    max-width: calc(100% - 80px);
  }
  .news__block-name {
    font-family: "Kazimir Regular";
    font-size: 31px;
    line-height: 36px;
    letter-spacing: -0.01em;
  }
  .news__block-img img {
    width: 200px;
    height: 200px;
  }
  .news__block-descript {
    font-family: "Graphik Regular";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.005em;
  }
  .news_item_block {
    padding: 28px 24px 36px 24px;
    width: calc(100% - 48px);
  }
  .news__blank-name {
    font-family: "Kazimir Regular";
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }
  section {
    margin-top: 65px;
  }
  .maininformer_text {
    font-family: "Kazimir Regular";
    font-size: 34px;
    line-height: 38px;
    letter-spacing: -0.01em;
    max-width: 100%;
  }
  .maininformer_author {
    margin-top: 24px;
  }
  .expansion_label {
    top: 180px;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  #cards {
    margin-bottom: -130px;
  }
}
@media screen and (max-width: 1080px) {
  .cards_list {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }
  .cards_list::-webkit-scrollbar {
    display: none;
  }
  .cards_list.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
  }
  .cards_list.dragging a {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .cards_item {
    scroll-snap-align: start;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: calc(100% - 64px);
  }
  .main_title {
    font-family: "Kazimir Regular";
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
    left: 32px;
    top: 32px;
    max-width: 150px;
  }
  .main_adress {
    right: auto;
    bottom: 32px;
    top: auto;
    left: 32px;
    max-width: 210px;
    font-family: "Graphik Regular";
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
  }
  .menu_mobile {
    display: block;
  }
  .menu {
    display: none;
    background: rgba(255, 255, 255, 0.85);
    width: 360px;
    height: calc(100vh - 100px);
    top: 0;
    left: auto;
    transform: none;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 100px 20px 0px 20px;
  }
  .menu::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .menu_item.btn-ghost {
    width: 100%;
    text-align: center;
    height: 60px;
    padding: 0;
    font-family: "Graphik Regular";
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.005em;
  }
  .menu_item.btn-ghost:hover {
    color: rgb(0, 0, 0);
    background: transparent;
  }
  .menu_desctiption_mob {
    display: block;
    font-family: "Graphik Regular";
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    align-items: center;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .menu_desctiption_mob img {
    display: block;
    margin: 12px auto;
    width: 24px;
    height: 24px;
  }
  .half {
    width: 110px;
    height: 200px;
  }
  .half.left {
    clip-path: polygon(55% 0, 100% 0, 100% 100%, 55% 100%, 0% 50%);
    margin-right: 5px;
  }
  .half.right {
    clip-path: polygon(0 0, 45% 0, 100% 50%, 45% 100%, 0 100%);
    margin-left: 5px;
  }
  .news_list {
    margin-top: 34px;
  }
  .news_header_name {
    width: 100%;
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }
  .news_header_name img {
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
  }
  .news_header_subscribe {
    order: 3;
    margin-top: 30px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .news__block-img {
    position: absolute;
    right: 20px;
  }
  .news__block-img img {
    width: 104px;
    height: 104px;
  }
  .news__block-name {
    margin-right: 120px;
  }
  .expansion_label {
    top: 110px;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  .expansion_title {
    font-family: "Kazimir Regular";
    font-size: 31px;
    line-height: 36px;
    letter-spacing: -0.01em;
    margin-top: 50px;
  }
  .expansion_img {
    height: 100px;
    width: 200px;
  }
  .expansion_descript {
    margin-top: 20px;
  }
  .expansion_btns {
    margin-top: 32px;
    gap: 10px;
  }
  .expansion_block {
    padding-bottom: 24px;
  }
  .maininformer_text {
    font-family: "Kazimir Regular";
    font-size: 31px;
    line-height: 36px;
    letter-spacing: -0.01em;
    max-width: 640px;
  }
  .maininformer_author {
    font-family: "Graphik Regular";
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.005em;
  }
  .expansion_descript {
    max-width: 80%;
  }
  .cards_arrow svg {
    width: 24px;
    height: 24px;
  }
  .cards_list {
    gap: 20px;
    transition: 0.2s;
  }
  .cards_item {
    padding: 28px 64px 28px 24px;
    width: 232px;
    height: 304px;
    transition: 0.2s;
  }
  .cards_header {
    font-family: "Kazimir Regular";
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0;
  }
  .cards_arrow {
    left: 24px;
    bottom: 28px;
  }
  .cards_bg {
    width: 240px;
  }
  .card_tg .cards_bg img {
    width: auto;
  }
  .footer_logo {
    width: 28px;
    height: 28px;
  }
  .promovideo_block {
    height: 480px;
  }
  .news_header_name img {
    margin-right: 0px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    max-width: calc(100% - 40px);
  }
  .menu {
    width: calc(100% - 40px);
    padding: 100px 20px 0px 20px;
  }
  .main_title {
    left: 20px;
    top: 20px;
  }
  .main_adress {
    bottom: 24px;
    left: 20px;
  }
  .menu_mobile {
    right: 16px;
    top: 16px;
  }
  .news_item_block {
    padding: 24px 20px 32px 20px;
    width: calc(100% - 40px);
  }
  .news__block-img {
    position: absolute;
    right: 20px;
  }
  .news__block-img img {
    width: 104px;
    height: 104px;
  }
  .news__block-name {
    width: calc(100% - 104px);
    margin-right: auto;
  }
  .news__block-btn {
    justify-content: center;
    width: auto;
    text-align: center;
  }
  .news__block-btn:hover .btn-arrow {
    width: 14px;
    height: 14px;
    margin-left: 10px;
  }
  .news__block-descript {
    margin-bottom: 32px;
  }
  .news_item_blank {
    padding: 24px 20px;
  }
  .news__blank-top {
    margin-bottom: 12px;
  }
  section {
    margin-top: 56px;
  }
  .expansion_block {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .expansion_btns .btn-primary {
    width: 100%;
  }
  .expansion_btns .btn-ghost {
    width: 100%;
  }
  .expansion_title {
    max-width: 100%;
    margin-top: 70px;
  }
  .expansion_descript {
    max-width: 100%;
  }
  .expansion_label {
    top: 130px;
  }
  .expansion_img {
    height: 100px;
    width: 230px;
  }
  .maininformer_author {
    font-family: "Graphik Regular";
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.005em;
  }
  .maininformer_text {
    padding: 0px 20px;
  }
  .cards_item {
    padding: 20px 20px 20px 20px;
    width: calc(100% - 40px);
    height: 144px;
    transition: 0.2s;
  }
  .cards_item:hover .cards_arrow {
    left: auto;
    bottom: auto;
    top: 20px;
    right: 12px;
  }
  .cards_descript {
    width: 184px;
  }
  .card_tg .cards_bg {
    width: 144px;
    height: 144px;
  }
  .card_tg .cards_bg img {
    width: 100%;
  }
  .card_tg .cards_bg .cards_bg_desktop {
    display: none;
  }
  .card_tg .cards_bg .cards_bg_mobile {
    display: block;
  }
  .cards_arrow {
    left: auto;
    bottom: auto;
    top: 20px;
    right: 20px;
  }
  .cards_bg {
    width: 144px;
  }
  .cards_list {
    gap: 10px;
  }
  .footer_container {
    margin-top: 100px;
  }
  .promovideo_block {
    height: 360px;
  }
  .cards_list {
    flex-wrap: wrap;
  }
}