@charset "UTF-8";
@import "../fonts/fonts.css";
body{
  box-sizing: border-box;
  font-family: "Merriweather", sans-serif;
  color: #303030;
  margin: 0;
  padding: 0;
  --blue: #382775;
}
a, a:hover{
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}
a{
  color: var(--blue);
}    
a:hover{
  color: #9297c1;
}
p{
  line-height: 180%;
  font-size: 16px;
}
h1, h2, h3, h4, p, ul, ol{
  margin: 0;
}
ul, ol{
  list-style: none;
  margin: 0;
  padding: 0;
}
img{
  max-width: 100%;
}
@media (min-width: 1300px){
  .container {max-width: 1210px;}
}

.flex{
  display: flex;
  flex-wrap: wrap;
}
.flex.between{
  justify-content: space-between;
}
.flex.align-center{
  align-items: center;
}
.d-none{
  display: none;
}
.title{
  color: var(--blue);
}
.title.xlarge{
  font-size: 34px;
}
.title.large{
  font-size: 22px;
  line-height: 1.27;
}
.title.medium{
  font-size: 22px;
  line-height: 1.27; 
}
.title.small{
  font-size: 18px;
  line-height: 1.27; 
}
.title.white, .text.white{
  color: #fff;
}
.title.lines{
  margin-top: 50px;
  max-width: 205px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}
.title.lines:before, .title.lines:after{
  content: '';
  width: 120px;
  height: 5px;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  position: absolute;
  bottom: calc(50% - 3px); 
}
.title.lines:before{
  right: 100%;
}
.title.lines:after{
  left: 100%;
}
.title.right-line{
  max-width: max-content;
  padding-right: 160px;
  position: relative;
}
.title.right-line:after{
  content: '';
  width: 120px;
  height: 5px;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  position: absolute;
  bottom: calc(50% - 3px);
  right: 0;
}
.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.gold{
  color: #9297c1;
}
.upper{
  text-transform: uppercase;
} 

.mt100{margin-top: 100px;}
.mt40{margin-top: 40px;}
.mb80{margin-bottom: 80px;}
.mb60{margin-bottom: 60px;}
.mb50{margin-bottom: 50px;}
.mb40{margin-bottom: 40px;}
.mb35{margin-bottom: 35px;}
.mb30{margin-bottom: 30px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}
.mb10{margin-bottom: 10px;}

.padding-section{
  padding: 5% 0;
}

.btn-main{
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 52px;
  width: 160px;
  cursor: pointer;
  outline: none;
  border: 1px solid transparent;
  transition: 0.4s;
  text-transform: uppercase;
}
.btn-main.gold{
  background: #9297c1;
}
.btn-main.gold:hover{
  box-shadow: 0 0 5px #9297c1;
  color: #fff;
}
.container.border-bottom{
  padding-bottom: 5%;
  border-bottom: 1px solid #E8E8E8;
}

ol{
  counter-reset: list;
}
.to-top{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #fafafa;
  background: #355496;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #355496;
  box-shadow: 0 0 5px #fafafa;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.to-top.show-to-top{
  visibility: visible;
  opacity: 1;
}
.to-top.show-to-top:hover{
  color: #355496;
  background: #fafafa;
  box-shadow: inset 0 0 10px #355496;
}
.breadcrumbs-box{
  padding: 30px 0;
  background: #F6F6F6;
  border-bottom: 1px solid #E1E1E1;
}
.breadcrumb, .breadcrumb li{
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}
.breadcrumb .divider{
  margin: 0 5px;
}
.breadcrumb{
  flex-wrap: wrap;
}
.breadcrumb a span{
  color: #9297c1;
  transition: .3s;
}

.breadcrumb a:hover span{
  color: var(--blue);
}

.breadcrumb span{
  color: #B0B0B0;
}

.pagination-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-list li a, .pagination-list li span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;   
  font-size: 14px;
  line-height: 1; 
  margin: 5px;
  transition: 0.5s;
  border: 1px solid #9297c1;
}

.pagination-list li a{
  color: #303030;
}

.pagination-list li span{
  color: #E1E1E1;
}

