
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

input, button, textarea, select {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
*:-moz-placeholder {
  color: #666;
  opacity: 1;
}
*::-moz-placeholder {
  color: #666;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  
}
body input:required:valid,
body textarea:required:valid {
  
}

body {
  overscroll-behavior: none;
}



video::-webkit-media-controls-fullscreen-button {
    display: none;
}
video::-webkit-media-controls-play-button {
}
video::-webkit-media-controls-timeline {}
video::-webkit-media-controls-current-time-display{}
video::-webkit-media-controls-time-remaining-display {}
video::-webkit-media-controls-mute-button {}
video::-webkit-media-controls-toggle-closed-captions-button {}
video::-webkit-media-controls-volume-slider {}

/* scroll  */

html {
    scrollbar-width: thin;
}

html::-webkit-scrollbar {
    width: 11px;
}

html::-webkit-scrollbar-thumb {
    background-color:  #BCB0E8; /* #A625C8;  */
    border-radius: 6px;
}

html::-webkit-scrollbar-track {
    background-color: #F0EBFF;
}

/* select */

*::selection {
    color: #fff; /* main */
    background-color: #2F6FA0; /* bg */
}



/*  */

[data-whatinput="keyboard"] a:focus {
    outline: 2px solid orangered; /* */
    outline-offset: 2px; 
}

[data-whatinput="keyboard"] button:focus {
    outline: 2px solid orangered; /* */
    outline-offset: 2px; 
}
[data-whatinput="keyboard"] a:focus div img {
    outline: 2px solid orangered; /* */
    outline-offset: 2px; 
}


strong {
    font-weight: 600;
}



/* Grid system */

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


.row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.remove_padding {
  padding-left: 0;
  padding-right: 0;
}
/* /Grid system */

.bti {
  width: 100%;
  height: auto;
  text-align: center;
  clear: both;
}

/* back to top */  

#backToTopBtn {
    position: fixed;
    right: 70px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #7498DB;
    text-indent: -9999px;
    display: none;
    border-radius: 50%;
    z-index: 1000;
    border: none;
}

#backToTopBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -16px;
    height: 0;
    width: 0;
    border: 10px solid transparent;
    border-bottom-color: #fff;
    transform: scale(1.0);
    opacity: .7;
    transition: all 0.53s ease-in-out;
}

#backToTopBtn:hover, #backToTopBtn:active, #backToTopBtn:focus {
   background-color: #F9761C;
    opacity: 1;
    transform: scale(1.25);
    transition: all 0.53s ease-in-out;
}

#backToTopBtn:hover span {
    border-bottom-color: #fff;
}

[data-whatinput="keyboard"] #backToTopBtn:focus {
    outline: 3px solid #e5cbf9; /* */
    padding: 6px;
}

/*  /back to top   */


/*  fixed-top-nav  */

.fixed-top-nav {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
}

/*  /fixed-top-nav  */  

/* skip nav  */   

a.skip-main {
    height: 1px;
    left: -999px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
    z-index: -999;
}
a.skip-main:hover {
    color: #d86400;
}
a.skip-main:focus, a.skip-main:active {
  background-color: #f0eff4;
  border: 1px solid #1b3873;
  color: #556ca2;
  font-size: 14px;
  height: 35px;
  left: 5px;
  overflow: hidden;
  padding-top: 4px;
  text-align: center;
  top: 7px;
  width: 240px;
  z-index: 999;
  transition: all 0.8s; 
}   

/* /skip nav  */   


/* gal */
/* ---- grid ---- */

