/* FONTS */
/* @import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&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-60 {
  height: 60px;
  -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: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.simple-page h1{
  font-weight: 700;
  line-height: 60px;
}
.spacer-30 {
  height: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.exclusive-page .title{
  border-bottom: 1px solid currentColor;
  padding-bottom: 20px;
}
.section.news-detail .breadcrumbs{
  padding-bottom: 30px;
  border-bottom: 1px solid #f2994a;
}

/*media*/
@media (max-width: 1440px) {
  .spacer-100 {
    height: 80px;
  }

  .spacer-50 {
    height: 35px;
  }
  .spacer-30 {
    height: 20px;
  }
}

@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: 30px;
  }

  .spacer-100.home-page {
    height: 20px;
  }
}

/* TYPOGRAPHY */
body * {
  font-family: "Manrope", 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: 15px;
  padding-left: 25px;
  color: #1f1f1f;
}

.text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  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-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::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: #0066cc;
  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.15em;
}

h3,
.h3 {
  font-size: 22px;
  line-height: 1.25em;
}

h4,
.h4 {
  font-size: 26px;
  line-height: 1.30em;
}

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 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  padding-bottom: 3px;
}

.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;
}
.search_wrapper_form_header{display: none;}

/*TITLES  */
.title {
  /* font-family: "Audiowide", cursive; */
  /* text-transform: uppercase; */
  margin-bottom: 15px;
  font-weight: 700;
  color: #1F1F1F;
}

.title.type-2 {
  font-family: "Be Vietnam Pro", sans-serif;
  text-transform: none;
}

/* font weight */
.fw-300 {
  font-weight: 300;
}

.fw-500 {
  font-weight: 700;
}

/* 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: 70px;
  display: flex;
  padding: 16px 0px 62px;
  justify-content: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}
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;
}
.toggle-block ul li {
  display: flex;
}

.toggle-block ul li a,footer .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;
  
}
footer .toggle-block ul li a {
  margin-bottom: 15px;
}
footer .toggle-block ul li a{
  color: #000;
}
footer .logo_another_site_link img{
  filter: brightness(0) invert(1);
}
footer .develop a:hover{
  color: #ffffff;
  text-decoration: underline;
}
footer .develop a{
  color: #A1A1A1;
}
header .toggle-block nav ul li a::after {
  content: "";
  color: #1f1f1f;
  position: absolute;
  right: 0;
  left: auto;
  min-width: 0.15em;
  min-height: 0.15em;
  background-color: #5F5D5B;
  display: block;
  top: 7px;
}
.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;
}
.left-side {
  align-items: center;
}

.menu {
  margin-left: 46px;
  color: #4a4846;
  font-size: 16px;
  line-height: 1em;
}

.drop-menu {
  opacity: 0;
  visibility: hidden;
  width: 410px;
  position: absolute;
  top: 63px;
  right: 28px;
  transition: all 0.3s;
  z-index: 20;
}

.drop-menu-inner {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 485px;
  margin: 0 0 0 auto;
  transform: translateX(100%);
  transition: 0.3s;
  border-radius: 16px;
  display: flex;
  flex-direction: column;

}
@media (max-width: 1200px) {
  .drop-menu-inner {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .drop-menu .list-menu {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding-bottom: 20px;
  }
}

.drop-menu .drop-menu-inner {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
}



.drop-menu .list-menu > li {
  padding-bottom: 14px;
  border-bottom: 1px solid #E5E5E5;
}

.list-menu > li:not(:last-child) {
  margin-bottom: 14px !important;
}

.drop-menu .top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px 25px;
  border-bottom: 1px solid #f2994a;
  flex-shrink: 0;
}

.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: fixed;
  left: 0;
  top: 79px;
  background: rgba(0, 0, 0, 0.6);
}

.menu-button,
.menu-close {
  position: relative;
  display: flex;
  align-items: center;
  width: 3.195em;
  height: 3.195em;
  cursor: pointer;
  transition: all 0.3s;
  margin-right: 0px;
  border-radius: 8px;
}

.menu-button-main {
  border: 1px solid #0066cc;
}

/* горизонтальний телефон / невисокі екрани */
@media (max-height: 500px) {
 

  .drop-menu-inner {
    max-height: calc(100vh - 20px);
  }

  .drop-menu .top-menu {
    padding: 16px 30px;
  }
}