.pagination-list li.active span, .pagination-list li:hover a{
  background: #9297c1;
}
.pagination-list li.arrow a{
  border: none;
  color: #9297c1;
}
.pagination-list li.arrow:hover a{
  background: transparent;
  color: #2E2648;
}
.pagination-list li.arrow span{
  border: none;
  color: #E1E1E1;
}
.pagenav{
  display: flex;
  margin-top: 60px;
  width: 100%;
}
.pagenav .btn-main{
  justify-content: flex-start;
  border: none;
}
.pagenav .btn-main span{
  margin: 0 auto;
}
.pagenav .next{
  margin-left: auto;
}
.pagenav .previous .btn-main:before, .pagenav .next .btn-main:after{
  content: "\203a";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  background: #A8ACCD;
  color: #fff;
  font-size: 19px;
  align-self: stretch;
}
.pagenav .previous .btn-main:before{
  transform: rotate(180deg);
}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: var(--blue);}
::-webkit-scrollbar-thumb {background-color: #9297c1; border-radius: 3px;}
html, body, div, * {scrollbar-width: thin; scrollbar-color: #9297c1 var(--blue);}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-item {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-menu a,
.header-menu span {
  display: block; 
  font-size: 14px;
  border: 1px solid transparent;
  font-weight: 500;
  color: var(--blue);
}
.header-menu .submenu a {
  font-size: 13px;
}
.header-menu > .menu-item > a,
.header-menu > .menu-item > span {
  padding: 25px 16px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
.sticky .header-menu > .menu-item > a,
.sticky .header-menu > .menu-item > span {
  padding: 20px 11px;
  line-height: 1;
}
.header-menu a:hover,
.header-menu span:hover,
.header-menu > .menu-item.parent:hover > a {
  color: #9297c1;
}

.header-menu > .menu-item.parent {
  position: relative;  
}

.header-menu > .menu-item.parent > a{
  padding-right: 25px;
}
.header-menu a:first-child{
  padding-left: 23px;
}
.header-menu > .menu-item.parent > a:after {
  content: "\203a";
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
  transform: rotate(90deg);
  position: absolute;
  top: calc(50% - 9px);
  right: 5px;
  transition: transform 0.3s;  
}
.header-menu > .menu-item.parent:hover > a:after {
  transform: rotate(-90deg);
}
.header-menu > .menu-item.parent > .submenu {
  width: 200px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-bottom-width: 0px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  -webkit-box-shadow: 1px 8px 18px rgba(47, 47, 47, 0.14);
  box-shadow: 1px 8px 18px rgba(47, 47, 47, 0.14);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 5;
  padding-left: 0;
}
.header-menu > .menu-item.parent > .submenu a {
  padding: 8px 20px;
  display: block;
  background-color: #fff;
}
/*.header-menu > .menu-item.parent > .submenu a:hover {
background-color: var(--blue);
}*/
.header-menu > .menu-item.parent > .submenu > .menu-item {
  border: 0px solid #e5e5e5;
  border-top-width: 0px;
  border-bottom-width: 1px;
  position: relative;
}

.header-menu .menu-item.parent:hover .submenu {
  visibility: visible;
  opacity: 1;
}

.submenu .menu-item a {
  line-height: 1.2;
}
.header-menu > .menu-item.active > a,
.header-menu > .menu-item.active > span {
  color: #9297c1;
}
.header-menu > .menu-item.active:hover > a,
.header-menu > .menu-item.active:hover > span {
  color: #fff;
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > a::after {
  content: "\203a";
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
}
.header-menu > .menu-item.parent > .submenu > .menu-item.parent > .submenu {
  position: absolute;
  top: 0;
  left: 199px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  width: 230px;
  padding-left: 0;
}

.header-menu > .menu-item.parent .submenu > .menu-item.parent:hover > .submenu {
  visibility: visible;
  opacity: 1;
}
.header-menu
> .menu-item.parent
.submenu
> .menu-item.parent:hover
> .submenu
.menu-item {
  border-bottom: 1px solid #e5e5e5;
}


.burger-menu {
  display: none;
  width: 38px;
  height: 34px;
  padding: 5px;
  position: relative;
  z-index: 1200;
  background-color: var(--blue);
  border-radius: 3px;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 4.5px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  opacity: 1;
  transition: all linear 0.3s;
}
.burger-menu span:first-child {
  top: 7px;
}
.burger-menu span:nth-child(2), .burger-menu span:nth-child(3) {
  top: 15px;
}
.burger-menu span:last-child {
  top: 23px;
}
.burger-menu.active span:first-child {
  top: 0;
  opacity: 0;
}
.burger-menu.active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger-menu.active span:last-child {
  top: 40px;
  opacity: 0;
}

.menu-mobile {  
  background-color: var(--blue);
  position: fixed;
  right: -200px;
  top: 0px;
  height: 100%;
  width: 200px;
  z-index: 10009;
  transition: 0.4s linear;
  display: block;
  overflow-y: scroll;
}

.menu-mobile.open {
  right: 0;
}

.menu-mobile .logo{
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
}

.body-wrapper{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  transition: 400ms linear;
  left: 0;
  overflow: hidden;
}

.body-wrapper.hidden, .body-wrapper.hidden .header{
  left: -200px; 
}

.body-wrapper:before{
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(56,39,117,.5) 50%, rgba(56,39,117,.95) 100%);
  z-index: 1100;
  transition: 400ms ease-in-out;
}

.body-wrapper.hidden:before{
  width: 100%;  
}

.menu-mobile li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu-mobile li a,
.menu-mobile li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 5px 5px 10px;
  font-size: 12px;
  font-style: normal;
}

.menu-mobile .deeper > a,
.menu-mobile .deeper > span {
  padding-right: 15px;
  width: 80%;
}

.menu-mobile li .list-btn {
  width: 20%;
  height: 40px;
  top: 0;
  right: 0;
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-mobile li .list-btn:before {
  content: "\203a";
  transform: rotate(90deg);
  color: #fff;
  transition: 0.3s;
  font-size: 20px;
  line-height: 1;
}
.menu-mobile li .list-btn.open:before {
  transform: rotate(-90deg);
}

.menu-mobile .nav-child {
  background-color: rgba(000, 000, 000, 0.4);
  display: none;
  width: 100%;
}

.menu-mobile .nav-child li.deeper .list-btn {
  width: 20%;
}
.menu-mobile .list-btn:hover i,
.menu-mobile .list-btn.open i {
  background-color: #00a8e7;
}

/*=============================*/
.header .top-line{
  background: #F6F6F6;
  border-bottom: 1px solid #E1E1E1;
}
.header .social-link{
  width: 37px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #9297c1;
  border-right: 1px solid #E1E1E1;
}
.header .social-link:hover{
  color: var(--blue);
}
.header .social-link:first-child{
  border-left: 1px solid #E1E1E1;
}
.header .icon-mail{
  height: 38px;
  width: 207px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-right: 1px solid #E1E1E1;
  border-left: 1px solid #E1E1E1;
}
.header .icon-mail:before{
  margin-right: 7px;
}
.header .bottom-line{
  background: #fff;
  padding-top: 22px;
}
.header .bottom-line .logo{
  width: 240px;
}
.header .bottom-line .icon-tel{
  font-size: 16px;
  display: flex;
  align-items: center;
}
.header .bottom-line .icon-tel .desk{
  margin-right: 7px;
}
.header .bottom-line .icon-tel:before{
  margin-right: 10px;
}
.header .menu-block{
  position: relative;
  left: 0;
  top: 25px;
  z-index: 10000;
  transition: left 0.4s linear;
}
/*.body-wrapper.hidden .header .menu-block{
position: fixed;
width: 100%;
top: 0;
left: -200px;
}*/

.header.sticky .menu-block{
  position: fixed;
  width: 100%;
  top: 0;  
  z-index: 10000;  
}
.body-wrapper.hidden .header.sticky .menu-block{
  left: -200px;
}
.header .menu-box {
  background: var(--blue);
  position: relative;
}
.header.sticky .menu-box {
  background: rgba(56,39,117,.95);
}
.header .menu-box .search-box{
  width: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  background: #9297c1;
  margin-left: auto;
  cursor: pointer;
}
.header .menu-box .search-box:before{
  margin-right: 10px;
}
.header .menu-box .search{
  display: none;
  position: absolute;
  z-index: 1500;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;  
}
.header .menu-box .search form{
  height: 100%;
}
.header .menu-box .search .inputbox{
  width: 100%;
  height: 100%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 15px;
  border: none;
  outline: none;  
  box-shadow: 0 0 5px #9297c1 inset;   
}
.header .menu-box .search .close{
  position: absolute;
  top: 0;
  bottom: 0;
  height: 30px;
  right: 15px;
  margin: auto 0;
  cursor: pointer;
  transform: rotate(45deg);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.page-search .highlight{
  color: #9297c1;
}
.footer-map{
  position: relative;
  top: 80px;
}
.footer{
  background: #2E2648;  
  font-size: 12px; 
  line-height: 1.5;
}
.footer-content{
  padding: calc(80px + 7%) 0 7%;
}
.footer-title{
  font-size: 20px;
  color: #fff;
}
.footer-about, .footer-news, .footer-contacts{
  width: 30%;
}
.footer-about .text{
  font-size: 12px;
  line-height: 1.5;
  color: #9297C1;
}
.footer-news .item{
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #595178;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
}
.footer-news .item:before{
  font-size: 21px;
  color: #9297C1;
  margin-right: 12px;
  transition: .3s;
}
.footer-news .item:hover, .footer-news .item:hover:before{
  color: #9297c1;
}

.footer-contacts-title{
  color: #9297C1;
  padding: 12px 0 16px;
  border-top: 1px solid #9297C1;
  border-bottom: 1px solid #9297C1;
  margin-bottom: 20px;
}
.footer-contacts .contacts-list li{
  display: flex;
  margin-bottom: 20px;
  color: #fff;
}
.footer-contacts .contacts-list a{
  color: #fff;
}
.footer-contacts .contacts-list a:hover{
  color: #9297c1;
  text-shadow: 0 0 5px #9297c1;
}
.footer-contacts .contacts-list li:before{
  font-size: 15px;
  color: #9297c1;
  margin-right: 18px;
}
.footer-copyright{  
  background: #241F39;    
}
.footer-copyright .copyright{
  font-size: 10px;
  color: #fff;
}
.footer-copyright .container{
  position: relative;
  padding: 28px 150px;
}
.footer .social{
  position: absolute;
  left: 30px;
  top: -22px;
}
.footer .social:before{
  content: '';
  position: absolute;
  bottom: 14px;
  right: 100%;
  border: 12px solid transparent; 
  border-right: 8px solid #656885; 
  border-bottom: 12px solid #656885;
}
.footer .social-link{
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  background: #9297c1;
  border-right: 1px solid #656885;
  transition: .3s;
}
.footer .social-link:not(:first-child){
  border-left: 1px solid #656885;
}
.footer .social-link:hover{
  background: #656885;
}
#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(56, 39, 117, .7);
  visibility: hidden;
  opacity: 0;
  transition: .5s;
  position: fixed;
  right: 35px;
  bottom: 35px;
  cursor: pointer;
}
#toTop:hover {
  box-shadow: 0 0 5px #9297c1;
}
#toTop:before {
  content: ">";
  transform: rotate(-90deg);
  font-size: 20px;
  line-height: 1;
  color: #9297c1; 
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}



/*===============================================*/
.news-page .page-header, 
.years-docs .page-header, 
.custom-page .page-header,
.calendar-page .page-header{
  background: url(/images/news/bg-news-header.jpg) no-repeat center / cover var(--blue);
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 30px 0 15px;
}
.calendar-page .page-header{
  background-image: url(/images/bg-vebinar-header.jpg);
  background-position: right;
  color: #fff;
  padding: 15px;
}
.calendar-page .page-header .title{
  text-shadow: 0 0 3px var(--blue);
}
.news-page .item-page{
  padding: 5% 15px 4%;
}
.news-page .full-image{
  display: block;
}
.news-wrapper .text{
  line-height: 22px;
}
.news-dat-block{
  display: flex;
  justify-content: space-between;
}
.news-page .news-wrapper{
  padding: 25px 25px 17px;
  /* border: 1px solid #EDEDED; */
  border-top: none; 
  /* box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1); */
}
.news-page .info-block{
  padding: 18px 0 24px;

}
.news-page .info-block .item{
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #9297c1;
  margin-right: 33px;
}
.news-page .info-block .item:before{
  margin-right: 5px;
}
.news-page .article-body p{
  margin-bottom: 20px;
  line-height: 1.5;
}
.news-page .article-body ul{
  margin-bottom: 20px;
}
.news-page .article-body ul li, .default-list li{
  display: flex;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.news-page .article-body ul li:before, .default-list li:before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9297c1;
  margin: 7px 15px 0 0;
  flex-shrink: 0;
}
.news-page .article-body a{
  color: #9297C1;
}
.news-page .article-body a:hover{
  color: #9297c1;
}
.news-page.category .news-item .item-image{
  display: block;
  height: 325px;
}
.news-page.category .news-item .item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-statut{
  padding: 50px 20px;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
}

/*========================================*/

.main-carousel{
  position: relative;
  width: 100%;
}
.main-carousel .item{
  height: 550px;
}
.main-carousel .item:before{
  content: '';
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(22, 20, 32, 0.67);
}
.main-carousel .item:after{
  content: '';
  z-index: -2;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 48%;
  background: linear-gradient(180deg, rgba(29, 25, 41, 0) 0%, #1D1929 100%);
}
.main-carousel .bg{
  object-fit: cover;
  z-index: -3;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;   
}
.main-carousel .vebinary .bg{
  object-position: right;
}
.owl-nav{
  height: 0;
}
.owl-prev, .owl-next{
  border: none;
  outline: none;
}
.main-carousel .owl-prev span, .main-carousel .owl-next span{
  color: white;
  font-size: 35px;
  top: calc(50% - 50px);
  position: absolute;
  padding: 30px 0;
  width: 35px;
  background-color: #4C515B;
}
.main-carousel .owl-prev span{
  left: 0;
}
.main-carousel .owl-next span{
  right: 0;
}
.main-carousel .slider-title{
  padding-top: 20%;
  font-size: 40px;
  line-height: 1.25;
  color: #FFF;
}
.main-carousel .slider-title span{
  color: #9297c1;
}
.main-carousel .slider-subtitle{
  max-width: 820px;
  font-size: 14px;
  line-height: 200%;
  color: #FFF;
}
.main-carousel .slider-btn{
  display: block;
  transition: .7s;
  background-color: rgba(76, 81, 91, 0.8);
  width: 160px;
  padding: 16px 0 16px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
}
.main-carousel .slider-btn:hover{
  box-shadow: 0 0 5px white;
}
.news-slider .owl-stage{
  display: flex;
}
.news-slider .owl-item{
  padding: 5px;
}
.news-slider .item{
  border: 1px solid #EDEDED;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-slider .item-image{
  display: block;
  height: 210px;
}
.news-slider .item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-slider .item .content{
  padding: 38px 30px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-slider .item-title{
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  min-height: 80px;
  color: var(--blue);
  margin-bottom: 15px;
}
.news-slider .item .text{
  flex: 1;
}
.news-slider .info-block{
  padding: 12px 0 17px;
  border-top: 1px solid #E1E1E1;
}
.news-slider .info-item{
  font-size: 14px;
  line-height: 1;
  color: #9297c1;
  margin-right: 30px;
}
.news-slider .info-item:before{
  margin-right: 5px;
}
.news-slider .owl-prev span, .news-slider .owl-next span{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 35px;
  top: calc(50% - 25px);
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #9297c1;
  opacity: .5;
  transition: .3s;
}
.news-slider .owl-prev span:hover, .news-slider .owl-next span:hover{
  opacity: 1;
}
.news-slider .owl-prev span{
  left: -60px;
}
.news-slider .owl-next span{
  right: -60px;
}
.main-projects .item{
  border: 1px solid #EDEDED;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);  
}
.main-projects .item-image{
  width: 500px;
}
.main-projects .item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-projects .item .content{
  width: calc(100% - 500px);
  padding: 45px 0 0 50px;
  display: flex;
  flex-direction: column;
}
.main-projects .item-title{
  max-width: 500px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--blue);
  padding-right: 15px;
}
.main-projects .item .text{
  flex: 1;
  padding-right: 15px;
}
.main-projects .item .btn-main{
  background: #fff;
  border: 1px solid #9297c1;
  color: #303030;
}
.main-projects .info-block{
  border-top: 1px solid #E1E1E1;
}
.main-projects .info-item{
  color: #9297c1;
}
.main-projects .info-item:before{
  margin-right: 5px;
}
.main-projects .info-category{
  padding: 8px 80px 10px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #9297c1;
}
.main-conferences .item{
  width: calc(50% - 15px);
  padding: 17px 30px 17px 45px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: 1px solid #fff;
  margin-bottom: 15px;  
}
.main-conferences .item:hover{
  box-shadow: none;
  border-color: #9297c1;
}
.main-conferences .item .content{
  width: calc(100% - 95px);
}
.main-conferences .item .text{
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.main-conferences .item .year{
  font-style: italic;
  padding: 0;
}
.main-conferences .item .icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #9297c1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9297c1;
  font-size: 30px;
  flex-shrink: 0;
  background: #fff;
  transition: .3s;
}
.main-conferences .item:hover .icon{
  background: #9297c1;
  color: #fff;
}
.page-contacts-list{
  max-width: 770px;
}
.page-contacts-list li{
  display: flex;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;  
}
.page-contacts-list li:before{
  color: #9297c1;
  font-size: 24px;
  margin-right: 20px;
}

.our-services__link {
  max-width: 379px;
  width: 100%;
  text-decoration: none;
  padding-left: 36px;
  background: #FFFFFF;
  border: 1px solid #EFEFFA;
  min-height: 200px;
  transition-duration: .4s;
}
.our-services__link:not(:last-child) {
  margin-right: 22px;
}
.our-services__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our-services__container:first-child {
  margin-bottom: 30px;
}
.our-services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.our-services__digit {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  color: #9297C1;
  transition-duration: .4s;
}
.our-services__icon {
  width: 100px;
  height: 100px;
  background: rgba(146,151,193, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .4s;
}
.our-services__title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #303030;
  max-width: 214px;
  margin-bottom: 6px;
}
.our-services__text {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 150%;
  color: #303030;
}
.our-services__icon .icon {
  width: 50px;
  height: 50px;
  fill: #9297C1;
  transition-duration: .4s;
}

.our-services__link:hover {
  border: 1px solid rgba(56,39,117,.95);
}

.our-services__link:hover .our-services__digit {
  color: rgba(56,39,117,.95);
}

.our-services__link:hover .our-services__icon {
  background: rgba(56,39,117,.3);
}

.our-services__link:hover .our-services__icon .icon {
  fill: rgba(56,39,117,.95);
}

.zvity_contianer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  grid-gap: 30px;
}

.years-link {
  border: none;
  width: 100%;
}

.years-link:hover{
  box-shadow: none;
}

.years-link img {
  width: 400px;
  height: 300px;
  object-fit: contain;
}

.zvit_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #E8E8E8;
  padding: 20px 10px;
  transition: all .4s ease-in-out;
}

