/*
Tabs content:

	*normalize
	*header
	*main
		**best
		**works
		**cleaning
		**service
		**order_now
		**animation
		**tabs
		**review
	*footer
	*media-queries
*/

@font-face {
    font-family: 'Onest', sans-serif;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Onest', sans-serif;
    font-weight: normal;
    font-style: normal;
}


/*================= *normalize =================*/


/*================= END *normalize =================*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

*::-moz-selection {
    background-color: #FFCC01;
}

*::selection {
    background-color: #FFCC01;
}

.container {
    width: 1580px;
    max-width: 100%;
    margin: 0 auto;
}

.container__inner {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

html,
body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 62.5%;
}

html.zoom-sm,
body.zoom-sm {
    font-size: 68%;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 650px; /* изменить высоту на нужную */
  overflow: hidden;
  margin: 0 auto; /* центрирование */
  top: 20px;
}

.slider-wrapper {
text-align: center;

}

.slider-wrapper img {
  max-width: 1000px !important;
  height: auto !important;
  margin-top: 10px !important;
}

.slider-controls {
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
 top: 300px;
}



.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
    top: 280px;
  z-index: 0;
  left: 50%;
  transform: translateX(-50%);
}

.slider-dots .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #999;
    top: 20px;
  margin: 0 5px;
  cursor: pointer;
  
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
margin-right: 490px;
  margin-left: 490px;
  height: 80px;
  background-color: #1960b7;
  border: none;
  color: #fff;
  cursor: pointer;
}



.prev {
  right: 0;
}

.next {
  left: 0;
}



.dots-wrapper {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #bbb;
  display: inline-block;
  cursor: pointer;
}

.header-title {
    color: #ffffff;          
    font-size: 24px;         
    font-weight: 700;        
    margin: 0;
    line-height: 1.2;
}


.dot.active {
  background-color: blue;
}


html.zoom-lg,
body.zoom-lg {
    font-size: 75%;
}