/* мобілка */
@media (max-width: 767px) {
  .drop-menu {
    width: calc(100vw - 20px);
    right: 10px;
  }

  .drop-menu-inner {
    max-width: 100%;
    max-height: calc(100vh - 20px);
  }

  .drop-menu .top-menu {
    padding: 16px 20px;
  }
}
.header-logo.d-flex a{
  max-width: 260px;
}
.logo_another_site_link{
  display: inline-flex;
  padding: 10px;
  border: 1px solid transparent;
}
.logo_another_site_link:hover {
  border: 1px solid #cccccc;
}
.wrapper_another_site {
  margin: 0px 10px;
  border-radius: 8px;
  position: absolute;
  left: 10px;
  top: 42px;
  transition: all 0.3s;
  display: none;
}

header.is-active-another-site{
  height: 125px;
  transition: all 0.3s;
}
header.is-active-another-site .logo_another_site svg{
  transform: rotate(180deg);
  transition: all 0.3s;
}
.logo_another_site svg{
  transition: all 0.3s;
}
a.logo_another_site_link {
  margin: 0px 10px;
  border-radius: 8px;
  max-width: 180px;
}
.wrapper_footer_another_site a.logo_another_site_link {
  margin: 0px;
  border: 1px solid #cccccc;
  height: 42px;
  width: 168px;
  margin: 0px auto;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper_footer_another_site{
  display: flex;
}
.search_wrapper_form_header{
  display: none;
}
.search_wrapper_form_header.is-active{
  display: block;
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 46px;
  background: #fff;
  z-index: 0;
  width: 500px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #0B81C0;
}
.search_wrapper_form_header input{
  padding: 12px !important;
  height: auto;
  border: none !important;
}
.search_wrapper_form_header input[type="submit"]{
  width: 0px;
  height: 0px;
  font-size: 0px;
  padding: 0px !important;
}
.search_wrapper_form_header form{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
}
/* .wrapper_another_site{
  display: none;
} */
.menu-header-search{
  width: 3.195em;
  height: 3.195em;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 46px;
  cursor: pointer;
  position: relative;
}
.logo_another_site{
  margin-left: 20px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-close {
  width: 18px;
  margin-left:30px;
}

.menu-button span,
.menu-close span {
  display: block;
  position: absolute;
  top: 48%;
  left: calc(50% - 10px);
  width: 20px;
  height: 4px;
  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: calc(50% - 10px);
  width: 20px;
  height: 3px;
  background: #1f1f1f;
  margin-top: 8px;
  transition: all 0.3s;
}

.menu-button:before {
  margin-top: -9px;
}

.menu-button:after {
  width: 10px;
  top: 46%;
  height: 4px;
}
.menu.active .menu-button:after {
  height: 2px;
}
.menu.active .menu-button:after {
  top: 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;
}

.menu.active .menu-button span,
.drop-menu.active ~ .menu-button span {
  opacity: 0;
  transform: scaleX(0);
}

.menu.active .menu-button::before,
.drop-menu.active ~ .menu-button::before {
  margin-top: -1px;
  transform: rotate(45deg);
}

.menu.active .menu-button::after,
.drop-menu.active ~ .menu-button::after {
  margin-top: -1px;
  transform: rotate(-45deg);
}
.menu.active .menu-button:after {
  width: 20px;
}


.list-menu {
  padding: 20px 22px;
}

.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;
  justify-content: space-between;
}

.list-menu > li > p a {
  font-size: 16px;
  color: #1f1f1f;
  line-height: 1em;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 24px;
}

.list-menu > li > p span {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  margin-left: 30px;
  cursor: pointer;
  margin-right: 3px;
}


.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: 10px;
}