.zvit_item:hover {
  box-shadow: 0 0 15px #9297c1, 0 0 15px #9297c1;
}
.years-text {
  margin-top: 20px;
}

.partners_container {
  width: 100%;
}

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

.partners_content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat( 3, 1fr );
  grid-gap: 20px;
  margin-top: 30px;
}

.partner {
  margin-bottom: 20px;
  border: 2px solid #E8E8E8;
  padding: 20px 20px;
  transition: all .4s ease-in-out;
}

.partner:hover {
  box-shadow: 0 0 15px #9297c1, 0 0 15px #9297c1;
}

.partner a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner img {
  margin-bottom: 20px;
  height: 300px;
  object-fit: contain;
}

.platform_page {
  padding: 0 50px;
  border: none;
  box-shadow: none;
}
.platform_articles {
  margin-top: 30px;
}

.platform_items {
  padding: 50px;
}

.platform_items .news-item {
  width: calc(33% - 15px);
}

.platform_items .news-item .title.large {
  font-size: 20px;
}

/*--------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 993px){
  .years-docs .title.xlarge{font-size: 34px;}

}

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

}
@media screen and (max-width: 1200px){
  .header-menu a:first-child{
    padding-left: 10px;
    padding-right: 10px;
  }
  .header .menu-box .search-box {
    width: 120px;
  }
}
@media screen and (max-width: 992px){
  .partners_content {grid-template-columns: repeat( 2, 1fr );}
  .title.xlarge{font-size: 26px;}
  .title.large{font-size: 22px;}
  .title.medium{font-size: 20px;}
  .mt100{margin-top: 50px;}
  .mb80{margin-bottom: 50px;}
  .mb50{margin-bottom: 35px;}
  .mb40{margin-bottom: 30px;}
  .mb35{margin-bottom: 25px;}
  .mb30{margin-bottom: 20px;}
  .header-menu{display: none;}
  .burger-menu {display: block;}
  .main-carousel .item {height: 450px;}
  .main-carousel .slider-title{font-size: 30px;}
  .news-page .news-wrapper{padding: 30px;}
  .news-page.category .news-item .item-image{height: 240px;}
  .main-projects .item-image, .main-projects .item .content{width: 100%;}
  .main-conferences .item{width: 100%;}
}
@media screen and (max-width: 768px){
  .title.xlarge{font-size: 26px;}
  .footer-map{top: 20px;}
  .footer-content {padding: 40px 0 7%;}
  .footer-about{width: 100%; margin-bottom: 30px;}
  .footer-news, .footer-contacts{width: 47%;}
  .main-carousel .item{height: 400px;}
  .main-carousel .slider-title{padding-top: 20%;}
  .main-carousel .owl-prev span, .main-carousel .owl-next span{top: 30px; padding: 0;}
  .news-slider .item-title{min-height: 0;}
  .news-slider .item .content{padding: 15px;}
  .news-slider .owl-nav{height: auto; display: flex; justify-content: center; margin-top: 15px;}
  .news-slider .owl-prev span, .news-slider .owl-next span {position: static; margin: 0 10px;}
  .our-services__container {
    flex-direction: column;
  }
  .our-services__container:first-child {
    margin-bottom: 0;
  }
  .our-services__link:not(:last-child) {
    margin-right: 0;
  }
  .our-services__link {
    margin-bottom: 30px;
  }

  
}
@media screen and (max-width: 550px){
  .title.xlarge{font-size: 24px;}
  .title.large{font-size: 20px;}
  .title.medium{font-size: 18px;}
  .mb80{margin-bottom: 40px;}
  .mb50{margin-bottom: 25px;}
  .mb40{margin-bottom: 20px;}
  .mb35{margin-bottom: 18px;}
  .mb30{margin-bottom: 15px;}
  .mb20{margin-bottom: 10px;}
  .mb15{margin-bottom: 8px;}
  .mb10{margin-bottom: 7px;}
  .header .menu-block {top: 10px;}
  .footer-news, .footer-contacts{width: 100%;}
  .footer-copyright .container {padding: 30px 15px 15px;}
  .news-page .news-wrapper{padding: 15px;}
  .main-projects .item .content{padding: 15px 0 0 15px;}
  .main-conferences .item{padding: 15px;}
  .zvity_contianer, .partners_content{grid-template-columns: repeat(1, 1fr);}
  .partner img {height: 200px;}
}
@media screen and (max-width: 425px){
  .title.lines {min-width: 150px;}
  .header .icon-mail {width: calc(100% - 111px);}
  .header .bottom-line .flex{justify-content: center;}
  .header .bottom-line .icon-tel .desk {display: none;}
  .news-page.category .news-item .item-image{height: 180px;}
  .pagenav .btn-main {width: 125px; height: 40px;}
  .pagenav .previous .btn-main:before, .pagenav .next .btn-main:after {
    width: 25px;
  }
  .main-carousel .slider-title {font-size: 20px;}
  .main-projects .item-title{font-size: 18px;}
  .main-projects .info-category{padding: 5px 15px 5px 10px;}
  .main-conferences .item .icon{width: 30px; height: 30px; font-size: 15px;}
  .main-conferences .item .content{width: calc(100% - 40px);}
  .main-conferences .item .text{font-size: 14px;}
}

.items-leading{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-item{
  box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
  width: 47%;
}
.page-contacts-block{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-contacts-left{
  width: 46%;
}
.page-contacts-right{
  width: 46%;
}
@media screen and (max-width: 992px){
  .items-leading{
    justify-content: center;
  }
  .page-contacts-left{
    width: 100%;
  }
  .page-contacts-right{
    width: 100%;
  }
  .news-item{
    width: 90%;
  }
}
.contact-create-inner{
  padding-top: 50px;
  padding-right: 20px;
  padding-left: 20px;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
}
.project-1-inner{
  padding-top: 10px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
}
.poslugibody {
  padding-top: 10px;
  padding-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
}
.public-information{
  padding-top: 50px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 50px;
  box-shadow: 0px 1px 5px rgb(0 0 0 / 10%);
}
.item-page.history{
  box-shadow: none;
}
.years-docs .item-page{
  box-shadow: none;
  padding: 0;
}
.custom-page .item-page{
  box-shadow: none;
  /*padding: 0;*/
}
.container .article-body .container{
  padding: 0;
}
.rozv .public-text{
  line-height: 180%;
}


