@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
body {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 30px;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
}
@media (max-width: 960px) {
  body {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 70px;
  }
}
* {
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}
a:active, a:focus {
  outline: none;
}
input, textarea {
  outline: none;
  font-family: "Rubik", sans-serif;
}
input:active, textarea:active {
  outline: none;
}
button:hover {
  cursor: pointer;
}
h1, h2, h3, h4 {
  margin: 0px;
  padding: 0px;
}
a {
  text-decoration: none;
  color: #B49244;
}

p {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

ul {
    padding: 0px;
}

.quiz {

	gap:2em}

.quiz .info {
    color: white;
    max-width: 992px;
}
.quiz .info a {
	color: white;
	text-decoration: underline;
}
.quiz .qrblock {
	max-width: 300px;text-align:center;
}

.quiz .qrblock .title {
	margin-top:15px;color:#fff;font-size:1.2em;
}

.quiz .qrblock img {
	max-width:200px;
}
.ptfont {
  font-family: "PT Serif", serif;
}
.btn {
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 400;
  font-size: 20px;
  line-height: 19px;
  text-transform: uppercase;
  background-color: #2b2a29;
  height: 47px;
  transition: 0.3s;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding-right: 40px;
  padding-left: 40px;
  text-decoration: none;
  width: fit-content;
}
@media (max-width: 1200px) {
  .btn {
    height: 36px;
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .btn {
    font-size: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
	.quiz .qrblock .title {
		font-size: 0.7em;
		margin-top:5px
	}
}
.btn:hover {
  background-color: #b49244;
}
.btn-second {
  background: none;
  border: 1px solid #b49244;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  color: #2b2a29;
}
.row {
  display: flex;
  flex-direction: row;
}
.col {
  display: flex;
  flex-direction: column;
}
.cWrapper {
  margin-bottom: 135px;
}
.mainWrapper {
  width: 100%;
  max-width: 1800px;
}
.mediaIcons {
  gap: 11px;
}
@media (max-width: 960px) {
  .mediaIcons {
    gap: 8px;
  }
}
.mediaIcons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .mediaIcons .icon {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 960px) {
  .mediaIcons .icon {
    width: 23px;
    height: 23px;
  }
}
.mediaIcons .icon:hover {
  opacity: 0.7;
}
.mediaIcons .icon img {
  width: 100%;
  height: 100%;
}
.mobLogos {
  display: none;
}

.mobLogos .vision .icon {
  width: 23px;
  height: 23px;
  padding: 0;
  background: #657e44;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.mobLogos .mainLogo img {
  width: 185px;
  max-width: 185px;
  height: auto;
}


.mobLogos .seasonLogo img {
  width: 72px;
  max-width: 72px;
  height: auto;
}

.mobLogos .vision .icon img {
  width: 100%;
  height: 100%;
}

.mobLogos .right {
  width: 100px;
  display: flex;
  justify-content: end;
}

.mobLogos .left {
  width: 100px;
  min-width: 100px;
}

.mobLogos .middle {
  display: flex;
  flex: 1;
  justify-content: center;
}

@media (max-width: 960px) {
  .mobLogos {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 450px) {
  .mobLogos {
    margin-bottom: 25px;
  }
}

.burgerIcon {
  width: 23px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burgerIcon div{
  width: 100%;
  height: 1px;
  background-color: #000;
  border-radius: 90px;
}

.topMenu-mob {
  display: none;
}
@media (max-width: 960px) {
  .topMenu.topMenu-mob {
    display: flex;
    margin-top: 22px;
  }

  .topMenu-mob.topMenu .topMenu__left .topMenu__phone {
    justify-content: start;
  }

  .topMenu {
    display: none;
  }
}

.topMenu {
  justify-content: space-between;
  width: 100%;
  min-width: 100%;
  margin-bottom: 15px;
}
.topMenu .topMenu__item {
  display: flex;
  flex: 1;
  width: 100%;
}
.topMenu .topMenu__left {
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__left {
    gap: 8px;
  }
}
@media (min-width: 960px) {
  .topMenu .topMenu__left {
    justify-content: flex-end;
  }
}
.topMenu .topMenu__left .topMenu__phone {
  gap: 10px;
  align-items: center;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__left .topMenu__phone {
    gap: 8px;
    max-width: 180px;
    justify-content: space-between;
  }
}
.topMenu .topMenu__left .topMenu__phone .phoneBtn {
  border: 1px solid #eaeaea;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__left .topMenu__phone .phoneBtn {
    padding: 6px;
  }
}
@media (max-width: 960px) {
  .topMenu .topMenu__left .topMenu__phone .phoneBtn {
    width: 23px;
    height: 23px;
  }
  .topMenu .topMenu__left .topMenu__phone .phoneBtn img {
    width: 14px;
    height: 14px;
  }
}
.topMenu .topMenu__left .topMenu__phone a {
  color: #2b2a29;
  font-size: 1.156rem;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__left .topMenu__phone a {
    font-style: 14px;
  }
}
@media (max-width: 960px) {
  .topMenu .topMenu__left .topMenu__phone a {
    font-size: 12px;
  }
}
.topMenu .topMenu__left .topMenu__phone a:hover {
  color: #b49244;
}
.topMenu .topMenu__left .vision {
  margin-left: 23px;
}
@media (max-width: 960px) {
  .topMenu .topMenu__left .vision {
    display: none;
  }
}
.topMenu .topMenu__left .vision .icon {
  width: 33px;
  height: 33px;
  padding: 0;
  background: #657e44;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__left .vision .icon {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 1200px) {
  .topMenu .topMenu__left .vision .icon {
    margin-left: 20px;
  }
}
.topMenu .topMenu__left .vision .icon:hover {
  cursor: pointer;
  opacity: 0.8;
}
.topMenu .topMenu__left .vision .icon img {
  width: 100%;
  height: 100%;
}
.topMenu .topMenu__left .mobvision {
  display: none;
}
@media (max-width: 960px) {
  .topMenu .topMenu__left .mobvision {
    display: block;
  }
}
.topMenu .topMenu__left .mobvision .icon {
  width: 23px;
  height: 23px;
  background: #657e44;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
  padding: 0;
}
.topMenu .topMenu__left .mobvision .icon:hover {
  cursor: pointer;
  opacity: 0.8;
}
.topMenu .topMenu__left .mobvision .icon img {
  width: 100%;
  height: 100%;
}
.topMenu .topMenu__middle {
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__middle img {
    width: 147px;
    height: auto;
  }
}
@media (max-width: 960px) {
  .topMenu .topMenu__middle {
    display: none;
  }
}
.topMenu .topMenu__right {
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__right {
    gap: 8px;
  }
}
@media (max-width: 450px) {
  .topMenu .topMenu__right {
    align-items: flex-end;
  }
}
.topMenu .topMenu__right .topMenu__sesonLogo {
  justify-content: flex-end;
}

  .topMenu .topMenu__right .topMenu__sesonLogo img {
      max-width: 100px;
  }
@media (max-width: 1200px) {
  .topMenu .topMenu__right .topMenu__sesonLogo img {
    width: 71px;
    max-width: 71px;
    height: auto;
  }
}
@media (max-width: 960px) {
  .topMenu .topMenu__right .topMenu__sesonLogo {
    display: none;
  }
}
.search__item{
  padding-bottom: 5px;
  border-bottom: 1px solid #E4E4E4;
  margin-bottom: 10px;
}
.topMenu .topMenu__right .topMenu__search {
  justify-content: flex-end;
}
@media (max-width: 450px) {
  .topMenu .topMenu__right .topMenu__search {
    gap: 8px;
    justify-content: flex-end;
    align-items: flex-end;
    height: 23px;
  }
}

.topMenu .topMenu__right .topMenu__search .search {
  background-color: #E4E4E4;
  height: 34px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  width: 230px;
}

.topMenu .topMenu__right .topMenu__search .search button{
  font-family: "Rubik", sans-serif!important;
  height: 34px!important;
}
.topMenu .topMenu__right .topMenu__search .search input{
  font-family: "Rubik", sans-serif!important;
  height: 34px!important;
}
.topMenu .topMenu__right .topMenu__search .search .is-search-icon{
  font-family: "Rubik", sans-serif!important;
  height: 34px!important;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__right .topMenu__search .search {
    width: 173px;
    gap: 8px;
    height: 26px;
  }
  /* .topMenu .topMenu__right .topMenu__search .search button, input, .is-search-icon{
    height: 26px!important;
  } */
  .topMenu .topMenu__right .topMenu__search .search .is-search-icon{
    padding-top: 1px!important;
    height: 30px!important;
  }
}
@media (max-width: 960px) {
  .topMenu .topMenu__right .topMenu__search .search {
    width: 160px;
    height: 23px;
  }

  .topMenu .topMenu__right .topMenu__search .search img{
    width: 14px;
  }
  .topMenu .topMenu__right .topMenu__search .search input{
    font-family: "Rubik", sans-serif!important;
    height: 23px!important;
  }

  /* .topMenu .topMenu__right .topMenu__search .search button, input, .is-search-icon{
    height: 23px!important;
  } */
  .topMenu .topMenu__right .topMenu__search .search .is-search-icon{
    padding-top: 1px!important;
    height: 23px!important;
  }
}

@media (max-width: 395px) {
  .topMenu .topMenu__right .topMenu__search .search {
    width: 140px;
    height: 23px;
  }
}

.topMenu .topMenu__right .topMenu__search .search input {
  color: #373636;
  font-size: 0.75rem;
  border: none;
  width: 100%;
  background-color: transparent;
  outline: none;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__right .topMenu__search .search input {
    font-size: 11px;
  }
}
.topMenu .topMenu__right .topMenu__search .langBtns {
  display: flex;
  margin-left: 10px;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__right .topMenu__search .langBtns {
    margin-left: 8px;
  }
}
.topMenu .topMenu__right .topMenu__search .langBtns .langBtn {
  width: 35px;
  height: 34px;
  font-size: 1rem;
  line-height: 19px;
  font-weight: 600;
  color: #373636;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.topMenu .topMenu__right .topMenu__search .langBtns .langBtn a{
  width: 100%;
  height: 100%;
  background-color: #E4E4E4;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 1200px) {
  .topMenu .topMenu__right .topMenu__search .langBtns .langBtn {
    width: 27px;
    height: 26px;
    font-size: 12px;
  }
}
@media (max-width: 960px) {
  .topMenu .topMenu__right .topMenu__search .langBtns .langBtn {
    width: 25px;
    height: 23px;
  }
}
.topMenu .topMenu__right .topMenu__search .langBtns .langBtn:hover {
  cursor: pointer;
}
.topMenu .topMenu__right .topMenu__search .langBtns .active {
  color: #657e44;
}
.mainMenu {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .mainMenu {
    display: none;
  }
}
.mainMenu .mainMenu__items {
  justify-content: space-between;
  width: 100%;
  gap: 2px;
  margin: 0px;
  padding: 0px;
}
.mainMenu .mainMenu__items .menu-item {
  list-style: none;
  position: relative;
  width: 100%;
}
.mainMenu .mainMenu__items .menu-item a{
  background-color: #E4E4E4;
  font-size: 0.938rem;
  width: 100%;
  height: 59px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: 0.3s;
}
.mainMenu .mainMenu__items .menu-item.burger {
  width: 50px;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: initial;
  text-align: center;
  color: #2b2a29;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  background: #E4E4E4;
}
.mainMenu .mainMenu__items .menu-item.burger img{
  width: 25px;
  height: 20px;
}
@media (max-width: 1200px) {
  .mainMenu .mainMenu__items .menu-item a{
    font-size: 11px;
    padding-bottom: 16px;
    padding-top: 16px;
    height: 45px;
  }
}
@media (max-width: 960px) {
  .mainMenu .mainMenu__items .menu-item a{
    height: 38px;
  }
}
.mainMenu .mainMenu__items .menu-item a {
  width: 100%;
  text-align: center;
  color: #2b2a29;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}
.mainMenu .mainMenu__items .menu-item a:hover {
  cursor: pointer;
  background-color: #657e44;
  color: white;
}
.mainMenu .mainMenu__items .menu-item:hover > .sub-menu {
  visibility: visible;
}
.mainMenu .mainMenu__items .menu-item .sub-menu {
  visibility: hidden;
  position: absolute;
  top: 59px;
  margin: 0px;
  padding: 0px;
  min-width: 100%;
  width: fit-content;
  background-color: #E4E4E4;
  list-style: none;
  z-index: 20;
}
@media (max-width: 1200px) {
  .mainMenu .mainMenu__items .menu-item .sub-menu {
    top: 45px;
  }
}
@media (max-width: 960px) {
  .mainMenu .mainMenu__items .menu-item .sub-menu {
    top: 38px;
  }
}
.mainMenu .mainMenu__items .menu-item .sub-menu .menu-item a{
  padding: 20px;
  min-width: 100%;
  width: fit-content;
  display: flex;
  justify-content: center;
  color: #2b2a29;
}
@media (max-width: 1200px) {
  .mainMenu .mainMenu__items .menu-item .sub-menu .menu-item a{
    padding: 16px 0 16px 0;
  }
}
.mainMenu .mainMenu__items .menu-item .sub-menu .menu-item a:hover {
  cursor: pointer;
  color: white;
  background-color: #657e44;
}
.mainMenuMob {
  display: none;
}
@media (max-width: 960px) {
  .mainMenuMob {
    display: flex;
  }
}
.mainSlider {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .mainSlider {
    margin-bottom: 70px;
  }
}
@media (max-width: 960px) {
  .mainSlider {
    margin-bottom: 50px;
  }
}
.mainSlider .slider__tools {
  justify-content: center;
  width: 100%;
  gap: 65px;
}
@media (max-width: 600px) {
  .mainSlider .slider__tools {
    justify-content: space-between;
    gap: 15px;
  }
}
.mainSlider .slider__tools .dots {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.mainSlider .slider__tools .dots .slick-dots {
  display: flex !important;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
}
.mainSlider .slider__tools .dots .slick-dots li {
  display: flex;
}
.mainSlider .slider__tools .dots .slick-dots li button {
  display: flex;
  font-size: 0;
  content: none;
  width: 10px;
  height: 10px;
  max-width: 10px;
  max-height: 10px;
  background-color: #E4E4E4;
  border: none;
  transition: 0.3s;
  padding: 0;
}
@media (max-width: 1200px) {
  .mainSlider .slider__tools .dots .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
.mainSlider .slider__tools .dots .slick-dots li.slick-active button {
  background-color: #b49244;
}
.mainSlider .slider__tools .dots .slick-dots li:hover button {
  background-color: #657e44;
}
.mainSlider .slider__tools .sliderBtn {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.mainSlider .slider__tools .sliderBtn .back {
  content: "";
  width: 60px;
  height: 18px;
  background-color: #E4E4E4;
  transition: 0.3s;
}

.mainSlider .slider__tools .sliderBtn__next img {
  transform: rotate(180deg);
  margin-right: -20px;
}

.mainSlider .slider__tools .sliderBtn__prev img {
  margin-left: -20px;
}

.slider {
  width: 100%;
}
.slider .slider__item {
  width: 100%;
  overflow-y: hidden;
}
.slider .slider__item img {
  width: 100%;
  height: auto;
}
.quiz {
  background-color: #657e44;
  padding: 22px 112px 22px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  .quiz {
    padding: 15px 85px 14px 34px;
  }
}
@media (max-width: 960px) {
  .quiz {
    padding: 20px;
    flex-direction: column;
    gap: 13px;
  }
}
.quiz .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
}
@media (max-width: 1200px) {
  .quiz .info {
    gap: 0px;
  }
}
@media (max-width: 960px) {
  .quiz .info {
    align-items: center;
  }
}
.quiz .info .title {
  text-transform: uppercase;
  font-size: 24px;
}
@media (max-width: 1200px) {
  .quiz .info .title {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .quiz .info .title {
    font-size: 12px;
  }
}
.quiz .info .subtitle {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .quiz .info .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .quiz .info .subtitle {
    font-size: 10px;
  }
}
.quiz .quiz__btn {
  width: 284px;
}
@media (max-width: 1200px) {
  .quiz .quiz__btn {
    width: 215px;
  }
}

@media (max-width: 480px) {
  .quiz .quiz__btn {
    width: 105px;
    height: 25px;
  }
}
.quiz .quiz__btn:hover {
  opacity: 0.8;
}
.pushkin {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  margin-top: 190px;
}
@media (max-width: 1200px) {
  .pushkin {
    margin-top: 95px;
  }
}
@media (max-width: 960px) {
  .pushkin {
    margin-top: 60px;
  }
}
.pushkin .title {
  background-color: #657e44;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  color: white;
  text-transform: uppercase;
  padding: 14px 0px;
  background-color: #657e44;
}
@media (max-width: 1200px) {
  .pushkin .title {
    padding: 10px 0;
  }
}
@media (max-width: 960px) {
  .pushkin .title {
    padding: 5px 0;
  }
}
.pushkin .title .text {
  width: 40%;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .pushkin .title .text {
    font-size: 17px;
    width: 50%;
  }
}
@media (max-width: 960px) {
  .pushkin .title .text {
    font-size: 12px;
  }
}
@media (max-width: 450px) {
  .pushkin .title .text {
    width: 100%;
    padding: 10px;
    text-align: right;
  }
}
.pushkin .content {
  width: 100%;
  justify-content: space-between;
  color: #000;
  background-color: #657e44;
}
@media (max-width: 450px) {
  .pushkin .content {
    padding-right: 20px;
  }
}
.pushkin .content .left {
  justify-content: center;
  position: relative;
  min-width: 60%;
}
@media (max-width: 1200px) {
  .pushkin .content .left {
    min-width: 50%;
  }
}
.pushkin .content .left img {
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 1200px) {
  .pushkin .content .left img {
    width: 321px;
    height: auto;
  }
}
@media (max-width: 960px) {
  .pushkin .content .left img {
    width: 204px;
    height: auto;
  }
}
@media (max-width: 450px) {
  .pushkin .content .left {

  }
}
.pushkin .content .right {
  width: 40%;
}
@media (max-width: 1200px) {
  .pushkin .content .right {
    width: 50%;
  }
}
@media (max-width: 450px) {
  .pushkin .content .right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.pushkin .content .right .text {
  padding-right: 100px;
  padding-top: 30px;
  line-height: 26px;
  font-size: 20px;
  margin-bottom: 35px;
  color: white;
}
@media (max-width: 1200px) {
  .pushkin .content .right .text {
    padding-right: 55px;
    padding-top: 25px;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 25px;
  }
}
@media (max-width: 960px) {
  .pushkin .content .right .text {
    font-size: 10px;
    line-height: 14px;
    padding-right: 22px;
    padding-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .pushkin .content .right .text {
    font-size: 12px;
    line-height: 18px;
    text-align: right;
    margin-bottom: 25px;
    padding-right: 0px;
  }
}
.pushkin .content .right .btn {
  width: 255px;
  margin-bottom: 24px;
  padding: 0;
}
@media (max-width: 1200px) {
  .pushkin .content .right .btn {
    width: 192px;
    margin-bottom: 18px;
  }
}
.events {
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .events {
    margin-top: 45px;
  }
}
@media (max-width: 960px) {
  .events {
    margin-top: 40px;
  }
}
.events .events__title {
  position: relative;
  margin-bottom: 50px;
}
.events .events__title h3 {
  font-weight: 400;
  font-size: 64px;
  line-height: 85px;
  color: #2b2a29;
}
@media (max-width: 1200px) {
  .events .events__title h3 {
    font-size: 50px;
    line-height: 66px;
    margin-bottom: 4px;
  }
}
@media (max-width: 960px) {
  .events .events__title h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
.events .events__title h4 {
  font-weight: 400;
  font-size: 50px;
  line-height: 66px;
  color: #ad9263;
}
@media (max-width: 1200px) {
  .events .events__title h4 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 960px) {
  .events .events__title h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.events .events__title .backgroundText {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  right: 0;
  bottom: 0;
  font-weight: 400;
  font-size: 160px;
  color: #F0F0F0;
  z-index: -1;
}
.events .events__title .backgroundText span {
  line-height: 0.9;
}
@media (max-width: 1200px) {
  .events .events__title .backgroundText {
    font-size: 120px;
  }
}
@media (max-width: 960px) {
  .events .events__title .backgroundText {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .events .events__title {
    margin-bottom: 70px;
  }
}
@media (max-width: 960px) {
  .events .events__title {
    margin-bottom: 30px;
  }
}
.events .events__items {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  gap: 60px 20px;
}
@media (max-width: 1200px) {
  .events .events__items {
    gap: 34px 15px;
  }
}
@media (max-width: 960px) {
  .events .events__items {
    flex-direction: column;
    gap: 25px;
  }
}
.events .events__items .events__item {
  width: 32%;
}
@media (max-width: 960px) {
  .events .events__items .events__item {
    width: 100%;
  }
}
.events .events__items .events__item .events__item_img {
  margin-bottom: 18px;
  max-height: 300px;
  min-height: 300px;
  overflow: hidden;
}
.events .events__items .events__item .events__item_img img {
  width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .events .events__items .events__item .events__item_img {
    margin-bottom: 14px;
  }
}
@media (max-width: 960px) {
  .events .events__items .events__item .events__item_img {
    margin-bottom: 10px;
    height: auto;
    min-height: auto;
  }
}
.events .events__items .events__item .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #2b2a29;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .events .events__items .events__item .title {
    font-size: 18px;
    line-height: 24px;
  }
}

.events .events__items .events__item .title:hover {
  cursor: pointer;
  color: #ad9263;
}
.events .events__items .events__item .date {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #ad9263;
}
@media (max-width: 1200px) {
  .events .events__items .events__item .date {
    font-size: 14px;
    line-height: 30px;
  }
}
.events .events__items .events__bigItem {
  width: 49%;
}
@media (max-width: 960px) {
  .events .events__items .events__bigItem {
    width: 100%;
  }
}
.events .events__items .events__item.events__bigItem .events__item_img {
  max-height: 400px;
  min-height: 400px;
  overflow: hidden;
}
.events .events__more {
  margin-top: 85px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .events .events__more {
    margin-top: 80px;
  }
}
@media (max-width: 960px) {
  .events .events__more {
    margin-top: 30px;
  }
}
.events .events__more .btn {
  width: 284px;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .events .events__more .btn {
    width: 244px;
  }
}
@media (max-width: 960px) {
  .events .events__more .btn {
    width: 140px;
  }
}
.subscribe {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #657e44;
  color: white;
  padding: 26px 45px 18px 45px;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .subscribe {
    padding: 23px 26px 21px 36px;
    margin-bottom: 60px;
    gap: 15px;
  }
}
@media (max-width: 960px) {
  .subscribe {
    margin-top: 50px;
    padding: 20px;
    align-items: center;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__content {
    flex-direction: column;
  }
}
.subscribe .subscribe__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.subscribe .subscribe__info .subscribe__info_title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__info .subscribe__info_title {
    font-size: 22px;
    line-height: 26px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__info .subscribe__info_title {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
  }
}
.subscribe .subscribe__info .subscribe__info_subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__info .subscribe__info_subtitle {
    font-size: 16px;
    line-height: 19px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__info .subscribe__info_subtitle {
    font-size: 10px;
    line-height: 12px;
    text-align: center;
  }
}
.subscribe .subscribe__form {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  padding-top: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__form {
    gap: 15px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__form {
    gap: 7px;
    padding-top: 15px;
  }
}
.subscribe .subscribe__form input {
  width: 316px;
  height: 47px;
  border: none;
  display: flex;
  align-items: center;
  padding: 0px 12px;
  color: #2b2a29;
  font-size: 20px;
  background: #ffffff;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__form input {
    width: 240px;
    height: 36px;
    padding: 0 9px;
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__form input {
    width: 160px;
    height: 25px;
    font-size: 10px;
    padding: 0 5px;
    border-radius: 0;
  }
}
.subscribe .subscribe__form .btn {
  width: 229px;
  height: 47px;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__form .btn {
    width: 174px;
    height: 36px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__form .btn {
    width: 86px;
    height: 25px;
    font-size: 10px;
  }
}
.subscribe .subscribe__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__checkbox {
    gap: 7px;
    font-size: 13px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__checkbox {
    gap: 10px;
    font-size: 10px;
  }
}
.subscribe .subscribe__checkbox input {
  width: 24px;
  height: 24px;
}
@media (max-width: 1200px) {
  .subscribe .subscribe__checkbox input {
    width: 19px;
    height: 19px;
  }
}
@media (max-width: 960px) {
  .subscribe .subscribe__checkbox input {
    width: 10px;
    height: 10px;
  }
}
.footer {
  background-color: #E4E4E4;
  padding: 42px 45px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 1200px) {
  .footer {
    gap: 70px;
    padding: 35px;
  }
}
@media (max-width: 900px) {
  .footer {
    display: none;
    gap: 20px;
  }
}
.footer .row {
  justify-content: space-between;
}
.footer .footer__col {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 80px 20px;
  flex: 1;
}
.footer-lite {
  padding: 50px 0px;
  border-top: 1px solid #2B2A29;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 600px) {
  .footer-lite .row {
    flex-direction: column;
    gap: 40px;
  }
}
.footer-lite .row {
  justify-content: space-between;
  align-items: center;
}
.footer-lite .footer__logo {
  display: flex;
  gap: 65px;
}
@media (max-width: 1200px) {
  .footer .footer__col {
    gap: 34px 10px;
  }
}
.footer .footer__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1200px) {
  .footer .footer__menu {
    gap: 12px;
  }
}
.footer .footer__menu .footer__menu_title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #b49244;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .footer .footer__menu .footer__menu_title {
    font-size: 18px;
    line-height: 21px;
    white-space: nowrap;
  }
}
.footer .footer__menu .footer__menu_items {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .footer__menu .footer__menu_items a {
  font-weight: 400;
  font-size: 20px;
  line-height: 36px;
  text-transform: lowercase;
  color: #2b2a29;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .footer .footer__menu .footer__menu_items a {
    font-size: 16px;
    line-height: 28px;
  }
}
.footer .footer__menu .footer__menu_items a:hover {
  color: #b49244;
}
.footer .mediaIcons {
  gap: 20px;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .footer .mediaIcons {
    margin-top: 2px;
    gap: 15px;
  }
}
@media (max-width: 960px) {
  .footer .mediaIcons {
    margin-top: 0;
    gap: 8px;
  }
}
.footer .footer__logo {
  display: flex;
  gap: 47px;
}
  .footer .footer__logo .footer__logo-season img {
    max-width: 100px;
    height: auto;
  }
@media (max-width: 1200px) {
  .footer .footer__logo {
    gap: 15px;
  }
  .footer .footer__logo .footer__logo-main img {
    width: 133px;
    height: auto;
  }
  .footer .footer__logo .footer__logo-season img {
    width: 72px;
    max-width: 72px;
    height: auto;
  }
}

@media (max-width: 630px) {
  .footer .footer__logo .footer__logo-main img {
    width: 100%;
    height: auto;
  }

  .footer .footer__logo .footer__logo-season img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .footer .footer__logo .footer__logo-main  {
    width: 70%;
    height: auto;
  }

  .footer .footer__logo .footer__logo-season  {
    width: 30%;
    max-width: 30%;
    height: auto;
    display: flex;
    align-items: center;
  }

}
.footer .mediaCol {
  min-width: 33px;
  max-width: 33px;
}
@media (max-width: 1200px) {
  .footer .mediaCol {
    min-width: 25px;
    max-width: 25px;
  }
}
.footer .topBorder {
  border-top: 1px solid #2b2a29;
  padding-top: 3px;
}
.mfooter {
  display: none;
}
.mfooter .row {
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.mfooter .footer__mediaRow {
  flex-direction: row;
  border-bottom: 1px solid black;
  padding-bottom: 20px;
  padding-top: 20px;
}

.mfooter .footer__mediaRow .footer__mediaRow-icons {
  justify-content: center;
}
@media (max-width: 900px) {
  .mfooter {
    display: flex;
  }
}
@media (max-width: 500px) {
  .mfooter {
    padding: 14px;
  }
}
.mfooter .mediaIcons {
  max-width: 220px;
  gap: 6px;
  justify-content: start;
}
.banners {
  justify-content: space-between;
  margin-top: 50px;
}
.banners.banners-right {
justify-content: flex-end;
margin-top: 0;
}

@media (max-width: 600px) {
  .banners.banners-right {
    justify-content: center;
    }
}

.banners.banners-right .banners__logos{
  flex: initial;
}

.banners .banners__logos {
  flex: 4;
  display: flex;
  gap: 25px;
  align-items: center;
}
.banners .banners__logos img {
  max-width: 150px;
}
@media (max-width: 1200px) {
  .banners .banners__logos {
    gap: 25px;
  }
}

@media (max-width: 960px) {


  .banners .banners__logos img {
    display: flex;
    flex: 1;
    max-width: 118px;
    width: 118px;
  }

}

@media (max-width: 520px) {

  .banners {
    margin-top: 25px;
  }

  .banners .banners__logos {
    gap: 7px;
    width: 100%;
  }

  .banners .banners__logos img {
    display: flex;
    flex: 1;
    max-width: 66px;
    width: 66px;
  }

}
.banners .banners__metrika {
  display: flex;
  flex: 1;
  justify-content: flex-end;
	max-width: 150px;
}
  .banners .banners__metrika img{
    width: 100%;
	  height: auto;
  }

@media (max-width: 960px) {


  .banners .banners__metrika img{

    max-width: 71px;
    width: 71px;
  }

}
@media (max-width: 520px) {
  .banners .banners__metrika img{
    max-width: 66px;
    width: 66px;
  }

}
.schedule_nextBtn_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 45px;
  margin-top: 20px;
}
.schedule .fpage.btn {
	margin: 3em auto 1em;
}
@media (max-width: 1200px) {
  .schedule_nextBtn_wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 960px) {
  .schedule_nextBtn_wrapper {
    margin-bottom: 30px;
  }
}
.schedule_nextBtn {
  border: 1px solid #2B2A29;
  width: fit-content;
  height: 31px;
  padding: 0 37px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
  background: white;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .schedule_nextBtn {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .schedule_nextBtn {
    font-size: 10px;
  }
}
.schedule__datepicker_next {
  display: none;
}
.schedule__datepicker_next-active {
  display: block;
}
@media (max-width: 1700px) {
  .schedule__datepicker_next {
    display: block;
  }
}
.schedule__datepicker_prev {
  display: none;
}
.schedule__datepicker_prev-active {
  display: block;
}
/* @media (max-width: 1700px) {
  .schedule__datepicker_prev {
    display: block;
  }
} */
.schedule .schedule__header {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .schedule .schedule__header {
    margin-top: 15px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__header {
    margin-top: 15px;
  }
}
.schedule .schedule__header .schedule__header_title {
  font-weight: 400;
  font-size: 64px;
  line-height: 85px;
  color: #2b2a29;
  margin-bottom: 37px;
}
@media (max-width: 1200px) {
  .schedule .schedule__header .schedule__header_title {
    font-size: 50px;
    line-height: 66px;
    margin-bottom: 60px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__header .schedule__header_title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 22px;
  }
}
.schedule .schedule__header .schedule__header_subtitle {
  font-weight: 400;
  font-size: 64px;
  line-height: 100px;
  color: #b49244;
}
@media (max-width: 1200px) {
  .schedule .schedule__header .schedule__header_subtitle {
    font-size: 50px;
    line-height: 81px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__header .schedule__header_subtitle {
    font-size: 24px;
    line-height: 42px;
  }
}
.schedule .schedule__header .schedule__header_back {
  font-weight: 400;
  font-size: 160px;
  color: #F0F0F0;
  z-index: -1;
}
@media (max-width: 1200px) {
  .schedule .schedule__header .schedule__header_back {
    font-size: 120px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__header .schedule__header_back {
    font-size: 60px;
  }
}
.schedule .schedule__header .schedule__header_subtitle_back {
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1.07;
}
.schedule .schedule__header .schedule__header_title_back {
  position: absolute;
  left: 0;
  top: -70px;
}
@media (max-width: 1200px) {
  .schedule .schedule__header .schedule__header_title_back {
    top: -48px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__header .schedule__header_title_back {
    top: -25px;
  }
}
.schedule .schedule__datepicker {
  justify-content: space-between;
}
.schedule .schedule__datepicker button {
  background: none;
  border: none;
}
.schedule .schedule__datepicker .schedule__datepicker_prev img {
  transform: rotate(180deg);
}
.schedule .schedule__datepicker .schedule__datepicker_date {
  width: 100%;
  height: 61px;
  overflow-x: hidden;
  overflow-y: visible;
  gap: 15px;
}
/* .schedule .schedule__datepicker .schedule__datepicker_date .slick-list{
  width: 100%!important;
}
.schedule .schedule__datepicker .schedule__datepicker_date .slick-track{
  width: 100%!important;
} */


@media (max-width: 960px) {
  .schedule .schedule__datepicker .schedule__datepicker_date {
    gap: 8px;
  }
}
.schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1px;
  align-items: center;
  transition: 0.3ms;
  padding: 0 10px;
}
@media (max-width: 1200px) {
  .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem {
    gap: 10px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem {
    gap: 4px;
    min-width: 35px;
  }
}

.schedule__datepicker_dateitem-month {
  background-color: rgba(43, 42, 41, 0.03)!important;
  padding: 1px;
}
.schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-date {
  font-weight: 400;
  font-size: 30px;
  font-family: "PT Serif", serif;
  line-height: 40px;
  color: #2b2a29;
  text-transform: uppercase;
}
.schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-date_active {
  color:#DFC588;
}
@media (max-width: 1200px) {
  .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-date {
    font-size: 23px;
    line-height: 30px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-date {
    font-size: 16px;
    line-height: 21px;
  }
}
.schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-day {
  font-weight: 300;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  line-height: 19px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1200px) {
  .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-day {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem .schedule__datepicker_dateitem-day {
    font-size: 12px;
    line-height: 11px;
  }
}
.schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem:hover .schedule__datepicker_dateitem-date, .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem:hover .schedule__datepicker_dateitem-day {
  color: #657e44
}
.schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem.schedule__datepicker_dateitem-month:hover .schedule__datepicker_dateitem-date, .schedule .schedule__datepicker .schedule__datepicker_date .schedule__datepicker_dateitem:hover .schedule__datepicker_dateitem-day {
  color: initial;
}
.schedule .schedule__datepicker .active .schedule__datepicker_dateitem-date, .schedule .schedule__datepicker .active .schedule__datepicker_dateitem-day {
  color: #b49244;
}
.schedule__items h4 {
  font-size: 24px;
}
.schedule .schedule__items {
  gap: 40px;
}
@media (max-width: 1200px) {
  .schedule .schedule__items {
    gap: 20px;
  }
}

.schedule__items__noevents {
  text-transform: uppercase;
  font-size: 24px;
  margin-top: 80px;
}

@media (max-width:1200px) {
  .schedule__items__noevents {
    margin-top: 40px;
  }
}

@media (max-width:900px) {
  .schedule__items__noevents {
    margin-top: 30px;
    font-size: 20px;
  }
}

.schedule .schedule__items .schedule__item:first-child {
/* margin-top: 80px; */
}
.schedule .schedule__items .schedule__item .schedule__item-title {
  background-color: #E4E4E4;
  padding: 13px 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #2b2a29;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-title {
    padding: 10px 15px;
    font-size: 16px;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info {
  gap: 25px;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info {
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .schedule .schedule__items .schedule__item .schedule__item-info {
    flex-direction: column;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-img {
  max-width: 250px;
  min-width: 250px;
  width: 250px;
  max-height: 350px;
  overflow: hidden;
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-img img {
  width: 100%;
  height: auto;
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .topInfo {
  font-size: 16px;
  line-height: 19px;
  color: #2b2a29;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .topInfo {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .topInfo {
    font-size: 18px;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .info {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #2b2a29;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .info {
    font-size: 16px;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .age {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #2b2a29;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .age {
    font-size: 16px;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .price {
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #2b2a29;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .price {
    font-size: 16px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .price {
    font-size: 14px;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .btns {
  margin-top: 30px;
  align-items: center;
  gap: 18px;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .btns {
    margin-bottom: 20px;
    gap: 12px;
  }
}
@media (max-width: 960px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .btns .btn {
    min-width: 160px;
  }
}
.schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .pushkin_label {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #2b2a29;
}
@media (max-width: 1200px) {
  .schedule .schedule__items .schedule__item .schedule__item-info .schedule__item-content .pushkin_label {
    font-size: 16px;
  }
}
.section-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-list .section-list__item {
  padding: 26px 47px 25px 47px;
  border: 2px solid #b49244;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 960px) {
  .section-list .section-list__item {

    justify-content: center;
    flex-direction: column;
    align-items: center;

  }
}
.section-list .section-list__item .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .section-list .section-list__item .title {
    font-size: 16px;
    line-height: 20px;
  }
}
.section-list .section-list__item .section-list__btn {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #2b2a29;
  width: 230px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E4E4E4;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-right: 130px;
  text-decoration: none;
}
@media (max-width: 960px) {
  .section-list .section-list__item .section-list__btn {
    font-size: 16px;
    line-height: 16px;
    margin-right: 0px;
  }
}
.section-list .section-list__item .section-list__btn:hover {
  opacity: 0.8;
}
.utitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #2b2a29;
  padding: 15px 20px;
  background: #E4E4E4;
}
@media (max-width: 960px) {
  .utitle {
    font-size: 16px;
    line-height: 20px;
  }
}
.collectivs {
  gap: 50px;
}
.collectivs .utitle {
  margin-bottom: 45px;
}
.collectivs .img {
  width: 400px;
  min-width: 400px;
  height: auto;
}
.collectivs .img img {
  width: 100%;
  height: auto;
}
.collectivs .btns {
  position: absolute;
  bottom: 0;
}
.collectivs .btns .btn {
  width: 230px;
}
.collectivs .content {
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  position: relative;
}
.collectivs .text {
  max-height: 200px;
  overflow-y: hidden;
}
.collectivs .collectivs__row {
  gap: 30px;
}
@media (max-width: 450px) {
  .collectivs .collectivs__row {
    flex-direction: column;
  }
}
.events-details {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;
  width: 100%;
}

.events-details .alm-reveal{
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 100px;
  width: 100%;
}
.events-details .events-details__item {
  gap: 60px;
}
.events-details .events-details__item .img {
  width: 460px;
  min-width: 460px;
}
.events-details .events-details__item .img img {
  width: 100%;
  height: auto;
}
.events-details .events-details__item .content {
  height: 300px;
  max-height: 300px;
  min-height: 300px;
  position: relative;
}
.events-details .events-details__item .content .date {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #b49244;
  margin-bottom: 30px;
}
.events-details .events-details__item .content .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #2b2a29;
  margin-bottom: 10px;
}
.events-details .events-details__item .content .text {
  max-height: 110px;
  overflow: hidden;
  font-size: 18px;
}
.events-details .events-details__item .content .text p{
  padding: 0;
  margin: 0;
}
.events-details .events-details__item .content .btns {
  gap: 30px;
  position: absolute;
  bottom: 0;
}
.events-details .events-details__item .content .btns .btn {
  width: 230px;
}
@media(max-width: 950px) {
  .events-details .events-details__item .content .btns {
    gap: 30px;
    margin-top: 30px;
    position: initial;
  }
  .events-details .events-details__item .content {
    height: initial;
    max-height: initial;
  }
}
@media (max-width: 1150px) {
  .events-details .events-details__item {
      flex-direction: column ;
  }
  .events-details .events-details__item .img {
    width: 100%;
    min-width: 100%;
  }
  .events-details .events-details__item .content .btns {
    justify-content: space-between;
    width: 100%;
  }
  .events-details .events-details__item {
    gap: 30px;
  }
}
.show-more {
  background: #657e44;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  outline: none!important;
  border: none;
}
.show-more.done {
  display: none;
}
.show-more:hover {
  cursor: pointer;
}
.profiles {
  display: flex;
  justify-content: space-between;
  row-gap: 60px;
  column-gap: 20px;
  flex-wrap: wrap;
  margin-top: 75px;
}
.profiles .profiles-item {
  gap: 20px;
  width: 31%;
  min-width: 300px;
}
@media(max-width: 650px) {
    .profiles .profiles-item {
    width: 100%
    }
}

.profiles .profiles-item .img {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
}
.profiles .profiles-item .img img {
  width: 100%;
  height: auto;
}
.profiles .profiles-item .name {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #2b2a29;
}
.profiles .profiles-item .info {
  align-items: center;
  justify-content: space-between;
}
.profiles .profiles-item .info .btn {
  width: 88px;
}
.burgerMenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
  overflow: hidden;
  background-color: white;
  z-index: 100;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}
.burgerMenu .burgerMenu__close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.burgerMenu .burgerMenu__close img {
  width: 40px;
  height: 40px;
}
.burgerMenu .burgerMenu__menu {
  display: flex;
  color: #2b2a29;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.burgerMenu .burgerMenu__menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.burgerMenu .burgerMenu__menu li {
  padding: 15px;
}
.activeMenu {
  display: flex;
}
.mobMenu-open {
  max-height: 100vh;
  overflow: hidden;
}

.main-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 115px;
  margin-bottom: 110px;
  font-family: "PT Serif", serif;
  text-transform: uppercase;
}

.main-heading h1 {
  font-weight: 400;
  font-size: 64px;
  line-height: 85px;
  color: #2b2a29;
  font-family: "PT Serif", serif;
}
@media (max-width: 1200px) {
  .main-heading h1 {
    font-size: 50px;
    line-height: 66px;
  }
}
@media (max-width: 960px) {
  .main-heading h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .main-heading {
    margin-top: 45px;
    margin-bottom: 40px;
  }
}

.main-heading .fade-title {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  top: 50%;  /* position the top  edge of the element at the middle of the parent */
  right: 0%; /* position the left edge of the element at the middle of the parent */

  transform: translate(0, -50%); /* This is a shorthand of
                                       translateX(-50%) and translateY(-50%) */
  font-weight: 400;
  font-size: 160px;
  color: rgba(43, 42, 41, 0.03);
  font-family: "PT Serif", serif;
}
.main-heading .fade-title {

    line-height: 0.8;
    text-align: center;
    font-size: 100px;

}
@media (max-width: 1200px) {
  .main-heading .fade-title {
    font-size: 85px;
  }
}
@media (max-width: 960px) {
  .main-heading .fade-title {
    font-size: 60px;
  }
}
.post-heading .post-meta{
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #B49244;
    font-family: "PT Serif", serif;
}

.post-heading {
  margin-top: 90px;
  margin-bottom: 25px;
}

.teams-heading {
  margin-top: 30px;
  margin-bottom: 30px;
}

.post-main-img {
  display: flex;
  justify-content: center;
}

.post-main-img img{
  margin-bottom: 25px!important;
}

.wp-block-image img{
  margin-bottom: 45px;
  margin-top: 25px;
}

.postWrapper {
  font-size: 20px;
  line-height: 32px;
}

@media (max-width: 960px) {
  .postWrapper {
    font-size: 16px;
    line-height: 32px;
  }
}

.postWrapper li {
  list-style: none;
  display: flex;
  align-items: center;
 
  line-height: 32px;
      margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}
.postWrapper li::before {
  content: " ";
  width: 10px;
  height: 10px;
    min-width: 10px;
  min-height: 10px;
    max-width: 10px;
  max-height: 10px;
  border-radius: 100%;
  background-color: #b49244;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cWrapper .wp-block-image figure {
  margin-bottom: 0;
  margin-top: 0;
}

.cWrapper .sub-btn {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  width: 100%;
}

.cWrapper .sub-btn button{
  width: 230px;
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.offers__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.offers__img {
  width: 100%;
}

.offers__img img {
  width: 100%;
  height: auto;
}

.main-heading-subtitle {
  font-weight: 400;
  font-size: 50px;
  line-height: 66px;
  color: #ad9263;
  margin-top: 30px;
  font-family: "PT Serif", serif;
}
@media (max-width: 1200px) {
  .main-heading-subtitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 960px) {
  .main-heading-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
}
.main-heading-wrapper {
  position: relative;
}
.teams-link {
  margin-bottom: 60px;
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.teams-link a{
  width: 450px;
}

.plyr__controls {
  background: #E4E4E4!important;
  border-radius: 25px!important;
}

.plyr__controls a{
  display: none!important;
}

.plyr--full-ui input[type=range] {
  color: #AD9263!important;
}

.contact-item {
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  margin-top: 15px;
  margin-left: 15px;
}

@media (max-width: 960px) {
  .contact-item {
    font-size: 16px;
  }
}

.contact-item .contact-item-title{
  font-weight: 500;
}

.mediateka {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mediateka .mediateka-item {
  width: 100%;

}
.mediateka .wp-block-lazyblock-mediateka-video {
  width: 21%;
  min-width: 200px;
}

@media (max-width: 500px) {
  .mediateka .wp-block-lazyblock-mediateka-video {
    width: 100%;
    min-width: 200px;
  }
}

.fono {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 50px;
}
.fono-info {
  display: flex;
  gap: 50px;

}
.fono-img {
  width: 400px;
  max-width: 400px;
  min-width: 400px;
}

@media (max-width: 850px) {
.fono-img {
  width: 400px;
  max-width: 400px;
  min-width: initial;

}

.fono-info {
    flex-wrap: wrap;
}

}

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

.fono-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}

.fono-text-title {
  text-transform: uppercase;
}

.pageTitle {
  font-weight: 400;
  font-size: 40px;
  line-height: 53px;
  margin-bottom: 40px;
  margin-top: 75px;
  width: 100%;
  text-align: center;
  font-family: "PT Serif", serif;
}

#nf-form-1-cont {
  text-align: center;
}

.share-popup {
  background-color: white;
  padding: 40px;
  display: none;

}

.share-popup-active {
  display: block;
}

.share-popup-title {
  display: flex;
  justify-content: space-between;
  align-content: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
}

.share-popup-wrapper {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 42, 41, 0.7);
}

.share-popup-wrapper-active {
  display: flex;
}

.share-popup-btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-content: center;
  justify-content: flex-end;
}

.share-popup-btn:hover {
  cursor: pointer;
}

.share-popup-btn img{
  width: 100%;
  height: auto;
}

.share-popup-content {
  display: flex;
  gap: 20px;
}

#nf-form-title-2 .nf-form-content  {
  margin: 0;
}

.fixed {
  position: sticky;
  top: 0;
  background: white;
  z-index: 200;
  max-width: inherit;
}
.events-form {
  display: flex;
  gap: 10px;
}

.events-form select, button {
  background: #657e44;
  padding: 0 12px;
  color: white;
  height: 30px;
  outline: none;
  border: none;
}

.events-form select, button:hover {
  cursor: pointer;
}

.events-form button {
  width: 100px;
}

.main-heading__search-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
}


.main-heading__search-title__form {
  display: flex;
  align-items: center;
  position:absolute;
  right: 0;
  bottom: -17px;
}

@media (max-width: 1200px) {
  .main-heading__search-title__form {
    bottom: -13px;
  }
}

@media (max-width: 950px) {
  .main-heading__search-title__form {
    bottom: -44px;
  }
}

.main-heading-afisha .fade-title {
  left: 0;
  right: initial;
}

.contact-block {
  margin-bottom: 0;
}


.checkbox input[type="checkbox"] {
  opacity: 0;
}

.checkbox label {
  position: relative;
  display: inline-block;
}

.checkbox label::before,
.checkbox label::after {
  position: absolute;
  content: "";
  
  /*Needed for the line-height to take effect*/
  display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before{
  height: 24px;
  width: 24px;
  
  border: 1px solid;
  border-radius: 3px;
  right: 0px;
  background-color: white;
  
  /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
   *to vertically center it.
   */
  bottom: 0px;
}

@media (max-width: 1200px) {
  .checkbox label::before {
    width: 19px;
    height: 19px;
  }
}
@media (max-width: 960px) {
  .checkbox label::before{
    width: 10px;
    height: 10px;
  }
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
  height: 9px;
  width: 13px;
  border-left: 2px solid #2B2A29;
  border-bottom: 2px solid #2B2A29;
  
  transform: rotate(-45deg);
  
  right: 5px;
  bottom: 9px;
}

@media (max-width: 1200px) {
  .checkbox label::after {
    height: 8px;
    width: 13px;
    
    right: 2px;
    bottom: 7px;
  }
}
@media (max-width: 960px) {
  .checkbox label::after {
    height: 5px;
    width: 8px;
    
    right: 1px;
    bottom: 4px;
  }
}

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after {
  content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after {
  content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before {
  outline: none;
}

.nf-form-content {
  margin: 20px 0!important;
}

.contact-subt {
  margin-top: 25px;
}
.nf-field label {
  font-weight: 400!important;
}

.schedule .mc-main {
    margin: 0!important;
    max-width: initial!important;
}

.mc-date-switcher {
    background: #657e44;
}

.mc-date-switcher div{
    gap: 10px;
}

.mc-date-switcher select {
  background: #657e44!important;
  padding: 0 12px!important;
  color: white!important;
  height: 30px!important;
  outline: none!important;
  border: none!important;
}

.mc-date-switcher option {
  background: white!important;
  color: #657e44!important;
}



.mc-date-switcher button {
  background: #657e44!important;
  padding: 0 12px!important;
  color: white!important;
  height: 30px!important;
  outline: none!important;
  border: none!important;
}

.mc-date-switcher input {
  background: #657e44!important;
  padding: 0 12px!important;
  color: white!important;
  height: 30px!important;
  outline: none!important;
  border: none!important;
  border-radius: 0 3px 3px 0!important;
}

.mcbtn {
   
  border: none!important;
  display: flex!important;
  justify-content: center!important;
  align-items: center!important;
  color: white!important;
  font-weight: 400!important;
  font-size: 20px!important;
  line-height: 19px!important;
  text-transform: uppercase!important;
  background-color: #2b2a29!important;
  height: 47px!important;
  transition: 0.3s!important;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3)!important;
  padding-right: 40px!important;
  padding-left: 40px!important;
  text-decoration: none!important;
  width: fit-content!important;

}

.mc-main button.close {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 960px) {
.mc-main .event-title {
    display: none;
}
}

.mc-main .has-events a.mc-date {
    background: #B49244!important;
}

.mc-main.list .my-calendar-month, .mc-main .heading {
    display: none;
}

.topMenu__logo  {
    max-width: 200px;
}

.footer__logo-main img {
     max-width: 200px;
}

.view-full {
    display: none;
}

.form-row {
	display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;

}
.form-row .form-input p {
	display:block!important;
}
.form-row .form-input {
	flex: 0 0 50%;
	width:50%;
	box-sizing: border-box;
	padding: 0 15px;
		margin-bottom:30px
}
.form-row .form-input.w100 {
	flex: 0 0 100%;
	width:100%
}
.form-input input, .form-input textarea {
	padding:15px;
	width:100%;
	border:none;
}
.form-input input[type="submit"] {
	background: #333;
    border: 0;
    color: #f7f7f7;
    transition: all .5s;
	    text-transform: uppercase;
    font-size: 1em;
	cursor:pointer;
}
.form-input input[type="submit"]:hover {
	background: #c4c4c4;
    color: #787878;
    transition: all .5s;
}
.wpcf7-response-output {
	font-size: 12px;
    max-width: 320px;
    line-height: 1.3;
}
.wpcf7-not-valid-tip {
	font-size: 12px;
    line-height: 1.5;
}
.wpcf7-not-valid {
	background-color: #ffd9d9!important;
}
@media (max-width: 768px) {
.form-row .form-input {
	flex: 0 0 100%;
	width:100%;

}
}
///

#js-show-iframe-wrapper{background:var(--pos-banner-fluid-100__background)}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2{width:100%;min-height:52px;background:#fff;color:#0b1f33;font-size:16px;font-family:LatoWeb,sans-serif;font-weight:400;padding:0;line-height:1.2}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active,#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus,#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover{background:#e4ecfd}#js-show-iframe-wrapper .bf-100{position:relative;display:grid;grid-template-columns:var(--pos-banner-fluid-100__grid-template-columns);grid-template-rows:var(--pos-banner-fluid-100__grid-template-rows);width:100%;max-width:var(--pos-banner-fluid-100__max-width);box-sizing:border-box;grid-auto-flow:row dense}#js-show-iframe-wrapper .bf-100__decor{background:var(--pos-banner-fluid-100__bg-url) var(--pos-banner-fluid-100__bg-url-position) no-repeat;background-size:cover;background-color:#f8efec;position:relative}#js-show-iframe-wrapper .bf-100__logo-wrap{box-shadow:var(--pos-banner-fluid-100__logo-box-shadow)}#js-show-iframe-wrapper .bf-100__content{display:flex;flex-direction:column;padding:var(--pos-banner-fluid-100__content-padding);grid-row:var(--pos-banner-fluid-100__content-grid-row);background-color:var(--pos-banner-fluid-100__content-bgc)}#js-show-iframe-wrapper .bf-100__description{display:flex;flex-direction:column;margin:var(--pos-banner-fluid-100__description-margin)}#js-show-iframe-wrapper .bf-100__text{margin:var(--pos-banner-fluid-100__text-margin);font-size:var(--pos-banner-fluid-100__text-font-size);line-height:1.3;font-family:LatoWeb,sans-serif;font-weight:700;color:#0b1f33}#js-show-iframe-wrapper .bf-100__text_small{font-size:var(--pos-banner-fluid-100__text-small-font-size);font-weight:400;margin:0}#js-show-iframe-wrapper .bf-100__bottom-wrap{display:flex;flex-direction:row;align-items:center}#js-show-iframe-wrapper .bf-100__logo-wrap{position:absolute;top:var(--pos-banner-fluid-100__logo-wrap-top);left:0;padding:var(--pos-banner-fluid-100__logo-wrap-padding);background:#fff;border-radius:0 0 8px 0}#js-show-iframe-wrapper .bf-100__logo{width:var(--pos-banner-fluid-100__logo-width);margin-left:1px}#js-show-iframe-wrapper .bf-100__slogan{font-family:LatoWeb,sans-serif;font-weight:700;font-size:var(--pos-banner-fluid-100__slogan-font-size);line-height:1;color:#005ca9}#js-show-iframe-wrapper .bf-100__btn-wrap{width:100%;max-width:var(--pos-banner-fluid-100__button-wrap-max-width)}

#js-show-iframe-wrapper{position:relative;display:flex;align-items:center;justify-content:center;width:100%;min-width:293px;max-width:100%;background:linear-gradient(138.4deg,#38bafe 26.49%,#2d73bc 79.45%);color:#fff;cursor:pointer}#js-show-iframe-wrapper .pos-banner-fluid *{box-sizing:border-box}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2{display:block;width:240px;min-height:56px;font-size:18px;line-height:24px;cursor:pointer;background:#0d4cd3;color:#fff;border:none;border-radius:8px;outline:0}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:hover{background:#1d5deb}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:focus{background:#2a63ad}#js-show-iframe-wrapper .pos-banner-fluid .pos-banner-btn_2:active{background:#2a63ad}@-webkit-keyframes fadeInFromNone{0%{display:none;opacity:0}1%{display:block;opacity:0}100%{display:block;opacity:1}}@keyframes fadeInFromNone{0%{display:none;opacity:0}1%{display:block;opacity:0}100%{display:block;opacity:1}}@font-face{font-family:LatoWebLight;src:url(/fonts/Lato/fonts/Lato-Light.woff2) format("woff2"),url(/fonts/Lato/fonts/Lato-Light.woff) format("woff"),url(/fonts/Lato/fonts/Lato-Light.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:LatoWeb;src:url(/fonts/Lato/fonts/Lato-Regular.woff2) format("woff2"),url(/fonts/Lato/fonts/Lato-Regular.woff) format("woff"),url(/fonts/Lato/fonts/Lato-Regular.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:LatoWebBold;src:url(/fonts/Lato/fonts/Lato-Bold.woff2) format("woff2"),url(/fonts/Lato/fonts/Lato-Bold.woff) format("woff"),url(/fonts/Lato/fonts/Lato-Bold.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:RobotoWebLight;src:url(/fonts/Roboto/Roboto-Light.woff2) format("woff2"),url(/fonts/Roboto/Roboto-Light.woff) format("woff"),url(/fonts/Roboto/Roboto-Light.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:RobotoWebRegular;src:url(/fonts/Roboto/Roboto-Regular.woff2) format("woff2"),url(/fonts/Roboto/Roboto-Regular.woff) format("woff"),url(/fonts/Roboto/Roboto-Regular.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:RobotoWebBold;src:url(/fonts/Roboto/Roboto-Bold.woff2) format("woff2"),url(/fonts/Roboto/Roboto-Bold.woff) format("woff"),url(/fonts/Roboto/Roboto-Bold.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:ScadaWebRegular;src:url(/fonts/Scada/Scada-Regular.woff2) format("woff2"),url(/fonts/Scada/Scada-Regular.woff) format("woff"),url(/fonts/Scada/Scada-Regular.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:ScadaWebBold;src:url(/fonts/Scada/Scada-Bold.woff2) format("woff2"),url(/fonts/Scada/Scada-Bold.woff) format("woff"),url(/fonts/Scada/Scada-Bold.ttf) format("truetype");font-style:normal;font-weight:400}@font-face{font-family:Geometria;src:url(/fonts/Geometria/Geometria.eot);src:url(/fonts/Geometria/Geometria.eot?#iefix) format("embedded-opentype"),url(/fonts/Geometria/Geometria.woff) format("woff"),url(/fonts/Geometria/Geometria.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Geometria-ExtraBold;src:url(/fonts/Geometria/Geometria-ExtraBold.eot);src:url(/fonts/Geometria/Geometria-ExtraBold.eot?#iefix) format("embedded-opentype"),url(/fonts/Geometria/Geometria-ExtraBold.woff) format("woff"),url(/fonts/Geometria/Geometria-ExtraBold.ttf) format("truetype");font-weight:900;font-style:normal}