.list-menu > li.active > ul {
  opacity: 1;
  height: auto;
  visibility: visible;
  backface-visibility: visible;
  transition: 0.3s;
  padding-left: 0px;
  margin-top: 5px;
}

.list-menu > li.active > p span::before {
  content: none;
}


.list-menu > li > ul li a {
  font-size: 16px;
  line-height: 1.44em;
  color: #313131;
}
.drop-menu .list-menu > li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

/* colors item list menu*/
.list-menu > li.blue.active > p span::after {
  background: #0066cc;
}

.list-menu > li.light-blue.active > p span::after {
  background: #42b8de;
}

.list-menu > li.dark-blue.active > p span::after {
  background: #0066cc;
}

.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-height: 55px;
  width: 100%;
  height: 100%;
  margin: 0 5px;
  justify-content: center;
}
.grid_wrapper_news{
  display: grid;
  grid-template-columns: 4.5fr 5fr;
  gap: 20px;
}
.d-flex-list-item .block-item-article{
  background-color: #F4F4F4;
  border-radius: 16px;
}
.d-flex-list-item .block-item-article .content, .author .block-item-article .content{
  padding: 0px 20px 20px;
}
.d-flex-list-item .block-title{
  margin-bottom: 10px !important;
}
.d-flex-list-item .short-descr{
  margin-bottom: 20px !important;
}
.d-flex-list-item .block-item-article.type-2 .img-wrapper {
  margin-bottom: 15px;
}
.block-item-article-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 5px;
}

.block-item-article-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.tags-wrapper a:not(:last-child) {
  position: relative;
  margin-right: 14px;
}
.read-more{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0%;
  line-height: 20px;
  font-weight: 600;
  position: relative;
  padding-right: 15px;
}
.read-more::before,
.read-more::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.read-more::before {
  top: 7px;
  right: 0px;
  transform: rotate(45deg);
}

.read-more::after {
  bottom: 8px;
  right: 0px;
  transform: rotate(-45deg);
}
.tags-wrapper a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background-color: currentColor;
  border-radius: 50%;
}
.grid_wrapper_news .banner{
  margin-bottom: 0px !important;
}
.block-article-grid .block-item-article:nth-child(3) .block-title,
.block-article-grid .block-item-article:nth-child(4) .block-title {
  margin-bottom: 0px !important;
}
.search_wrapper_form_header_icon{
  padding: 10px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1740px) {
  .list-menu > li > p a {
    font-size: 18px;
  }
}