/* Стили, для формы, которая отправляет данные в Google Sheets*/
.g-form {
  width: 100%;
  max-width: 450px;
  padding: 50px;
  box-shadow: 0 0 20px rgba(0,0,0, .2);
  margin: 0 auto;
  background-color: #fff;
  border-top: 10px solid rgb(103, 58, 183);
  border-radius: 10px;
  margin-top: 50px;

}
.g-form__title {
  text-align: center;
  margin: 0;
  font-weight: 300;
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1.5;
}
.g-form__title a {
  color: #e8cd96;
}
.g-form__preloader 
{ 
  height: 2px;
  width: 100%;
  position: relative;
  margin: 15px 0;
  opacity: 0;
}
.g-form__preloader:before {
  background: mediumturquoise;
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 2px;
  -webkit-animation: smartlidPreloader 3s infinite;
  animation: smartlidPreloader 3s infinite;
}

.g-form__input-wrapper {
  margin-bottom: 15px;
  border: none;
  padding: 0;
  width: 100%;
}

.g-form__input-wrapper input, .g-form__input-wrapper textarea {
  width: 100%;
  padding: 0 15px;
  border-radius: 3px;
  background: #1c1e21;
  height: 50px;
  font: 1rem 'Roboto', sans-serif;
  outline: none;
  font-weight: 300;
  border: 2px solid rgb(103, 58, 183);
  background: #cbeb;
  color: #000;
}
.g-form__input-wrapper textarea {
  padding: 15px;
  height: 100px;
  resize: none;
}
.g-form__input-wrapper input:focus, .g-form__input-wrapper textarea:focus {
  border-color: #7055f0; 
}

