/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap");

/* CUSTOM PRELOAD */
#loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #fff;
  -webkit-animation: loader 0.7s linear;
  animation: loader 0.7s linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.dark #loader-wrapper{background: #131313;}
@-webkit-keyframes loader {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}

@keyframes loader {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    display: none;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
  }
}

/* RESET STYLES */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
}

.clear {
  clear: both;
  overflow: hidden;
  height: 0px;
  font-size: 0px;
  display: block;
}

html:not(.touch-screen)::-webkit-scrollbar,
html:not(.touch-screen) *::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}

html:not(.touch-screen)::-webkit-scrollbar-track,
html:not(.touch-screen) *::-webkit-scrollbar-track {
  background: #fff;
}

html:not(.touch-screen)::-webkit-scrollbar-thumb,
html:not(.touch-screen) *::-webkit-scrollbar-thumb {
  background: #008fd2;
  border-radius: 2px;
}

:focus,
:active,
:visited {
  outline: none;
}

/* GLOBAL SETTINGS */
:root {
  --bs-gutter-x: 15px;
}
html {
  height: 100%;
  overflow-x: hidden;
}

body {
  height: 100%;
  overflow-x: hidden;
}
.dark body {
  background: #131313;
}

#content-block {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

html.overflow-hidden body {
  overflow: hidden;
}

.swiper-container.swiper-initialized {
  opacity: 1;
}