.popup-gallery-grid {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* clear fix */
.popup-gallery-grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.popup-gallery-sizer,
.popup-gallery-grid-item {
  /*width: 33.333%;*/
  width: 25%;
}

.popup-gallery-grid-item {
    float: left;
    padding: 4px;
    z-index:0;
}

.popup-gallery-grid-item img {
    display: block;
    max-width: 100%;
    background-color: transparent;
    border: 1px solid #a5e3a0;
    display: block;
    padding: 0px;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 0;
    opacity: 1;
}

.popup-gallery-grid-item:hover img, .popup-gallery-grid-item:focus img {

  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  transition: all 0.8s; 
}

.gridimg {
    opacity:1;
    transition: opacity 0.5s;
}
.opaque {
    opacity:0.75;
    transition: opacity 0.5s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    transition: all 0.8s; 
}

.zopaque {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -moz-transition: all 0.8s;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;

}

@media only screen and (max-width : 992px) {
  .popup-gallery-sizer, .popup-gallery-grid-item {
    width: 50%;
  }
}

@media only screen and (max-width : 566px) {
  .popup-gallery-sizer, .popup-gallery-grid-item {
    width: 100%;
  }

  .popup-gallery-grid-item img {
      display: block;
      margin-left: auto;
      margin-right: auto;
  }
}

/* /gal */









/*  News   */

/* with flexbox */
.grid-news {
  display: flex;
  flex-wrap: wrap;
}
.grid-col {
  flex-grow: 1;
}
.grid-col--2, .grid-col--3 { 
  display: none;
}
.grid-item-news {
    width: 610px;
    height: auto;
}
.grid-col--4 .grid-item-news {
    margin-left: 64px;
}

@media only screen and (max-width : 1400px) { 
  .grid-item-news {
      width: 520px;
  }
  .grid-col--4 .grid-item-news {
      margin-left: 60px;
  }
}
@media only screen and (max-width : 1200px) { 
  .grid-col--1, .grid-col--2, .grid-col--3 { display: none }
  .grid-col { }
  .grid-col--4 .grid-item-news { 
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width : 768px) { 
  .grid-col--1, .grid-col--2, .grid-col--3 { display: none }
  .grid-col { }
  .grid-col--4 .grid-item-news { 
    width: 480px;
  }
}

@media only screen and (max-width : 590px) { 
  .grid-col--1, .grid-col--2, .grid-col--3 { display: none }
  .grid-col { }
  .grid-col--4 .grid-item-news { 
    width: 330px;
  }
}
/* with flexbox */

.pagination {
    text-align: center;
    width: fit-content;
    clear: both;
    font-size: 22px;
    border: 0px solid #c8f4a7;
    border-left: none;
    border-right: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.pagination .visual-separator {
    display: inline-block;
    margin: 0 8px; 
    color: #999;
    visibility: hidden;
}
.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/*  /News   */

/* ----------------------------------------------
 * Generated by Animista on 2024-1-28 14:54:50
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
.flip-horizontal-bottom {
  animation: flip-horizontal-bottom 0.86s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
/**
 * ----------------------------------------
 * animation flip-horizontal-bottom
 * ----------------------------------------
 */
@keyframes flip-horizontal-bottom {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(-180deg);
  }
}

.flip-horizontal-bottom-back {
  animation: flip-horizontal-bottom-back 0.63s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@keyframes flip-horizontal-bottom-back {
  0% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0);
  }
}


/* ===========================  */

/* Publ  */

/* Page Inside menu  */


.dropdown_wrapper {
    width: 100%;
    background-image: url(../img/publ-years-backgr.gif);
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 7px;
    padding-bottom: 7px;
}
.dropdown {
    width: 200px;
    margin-right: auto;
    margin-left: auto;
}
.dropdownButton {
    background-color: #fff;
    color: #8941a8;
    padding: 2px 15px;
    border: 1px solid #c7b2f9;
    cursor: pointer;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    border-radius: 0px;
}
.dropdownButton:hover  {
  background-color: #f9f9f9; 
}
.dropdownButton span {
  transition: transform 0.3s ease; 
}
.dropdownButton[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.dropdown ul.dropdownMenu {
    list-style: none;
    padding-left: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 200px;
    z-index: 2;
    display: none;
    border-top: 0;
    padding-top: 7px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.dropdown ul.dropdownMenu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    /* margin-top: -1px; */
}

.dropdown  ul.dropdownMenu li {
    border-bottom: 0px solid #eee;
    background: none;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 1px;
}
.dropdown ul.dropdownMenu li a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
}


/* Page Inside menu  */

/* show|hide */

.to_expand {
  transition: transform 0.43s ease, opacity 0.43s ease;
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.to_expand[aria-hidden="false"] {
  transform: scaleY(1);
  opacity: 1;
  height: auto;
}
.espan {
    font-weight: 500;
    width: 100%;
}
.to_exp_close {
    float: right;
}
/* /show|hide */

/* /Publ  */

/*  etc  */
.modal-video-close-btn {
    cursor: pointer;
}