.g-form__input-wrapper_hidden {
  display: none;
}
.g-form__button-wrapper {
  display: flex;
  justify-content: center;
}
.g-form__button {
  background: #7055f0;
  outline: none;
  border: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  font: 400 .9rem 'Roboto', sans-serif;
  color: #d2d2d3;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s;
  background: #9297c1;
  border-radius: inherit;
  color: #FFF;
}

.g-form__button:hover {
  transition: .3s;
  box-shadow: 0 1px 10px rgba(0,0,0, .2);
  color: #fff;
}

.g-form__input-wrapper input.g-form__input_radio,
.g-form__input-wrapper input.g-form__input_checkbox {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-right: auto;
}

.g-form__input-wrapper .label_radio-input {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: start;
  width: 70px;
  cursor: pointer;
}

.g-form__input_checkbox {
  cursor: pointer;
}

.g-form__input-wrapper .label_radio-input > span {
  width: 32px;
}

.checkbox_title {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .g-form {
    padding: 30px;
  }
  .g-form__title {
    font-size: 1rem;
  }
}

@media (max-width: 359px) {
  .g-form {
    padding: 15px;
  }
}

@-webkit-keyframes smartlidPreloader {
  0% {
    left: 0; }
  50% {
    left: -webkit-calc(100% - 50px);
    left: calc(100% - 50px); }
  100% {
    left: 0%; } 
}