html.zoom-xl,
body.zoom-xl {
    font-size: 82%;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a {
    font-family: 'Onest', sans-serif;
}

ul {
    padding: 0;
    margin: 0;
}

nav ul li a {
    font-family: 'Onest', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.theme_white img {
    filter: grayscale(1);
}

.theme_dark img {
    filter: grayscale(1);
}

main {
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
}

.main--other-section {
    padding: 25px 0;
}

.color_list {
    display: flex;
    align-items: center;
}

.color_list__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.theme_white .color_list__item {
    color: #000000;
    border: 1px solid #000000;
}

.theme_dark .color_list__item:nth-child(){
    background-color: #ffffff;
    color: #000000;
}

.theme_white .color_list__item:nth-child(2){
    background-color: #000000;
    color: #ffffff;
}


/*================= *header =================*/

.header--top-area {
    width: 100%;
    background-color: #212b41;
}
    
    
  
    .button-to-top {
   position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0, 0, 255, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  opacity: 0.6; /* Полупрозрачность кнопки по умолчанию */
  font-size: 33px;
  display: none;
} 
  
  .button-to-top:hover {
  opacity: 1; /* Непрозрачность кнопки при наведении на нее курсора */
}
 


.theme_dark .header--top-area {
    background-color: #000000;
}

.theme_white .header--top-area {
    background-color: #ffffff;
}

.header--search-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header--region label {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    margin-right: 10px;
}

.theme_white .header--region label {
   color: #000000;
}

.header--search-form {
/*    background-color: #162035;*/
}

.theme_dark .header--search-form {
    background-color: #000000;
}

.theme_white  .header--search-form{
    background-color: #Ffffff;
 }
 

.header--search-form form {
    display: flex;
    align-items: center;
}

.header--search-form input {
    width: 0;
    border: none;
    padding: 10px 0;
    -webkit-transition: width .6s;
    transition: width .6s;
}

.header--search-form input.active {
    width: 600px;
    padding: 10px 5px;
    -webkit-transition: width .6s;
    transition: width .6s;
}

.theme_white .header--search-form input.active {
    border: 1px solid #000000;
}

.header--search-form span {
    max-height: 30px;
    text-align: center;
    padding: 0 8px 0 5px;
    cursor: pointer;
}


.header--search-form span:hover i {
    -webkit-transition: color .6s;
    transition: color .6s;
    color: #FFCC01;
}

.header--search-form span img {
    width: 100%;
    height: 100%;
}

.header--search-form i {
    -webkit-transition: color .6s;
    transition: color .6s;
    font-size: 1.4rem;
    color: #fff;
}

.theme_white .header--search-form i {
    color: #000000;
}

.header--search-form .od_forum {
    margin-top: 5px;
    width: 20px;
    height: auto;
}

.theme_white .header--search-form .od_forum {
    filter: grayscale(1);
}

.header--search-form .zoom-font img {
    width: 30px;
    height: auto;
    margin-bottom: -2px;
}

.theme_white .header--search-form .zoom-font img {
   filter: contrast(0)
}

.header--nav-burger {
    display: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: #162035;
    cursor: pointer;
}

.theme_dark .header--nav-burger {
    background-color: #000000;
}


.theme_white .header--nav-burger{
    background-color: #ffffff;
}

.header--nav-burger .logo {
    width: 250px;
}

.header--nav-burger .burger {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header--nav-burger .burger span {
    width: 100%;
    height: 10px;
    border-bottom: 2px solid #fff;
}

.theme_white .header--nav-burger .burger span {
    border-bottom: 2px solid #000000;
}

.header--nav-burger .burger.active span:first-child {
    display: none;
}

.header--nav-burger .burger.active span:nth-child(2) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

.header--nav-burger .burger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(-3px, -7px);
    -ms-transform: rotate(-45deg) translate(-3px, -7px);
    transform: rotate(-45deg) translate(-3px, -7px);
}

.header--nav-area {
    position: relative;
    background-color: #162035;
}

.theme_dark .header--nav-area {
    background-color: #000000;
}

.theme_white .header--nav-area{
    background-color: #ffffff;
}


.header--nav-area ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style-type: none;
    padding-left: 0;
    text-align: center;
}

.header--nav-area ul li {
    position: relative;
    margin-right: 20px;
}

.header--nav-area ul li:last-child {
    margin-right: 0;
}

.header--nav-area ul li:not(.logo):hover {
    background-color: #212b41;
}

.theme_dark .header--nav-area ul li:not(.logo):hover {
    background-color: #ffffff;
    color: #000000;
}


.theme_white .header--nav-area ul li:not(.logo):hover{
    background-color: #000000;
    color: #ffffff;
}


.theme_dark .header--nav-area ul li a:hover {
    color: #000000;
}

.theme_white .header--nav-area ul li a:hover{
    color: #ffffff;
}

.header--nav-area ul a {
    display: block;
    padding: 50px 20px;
    height: 100%;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}


.theme_white .header--nav-area ul a {
    color: #000000;
} 

.header--nav-area ul i {
    display: none;
}

.header--nav-area ul.dropdown {
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    left: 0;
    top: 154px;
    visibility: hidden;
    opacity: 0;
    background-color: #212b41;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    z-index: 100;
}


.theme_dark  ul.dropdown {
    background-color: #000000;
}

.theme_white ul.dropdown{
    background-color: #ffffff;
} 
.header--nav-area ul.dropdown li {
    display: inline-block;
}

.header--nav-area ul.dropdown li:hover {
    background-color: transparent;
}

.header--nav-area ul.dropdown li:hover a {
    color: #fff;
}


.theme_dark .header--nav-area ul.dropdown li:hover a {
    color: #000000;
}

.header--nav-area ul.dropdown a {
    padding: 40px 5px;
    font-family: 'Onest', sans-serif;
    color: #e1e3e8;
    font-size: 1.5rem;
    text-transform: none;
}

.theme_white .header--nav-area ul.dropdown a {
    color: #000000;
} 

.header--nav-area ul.dropdown.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.header--nav-area ul.dropdown.mobile-active {
    position: relative;
    top: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.header--nav-area ul .logo {
    width: 350px;
    max-width: 100%;
    height: 100%;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}

.theme_white .header--nav-area ul .logo {
    filter: contrast(0);
}

.header--nav-area ul .logo img {
    width: 100%;
}

.header--nav-area ul .logo a {
    padding: 20px 0 0;
}

.header--nav-area ul .logo:hover {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}


/*================= END *header =================*/


/*================= *main =================*/

.theme_white main {
    background-color: #000000;
}

.main--content-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
   /* padding: 60px 0;*/
   padding-top: 60px;
}

.main--content-section h2 {
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #3954a5;
    text-transform: uppercase;
}

.theme_dark .main--content-section h2 {
    color: #000000;
}

.theme_white  .main--content-section h2 {
    color: #ffffff;
}

.main--content-left {
    width: 80%;
    padding-right: 20px;
}
.main--content-left .phones-block { width:100%; background: #FFDF4F; padding: 20px; display: flex; flex-direction: column; gap: 20px; font-size: 18px; font-family: 'Onest', sans-serif;}
.main--content-left .phones { display: flex; flex-wrap: wrap; width:100%; gap: 15px; justify-content: space-between; }
.main--content-left .phones-block .title { text-align: center; font-weight: bold; font-size: 20px; text-transform: uppercase;}
.main--content-left .phones > div a { display: block; color: #293237; }
.main--last-news-header {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.main--last-news-header a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #3954a5;
    text-decoration: none;
}


.theme_white .main--last-news-header a{
    color: #ffffff;
}

.theme_dark .main--last-news-header a  {
    color: #000000;
}


.main--last-news-area {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px dashed #ccc;
}

.main--last-news-item {
    width: 350px;
    max-width: 100%;
    margin-bottom: 25px;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}

.main--last-news-item p {
    margin-bottom: 5px;
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    line-height: 19px;
    font-weight: 600;

}

.main--last-news-item p a {
    color: #293237;
    text-decoration: none;
}

.theme_white .main--last-news-item p a {
    color: #ffffff;
}

.main--last-news-item p a:hover {
    color: #162035;
}


.theme_white .main--last-news-item p a:hover  {
    color: #ffffff;
}


.main--last-news-item span {
    font-family: 'Onest', sans-serif;
    font-size: 1.4rem;
    color: #c1c4d0;
}

.theme_dark .main--last-news-item span  {
    color: #000000;
}


.theme_white .main--last-news-item span  {
    color: #ffffff;
}

.main--last-news-item span:nth-child(2) {
    margin-right: 15px;
}

.main--last-news-item span:nth-child(3) {
    margin-right: 15px;
}

.main--last-news-item:hover {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateX(2%);
    -ms-transform: translateX(2%);
    transform: translateX(2%);
}

.main--rss-area {
    position: relative;
}

.main--rss-area input[type='email'] {
    width: 500px;
    max-width: 100%;
    padding: 15px 20px;
    margin-right: 40px;
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    color: #444;
    border: none;
    border-bottom: 1px solid #c0c0c0;
    z-index: 2;
}

.main--rss-area input[type='email']:focus {
    outline: #333333;
}

.main--rss-area input[type='email']:focus+label {
    font-size: 1rem;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(650%);
    -ms-transform: translateY(650%);
    transform: translateY(650%);
}

.main--rss-area input[type='submit'] {
    width: 250px;
    max-width: 100%;
    padding: 15px 0;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    border: none;
    background-color: #162035;
    cursor: pointer;
}


.theme_white .main--rss-area input[type='submit'] {
    background-color: #ffffff;
    color: #000000;
  
}
 

.theme_dark .main--rss-area input[type='submit']  {
    color: #ffffff;
    background-color: #000000;
}

.main--rss-area label {
    position: absolute;
    top: 0;
    left: 10px;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    transform: translateY(200%);
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #767676;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    text-transform: uppercase;
    z-index: 2;
}

.main--slider-area {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main--slider-item:nth-child(1) {
    width: 25%;
    margin-right: 2%;
}

.main--slider-item:nth-child(1) h2 {
    margin-bottom: 20px;
    
}

.main--slider-item:nth-child(1) p {
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    /*text-transform: uppercase;*/
    letter-spacing: -1px;
    text-align: center;
}

.main--slider-item:nth-child(1) p span{
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -1px;
    text-align: center;
}

.main--slider-item:nth-child(1) img {
    padding: 0 20px;
    max-width: 90%;
    max-height: 100%;
    margin-bottom: 10px;
    padding-left: 21%;
}

.main--slider-item:nth-child(2) {
    width: 50%;
    margin-right: 2%;
}

.main--slider-item:nth-child(3) {
    width: 20%;
    
}

.main--slider-item:nth-child(2) .owl-carousel {
    margin-bottom: 65px;
}

.main--content-section_2{
    margin-bottom: 55px;
}

.main--content-section_2 .main--content-left{
    width: 100%;
    padding-right: 20px;
}

.main--slider-item-owl {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main--slider-item-owl .owl-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main--slider-item-owl .owl-dot {
    width: 14px;
    height: 14px;
    margin-right: 15px;
    border-radius: 50%;
    border: 1px solid #767676 !important;
    background-color: #fff !important;
}

.main--slider-item-owl .owl-dot.active {
    background-color: #767676 !important;
}

.main--info-area {
    margin-bottom: 50px;
    text-align: center;
}

.main--info-area h2 {
    margin-bottom: 15px;
}

.main--info-area img {
    width: 240px;
    max-width: 100%;
    height: auto;
}

.main--anons-area {
    text-align: center;
}

.main--anons-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
    text-decoration: none;
    color: #444444;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}

.main--anons-item p {
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
}

.theme_white .main--anons-item p {
    color: #ffffff;
}

.main--anons-item .item-date {
    font-size: 4rem;
    font-weight: bold;
    color: #162035;
}


.theme_dark .main--anons-item .item-date  {
    color: #000000;
}


.theme_white .main--anons-item .item-date   {
    color: #ffffff;
}

.main--anons-item .item-month {
    font-size: 1.4rem;
    color: #162035;
}

.theme_dark .main--anons-item .item-month {
    color: #000000;
}

.theme_white .main--anons-item .item-month    {
    color: #ffffff;
}


.main--anons-item:hover {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    -webkit-transform: translateX(1%);
    -ms-transform: translateX(1%);
    transform: translateX(1%);
}

.main--anons-date {
    padding: 0 15px 0 0;
    border-right: 1px dashed #162035;
}

.theme_dark .main--anons-date {
    border-right: 1px dashed #000000;
}

.theme_white  .main--anons-date {
    border-right: 1px dashed #000000;
}

.main--anons-text {
    padding-left: 10px;
}

.main--btns-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.main--btns-item {
    width: 200px;
    margin-right: 20px;
    margin-bottom: 10px;
    text-align: center;
    background-color: #454B5C;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
}

.theme_dark .main--btns-item {
    background-color: #000000;
}

.theme_white  .main--btns-item  {

    background-color: #ffffff;
}

.main--btns-item:last-child {
    margin-right: 0;
}

.main--btns-item:hover {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(-5%);
    -ms-transform: translateY(-5%);
    transform: translateY(-5%);
}

.main--btns-item a {
    display: block;
    padding: 25px 15px;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.theme_white .main--btns-item a {
    color: #000000;
}

.main--gallery-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.main--gallery-area h2 {
    margin-bottom: 10px;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #3954a5;
    text-transform: uppercase;
}

.theme_dark .main--gallery-area h2  {
    color: #000000;
}

.theme_white .main--gallery-area h2  {
    color: #ffffff;
}

.main--gallery-item {
    padding: 15px 15px;
    width: 50%;
    margin-right: 30px
    text-decoration: none;
    overflow: hidden;
  
}

.main--gallery-item:last-child {
    margin-right: 0;
}

.main--gallery-preview {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 405px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -webkit-transition: all .6s;
    transition: all .6s;
}

.main--gallery-preview:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(57, 84, 165, 0.6);
    -webkit-transition: .6s;
    transition: .6s;
    z-index: 2;
    overflow: hidden;
}

.theme_dark .main--gallery-preview:after  {
    background-color: rgba(0, 0, 0 , 0.6);
}

.theme_white .main--gallery-preview:after   {
    background-color: rgba(255, 255, 255 , 0.6);
}

.main--gallery-preview:hover {
    -webkit-transition: all .6s;
    transition: all .6s;
    -webkit-transform: scale(1.005);
    -ms-transform: scale(1.005);
    transform: scale(1.005);
}

.main--gallery-preview:hover:after {
    -webkit-transition: .6s;
    transition: .6s;
    background-color: rgba(57, 84, 165, 0.4);
}

.theme_dark .main--gallery-preview:hover:after {
    background-color: rgba(0, 0, 0, 0.4);
}


.theme_white .main--gallery-preview:hover:after  {
    background-color: rgba(0, 0, 0, 0.4);
}

.main--gallery-preview:hover .main--gallery-text.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.main--gallery-preview:hover .main--gallery-text.active p {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.main--gallery-text {
    position: absolute;
    z-index: 3;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
}

.main--gallery-text h3 {
    margin-bottom: 10px;
    font-family: 'Onest', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.theme_white .main--gallery-text h3  {
    color: #ffffff;
}


.main--gallery-text p {
    font-family: 'Onest', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: #fff;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.theme_white .main--gallery-text p  {
    color: #ffffff;
}


.main--useful-links {
    margin-bottom: 50px;
}

.main--useful-links h2 {
    margin-bottom: 10px;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #3954a5;
    text-transform: uppercase;
}

.theme_dark .main--useful-links h2  {
    color: #000000;
}

.theme_white .main--useful-links h2  {
    color: #ffffff;
}

.main--useful-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main--useful-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    margin-bottom: 20px;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
}

.main--useful-item .gerb img {
    width: 80px;
    height: 70px;
}

.theme_white .main--useful-item .gerb img {
    height: 100%;
    filter: grayscale(1);
}

.main--useful-item .link {
    width: 250px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    background-color: #162035;
}

.theme_dark .main--useful-item .link  {
    background-color: #000000;
}

.theme_white .main--useful-item .link   {
    color: #000;
    background-color: #ffffff;
}



.main--useful-item:hover {
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: translateX(2%);
    -ms-transform: translateX(2%);
    transform: translateX(2%);
}

.main--section-title {
    margin-bottom: 30px;
}

.main--section-title h2 {
    color: #3954a5;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Onest', sans-serif;
    text-transform: uppercase;
}


.theme_dark .main--section-title h2  {
    color: #000000;
}

.theme_white .main--section-title h2  {
    color: #ffffff;
}

.main--news-section {
    padding: 25px 0;
}

.main--news-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px dashed #767676;
}

.main--news-date-item {
    padding: 25px 0;
}

.main--news-date-item p {
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #767676;
}

.theme_dark .main--news-date-item p {
    color: #000000;
}

.theme_white .main--news-date-item p   {
    color: #ffffff;
}

.main--news-date-item a {
    color: #767676;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}

.theme_dark .main--news-date-item a {
    color: #000000;
}

.theme_white .main--news-date-item a   {
    color: #ffffff;
}

.main--news-date-item a:hover {
    border-bottom: 1px dashed #3954a5;
}

.main--news-title {
    padding: 25px 0;
}

.main--news-title h1 {
    font-size: 2rem;
    font-family: 'Onest', sans-serif;
    color: #333333;
    text-transform: uppercase;
}

.theme_dark .main--news-title h1 {
    color: #000000;
}


.theme_white .main--news-title h1   {
    color: #ffffff;
}

.main--news-img {
    margin-bottom: 15px;
    width: 600px;
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

.main--news-img img {
    width: 100%;
    height: auto;
}

.main--news-text p {
   /* font-family: "FuturaNewBook", Aria, Helvetica, sans-serif;*/
    font-family:  Aria, Helvetica, sans-serif;
    /*font-family: 'Onest', sans-serif;*/
    /*font-size: 1.8rem !important;*/
    font-size: 16px !important;
   /* color: #767676 !important;*/
    color: #000000 !important;
    font-weight: 300;
    line-height: 1.6 !important;
    text-align: justify;
/*    text-indent: 16px;*/
}

.theme_dark .main--news-text p {
    color: #000000 !important;
}

.theme_white .main--news-text p  {
    color: #ffffff !important;
}

.theme_white .main--news-text p span {
    color: #ffffff !important;
}


.main--news-text img {
    width: 100% !important;
    max-width: 650px !important;
    height: auto !important;
}

.main--all-news-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main--all-news-item {
    padding: 24px 30px;
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.2s;
    display: flex;
    flex-direction: column;
}

.main--all-news-item a {
    display: block;
}
.main--all-news-item:hover {
            background-color: #f9f9f9;
}
.main--all-news-item .main--all-news-date {
            display: inline-block;
            font-size: 14px;
            color: #8B0000;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            font-family: "Onest",sans-serif;
        }

.main--all-news-item .main--all-news-title a {
    font-size: 20px;
    font-weight: 600;
    color: #162035;
    text-decoration: none;
    line-height: 1.3;
    display: inline-block;
    transition: color 0.2s;
}
.main--all-news-item .main--all-news-desc
{
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
    font-family: "Onest",sans-serif;
}
.main--all-news-more {
            align-self: flex-start;
 }
        
.more-button {
    display: inline-block;
    background-color: #f0f0f0;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.more-button:hover {
    background-color: #162035;
    color: white;
    border-color: #162035;
}

.more-button i {
    margin-left: 5px;
    font-size: 12px;
}
        
.news-title a:hover {
    color: #8B0000;
    text-decoration: underline;
}

.theme_dark .main--all-news-date p {
    color: #000;
}

.theme_white .main--all-news-date p {
    color: #ffffff;
}

.main--all-news-date a {
    color: #767676;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
}

.theme_dark .main--all-news-date a {
    color: #000;
}

.theme_white .main--all-news-date a {
    color: #ffffff;
}


.main--all-news-date a:hover {
    border-bottom: 1px dashed #3954a5;
}

.main--all-news-title a {
    font-size: 1.6rem;
    font-family: 'Onest', sans-serif;
    color: #293237;
    text-decoration: none;
}

.theme_white .main--all-news-title a {
    color: #ffffff;
}



.main--all-video-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main--all-video-item {
    margin-bottom: 15px;
    width: 550px;
    height: auto;
    max-height: 450px;
    max-width: 100%;
}

.main--all-video-title {
    margin-bottom: 10px;
}

.main--all-video-title h2 {
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
}

.theme_dark .main--all-video-title h2 {
    color: #000;
}

.theme_white .main--all-video-title h2 {
    color: #ffffff;
}

.main--all-video-date {
    margin-bottom: 10px;
}

.main--all-video-date span {
    font-family: 'Onest', sans-serif;
    font-size: 1.4rem;
    color: #c0c0c0;
}

.theme_dark .main--all-video-date span {
    color: #000000;
}

.theme_white .main--all-video-date span {
    color: #ffffff;
}

.main--all-video-date i {
    margin-right: 10px;
    font-size: 1.4rem;
    color: #c0c0c0;
}

.theme_dark .main--all-video-date i {
    color: #000000;
}

.theme_white .main--all-video-date i {
    color: #ffffff;
}

.main--all-video {
    width: 100%;
}

.main--all-video iframe {
    width: 100%;
}

.main--all-video img {
    max-width: 350px !important;
    height: auto !important;
}

.main--paggination-news {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px 0;
}

.main--paggination-news a {
    position: relative;
    display: block;
    padding: 5px 10px;
    margin-right: 10px;
    font-family: 'Onest', sans-serif;
    font-size: 2.4rem;
    color: #333333;
    border: 1px solid #c0c0c0;
    text-decoration: none;
    cursor: pointer;
}

.theme_white .main--paggination-news a{
    color: #ffffff;
    border: 1px solid #ffffff;
}

.main--paggination-news a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transition: height .6s;
    transition: height .6s;
}

.main--paggination-news a:hover {
    color: #3954a5;
    font-weight: 500;
}

.main--paggination-news a:hover:after {
    -webkit-transition: height .6s;
    transition: height .6s;
    height: 100%;
}

.main--paggination-news a:last-child {
    margin-right: 0;
}




.main--alph-area .item .content-text  {
    font-size: 1.8rem;
}
.main--other-page-area h3 {
    font-family: 'Onest', sans-serif !important;
    font-size: 1.8rem !important;
    color: #333333 !important;
    line-height: 1.8;
}


.theme_white .main--other-page-area h3 {
    color: #ffffff !important;
}

.main--other-page-area h3 a {
    color: inherit !important;
    text-decoration: none !important;
}

.main--other-page-area h3 a:hover {
    color: #3954a5 !important;
}

.main--other-page-area h3 a span {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

.main--other-page-area p {
    font-family: 'Onest', sans-serif !important;
    font-size: 1.8rem !important;
    color: #333333 !important;
    line-height: 1.8;
}

.theme_white .main--other-page-area p {
    color: #ffffff !important;
}

.main--other-page-area p a {
    color: inherit !important;
    text-decoration: none !important;
}

.main--other-page-area p a:hover {
    color: #3954a5 !important;
}

.main--other-page-area p span {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

.main--other-page-area p strong {
    font-family: inherit !important;
    font-size: inherit !important;
    color: inherit !important;
}

.main--other-page-area p.success {
    padding: 10px 0;
    margin-bottom: 15px;
    text-align: center;
    color: #006400 !important;
    border-bottom: 1px dashed #006400;
}

.main--other-page-area p.error {
    padding: 10px 0;
    margin-bottom: 20px;
    text-align: center;
    color: #ff4545 !important;
    border-bottom: 1px dashed #ff4545;
}

.main--other-page-area table {
    width: 100% !important;
    margin-bottom: 20px;
}

.main--other-page-area table td {
    padding: 5px;
}

.main--other-page-area img {
    width: 100%;
    max-width: 650px;
    height: auto;
}

.theme_white .main--other-page-area img {
 filter: grayscale(1);
}

.main--other-page-area form {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
}

.main--other-page-area form.voice_form {
    text-align: center;
}

.main--other-page-area input {
    padding: 10px 5px;
    margin-bottom: 10px;
    width: 650px;
    max-width: 100%;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #333333;
}

.main--other-page-area input[type='submit'] {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid transparent;
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    background-color: #3954a5;
    cursor: pointer;
    -webkit-transition: background-color .4s ease-in-out, color .4s ease-in-out;
    transition: background-color .4s ease-in-out, color .4s ease-in-out;
}

.theme_dark .main--other-page-area input[type='submit']  {
    color: #ffffff;
    background-color: #000000;
}

.theme_white .main--other-page-area input[type='submit']  {
    color: #000000;
    background-color: #ffffff;
}


.main--other-page-area input[type='submit']:hover {
    -webkit-transition: background-color .4s ease-in-out, color .4s ease-in-out;
    transition: background-color .4s ease-in-out, color .4s ease-in-out;
    border: 1px solid #3954a5;
    color: #3954a5;
    background-color: #fff;
}


.theme_dark .main--other-page-area input[type='submit']:hover  {
    color: #000000;
    background-color: #ffffff;
}

.theme_white .main--other-page-area input[type='submit']:hover  {
    color: #ffffff;
    background-color: #000000;
}



.main--other-page-area .voice_form_check {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.main--other-page-area textarea {
    padding: 10px 5px;
    margin-bottom: 10px;
    width: 650px;
    max-width: 100%;
    max-height: 200px;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #333333;
}

.main--other-page-area select {
    padding: 10px 5px;
    margin-bottom: 10px;
    width: 350px;
    max-width: 100%;
    max-height: 200px;
}

.main--other-page-area label {
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #333333;
}

.main--other-page-area .zapis_form input {
    margin-bottom: 15px;
}

.main--other-page-area .zapis_form input::placeholder,
.main--other-page-area .zapis_form textarea::placeholder {
    opacity: 1;
    color: #333333;
}

.main--other-page-area .zapis_form select {
    padding: 10px 5px;
    margin-bottom: 15px;
    width: 650px;
    max-width: 100%;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #333333;
}

.main--other-page-area .zapis_form textarea {
    height: 100px;
    max-height: 300px;
}


/*style for voice area*/

.main--other-page-area .voice_area {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.main--other-page-area h3.voice_area_title {
    text-align: center;
}

.main--other-page-area .voice_area a {
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #919191;
    transition: transform .4s ease;
    text-decoration: none;
}

.main--other-page-area .voice_area a:not(:last-child) {
    margin-right: 50px;
}

.main--other-page-area .voice_area a:hover .voice_like {
    transform: scale(1.05);
    transition: transform .4s ease;
}

.main--other-page-area .voice_area a:hover .voice_like.voice_like--dislike {
    transform: scale(1.05) rotate(180deg);
    transition: transform .4s ease;
}

.main--other-page-area .voice_area .voice_like {
    display: block;
    width: 80px;
    height: auto;
}

.main--other-page-area .voice_area .voice_like.voice_like--dislike {
    transform: rotate(180deg);
}

.main--declare-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main--declare-area a {
    margin-right: 15px;
}

.main--all-photo-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main--all-photo-item {
    width: 350px;
}

.main--search-result h2 {
    margin: 15px 0;
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    color: #3954a5;
    text-transform: uppercase;
}


.theme_dark .main--search-result h2  {
    color: #000000;
}
.theme_white .main--search-result h2  {
    color: #ffffff;
}

.main--search-result ul {
    list-style-type: none;
}

.main--search-result li {
    margin-bottom: 10px;
}

.main--search-result a {
    display: block;
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    color: #333333;
    text-decoration: none;
    -webkit-transition: color .4s;
    transition: color .4s;
}

.main--search-result a:hover {
    color: #3954a5;
    -webkit-transition: color .4s;
    transition: color .4s;
}


/*================= END *main =================*/


/*================= *footer =================*/

.footer {
    background-color: #162035;
}

.theme_dark .footer {
    background-color: #000000;
}

.theme_white  .footer  {
    background-color: #ffffff;
}


.footer--area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 0;
}

.footer--area h2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-family: 'Onest', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px dashed #162035;
}


.theme_white .footer--area h2  {
    color: #000000;
}


.theme_dark .footer--area h2 {
    border-bottom: 1px dashed #ffffff;
}


.theme_white .footer--area h2  {
    border-bottom: 1px dashed #000000;
}


.footer--area p {
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
   /* color: #eee;*/
    color: #c0c0c0;
}

.footer--area .head {
    color: #fff;
}

.footer--area p a {
  /*  color: #eee;*/
  color: #c0c0c0;
    text-decoration: none;
}

.theme_white .footer--area p  {
    color: #000000;
}

.theme_white .footer--area p a  {
    color: #000000;
}

.footer--area p a:hover {
    text-decoration: underline;
}

.footer--area ul {
    list-style-type: none;
    padding-left: 0;
}

.footer--area ul li {
    margin-bottom: 10px;
}

.footer--area ul li:last-child {
    margin-bottom: 0;
}

.footer--area ul a {
    font-size: 1.6rem;
    color: #c0c0c0;
    text-decoration: none;
    -webkit-transition: color .6s;
    transition: color .6s;
}


.theme_white .footer--area ul a {
    color: #000000;
}

.footer--area ul a:hover {
    -webkit-transition: color .6s;
    transition: color .6s;
    color: #fff;
    text-decoration: underline;
}

.footer--item {
    margin-bottom: 20px;
}

.footer--item-area {
    /*margin-top: 30px;*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer--item-work {
    margin-right: 20px;
}

.footer--item-work:not(:last-child) {
    padding-right: 20px;
    border-right: 1px dashed #162035;
    margin-right: 20px;
}


.theme_dark .footer--item-work:not(:last-child)  {
    border-right: 1px dashed #ffffff;
}


.theme_white .footer--item-work:not(:last-child)  {
    border-right: 1px dashed #000000;
}

.footer--center{
	text-align: center;
  color: #000000;
  
    font-family: 'Onest', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    color: #eee;
}

/*================= END *footer =================*/


/*================= *style for testing =================*/

.test__area {
    width: 100%;
    text-align: center;
}

.test__title {
    font-size: 28px;
    font-family: 'Onest', sans-serif;
    margin-bottom: 40px;
}

.test__tabs {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    flex-wrap: wrap;
}

.test__tabs li {
    width: 50%;
}

.test__tabs li a {
    display: block;
    padding: 15px 25px;
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    color: #dddddd;
    background-color: #fff;
    text-decoration: none;
}

.test__tabs li a.active {
    text-decoration: underline;
    color: #162035;
    background-color: #e6eaf9;
}

.test__content {
    position: absolute;
    margin-bottom: 40px;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
    opacity: 0;
    transition: visibility .4s ease;
    background-color: #e6eaf9;
}

.test__content.active {
    position: static;
    visibility: visible;
    opacity: 1;
    padding: 20px 30px;
}

.test__count {
    font-size: 16px;
    font-family: 'Onest', sans-serif;
    text-align: right;
}

.test__content_question_title {
    font-size: 24px;
    font-family: 'Onest', sans-serif;
    color: #4c4c4c;
    margin-bottom: 30px;
}

.test__content_question_list {
    list-style-type: none;
    text-align: left;
}

.test__content_question_list li {
    margin-bottom: 20px;
}

.test__content_question_list li a {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    font-size: 18px;
    font-weight: bold;
    color: #1e1e1e;
    text-decoration: none;
}

.test__content_question_list li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #1e1e1e;
    transform: translate(0, -50%);
}

.test__content_question_list li a.active:before {
    background-color: #1e1e1e;
}

.test__btn button {
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    border: 1px solid transparent;
    font-family: 'Onest', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    background-color: #3954a5;
    cursor: pointer;
    transition: background-color .4s ease-in-out, color .4s ease-in-out;
}

.test__btn button:hover {
    color: #3954a5;
    border: 1px solid #3954a5;
    background-color: #fff;
}

.test__finish {
    padding: 40px 20px;
}

.test__finish_title {
    font-size: 28px;
    font-family: 'Onest', sans-serif;
    margin-bottom: 40px;
}

.test__finish_count {
    font-size: 24px;
    font-family: 'Onest', sans-serif;
}

.test__finish_count span {
    font-size: 40px;
    color: #2F6FAB;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity .5s;
}

.fade-enter,
.fade-leave-to
/* .fade-leave-active до версии 2.1.8 */

{
    opacity: 0;
}


/*================= *style for testing =================*/


/*================= *media-queries =================*/

@media screen and (max-width: 1580px) {
    .container {
        padding: 0 15px;
    }
    .header--nav-area ul a {
        padding: 50px 10px;
    }
    .main--last-news-area {
        padding-bottom: 20px;
    }
    .main--btns-area {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .main--btns-item {
        width: 13.5%;
        margin-right: 10px;
    }
    .main--btns-item a {
        padding: 25px 10px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1510px) {
    .main--gallery-item {
        margin-right: 10px;
    }
}

@media screen and (max-width: 1420px) {
    .header--nav-area ul a {
        font-size: 1.3rem;
    }
    .header--nav-area ul.dropdown {
        top: 150px;
    }
}

@media screen and (max-width: 1380px) {
    .main--last-news-item {
        width: 300px;
    }
}

@media screen and (max-width: 1280px) {
    .container__inner {
        padding: 0 15px;
    }
    .header--nav-area ul a {
        font-size: 1rem;
    }
    .header--nav-area ul .dropdown a {
        font-size: 1.4rem;
    }
    .header--nav-area .logo {
        width: 300px;
    }
    .main--btns-item {
        width: 13.3%;
    }
    .main--last-news-item {
        width: 250px;
    }
    .main--last-news-item p {
        font-size: 1.4rem;
    }
    .main--rss-area {
        width: 100%;
    }
    .main--rss-area input[type='email'] {
        width: 100%;
        margin-bottom: 20px;
    }
    .main--news-text p {
        margin-left: 0 !important;
    }
    .main--all-video-item {
        width: 400px;
    }
    .test__tabs li a {
        font-size: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .main--content-left {
        width: 70%;
        padding-right: 10px;
    }
}

@media screen and (max-width: 980px) {

    .header--search-area {
        flex-wrap: wrap;
    }

    .header--search-form form {
        flex-wrap: wrap;
    }

    .header--nav-area ul a {
        font-size: 1rem;
    }

    .main--slider-item:nth-child(1) {
        margin-right: 0;
    }
}

@media screen and (max-width: 920px) {
    .main--other-page-area table {
        display: block;
        overflow: auto;
    }
    aside {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .header nav {
        position: relative;
    }
    .header--nav-burger {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .theme_white .header--nav-burger .logo img {
        filter: brightness(0);
    }
    .header--nav-desktop {
        display: none;
    }
    .header--nav-desktop.mobile-active {
        display: block;
        position: absolute;
        width: 100%;
        left: 0;
        z-index: 9999;
        background-color: #162035;
    }

    .theme_dark  .header--nav-desktop.mobile-active {
        background-color: #000000;
    }

    .theme_white  .header--nav-desktop.mobile-active {
        background-color: #ffffff;
    }
    .header--nav-desktop.mobile-active .main--menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .header--nav-desktop.mobile-active .main--menu li {
        margin-right: 0;
    }
    .header--nav-desktop.mobile-active .main--menu a {
        padding: 20px 5px;
    }
    .header--nav-desktop.mobile-active .main--menu i {
        display: inline-block;
    }
    .header--nav-area ul .logo {
        display: none;
    }
    .main--content-section {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .main--content-left {
        width: 100%;
    }
    .main--rss-area {
        width: 100%;
    }
    .main--rss-area input[type='email'] {
        width: 50%;
    }
    .main--info-area {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
    .main--btns-item {
        margin-right: 5px;
    }
    .main--btns-item a {
        padding: 20px 5px;
        font-size: 1.2rem;
    }
    .main--gallery-item {
        width: 100%;
    }
    .main--gallery-item:first-child {
        margin-bottom: 30px;
    }
    .footer--item:first-child {
        width: 100%;
    }
}

@media screen and (max-width: 840px) {
    .header--search-form input.active {
        width: 330px;
    }
    .main--anons-area {
        width: 100%;
    }
    .main--info-area {
        width: 45%;
        float: left;
    }
    .main--slider-item:nth-child(3) {
        width: 100%;
    }
    .main--btns-item {
        width: 25%;
    }
    .main--slider-item:nth-child(1) {
        width: 100%;
        margin-bottom: 15px;
    }
    .main--slider-item:nth-child(1) img {
        width: 350px;
    }
    .main--slider-item:nth-child(2) {
        width: 100%;
    }
    .main--all-video-item {
        width: 100%;
    }
    .test__tabs li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 740px) {
 
    .main--other-page-area p {
        font-size: 1.4rem !important;
    }
    .main--other-page-area iframe {
        width: 100%;
    }
    .main--other-page-area img {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .main--last-news-item {
        width: 100%;
    }
    .main--section-title h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 420px) {
    .header--nav-burger .logo {
        width: 200px;
    }

    .header--search-form input.active {
        width: 230px;
    }
    .main--content-left {
        padding-right: 0;
    }
    .main--last-news-area {
        margin-bottom: 25px;
    }
    .main--rss-area input[type='email'] {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    .main--rss-area input[type='submit'] {
        width: 100%;
    }
    .main--rss-area label {
        -webkit-transform: translateY(250%);
        -ms-transform: translateY(250%);
        transform: translateY(250%);
        font-size: 1.4rem;
    }
    .main--btns-item {
        width: 100%;
        margin-right: 0;
    }
    .main--gallery-item {
        margin-right: 0;
    }
    .main--gallery-preview {
        margin-right: 0;
        height: 250px;
    }
    .main--gallery-preview:hover .main--gallery-text.active p {
        font-size: 1.6rem;
    }
    .main--info-area {
       /* width: 100%;*/
       width: 45%;
        margin-bottom: 0;
    }
    .main--info-area img {
        width: 180px;
    }
    .main--useful-links {
        margin-bottom: 10px;
    }
    .main--useful-item {
        width: 100%;
    }
    .main--useful-item .gerb img {
        width: 70px;
        height: 50px;
    }
    .main--useful-item .link {
        width: 100%;
        padding: 0 5px;
        font-size: 1.4rem;
    }
    .main--news-text p {
        font-size: 1.4rem !important;
    }
    .main--paggination-news a {
        padding: 5px;
        margin-right: 5px;
        font-size: 1.2rem;
    }
    .footer--item-area {
        margin-top: 0;
    }
    .footer--item-work {
        margin-right: 0px;
        padding-top: 20px;
    }
    .footer--item-work:not(:last-child) {
        border-right: none;
        border-bottom: 1px dashed #162035;
        margin-right: 0px;
        padding-bottom: 20px;
    }

    .theme_dark  .footer--item-work:not(:last-child) {
        border-bottom: 1px dashed #ffffff;
    }

    .theme_white  .footer--item-work:not(:last-child) {
        border-bottom: 1px dashed #000000;
    }
    .footer--item:not(:first-child) {
        display: none;
    }
    .main--other-page-area .voice_area {
        flex-direction: column;
        align-items: center;
    }
    .test__tabs li {
        width: 100%;
    }
    .test__tabs li a {
        font-size: 18px;
    }
    .test__count {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .test__content_question_title {
        font-size: 16px;
    }
    .test__content_question_list li a {
        font-size: 14px;
    }
    .test__finish_title {
        font-size: 22px;
        font-family: 'Onest', sans-serif;
        margin-bottom: 40px;
    }
    .test__finish_count {
        font-size: 18px;
        font-family: 'Onest', sans-serif;
    }
    .test__finish_count span {
        display: block;
        width: 100%;
        font-size: 30px;
        color: #2F6FAB;
    }
  
 
  
}


/*================= END *media-queries =================*/