.swiper-slide:not(:first-child) {
  display: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

.container {
  margin: 0 auto;
}

/*spacers*/
.spacer {
  clear: both;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.spacer-100 {
  height: 100px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.spacer-50 {
  height: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.spacer-30 {
  height: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*media*/
@media (max-width: 1440px) {
  .spacer-100 {
    height: 80px;
  }

  .spacer-50 {
    height: 40px;
  }
  .spacer-30 {
    height: 25px;
  }
}

@media (max-width: 1200px) {
  .spacer-100 {
    height: 70px;
  }
}

@media (max-width: 991px) {
  .spacer-100 {
    height: 60px;
  }

  .spacer-50 {
    height: 30px;
  }
  .spacer-30 {
    height: 15px;
  }
}

@media (max-width: 767px) {
  .spacer-100 {
    height: 40px;
  }

  .spacer-100.home-page {
    height: 20px;
  }
}

/* TYPOGRAPHY */
body * {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 300;
}

main {
  position: relative;
  z-index: 2;
  height: inherit;
}

b {
  font-weight: 500;
}

strong {
  font-weight: 600;
}

.bold-weight {
  font-weight: 700;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: inherit;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

svg path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:link,
a:visited,
a:active,
a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

.text > img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text ul li,
.text ol li {
  position: relative;
}

.text ul li {
  margin-bottom: 25px;
  padding-left: 30px;
}

.text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #1f1f1f;
  border-radius: 100%;
}

.text ol {
  counter-reset: number;
}

.text ol li {
  padding-left: 25px;
  margin-bottom: 10px;
}

.text ol li:before {
  color: #1f1f1f;
  font-weight: 600;
  font-size: 18px;
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
}

.text ul li:last-child,
.text ol li:last-child {
  margin-bottom: 0;
}

.text ul li span,
.text ol li span {
  color: #1a1a1a;
  font-weight: 500;
}

blockquote {
  position: relative;
  font-family: "Audiowide";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.27em;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 50px 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #1f1f1f;
}
blockquote * {
  font-family: "Audiowide";
}

blockquote::after {
  content: "";
  display: block;
  width: 32px;
  height: 27px;
  background-image: url(../img/icons/blockquote.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  top: -15px;
}

blockquote p:not(blockquote p:last-child) {
  margin-bottom: 20px;
}

blockquote span {
  color: #299fde;
  font-weight: 400;
}

/* media */
@media (max-width: 1366px) {
  blockquote {
    font-size: 32px;
    padding: 40px 20px;
    border-radius: 5px;
  }
}

@media (max-width: 1199px) {
  blockquote {
    font-size: 30px;
  }

  .text ul li {
    margin-bottom: 15px;
  }

  .text ol li:before {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .text ul li {
    margin-bottom: 15px;
  }

  blockquote {
    font-size: 26px;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .text ul li {
    padding-left: 15px;
  }

  .text ul li:before {
    width: 4px;
    height: 4px;
  }

  .text ol li:before {
    font-size: 14px;
  }

  blockquote::before,
  blockquote::after {
    content: none;
  }
}

/* titles */
h1,
.h1 {
  font-size: 50px;
  line-height: 1em;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 1.19em;
}

h3,
.h3 {
  font-size: 22px;
  line-height: 1.31em;
}

h4,
.h4 {
  font-size: 26px;
  line-height: 1.34em;
}

h5,
.h5 {
  font-size: 18px;
  line-height: 1.1em;
}

h6,
.h6 {
  font-size: 16px;
  line-height: 1.1em;
}

@media (max-width: 1440px) {
  h1,
  .h1 {
    font-size: 44px;
  }

  h2,
  .h2 {
    font-size: 26px;
  }

  h3,
  .h3 {
    font-size: 17px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

}
@media (max-width:1440px) and (min-width:1200px) {
  h1,
  .h1 {
    font-size: 35px;
  }

  h2,
  .h2 {
    font-size: 24px;
  }
  h3,
  .h3 {
    font-size: 16px;
  }
   h4,
  .h4 {
    font-size: 15px;
  }
  h5, .h5{
    font-size: 14px;
  }
  h6, .h6{
    font-size: 13px;
  }
}

@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  h1,
  .h1 {
    font-size: 30px;
  }

  h2,
  .h2 {
    font-size: 24px;
  }

  h3,
  .h3 {
    font-size: 19px;
  }

  h4,
  .h4 {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 28px;
  }

  h2,
  .h2 {
    font-size: 20px;
  }

  h3,
  .h3 {
    font-size: 16px;
  }

  h4,
  .h4 {
    font-size: 14px;
  }
}

/*text-line*/
.text-line-1 {
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-2 {
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-3 {
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-4 {
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-line-5 {
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/*TITLES  */
.title {
  font-family: "Audiowide", cursive;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.title.type-2 {
  font-family: "Be Vietnam Pro", sans-serif;
  text-transform: none;
}

/* font weight */
.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 500;
}

/* text */
.text,
.text p {
  font-size: clamp(14px, 1.27vw, 18px);
  line-height: 1.38em;
  color: rgba(74, 72, 70, 0.8);
}

.text.text-small {
  font-size: 14px;
  line-height: 1.42em;
}

.text p:not(.text p:last-child) {
  margin-bottom: 15px;
}

.uppercase {
  text-transform: uppercase;
}
.text a {
  font-weight: 600;
  color: #1f1f1f;
}

.text p a {
  text-decoration: underline;
  text-decoration-color: currentColor;
}

@media (max-width: 1440px) {
  .text,
  .text p {
    font-size: clamp(14px, 1.07vw, 16px);
  }
}
@media (max-width: 1199px) {
  .title {
    margin-bottom: 20px;
  }
}
@media (max-width:1440px) and (min-width:1200px) {
  .text,
  .text p {
    font-size: clamp(12px, .95vw, 16px);
  }
  .text.text-small{
    font-size: 11px;
  }
  .text ul li:before{
    top: 6px;
  }
  .text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
}
}

@media (max-width: 767px) {
  .title.h2 {
    font-size: 30px;
  }
}

@media (min-width: 1200px) {
  .text a:hover {
    text-decoration: underline;
  }

  .text p a:hover {
    text-decoration-color: transparent;
  }
}

.overflow-auto {
  overflow: auto;
}

/*colors*/
.color-white {
  color: #ffffff;
}
.color-black {
  color: #1f1f1f;
}

.color-grey {
  color: #4a4846;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* HEADER */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
header + * {
  margin-top: 90px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  height: 90px;
  border-bottom: 1px solid #727272;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.scroll,
header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.hide {
  transform: translateY(-100%);
}

header.open-menu {
  z-index: 11;
}

.header-logo {
  max-width: 315px;
}
.header-logo * {
  display: block;
}

.header-logo img:last-child {
  display: none;
}

.header-in {
  padding: 30px 0;
}

.toggle-block ul li {
  display: flex;
}

.toggle-block ul li a {
  font-size: 16px;
  line-height: 1em;
  padding: 0 20px;
  color: #1f1f1f;
  font-weight: 400;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  position: relative;
}

.toggle-block nav ul li a::after {
  content: "/";
  color: #1f1f1f;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.toggle-block nav ul li:last-child a::after {
  content: none;
}

.toggle-block ul li:first-child a {
  padding-left: 0;
}

.toggle-block nav ul li:last-child a {
  padding-right: 0;
}

/*menu button*/
.left-side {
  align-items: center;
}

.menu {
  margin-left: 50px;
  color: #4a4846;
  font-size: 16px;
  line-height: 1em;
}

.drop-menu {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transition: all 0.3s;
  min-height: 100vh;
}

.drop-menu-inner {
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 485px;
  margin: 0 0 0 auto;
  min-height: 100vh;
  transform: translateX(100%);
  transition: 0.3s;
}

.drop-menu-inner .overflow-auto {
  /* height: 95vh; */
  padding-bottom: 30px;
  /* height: 95svh; */
  height: 100%;
  display:flex;
  flex-direction: column;
}

.drop-menu .top-menu {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #f2994a;
  padding: 24px 60px 25px;
  justify-content: space-between;
}

.drop-menu .top-menu .mobile-button {
  margin: 0;
}
.drop-menu-inner .overflow-auto .social-links{
  margin-top:auto;
}

.menu.active .drop-menu {
  opacity: 1;
  visibility: visible;
}
.menu.active .drop-menu-inner {
  transform: translateX(0);
}

.bg-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

.menu-button,
.menu-close {
  position: relative;
  display: flex;
  align-items: center;
  width: 35px;
  height: 18px;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 15px;
}

.menu-close {
  width: 18px;
  margin-left:30px;
}

.menu-button span,
.menu-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  margin-top: -1px;
  background: #1f1f1f;
  transition: all 0.3s;
}

.menu-button:before,
.menu-button:after,
.menu-close::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1f1f1f;
  margin-top: 8px;
  transition: all 0.3s;
}

.menu-button:before {
  margin-top: -9px;
}

.menu-button:after {
  width: 50%;
}

.menu-close.active {
  width: 18px;
}

.menu-close::before {
  transform: translateY(-11px) rotate(45deg);
  transform-origin: center center;
}

.menu-close span {
  transform: translateY(-2px) rotate(-45deg);
  transform-origin: center center;
}

.list-menu {
  padding: 35px 70px 25px;
}

.list-menu > li:not(.list-menu > li:last-child) {
  margin-bottom: 17px;
}

.list-menu > li {
  padding-bottom: 17px;
  border-bottom: 1px solid transparent;
}

.list-menu > li p {
  display: flex;
  align-items: center;
}

.list-menu > li > p a {
  font-size: 28px;
  color: #1f1f1f;
  line-height: 1em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Audiowide";
  font-weight: 400;
  display: flex;
  align-items: center;
}

.list-menu > li > p span {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  margin-left: 30px;
  cursor: pointer;
}

.list-menu > li > p span::after,
.list-menu > li > p span::before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  background: #1f1f1f;
  transform: translateY(-50%);
}

.list-menu > li > p span::before {
  left: 50%;
  top: 0;
  width: 1px;
  height: 14px;
  transform: translate(-50%, 0%);
}

.list-menu > li > ul {
  opacity: 0;
  height: 0;
  visibility: hidden;
  backface-visibility: hidden;
  transition: all 0.3s, visibility 0 0.3s;
  margin-top: 0;
  padding-left: 40px;
}

.list-menu > li.active {
  padding-bottom: 20px;
}

.list-menu > li.active > ul {
  opacity: 1;
  height: auto;
  visibility: visible;
  backface-visibility: visible;
  transition: 0.3s;
}

.list-menu > li.active > p span::before {
  content: none;
}

.list-menu > li > ul li:not(.list-menu > li > ul li:last-child) {
  margin-bottom: 10px;
}

.list-menu > li > ul li a {
  font-size: 18px;
  line-height: 1.44em;
  color: #4a4846;
}

/* colors item list menu*/
.list-menu > li.blue.active > p span::after {
  background: #2d9cdb;
}

.list-menu > li.light-blue.active > p span::after {
  background: #42b8de;
}

.list-menu > li.dark-blue.active > p span::after {
  background: #2d9cdb;
}

.list-menu > li.orange.active > p span::after {
  background: #f2994a;
}

.list-menu > li.light-orange.active > p span::after {
  background: #e8bf42;
}

.list-menu > li.pink.active > p span::after {
  background: #db4d91;
}

.list-menu > li.purple.active > p span::after {
  background: #bb6bd9;
}

.list-menu > li.purple.type-2.active > p span::after {
  background: #9b51e0;
}

.list-menu > li.blue-green.active > p span::after {
  background: #2db8af;
}

.social-links a {
  display: flex;
  max-width: 55px;
  max-height: 55px;
  width: 100%;
  height: 100%;
  margin: 0 5px;
  justify-content: center;
}

@media (max-width: 1740px) {
  .list-menu > li > p a {
    font-size: 18px;
  }
}

@media (max-width: 1440px) {
  .list-menu > li > ul li a {
    font-size: 16px;
  }
  .drop-menu-inner {
    /* max-width: 435px; */
    width: 380px;
    max-width: calc(100% - 50px);
  }
  .drop-menu .top-menu,
  .list-menu {
    padding-left: 30px;
    padding-left: 30px;
  }
  .list-menu > li > p a {
    font-size: 18px;
  }
  header {
    height: 62px;
  }

  .header-in {
    padding: 15px 0;
  }

  header + * {
    margin-top: 62px;
  }

  .drop-menu .top-menu {
    padding: 11px 30px 10px;
  }

  .list-menu {
    padding: 25px 30px;
  }

  .header-logo {
    width: 240px;
  }
  .menu{font-size: 12px;margin-left: 40px;}
  .menu-button{width: 20px;margin-right: 13px;}
  .menu-button:before, .menu-button:after, .menu-button span{height: 2px;}
  .menu-button::before{margin-top: -8px;}
  .menu-button::after{margin-top: 6px;}
  .toggle-block ul li a{padding: 0 15px;}
  .social-links a{max-width:45px;}
  .menu-close{margin-right:0;}
}

@media (max-width: 1199px) {
  ul.menu {
    display: none !important;
  }

  .header-in {
    height: 62px;
  }

  .header-logo a {
    display: flex;
  }

  .menu-text {
    font-size: 14px;
  }

}

@media (max-width: 991px) {
  .toggle-block ul li a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .menu-button {
    width: 30px;
    height: 16px;
  }

  .menu {
    margin: 0;
  }

  .header-logo {
    max-width: 195px;
  }

  .drop-menu .top-menu {
    padding: 10px 60px;
  }

  .list-menu > li > p a {
    font-size: 26px;
  }
  .menu-close{
    margin-left:20px;
    margin-right: 0;
  }
  .drop-menu-inner .overflow-auto{
    padding-bottom:100px;
  }
}

@media (max-width: 575px) {
  .drop-menu .top-menu {
    padding: 10px 15px 15px;
  }

  .list-menu {
    padding: 25px 15px;
  }
  .list-menu > li > p a {
    font-size: 20px;
  }
  .list-menu > li > p span{
    margin-left:20px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* BANNER */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
.banner {
  height: 680px;
}
.align-items-stretch .banner {
  height: 100%;
}
.banner,
.img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.lr-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-bottom: 66%;
  display: block;
}

.lr-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0.29deg, #000000 0.24%, rgba(0, 0, 0, 0) 52.51%);
  transform: scaleX(1);
  transition: all 3s;
}

.opacity.type2:before {
  background: rgba(0, 0, 0, 0.4);
}

.block-title {
  color: #1f1f1f;
}

.article-info {
  letter-spacing: 0.05em;
  font-size: 12px;
  opacity: 0.8;
  color: #73716f;
}

.article-info span:not(.article-info span:last-child) {
  padding-right: 10px;
  border-right: 1px solid #2d9cdb;
}

.orange.article-info span:not(.orange.article-info span:last-child) {
  border-color: #f2994a;
}

.light-orange.article-info
  span:not(.light-orange.article-info span:last-child) {
  border-color: #e8bf42;
}

.light-blue.article-info span:not(.light-blue.article-info span:last-child) {
  border-color: #42b8de;
}

.dark-blue.article-info span:not(.dark-blue.article-info span:last-child) {
  border-color: #2d9cbd;
}

.purple.article-info span:not(.purple.article-info span:last-child) {
  border-color: #bb6bd9;
}

.purple.type-2.article-info
  span:not(.purple.type-2.article-info span:last-child) {
  border-color: #9b51e0;
}

.pink.article-info span:not(.pink.article-info span:last-child) {
  border-color: #db4d91;
}

.blue-green.article-info span:not(.blue-green.article-info span:last-child) {
  border-color: #2db8af;
}

.article-info span:not(.article-info span:first-child) {
  padding-left: 10px;
}

.short-descr {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a4846;
}
.short-descr.color-black {
  color: #1f1f1f;
}
.tags-wrapper a,
.banner .tags-wrapper a {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d8d8d8;
  border: 1px solid #d8d8d8;
  padding: 5px 15px;
  border-radius: 999px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  height: 27px;
  font-weight: 600;
  line-height: normal;
}
.content .tags-wrapper a{
  margin-bottom: 20px;
}
.tags-wrapper span {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #4a4846;
  font-weight: 600;
  margin-right: 15px;
}

.rating,
.block-item-article.type-2 .banner .rating {
  position: absolute;
  top: 50px;
  right: 50px;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.61em;
  z-index: 1;
  padding: 10px 11px 9px;
  border-radius: 10px;
  text-align: center;
  min-width: 63px;
}

.block-item-article {
  position: relative;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.block-item-article .content .text {
  margin-bottom: 0;
}

.block-item-article:last-child {
  margin-bottom: 0;
}

.banner .content {
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 50px;
  bottom: 50px;
  max-width: 940px;
}

.color-white .block-title {
  color: #fff;
}

.color-white .article-info {
  color: #d8d8d8;
}

.banner .color-white .short-descr,
.color-white .short-descr {
  color: rgba(255, 255, 255, 0.8);
}

.banner .rating {
  background-color: #2d9cdb;
}

.content * {
  margin-bottom: 20px;
}
.content .tags-wrapper a{
    margin-bottom: 20px;
  }
.content .tags-wrapper {
  margin-bottom: 0px;
}

.content *:last-child {
  margin-bottom: 0;
}

.block-item-article .rating {
  top: 20px;
  right: 20px;
}
.block-item-article .short-descr {
  color: #73716f;
}

.rating.type-2 {
  font-size: 12px;
  min-width: 50px;
}

.min-height-item {
  /* min-height: 96px; */
}
@media (max-width: 1440px) {
  .min-height-item {
    /* min-height: 75px; */
  }
  .content * {
    margin-bottom: 10px;
  }
  .content .tags-wrapper a{
    margin-bottom: 10px;
  }
  .banner .content {
    bottom: 30px;
    left: 30px;
  }
  .block-item-article {
    padding: 15px;
    border-radius: 5px;
  }
  .banner, .img-wrapper{
    border-radius: 8px;
  }

  .block-item-article .rating {
    right: 10px;
    top: 10px;
    font-size: 14px;
    min-width: 45px;
    border-radius: 5px;
  }
  .block-item-article.type-2 .banner .rating,
  .banner .rating {
    top: 30px;
    right: 30px;
    border-radius: 5px;
  }
  .toggle-block ul li a {
    font-size: 14px;
  }
  .short-descr {
    font-size: 12px;
  }
  .tags-wrapper a,
  .banner .tags-wrapper a {
    font-size: 7px;
    padding: 2px 10px;
    height: 25px;
  }
}
@media (max-width:1440px) and (min-width:1200px) {
  .toggle-block ul li a{
    font-size: 12px;
  }
  .content .tags-wrapper a{
    margin-bottom: 15px;
    margin-right: 2px;
  }
  .main-banner .min-height-item{min-height: 65px;}
  .main-banner .block-item-article{margin-bottom: 15px;}
  .main-banner .block-item-article:last-child{margin-bottom: 0;}
}
@media (min-width:1441px) {
  .main-banner .min-height-item{min-height: 96px;}
}
/* main banner */
.main-banner {
  display: grid;
  gap: 20px;
  grid-template-columns: 5fr 4.33fr;
}
@media (max-width: 1440px) {
  .main-banner .block-item-article .rating {
    padding: 5px 7px 4px;
  }
}
@media (max-width: 1199px) {
  .main-banner {
    grid-template-columns: 1fr;
    gap: unset;
  }
}
/* end main banner */
/* BLUE */
.blue.block-item-article,
.list-menu > li.blue {
  border-color: #2d9cdb;
}

.blue.block-item-article .rating {
  background: #2d9cdb;
}

.blue .tags-wrapper a {
  border-color: #2d9cdb;
  color: #2d9cdb;
}

.blue .article-info span:not(.article-info span:last-child) {
  border-color: #2d9cdb;
}

/* LIGHT-BLUE */
.light-blue.block-item-article,
.list-menu > li.light-blue,
.light-blue.block-item-article.type-2::after {
  border-color: #42b8de;
}

.light-blue.block-item-article .rating {
  background: #42b8de;
}

.light-blue .tags-wrapper a {
  border-color: #42b8de;
  color: #42b8de;
}

.light-blue .article-info span:not(.article-info span:last-child) {
  border-color: #42b8de;
}

/* DARK-BLUE */
.dark-blue.block-item-article,
.list-menu > li.dark-blue,
.dark-blue.block-item-article.type-2::after {
  border-color: #2d9cdb;
}

.dark-blue.block-item-article .rating {
  background: #2d9cdb;
}

.dark-blue .tags-wrapper a {
  border-color: #2d9cdb;
  color: #2d9cdb;
}

.dark-blue .article-info span:not(.article-info span:last-child) {
  border-color: #2d9cdb;
}

/* ORANGE */
.orange.block-item-article,
.list-menu > li.orange,
.orange.block-item-article.type-2::after {
  border-color: #f2994a;
}

.orange.block-item-article .rating {
  background: #f2994a;
}

.orange .tags-wrapper a:not(.banner .tags-wrapper a) {
  border-color: #f2994a;
  color: #f2994a;
}

.orange .article-info span:not(.article-info span:last-child) {
  border-color: #f2994a;
}

/* LIGHT ORANGE */
.light-orange.block-item-article,
.list-menu > li.light-orange,
.light-orange.block-item-article.type-2::after {
  border-color: #e8bf42;
}

.light-orange.block-item-article .rating {
  background: #e8bf42;
}

.light-orange .tags-wrapper a:not(.banner .tags-wrapper a) {
  border-color: #e8bf42;
  color: #e8bf42;
}

.light-orange .article-info span:not(.article-info span:last-child) {
  border-color: #e8bf42;
}

/* PURPLE */
.purple.block-item-article,
.list-menu > li.purple,
.purple.block-item-article.type-2::after {
  border-color: #bb6bd9;
}

.purple.block-item-article .rating {
  background: #bb6bd9;
}

.purple .tags-wrapper a {
  border-color: #bb6bd9;
  color: #bb6bd9;
}

.purple .article-info span:not(.article-info span:last-child) {
  border-color: #bb6bd9;
}

/* PURPLE type-2 */
.purple.type-2.block-item-article,
.list-menu > li.purple.type-2,
.purple.type-2.block-item-article.type-2::after {
  border-color: #9b51e0;
}

.purple.type-2.block-item-article .rating {
  background: #9b51e0;
}

.purple.type-2 .tags-wrapper a {
  border-color: #9b51e0;
  color: #9b51e0;
}

.purple.type-2 .article-info span:not(.article-info span:last-child) {
  border-color: #9b51e0;
}

/* PINK */
.pink.block-item-article,
.list-menu > li.pink,
.pink.block-item-article.type-2::after {
  border-color: #db4d91;
}

.pink.block-item-article .rating {
  background: #db4d91;
}

.pink .tags-wrapper a {
  border-color: #db4d91;
  color: #db4d91;
}

.pink .article-info span:not(.article-info span:last-child) {
  border-color: #db4d91;
}

/* BLUE-GREEN */
.blue-green.block-item-article,
.list-menu > li.blue-green,
.blue-green.block-item-article.type-2::after {
  border-color: #2db8af;
}

.blue-green.block-item-article .rating {
  background: #2db8af;
}

.blue-green .tags-wrapper a {
  border-color: #2db8af;
  color: #2db8af;
}

.blue-green .article-info span:not(.article-info span:last-child) {
  border-color: #2db8af;
}

.tags-wrapper.light-color a {
  color: #d8d8d8 !important;
  border-color: #d8d8d8 !important;
}

/* media */

@media (min-width: 1200px) {
  .tags-wrapper.light-color a:hover {
    color: #1a1a1a !important;
  }
}

@media (max-width: 1366px) {
  .block-item-article {
    margin-bottom: 10px;
    padding: 15px;
  }

  .rating {
    top: 30px;
    right: 30px;
    font-size: 16px;
  }

  .tags-wrapper a,
  .banner .tags-wrapper a {
    font-size: 8px;
  }



  .article-info {
    font-size: 10px;
  }

  .banner {
    height: 590px;
  }

  .block-item-article .rating {
    top: 10px;
    right: 10px;
  }
}
@media (min-width:1200px) and (max-width:1440px) {
   .short-descr {
    font-size: 10px;
  }
  .tags-wrapper a, .banner .tags-wrapper a{
    height: 20px;
  }
  .article-info{
    font-size: 9px;
  }
  .min-height-item{
    /* min-height: 70px; */
  }
  .block-item-article .rating,
  .block-item-article.type-2 .banner .rating, .banner .rating,
  .rating{
    font-size: 10px;
    padding: 8px 9px 7px;
    min-width: 40px;
  }
}

@media (max-width: 1199px) {
  .align-items-stretch .banner,
  .banner {
    margin-bottom: 10px;
    height: auto;
  }

  .tags-wrapper a,
  .banner .tags-wrapper a {
    font-size: 8px;
  }
}

@media (max-width: 767px) {
  .banner .content {
    left: 15px;
    right: 15px;
    bottom: 20px;
  }

  .content * {
    margin-bottom: 10px;
  }
  .content .tags-wrapper a{
    margin-bottom: 10px;
  }
  .article-info{
    margin-bottom:15px;
  }

  .short-descr {
    font-size: 10px;
    margin-bottom: 15px;
  }

  .tags-wrapper {
    margin-bottom: 15px;
  }

  .tags-wrapper a,
  .banner .tags-wrapper a {
    padding-right: 10px;
    padding-left: 10px;
    line-height: 20px;
  }

  .article-info {
    font-size: 9px;
  }

  .rating,
  .block-item-article.type-2 .banner .rating {
    top: 15px;
    right: 15px;
    font-size: 10px;
    padding: 7px;
  }

  .min-height-item {
    /* min-height: 75px; */
  }

  .min-height-item .text-line-2 {
    -webkit-line-clamp: 3;
  }

  .banner.lr-img {
    min-width: 345px;
  }
}

@media (max-width: 575px) {
  .banner .lr-img {
    padding-bottom: 100%;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* BUTTONS */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
.btn {
  position: relative;
  max-width: 550px;
  border: 1px solid transparent;
  font-weight: 600;
  width: 100%;
  text-align: center;
  cursor: pointer;
  display: block;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.38em;
  letter-spacing: 2px;
  color: #1f1f1f;
  text-transform: uppercase;
  padding: 15px 35px;
  margin: 0 auto;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  overflow: hidden;
}
.btn_block{
  width: 100%;
  max-width: unset!important;
}

.btn.left {
  margin: 0 auto 0 0;
}

.text-btn {
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.28em;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  -webkit-transition: all 0.3s;
}

.orange .text-btn {
  color: #f2994a;
}

.orange .btn {
  border-color: #f2994a;
}

.light-orange .text-btn {
  color: #e8bf42;
}

.light-orange .btn {
  border-color: #e8bf42;
}

.blue .text-btn {
  color: #2d9cdb;
}

.blue .btn {
  border-color: #2d9cdb;
}

.light-blue .text-btn {
  color: #42b8de;
}

.light-blue .btn {
  border-color: #42b8de;
}

.dark-blue .text-btn {
  color: #2d9cdb;
}

.dark-blue .btn {
  border-color: #2d9cdb;
}

.purple .text-btn {
  color: #bb6bd9;
}

.purpule .btn {
  border-color: #bb6bd9;
}

.purple.type-2 .text-btn {
  color: #9b51e0;
}

.purple.type-2 .btn {
  border-color: #9b51e0;
}

.pink .text-btn {
  color: #db4d91;
}

.pink .btn {
  border-color: #db4d91;
}

.blue-green .text-btn {
  color: #2db8af;
}

.blue-green .btn {
  border-color: #2db8af;
}

.btn.black {
  border-color: #1f1f1f;
}

@media (min-width: 1200px) {
  .orange .btn:hover {
    background: #f2994a;
  }

  .light-orange .btn:hover {
    background: #e8bf42;
  }

  .blue .btn:hover {
    background: #2d9cdb;
  }

  .light-blue .btn:hover {
    background: #42b8de;
  }

  .dark-blue .btn:hover {
    background: #2d9cdb;
  }

  .purpule .btn:hover {
    background: #bb6bd9;
  }

  .purple.type-2 .btn:hover {
    background: #9b51e0;
  }

  .pink .btn:hover {
    background: #db4d91;
  }

  .blue-green .btn:hover {
    background: #2db8af;
  }

  .orange .text-btn:hover,
  .light-blue .text-btn:hover,
  .blue .text-btn:hover,
  .light-orange .text-btn:hover,
  .pink .text-btn:hover,
  .purple .text-btn:hover,
  .purple.type-2 .text-btn:hover,
  .dark-blue .text-btn:hover,
  .blue-green .text-btn:hover {
    color: #1f1f1f !important;
  }
  .dark .orange .text-btn:hover,
  .dark .light-blue .text-btn:hover,
  .dark .blue .text-btn:hover,
  .dark .light-orange .text-btn:hover,
  .dark .pink .text-btn:hover,
  .dark .purple .text-btn:hover,
  .dark .purple.type-2 .text-btn:hover,
  .dark .dark-blue .text-btn:hover,
  .dark .blue-green .text-btn:hover {
    color: #fff !important;
  }
}

@media (max-width: 1440px) and (min-width:1200px) {
  .btn {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 510px;
    border-radius: 5px;
  }
  .text-btn{
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .btn {
    padding: 10px 25px;
    font-size: 12px;border-radius: 5px;
  }
}

@media (max-width: 767px) {
  .btn {
    max-width: 100%;
    font-size: 10px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
/* DARK MODE STYLES */
/* ------------------------------------------------------------------------------------------------------------------------------------------------ */
.dark h1,
.dark .h1,
.dark h2,
.dark .h2,
.dark h3,
.dark .h3,
.dark h4,
.dark .h4,
.dark h5,
.dark .h5,
.dark h6,
.dark .h6,
.dark .text a {
  color: #fff;
}

.dark header.scroll,
.dark header.scrolled {
  background: rgba(30, 30, 30, 0.6);
}

.dark .header-logo img:first-child {
  display: none;
}

.dark .header-logo img:last-child {
  display: block;
}

.dark .toggle-block ul li a,
.dark .menu,
.dark blockquote {
  color: #ffffff;
}

.dark blockquote::after {
  background-image: url(../img/icons/blockquote-2.svg);
}

.dark .toggle-block nav ul li a::after {
  color: #424242;
}

.dark .menu-button:before,
.dark .menu-button:after,
.dark .menu-close::before,
.dark .menu-button span,
.dark .menu-close span,
.dark .text ul li:before {
  background: #fff;
}
.dark .text ol li:before {
  color: #fff;
}

.dark .drop-menu-inner {
  background: #303030;
}
.drop-menu__nav {
  display: none;
}
.dark .list-menu > li > p a,
.dark .block-title,
.dark .title,
.dark .btn {
  color: #fff;
}

.dark .list-menu > li > p span::after,
.dark .list-menu > li > p span::before {
  background: #fff;
}

.dark .list-menu > li > ul li a {
  color: #9f9f9f;
}

.dark .short-descr:not(.dark .color-white .short-descr),
.dark .text,
.dark .text p {
  color: #9f9f9f;
  /* opacity: 80%; */
}

.dark .article-info:not(.dark .color-white .article-info) {
  color: #73716f;
}

.dark .btn.black {
  border-color: #fff;
}
.dark .color-black {
  color: #fff;
}

.dark .article-info, .dark .social-descr{
  color:#fff!important;
}

@media (max-width: 1440px) and (min-width: 1200px){
  .single-post h1, .single-post .h1 {font-size: 30px;}
}

@media (min-width: 1200px) {
  .color-white a.block-title:hover {
    opacity: 0.6;
  }

  .toggle-block ul li:hover a {
    color: #299fde;
  }

  .banner:hover .lr-img img,
  .img-wrapper:hover .lr-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }

  .blue.block-item-article a.block-title:hover,
  .list-menu > li.blue ul li:hover a {
    color: #2d9cdb;
  }

  .light-blue.block-item-article a.block-title:hover,
  .list-menu > li.light-blue ul li:hover a {
    color: #42b8de;
  }

  .dark-blue.block-item-article a.block-title:hover,
  .list-menu > li.dark-blue ul li:hover a {
    color: #2d9cdb;
  }

  .orange.block-item-article a.block-title:hover,
  .list-menu > li.orange ul li:hover a {
    color: #f2994a;
  }

  .light-orange.block-item-article a.block-title:hover,
  .list-menu > li.light-orange ul li:hover a {
    color: #e8bf42;
  }

  .purple.block-item-article a.block-title:hover,
  .list-menu > li.purple ul li:hover a {
    color: #bb6bd9;
  }

  .purple.purple.type-2.block-item-article a.block-title:hover,
  .list-menu > li.purple.type-2 ul li:hover a {
    color: #9b51e0;
  }

  .pink.block-item-article a.block-title:hover,
  .list-menu > li.pink ul li:hover a {
    color: #db4d91;
  }

  .blue-green.block-item-article a.block-title:hover,
  .list-menu > li.blue-green ul li:hover a {
    color: #2db8af;
  }

  /* */
  .blue .tags-wrapper a:hover {
    background-color: #2d9cdb;
  }

  .light-blue .tags-wrapper a:hover {
    background-color: #42b8de;
  }

  .dark-blue .tags-wrapper a:hover {
    background-color: #2d9cdb;
  }

  .orange .tags-wrapper a:hover {
    background-color: #f2994a;
  }

  .light-orange .tags-wrapper a:hover {
    background-color: #e8bf42;
  }

  .pink .tags-wrapper a:hover {
    background-color: #db4d91;
  }

  .purple .tags-wrapper a:hover {
    background-color: #bb6bd9;
  }

  .purple.type-2 .tags-wrapper a:hover {
    background-color: #9b51e0;
    color: #1a1a1a;
  }

  .blue-green .tags-wrapper a:hover {
    background-color: #2db8af;
  }

  .tags-wrapper a:hover,
  .orange .tags-wrapper a:not(.banner .tags-wrapper a):hover {
    color: #1a1a1a;
  }

  .banner-align .tags-wrapper a:hover,
  .banner .tags-wrapper a:hover {
    background-color: #fff;
    border-color: #1a1a1a;
  }

  .menu:hover .menu-button:before,
  .menu:hover .menu-button:after,
  .menu:hover .menu-button span {
    background: #f2994a;
  }

  /* social links hover */
  .social-links a.facebook:hover svg path {
    fill: #4563a4;
  }

  .social-links a.twitter:hover svg path {
    fill: #1c9cea;
  }

  .social-links a.linkedin:hover svg path:first-child {
    fill: #2464b1;
  }

  .social-links a.rss:hover svg path {
    fill: #ffb800;
  }

  .social-links a.youtube:hover svg path:first-child {
    fill: #ff0000;
  }

  .social-links a.bell:hover svg path {
    fill: #f2c94c;
  }

  .social-links a.first:hover svg path {
    fill: #2464b1;
  }

  .list-menu > li.orange > p a:hover{color:#f2994a;}
  .list-menu > li.purple > p a:hover{color:#bb6bd9;}
  .list-menu > li.blue > p a:hover{color:#2d9cdb;}
  .list-menu > li.pink > p a:hover{color:#db4d91;}
  .list-menu > li.dark-blue > p a:hover{color:#2d9cdb;}

}

@media (max-width: 1199px) {
  .drop-menu__nav {
    display: block;
  }
  .drop-menu__nav ul.menu {
    display: flex !important;
    padding: 25px 30px;
    margin: 0;
    border-bottom: 1px solid #f2994a;
  }
}
@media (max-width: 575px) {
  .drop-menu__nav ul.menu {
    padding: 20px 15px;
  }
}