@keyframes smartlidPreloader {
  0% {
    left: 0; }
  50% {
    left: -webkit-calc(100% - 50px);
    left: calc(100% - 50px); }
  100% {
    left: 0%; } 
}


@media ( max-width: 992px ) {
  .platform_items .news-item {
    width: calc( 50% - 20px );
  }

  .items-leading.platform_items {
    justify-content: space-between;
  }
}

@media ( max-width: 768px ) {
  .platform_items .news-item {
    width: 100% ;
  }

  .platform_page,
  .platform_items {
    padding: 0;
  }

  .platform_items  {
    margin-top: 20px;
  }

  .platform_items .news-item .title.large {
    font-size: 16px;
  }
}

/*===============Calendar==================*/

.body-wrapper{
  --fc-button-active-bg-color: var(--blue);
  --fc-button-hover-bg-color: var(--blue);
  --fc-today-bg-color: #d7d9f0;
}
.com-dpcalendar-calendar .fc .fc-button-primary {
  border-color: var(--blue);
  color: var(--blue);
}
.body-wrapper .fc .fc-button-primary:focus, 
.body-wrapper .fc .fc-button-primary:not(:disabled).fc-button-active:focus, 
.body-wrapper .fc .fc-button-primary:not(:disabled):active:focus {
  box-shadow: 0 0 6px #d7d9f0;
}
.com-dpcalendar-event .com-dpcalendar-event__cta {
    grid-column: 1 / 4;
    grid-row: 10 / 10;
}
.dp-button_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  height: 50px;
  margin: 0 auto 10px;
  background: #9297c1;
  color: #fff;
  text-transform: uppercase;
}
.dp-button_cta:hover {
  background: var(--blue);
}
.dp-event-cta__end-date{
  text-align: center;
}