@media (max-width: 1440px) {
  .news-detail .breadcrumbs{
    padding-bottom: 20px;
    padding-top: 25px;
  }
  .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 {
    padding: 0px 0px 76px;
  }

  .header-in {
    padding: 15px 0;
  }

  header + * {
    margin-top: 62px;
  }

  .drop-menu .top-menu {
    padding: 11px 30px 10px;
  }

  .list-menu {
    padding: 25px 30px;
  }

  header .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) {
  .simple-page h1 {
    font-weight: 700;
    line-height: 36px;
 }
  ul.menu {
    display: none !important;
  }
  footer .logo{
    width: 240px;
  }
  .wrapper_footer_another_site a.logo_another_site_link{
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  
  .wrapper_footer_another_site{
    display: block;
  }

  .header-in {
    height: 62px;
  }

  .header-logo a {
    display: flex;
  }

  .menu-text {
    font-size: 14px;
  }
  .banner .content {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

}

@media (max-width: 991px) {
  .toggle-block ul li a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .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;
  }
  .menu-header-search,.menu-button, .menu-close{
    margin-right: 10px;
    border: none;
  }
  .logo_another_site{
    margin-left: 0px;
    border: none;
  }
}

@media (max-width: 575px) {
  .drop-menu .top-menu {
    padding: 10px 15px 15px;
  }

  .list-menu {
    padding: 15px 20px;
  }
  .list-menu > li > p a {
    font-size: 16px;
  }
  .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;
  left: 0;
  width: 100%;
  height: 50%;
  bottom: 0;

  background: linear-gradient(to top, rgba(31, 31, 31, 0.9) 0%, rgba(31, 31, 31, 0.7) 20%, rgba(31, 31, 31, 0.5) 50%, rgba(31, 31, 31, 0.3) 70%, rgba(31, 31, 31, 0.15) 85%, rgba(31, 31, 31, 0) 100%);
}
.d-flex-list-item .seo-block{
  padding-left: 0px;
  padding-right: 0px;
}
.opacity.type2:before {
  background: rgba(0, 0, 0, 0.4);
}

.block-title {
  color: #1f1f1f;
  margin-top: 5px;
  margin-bottom: 5px !important;
}
.main-banner .block-title {
  margin-top: 5px;
  margin-bottom: 5px !important;
}
.content .tags-wrapper{
  margin-top: -12px;
}
.seo-block .content .tags-wrapper{
  margin-top: 0px;
}
body:not(.single-post) .block-title:hover{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.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;
}

.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: 18px;
  letter-spacing: 0%;
  line-height: 100%;
  color: #313131;
}
.short-descr.color-black {
  color: #1f1f1f;
}
.tags-wrapper a,
.banner .tags-wrapper a {
  font-size: 14px;
  letter-spacing: 0%;
  text-transform: uppercase;
  border-radius: 999px;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  height: 25px;
  font-weight: 700;
  line-height: normal;
}

.tags-wrapper span {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #4a4846;
  font-weight: 600;
  margin-right: 15px;
}

.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;
}
.author-link{
  position: relative; 
}
.author-link::after{
  position: absolute;
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background-color: #d8d8d8;
  top: 8px;
  right: -12px;
}
.author-link::before{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #d8d8d8;
  bottom: 0px;
  left: 0px;
}
.banner .color-white .short-descr,
.color-white .short-descr {
  color: rgba(255, 255, 255, 0.8);
}

.banner .rating {
  background-color: #0066cc;
}

.content * {
  margin-bottom: 20px;
}
.content .tags-wrapper a{
    margin-bottom: 0px;
  }
.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;
}
.single-title{
  margin-bottom: 0px;
}