.dp-description__label .dp-calendar__links{
  display: none;
}
@media ( max-width: 768px ) {
  .dp-event__title {font-size: 18px}
}
.dp-form-input{
  width: 100%;
  padding: 0 15px;
  border-radius: 3px;
  background: #1c1e21;
  height: 50px;
  font: 1rem 'Roboto', sans-serif;
  outline: none;
  font-weight: 300;
  border: 2px solid rgb(103, 58, 183);
  background: #cbeb;
  color: #000;
}
.dp-form-input:focus {
  border-color: #7055f0;
}
.body-wrapper .dp-button {
  outline: none;
  border: none;
  border-radius: 25px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  font: 400 .9rem 'Roboto', sans-serif;
  color: #d2d2d3;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s;
  background-color: #9297c1;
  border-radius: inherit;
  color: #FFF;
  margin: 5px;
}
.body-wrapper .dp-icon {
  margin-right: 10px;
}

.dp-button:hover {
  transition: .3s;
  box-shadow: 0 1px 10px rgba(0,0,0, .2);
  background: ;
  color: #fff;
}
.body-wrapper  .control-group .control-label {
  align-self: center;
}
.com-dpcalendar-bookingform__events{
  margin-bottom: 15px;
}
.com-dpcalendar-bookingform__fields{
  margin-bottom: 20px;
}
.dp-button-bar{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.com-dpcalendar-booking__tickets-header{
  display: none;
}
.form-box{
  width: 100%;
  max-width: 450px;    
  padding: 50px;
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
  margin: 0 auto;
  background-color: #fff;
  border-top: 10px solid rgb(103, 58, 183);
  border-radius: 10px;
  margin-top: 50px;
}

#jform_spacer-lbl{
  display: block;
  font-size: 12px;
  margin: 10px 10px 15px;
  text-align: center;
}
.red{
  color: red;
}
.control-group.checkbox{
  display: flex;
  align-items: center;
}
.control-group.checkbox input{
  width: 15px;
  height: 15px;
  border-width: 1px;
  margin: 0 10px 5px 0;
} 
.control-group label{
  display: block;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 5px;
}
.control-group{
  margin-bottom: 15px;
}
.control-group input, .control-group select, 
.control-group .chzn-container .chzn-single{
  width: 100%;
  padding: 0 15px;
  border-radius: 3px;
  background: #1c1e21;
  height: 50px;
  font: 1rem 'Roboto', sans-serif;
  outline: none;
  font-weight: 300;
  border: 2px solid rgb(103, 58, 183);
  background: #cbeb;
  color: #000;
  padding: 14px 10px;
}
.control-group .chzn-container-single .chzn-single div b{
  background-position: 0 12px; 
}
.control-group .chzn-container-active.chzn-with-drop .chzn-single div b {
  background-position: -18px 12px;
}
.control-group .chzn-container .chzn-results li.highlighted {
  background: #9297c1;
}
#system-message-container .alert{
  margin-top: 50px;
}
.control-group .controls{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.control-group .btn {
  outline: none;
  border: none;
  border-radius: 25px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 30px;
  font: 400 .9rem 'Roboto', sans-serif;
  color: #d2d2d3;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s;
  background-color: #9297c1;
  border-radius: inherit;
  color: #FFF;
  margin: 5px;
}
.control-group .btn:hover {
  transition: .3s;
  box-shadow: 0 1px 10px rgba(0,0,0, .2);
  background: ;
  color: #fff;
}
.event-info .item{
  font-size: 24px;
  color: #9297C1;
}
.event-info .item .value{
  color: var(--blue);
}
.event-info .info-flex .item{
  font-size: 20px;
  margin-right: 15px;
}
.event-image{
  position: relative;
  padding-bottom: 46%;
}
.event-image img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-content {
  width: calc(100% - 450px);
}
.event-booking{
  width: 375px;
  padding: 30px 25px;
  border: 1px solid #C8CBE0;
  box-shadow: 0 0 10px #C8CBE0;
  align-self: flex-start;
}
.event-content div{
  margin-bottom: 10px;
}
.event-content div > span{
  margin-right: 10px;
}
.reset-pass{
  display: block;
  text-align: center ;
  font-size: 12px;

}
.dp-event-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.com-dpcalendar-calendar .dp-toggle {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (max-width: 992px){
.event-content {width: 100%;}
.event-booking{width: 100%; max-width: 375px; margin: 30px auto 0;}
}

@media (max-width: 768px){
  .event-info .item {font-size: 18px;}
  .event-info .info-flex .item {font-size: 14px;}
  .fc-dayGridMonth-button, .fc-timeGridWeek-button, .fc-timeGridDay-button, .fc-list-button{display: none!important;}
  
}
@media (max-width: 425px){
  .form-box {padding: 20px 15px;}
  .fc-list-event-time{max-width: 80px; white-space: normal!important; text-align: center;}
  .fc-list-event-title{max-width: calc(100% - 85px); }
  .dp-event__title{font-size: 14px; text-decoration: underline;}
}
@media (max-width: 360px){

}