.flexbile_small_news {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.small_news_image{
  width: 204px;
  height: 128px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.small_news_image picture{
  width: 100%;
}
.archive .small_news_image picture {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.small_news_content{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.block-item-article.block-small-item-article{
  margin-bottom: 20px;
  border-radius: 0px;
  border: none;
  padding: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
.block-item-article.block-small-item-article:last-child{
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0;
}
.tag-link-blue,.block-item-article.type-2.blue{
  color: #0066cc;
}
.tag-link-blue-green,.block-item-article.type-2.blue-green{
  color: #2db8af;
}
.tag-link-purple,.block-item-article.type-2.purple{
  color: #9b51e0;
}
.tag-link-pink,.block-item-article.type-2.pink{
  color: #db4d91;
}
.tag-link-orange,.block-item-article.type-2.orange{
  color: #f2994a;
}
.tag-link-light-orange,.block-item-article.type-2.light-orange{
  color: #e8bf42;
}
.tag-link-dark-blue,.block-item-article.type-2.dark-blue{
  color: #0066cc;
}
.tag-link-light-blue,.block-item-article.type-2.light-blue{
  color: #42b8de;
}
.tag-link-dark-green,.block-item-article.type-2.dark-green{
  color: #2db8af;
}
.tag-link-light-green,.block-item-article.type-2.light-green{
  color: #2db8af;
}
.tag-link-light-purple,.block-item-article.type-2.light-purple{
  color: #9b51e0;
}
.tag-link-light-pink,.block-item-article.type-2.light-pink{
  color: #db4d91;
}


.small_news_image img {
  height: 100%;
}
.tags-wrapper a{
  position: relative;
}
.tags-wrapper a:hover:before{
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  bottom: 4px;
  left: 0;
}
.exclusive-page .wrapper_cat_title .title{
  border-bottom: none;
  padding-bottom: 0;
}
.exclusive-page .wrapper_cat_title{
  border-bottom: 1px solid currentColor;
}
.exclusive-page .wrapper_cat_title .tags-wrapper{
  margin-bottom: 0;
}

.min-height-item {
  margin-bottom: 0px !important;
  padding: 0px;
  /* min-height: 96px; */
}
.orange{
  color: #f2994a;
}
.blue{
  color: #0066cc;
}
.light-blue{
  color: #42b8de;
}
.purple{
  color: #9b51e0;
}
.pink{
  color: #db4d91;
}
.orange{
  color: #f2994a;
}
.light-orange{
  color: #e8bf42;
}
.dark-blue{
  color: #0066cc;
}
.light-blue{
  color: #42b8de;
}
.dark-green{
  color: #2db8af;
}
.light-green{
  color: #2db8af;
}
.light-purple{
  color: #9b51e0;
}
.light-pink{
  color: #db4d91;
}
.read-more:hover{
  text-decoration: underline;
}

@media (max-width: 1440px) {
  .min-height-item {
    /* min-height: 75px; */
  }
  .content * {
    margin-bottom: 10px;
  }
  .content .tags-wrapper a{
    margin-bottom: 0px;
  }
  .banner .content {
    bottom: 30px;
    left: 30px;
  }
  .block-item-article {
    padding: 15px;
    border-radius: 5px;
  }
  .banner, .img-wrapper{
    border-radius: 10px;
  }

  .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;
  }

  .tags-wrapper a,
  .banner .tags-wrapper a {
    /* font-size: 7px; */
    padding: 0px;
    height: 25px;
  }
  .simple-page h1{
    line-height: 40px;
  }
}
@media (max-width:1440px) and (min-width:1200px) {
  .toggle-block ul li a{
    font-size: 12px;
  }

  .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 4fr;
}
@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;
    display: flex;
    flex-direction: column;
  }
  .seo-block .block-article-grid .block-item-article{
    margin: 0px !important;
    margin-top: 20px !important;
  }
  .wp-singular .seo-block .block-article-grid .block-item-article{
    margin-top: 0px !important;
  }
}
/* end main banner */
/* BLUE */
.blue.block-item-article{
  border-color: #0066cc;
}

.blue.block-item-article .rating {
  background: #0066cc;
}
.exclusive-page .blue .title {
  border-color: #0066cc;
}


.blue .tags-wrapper a {
  /* border-color: #0066cc; */
  color: #0066cc;
}

.blue .article-info span:not(.article-info span:last-child) {
  border-color: #0066cc;
}

/* 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;
}
.exclusive-page .light-blue .title {
  border-color: #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 {
  border-color: #0066cc;
}
.exclusive-page .dark-blue .title {
  border-color: #0066cc;
}

.dark-blue.block-item-article .rating {
  background: #0066cc;
}

.dark-blue .tags-wrapper a {
  /* border-color: #0066cc; */
  color: #0066cc;
}

.dark-blue .article-info span:not(.article-info span:last-child) {
  border-color: #0066cc;
}

/* ORANGE */
.orange.block-item-article,
.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) {
  color: #f2994a;
} */
.exclusive-page .orange .title {
  border-color: #f2994a;
}

.orange .article-info span:not(.article-info span:last-child) {
  border-color: #f2994a;
}

/* LIGHT ORANGE */
.light-orange.block-item-article,
.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;
}
.exclusive-page .light-orange .title {
  border-color: #e8bf42;
}

.light-orange .article-info span:not(.article-info span:last-child) {
  border-color: #e8bf42;
}

/* PURPLE */
.purple.block-item-article,
.purple.block-item-article.type-2::after {
  border-color: #bb6bd9;
}

.purple.block-item-article .rating {
  background: #bb6bd9;
}
.exclusive-page .purple .title {
  border-color: #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,
.purple.type-2.block-item-article.type-2::after {
  border-color: #9b51e0;
}

.purple.type-2.block-item-article .rating {
  background: #9b51e0;
}
.exclusive-page .purple.type-2  .title {
  border-color: #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,
.pink.block-item-article.type-2::after {
  border-color: #db4d91;
}

.pink.block-item-article .rating {
  background: #db4d91;
}
.exclusive-page .pink .title {
  border-color: #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,
.blue-green.block-item-article.type-2::after {
  border-color: #2db8af;
}

.blue-green.block-item-article .rating {
  background: #2db8af;
}
.exclusive-page .blue-green .title {
  border-color: #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;
}
.single_wrap_widget .h3{
  margin-bottom: 20px;
}
.author-title{
  position: relative;
  padding-bottom: 15px;
}
.author-title:before{
  position: relative;
  left: 0px;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #0066cc;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

/* media */

@media (min-width: 1200px) {
  .tags-wrapper.light-color a:hover {
    color: #ffffff !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;
  } */
  .banner {
    height: 590px;
  }

  .block-item-article .rating {
    top: 10px;
    right: 10px;
  }
}
@media (min-width:1200px) and (max-width:1440px) {

  .tags-wrapper a, .banner .tags-wrapper a{
    height: 20px;
  }
  .min-height-item{
    /* min-height: 70px; */
  }
}

@media (max-width: 1199px) {
  .align-items-stretch .banner,
  .banner {
    margin-bottom: 10px;
    height: auto;
  }

  .tags-wrapper a,
  .banner .tags-wrapper a {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .banner .content {
    left: 15px;
    right: 15px;
    bottom: 20px;
  }
  .d-flex-list-item .block-item-article .content {
    padding: 0px;
  }

  .content * {
    margin-bottom: 10px;
  }
  .tags-wrapper a, .banner .tags-wrapper a{
    font-size: 12px;
    height: 16px;
    /* color: #9F9F9F; */
  }

  .d-flex-list-item .block-item-article{
    background-color: #ffffff;
  }
  .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: 12px;
  }
  .author-link::before {
    bottom: 3px;
}

  .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: #0066cc;
}

.blue .btn {
  border-color: #0066cc;
}

.light-blue .text-btn {
  color: #42b8de;
}

.light-blue .btn {
  border-color: #42b8de;
}

.dark-blue .text-btn {
  color: #0066cc;
}

.dark-blue .btn {
  border-color: #0066cc;
}

.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: #0066cc;
    color: #ffffff;
  }

  .light-blue .btn:hover {
    background: #42b8de;
  }

  .dark-blue .btn:hover {
    background: #0066cc;
  }

  .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;
}
.logo_another_site_link:hover img{
  filter: brightness(1) invert(0);
}
@media (max-width: 1440px) and (min-width: 1200px){
  .single-post h1, .single-post .h1 {font-size: 30px;}
}

@media (min-width: 1200px) {

  .toggle-block ul li:hover a {
    color: #0066cc;
  }
  .toggle-block-footer ul li:hover a {
    color: #ffffff;
    text-decoration: underline;
  }

  /* .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: #0066cc;
  }

  .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: #0066cc;
  }

  .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;
  } */

  .menu .menu-button:hover:before,
  .menu .menu-button:hover:after,
  .menu .menu-button:hover span {
    background: #0066cc;
  }

  .menu .menu-header-search:hover > svg path {
    fill: #0066cc;
  }

  /* 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:#0066cc;}
  .list-menu > li.pink > p a:hover{color:#db4d91;}
  .list-menu > li.dark-blue > p a:hover{color:#0066cc;}

}

@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: 767px) {
  .menu-button:before{
    top: 52%;
  }
  .menu.active .menu-button:before{
    top: 50%;
  }
  .menu-button::before {
    margin-top: -9px;
}
}
@media (max-width: 575px) {
  .drop-menu__nav ul.menu {
    padding: 20px 15px;
  }
}


