::after,
::before {
  box-sizing: border-box;
}

a,
abbr,
address,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
details,
div,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
time,
u,
ul,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.75rem;
}

a {
  text-decoration: none;
  display: block;
}

li,
ol,
ul {
  list-style: none;
}

img {
  border-style: none;
  max-width: 100%;
  display: block;
}

button {
  padding: 0;
  margin: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
}

html {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: Poppins, Arial, sans-serif;
  line-height: normal;
  font-weight: 400;
  color: gray;
  /* overflow-x: hidden; */
}

.index {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.container {
  max-width: 98%;
  margin: 0 auto;
}

.footer,
.nav {
  background: -webkit-linear-gradient(90deg, #5f12c2, #0093f3, #5f12c2);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(90deg,
      rgba(94, 18, 194, 0.75),
      rgba(0, 146, 243, 0.75),
      rgba(94, 18, 194, 0.75));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

.footer {

  background: -webkit-linear-gradient(90deg,
      rgb(94, 18, 194),
      rgb(0, 146, 243),
      rgb(94, 18, 194));



  background: linear-gradient(90deg,
      rgb(94, 18, 194),
      rgb(0, 146, 243),
      rgb(94, 18, 194));
}

.footer-content-wrapper,
.gallery-container,
.header-content,
.menu-content,
.wrapper-about {
  margin: 0 0.5em;
}

.header {
  scroll-behavior: smooth;
  background-color: #fff;
}

.header-content {
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apix-cerramientos-link__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: navy;
  text-shadow: #8d69f0 1px 1px 3px;
}

.apix-cerramientos-link__name>span {
  font-size: 0.41rem;
  font-weight: 600;
  color: #3498db;
}

.social-contacts {
  display: flex;
}

.social-contacts__link {
  position: relative;
  border-radius: 50%;
  text-align: center;
  font-weight: bolder;
  font-size: 0.7rem;
  margin-left: 0.8em;
  padding: 1em;
  color: #3498db;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(93, 70, 232, 0.15);
  cursor: pointer;
}

.social-contacts__link>i {
  display: block;
}

.nav {
  border-top: #1a2e44 1px solid;
  border-bottom: #1a2e44 1px solid;
  z-index: 9999;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}


/* Кнопка WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1001;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}


/* Общий стиль для видео */
video {
  width: 100%;
  /* Видео займет всю ширину контейнера */
  height: auto;
  /* Высота будет рассчитываться автоматически, чтобы сохранить пропорции */
  max-width: 360px;
  /* Максимальная ширина для больших экранов */
  max-height: 100%;
  display: block;
  margin: 0 auto;
  /* Центрирование видео */
  /* border-width: 0;
  outline-width: 0;
  overflow: hidden; */
  box-shadow: #7ec4f2 0px 0px 8px 2px;

}


/* @media */

@media (max-width: 768px) {
  .header {
    margin: 0em 1.5em 0em 1.5em;
  }

  .apix-cerramientos-link {
    width: 100%;
  }

  .nav {
    display: flex;
    flex-direction: row-reverse;
    box-sizing: border-box;
    padding: 0.3em;
    background: -webkit-linear-gradient(90deg, #5f12c2, #0093f3, #5f12c2);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(90deg, #5f12c2, #0093f3, #5f12c2);
    /* Chrome 10-25, Safari 5.1-6 */
  }

  .nav-content {
    display: flex;
    align-items: center;
    min-height: 5vh;
    /* max-width: 100vw; */
  }

  #menu__toggle {
    opacity: 0;
    display: none;
  }

  .menu__btn {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1;
    margin: 0;
  }

  .menu__btn>span,
  .menu__btn>span::before,
  .menu__btn>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #E8EAF6;
    transition-duration: 0.25s;
    box-shadow: #071659 1px 1px 6px 1px;
  }

  .menu__btn>span::before {
    content: "";
    top: -8px;
  }

  .menu__btn>span::after {
    content: "";
    top: 8px;
  }

  .menu-content {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100%;
    margin: 0;
    background-color: rgb(0, 55, 128);
    background: -webkit-linear-gradient(90deg, #5f12c2, #0093f3, #5f12c2);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(90deg, #5f12c2, #0093f3, #5f12c2);
    /* Chrome 10-25, Safari 5.1-6 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Распределить элементы */
    text-align: center;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .menu-contents>.menu-content__links {
    margin-top: 6em;

  }

  .m-social-contacts {
    margin: 0.5em 0;
  }

  .menu-content__link {
    display: block;
    padding: 1em 0;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-family: Roboto, sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;

    transition-duration: 0.25s;

    -webkit-box-shadow: -2px 7px 17px 8px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: -2px 7px 17px 8px rgba(34, 60, 80, 0.2);
    box-shadow: -16px 6px 17px 6px rgba(2, 57, 99, 0.6);

    text-shadow: rgba(9, 37, 85, 0.766) 0px 2px 3px;
  }

  .menu-content__link.active {
    color: #c9f9f4;
    background-position: 0;
  }

  /* Иконки внизу меню */
  .icon-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em 0;
  }

  .m-social-contact__link {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: #cbeafe;
    border: 2px solid #095fba;
    box-shadow: 0 1px 8px rgb(94, 70, 232);
    color: #4a7ab7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.3s ease;


  }

  .menu-content__link:hover {
    background-color: #3d3da7;
    /* background: -webkit-linear-gradient(90deg, #5f12c2, #0093f3, #5f12c2); */
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(90deg, #48099a, #0875be, #48099a);
    background: linear-gradient(90deg, #48099a, #0875be, #48099a);
  }

  #menu__toggle:checked~.menu__btn {
    position: fixed;
    top: 4%;
    left: 12%;
    cursor: pointer;
    z-index: 1002;
  }

  #menu__toggle:checked~.menu__btn>span {
    transform: rotate(45deg);
  }

  #menu__toggle:checked~.menu__btn>span::before {
    top: 0;
    transform: rotate(0deg);
  }

  #menu__toggle:checked~.menu__btn>span::after {
    top: 0;
    transform: rotate(90deg);
  }

  .menu-checkbox:checked~.menu-content {
    /* visibility: visible; */
    left: 0;
  }


  .language-dropdown {
    display: none;
  }



  .m-language-dropdown {
    display: inline-flex;
    justify-content: flex-end;
    /* flex: 1 1 auto; */
    flex: 1 0 auto;




    background-color: transparent;
    cursor: pointer;

    /* padding: 0em 4em; */
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: #fff;
    background-image: -webkit-linear-gradient(45deg, #3498db80 50%, transparent 50%);
    background-image: linear-gradient(45deg, #3498db96 50%, transparent 50%);
    background-position: 99.8%;
    background-size: 350%;
    -webkit-transition: background 0.5s ease-in-out;
    transition: background 0.5s ease-in-out;

  }




  .m-flag-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
  }



  .m-dropdown-button {
    /* background-color: #3a1576; */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
  }

  .m-dropdown-button:hover {
    background-color: #360753;
    border-radius: 5px;
  }

  .m-dropdown-toggle {
    display: none;
  }


  .m-dropdown-toggle:checked+.m-dropdown-button+.m-dropdown-menu {
    display: block;
  }

  .m-dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 158px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    /* margin: 5px 0 0 0; */
    margin-top: 60px;
    border-radius: 5px;
  }

  .m-dropdown-menu li {
    text-align: left;
    /* padding: 0.5rem; */
  }

  .m-dropdown-menu li a:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
  }

  .m-dropdown-menu li a {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 14px;
  }



  .language-dropdown {
    display: none;
  }




  /* Общий стиль для видео */
  video {
    width: 100%;
    /* Видео займет всю ширину контейнера */
    height: auto;
    /* Высота будет рассчитываться автоматически, чтобы сохранить пропорции */
    max-width: 160px;
    /* Максимальная ширина для больших экранов */
    max-height: 100%;
    display: block;
    margin: 0 auto;
    /* Центрирование видео */
    /* border-width: 0;
  outline-width: 0;
  overflow: hidden; */
    box-shadow: #7ec4f2 0px 0px 8px 2px;

  }





  .slider {
    margin: 0 auto;
  }

  .apix-cerramientos-link {
    max-width: 14vw;
  }

}





/* @media-end */



.main {
  background-color: #f1f1f1;
  display: grid;
  grid-template-rows: auto auto auto;
}

.slider {
  position: relative;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 0;
}

/* Стили для слайдов */

.slider__slide {
  flex: 0 0 100%;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.slider__slide.active {
  opacity: 1;
}

.slider__slide:not(.active) {
  display: none;
}

/* Добавляем новый класс для анимации */
.slider__slide.fade-in {
  animation: fadeIn 0.2s ease-in-out forwards;
}

/* Задаем ключевые кадры анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Стили для заголовков слайдов */
.slider__title {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(62, 62, 183, 0.09);
  border-radius: 10px;
  border: 1px solid rgba(168, 168, 168, 0.644);
  backdrop-filter: blur(2px);

  padding: 3%;
  color: white;
  text-shadow: #757575 1px 2px 2px;
  text-align: center;
  font-size: 5dvi;
  font-weight: 700;
  z-index: 1;
}

/* Стили для изображений слайдов */
.slider__slide img {
  aspect-ratio: auto;
  max-width: 100%;
  object-fit: cover;
}

.slider__slides {
  display: flex;
}

/* Стили для элементов управления */
.slider__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 100vw;
  display: flex;
  justify-content: space-between;
}

/* Стили для кнопок управления */
.slider__controls>button {
  font-size: 3.6dvi;
  padding: 0 0.45em;

  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider__controls>button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Стили для точек навигации */
.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  border: none;
  /* padding: 8px; */
  width: 2.6vmax;
  height: 0.8vmax;
  /* border-radius: 50%; */
  background-color: #fff;
  margin: 0 0.5em;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.dot:hover {
  border: none;
  /* padding: 8px; */
  width: 2.6vmax;
  height: 0.8vmax;
  /* border-radius: 50%; */
  background-color: rgb(207, 207, 230);
  margin: 0 0.5em;
  cursor: pointer;
}

/* Стили для активной точки */

.dot.active {
  background-color: navy;
}

.section-about {
  scroll-behavior: smooth;
}

.section-about__title {
  font-size: 1.2rem;
  text-align: center;
  margin: 1em;
  color: #4a7ab7;

  text-shadow: 1px 1px white,
    2px 2px white,
    -1px -1px white,
    -2px -2px white,
    -1px 1px white,
    1px -1px white,
    -2px 2px white,
    2px -2px white,
    -3px -3px 4px rgba(0, 0, 0, .3),
    -3px 3px 4px rgba(0, 0, 0, .3),
    3px 3px 4px rgba(0, 0, 0, .3),
    3px -3px 4px rgba(0, 0, 0, .3);
}

.about-card {
  display: flex;
  flex-flow: row;
  background-color: #fff;
  /* padding: 1em; */
}

/* .about-card__img {
  display: none;
} */

/* .about-card__img>img {
  height: 100%;
  width: 100%;
} */

.about-card__article {
  padding: 0 0.5em;
  /* margin: 0.5em; */
  align-self: center;
  text-align: center;
}

.about-card__article-title {
  font-weight: 700;
  color: #18072c;
  margin-bottom: 0.3em;
  font-size: 1rem;
}

.heading {
  width: 25%;
  height: 2px;
  border: none;
  background-color: gold;
}

.about-card__description {
  line-height: 1.8;
  color: #272727;
  font-size: 0.8rem;
  font-weight: 500;
}

.description-about-lists {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
}

.description-about__card {
  margin-top: 1.5rem;
  box-shadow: 0 0 3px 1px #ddd;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.description-about__header {
  padding: 0.8em;
  color: #fff;
  text-shadow: #6c777e 1px 1px 2px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.description-about__header>h2 {
  font-size: 1rem;
  text-align: center;
}

.description-about__header_background-color {
  background-color: #4a7ab7;
}

.description-about-lists_img {
  margin: 0.6em auto;
  width: auto;
}

.description-about__body {
  background-color: #fff;
  padding: 0.5em;
}

.description-about__paragraph {
  color: #272727;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.8;
}

.paragraph {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #0f7761;
  width: 36px;
  height: 36px;
  margin-right: 0.6rem;
  border-radius: 100%;

  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.icon-checkmark6 {
  color: #0f7761;
}

.description-about__paragraph:last-child {
  margin-bottom: 0;
}

.section-gallery {
  scroll-behavior: smooth;
  margin: 1em 0.5em;
  padding-bottom: 1em;
  background: #d7d7ff;
  background-size: cover;
}

.gallery-title {
  padding: 1em 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #18072c;
}

.gallery-title>i {
  margin-right: 0.5em;
}

.gallery-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  box-shadow: #a3bae2 0 0 20px 5px;
}

.gallery-img-wrapper a {
  display: block;
  background: #360c52;
  overflow: hidden;
}

.gallery-img-wrapper a img {
  opacity: 1;
  transition: opacity 124ms linear, transform 124ms linear;
  display: block;
}

.gallery-img-wrapper:hover a img {
  opacity: 0.7;
  transform: scale(1.05);
}

.gallery-img-wrapper {
  position: relative;
  width: 50%;
}

.gallery-img-wrapper i {
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  padding: 1em;
  border: #adadad 1px solid;
  border-radius: 100%;
  background-color: navy;
  color: #fff;
}

.gallery-img-wrapper:hover i {
  display: inline-block;
  cursor: -webkit-zoom-in;
}

.footer {
  scroll-behavior: smooth;
}

.footer-logo-wrapper {
  position: relative;
  bottom: 0.1em;
}

.footer-logo-wrapper>img {
  transform: rotate(180deg);
}

.footer-logo__link {
  display: block;
  position: absolute;
  left: 40%;
  top: 0;
  bottom: 80%;
  width: 14vw;
  transform: translate(50%, 50%);
  background-image: url(../images/svg/q.svg);
  background-repeat: no-repeat;
}

.footer-contact-wrapper {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-gap: 1em;
}

/* -----------изменение ------*/

.contact-button__link {
  font-family: Montserrat, "Trebuchet MS", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  text-shadow: #01051a 0 1px 2px;
  position: relative;
  padding: 1.2em 1.2em;
  background: #000052;
  border: #000035 1px solid;
  color: #fff;
  transition: 0.5s;
  text-align: start;
}

.contact-button__link::after,
.contact-button__link::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: 1.2em;
  padding-bottom: inherit;
  padding-left: 1.1em;
  width: 3em;
  content: "";
  font-family: icomoon, sans-serif;
  font-size: 1rem;
  transition: 0.2s;
  transform-origin: 50% 60%;
}

.contact-button__link::before {
  background: #00003b;
}

.contact-button__link:active,
.contact-button__link:focus {
  background: #002e3f;
  outline: 0;
}

.contact-button__link {
  max-width: 100%;
}

.email:hover {
  background: navy;
  color: gold;
}

.email:active,
.email:focus {
  background: #4c2381;
}

.email:after {
  content: "\e9b7";
}

.email:hover:after {
  -webkit-animation: bounceright 0.3s alternate ease infinite;
  animation: bounceright 0.3s alternate ease infinite;
}

.phone:hover {
  background: navy;
  color: gold;
}

.phone:active,
.phone:focus {
  background: #083b2e;
}

.phone:after {
  content: "\f6c5";
}

.phone:hover:after {
  -webkit-animation: wiggle 50ms alternate ease infinite;
  animation: wiggle 50ms alternate ease infinite;
}

.whatsapp:hover {
  background: navy;
  color: gold;
}

.whatsapp:active,
.whatsapp:focus {
  background: #083b2e;
}

.whatsapp:after {
  content: "\f7f3";
}

.whatsapp:hover:after {
  -webkit-animation: bounceright 0.3s alternate ease infinite;
  animation: bounceright 0.3s alternate ease infinite;
}

@-webkit-keyframes bounceright {
  from {
    -webkit-transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(3px);
  }
}

@-webkit-keyframes wiggle {
  from {
    -webkit-transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(30deg);
  }
}

@keyframes bounceright {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(3px);
  }
}

@keyframes wiggle {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(30deg);
  }
}

.wrapper-social {
  display: flex;
  justify-content: center;
  font-size: 2rem;
}

.wrapper-social__link {
  margin: 0.5em 0;
}

.wrapper-social__link>i {
  display: inline;
  color: rgb(255, 255, 255);
  text-shadow: rgb(41, 28, 142) 0.1px 2px 4px;
  padding: 0.5em;
  transition: 0.3s;
}

/* -----изменение -----*/
.wrapper-social__link>i.icon-facebook6:hover {
  color: #0866ff;
}

.wrapper-social__link>i.icon-youtube2:hover {
  color: #dd2c00;
}

.wrapper-social__link>i.icon-instagram4:hover {
  color: #9e53ef;

}

/* -----------изменение ------*/
.gmaps {
  display: inline-block;
  margin-top: 2em;
  color: white;
  text-shadow: 0px 1px 3px #270470;
  padding: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.2rem;
  font-weight: 600;
  /* text-transform: uppercase; */
}

.gmaps-text {
  color: #ffdc36;
}

.shedule {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-shadow: #051047 1px 1px 2px;
  text-align: center;
  margin-top: 1em;
}

.shedule>p {
  color: #E0F7FA;
  ;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.shedule>h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  align-self: center;
  margin-bottom: 0.5em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shedule-time {
  color: #FFEB3B;
}

.shedule-deys {
  margin-right: 0.5em;
}

.icon-shedule {
  display: block;
  background-image: url(../images/icons/time.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: center;
  width: 5vmax;
  height: 5vmax;
  margin-bottom: 0.5em;
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  margin-top: 1em;
  background-color: #fff;
}

.copyright>span {
  margin-right: 0.5em;
  margin-bottom: 1em;
  font-size: 0.6rem;
  font-weight: 600;
  font-style: italic;
  color: #346274;
}

.i {
  margin: 0 0.5em;
}

.copyright .copyright__link {
  transition: all 1s ease;
  position: relative;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  border: 3px solid #bde1ff;
  font-size: 1.2em;
  color: #3498db;
  padding: 0.25em;
  box-sizing: content-box;
  margin-right: 0.5em;
}

.copyright:hover .copyright__link {
  border: 4px solid #3498db;
}

.copyright .copyright__link i {
  position: relative;
  z-index: 2;
  height: 1em;
  width: 1em;
  left: 2%;
  top: -15%;
}

.copyright .copyright__link::before {
  content: "";
  height: 0.5em;
  width: 2em;
  position: absolute;
  top: 0.5em;
  left: -0.25em;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 1;
}

.copyright:hover .copyright__link::before {
  transform: rotate(90deg);
}

.copyright>a>strong {
  transition: all 0.2s ease 0s;
  color: #3498db;
  font-size: 0.6rem;
  font-weight: 400;
}

.copyright:hover strong {
  color: #1d75af;
}

.name {
  margin-left: -0.5em;
}


/* @media (min-width:769px) */

@media (min-width: 769px) {
  .container {
    max-width: 90%;
    margin: 0 auto;
  }

  .apix-cerramientos-link {
    min-width: 10vw;
  }

  .footer-content-wrapper,
  .gallery-container,
  .header-content,
  .menu-content,
  .wrapper-about {
    margin: 0 1em;
  }

  /*.header-content {*/
  /*  padding: 2em 0;*/
  /*}*/

  .nav {
    border-top: #1a2e44 1px solid;
    border-bottom: #1a2e44 1px solid;
    z-index: 9999;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .apix-cerramientos-link {
    width: 10%;
  }

  .menu-content__links {
    display: flex;
  }

  .apix-cerramientos-link__name {
    flex-flow: row wrap;
    font-size: 3.3rem;
    font-weight: 900;
    text-shadow: none;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url(../images/cub2.png);
    background-repeat: repeat;
    background-size: 13%;
    background-position: center center;
  }

  .apix-cerramientos-link__name>span {
    font-size: 1rem;
    font-weight: 800;
    text-shadow: #aebbdb 1px 4px 3px;
  }

  .social-contacts__link {
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 1.5em;
    box-shadow: 0 3px 20px rgba(93, 70, 232, 0.15);
    transition: all 0.4s ease;
  }

  .social-contacts__link:after {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 2px;
    content: "";
    width: 100%;
    background-image: url(../images/line.png);
    z-index: 0;
    animation: slide 1s linear infinite;
  }

  .social-contacts__link::before {
    position: absolute;
    content: "";
    height: calc(100% + 16px);
    width: calc(100% + 16px);
    top: -8px;
    left: -8px;
    border-radius: 50%;
    border: 1px solid rgba(132, 132, 164, 0.35);
    animation: 1.5s linear 0s normal none infinite focuse;
  }

  .social-contacts__link:hover {
    transition: 0.3s linear;
    color: #fff;
    background: #3498db;
    overflow: hidden;
  }

  @keyframes focuse {
    0% {
      transform: scale(0.8);
      opacity: 1;
    }

    75% {
      transform: scale(1.2);
      opacity: 0;
    }

    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }

  @keyframes slide {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 40px 0;
    }
  }

  @-webkit-keyframes jello-horizontal {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }

    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }

    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }

    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }

    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }

    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }

    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }

  @keyframes jello-horizontal {
    0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }

    30% {
      -webkit-transform: scale3d(1.25, 0.75, 1);
      transform: scale3d(1.25, 0.75, 1);
    }

    40% {
      -webkit-transform: scale3d(0.75, 1.25, 1);
      transform: scale3d(0.75, 1.25, 1);
    }

    50% {
      -webkit-transform: scale3d(1.15, 0.85, 1);
      transform: scale3d(1.15, 0.85, 1);
    }

    65% {
      -webkit-transform: scale3d(0.95, 1.05, 1);
      transform: scale3d(0.95, 1.05, 1);
    }

    75% {
      -webkit-transform: scale3d(1.05, 0.95, 1);
      transform: scale3d(1.05, 0.95, 1);
    }

    100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }

  .social-contacts__link:hover>i {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
  }

  .m-social-contacts {
    display: none;
  }

  #menu__toggle {
    display: none;
  }

  .menu__btn {
    display: none;
  }

  .menu-content__link {
    background-color: transparent;
    cursor: pointer;
    display: block;
    padding: 1.2em 1.5em;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: #fff;
    background-image: -webkit-linear-gradient(45deg,
        #3498db80 50%,
        transparent 50%);
    background-image: linear-gradient(45deg, #3498db96 50%, transparent 50%);
    background-position: 99.8%;
    background-size: 350%;
    -webkit-transition: background 0.5s ease-in-out;
    transition: background 0.5s ease-in-out;
  }

  .menu-content__link:hover {
    color: #020e25;
    font-weight: 600;
    outline: 0;
    background-position: 0;
  }

  .menu-content__link.active {
    color: #0d1241;
    background-position: 0;
  }

  .m-language-dropdown {
    display: none;
  }

  .language-dropdown {
    display: inline-flex;
    justify-content: flex-end;
    flex: 1 0 auto;
    background-color: transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    color: #fff;
    background-image: -webkit-linear-gradient(45deg, #3498db80 50%, transparent 50%);
    background-image: linear-gradient(45deg, #3498db96 50%, transparent 50%);
    background-position: 99.8%;
    background-size: 350%;
    -webkit-transition: background 0.5s ease-in-out;
    transition: background 0.5s ease-in-out;

  }


  .dropdown-toggle {
    display: none;
  }

  .flag-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
  }



  .dropdown-button {
    background-color: rgba(58, 21, 118, 0.6);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
  }

  .dropdown-button:hover {
    background-color: #4a189a;
  }

  .dropdown-toggle:checked+.dropdown-button+.dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 158px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    /* margin: 5px 0 0 0; */
    margin-top: 60px;
    border-radius: 5px;
  }

  .dropdown-menu li {
    text-align: left;
    /* padding: 0.5rem; */
  }

  .dropdown-menu li a:hover {
    background-color: #f1f1f1;
    border-radius: 5px;
  }

  .dropdown-menu li a {
    color: black;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 14px;
  }




  .slider {
    margin-top: -59px;
  }

  .section-about__title {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1.5em;
  }

  .section-about {
    margin: 0 auto;
  }

  .section-about-wrapper {
    margin: 2em 1.5em;
  }

  .about-card {
    border: #dbdbdb 1px solid;
    box-shadow: 0 0 5px 1px #ddd;
  }

  .about-card__img {
    display: block;
    width: 100%;
  }

  .icon-check2 {
    color: #3498db;
  }

  .about-card__article {
    padding: 0 2em;
  }

  .about-card__article-title {
    margin-bottom: 0.5em;
    font-size: 2rem;
  }

  .about-card__description {
    margin-top: 1em;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .description-about__list {
    counter-increment: my-counter;
  }

  .description-about__list::before {
    content: counter(my-counter);
    position: absolute;
    left: -1.5em;
    top: 0;
    margin-top: 1.5%;
    background-color: #22858f;
    color: #fff;
    text-shadow: #a7a7a7 1px 1px 1px;
    height: 3em;
    width: 3em;
    line-height: 2.8em;
    text-align: center;
    border: #e6e6e6 2px solid;
    border-radius: 100%;
    font-size: 1rem;
    font-weight: 700;
  }

  .description-about__list {
    position: relative;
    border-left: dashed 2px #c5c5c5;
  }

  .description-about__card {
    margin-left: 5rem;
    margin-top: 1.35em;
    box-shadow: 0 0 5px 1px #ddd;
  }

  .description-about__header {
    padding: 0.4em;
    text-indent: 1em;
    border-radius: 0;
  }

  .description-about__header>h2 {
    font-size: 1.6rem;
    text-align: start;
    text-transform: uppercase;
  }

  .description-about__header::after {
    right: 93.7%;
    position: absolute;
    content: "";
    border: 0.8em solid transparent;
    border-width: 1.35em;
    top: 1.38em;
  }

  .description-about__header_background-color::after {
    border-right-color: #4a7ab7;
  }

  .description-about-lists_img {
    margin: 0;
    width: 45%;
    min-height: 56vh;
    float: left;
    margin-right: 1em;
  }

  .description-about-lists_img-toldos {
    /* width: 47.5%; */
    min-height: auto;
  }

  .description-about__body {
    padding: 1em;
  }

  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }

  .description-about__paragraph {
    font-size: 1rem;
    font-weight: 600;
  }

  .section-gallery {
    margin: 0;
    background-image: url(../images/backgraund.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: #4b4e7c 1px 1px 14px 1px;
  }

  .gallery-title {
    font-size: 2rem;
    color: #afdfff;
    text-shadow: #025e9b 0 20px 4px;
    padding: 1em 0;
  }

  .gallery-container {
    box-shadow: none;
  }

  .gallery-img-wrapper {
    position: relative;
    width: auto;
    box-shadow: #025e9b 0 0 20px 4px;
  }

  .gallery-img-wrapper i {
    display: none;
    padding: 2em;
  }

  .footer {
    margin-top: 1em;
  }

  .footer-logo__link {
    left: 30%;
    /* bottom: 5%; */
    top: -12%;
    width: 30vw;
    height: 14vh;
  }

  .footer-contact-wrapper {
    padding: 2em 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5em;
  }

  /* -----------изменение ------*/

  .contact-button__link {
    font-size: 1.2em;
    font-weight: 500;
    min-width: 16em;
    padding: 1.2em;
    padding-right: 1.8em;
    text-align: center;
  }

  .contact-button__link::after,
  .contact-button__link::before {
    padding: inherit;
    padding-left: 1.1em;
    padding-top: 0.8em;
    width: 3em;
    font-size: 1.6rem;
    text-align: center;
  }

  .wrapper-social {
    font-size: 2.5em;
  }

  .shedule {
    justify-content: center;
  }

  .shedule>h3 {
    font-size: 1.8rem;
    text-shadow: #01051a 1px 2px 2px;
    align-self: center;
    margin-bottom: 0.5em;
    letter-spacing: 0.04em;
  }

  .shedule>p {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: start;
    color: #E0F7FA;
    /* letter-spacing: 0.05rem; */
  }

  .shedule>p>br {
    display: none;
  }

  .copyright {
    flex-direction: row;
    justify-content: center;
    padding: 1em;
    margin-top: 2em;
  }

  .copyright>span {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .copyright .copyright__link {
    height: 1.5em;
    width: 1.5em;
    border: 4px solid #bde1ff;
  }

  .copyright .copyright__link i {
    height: 1.5em;
    width: 1.5em;
    left: 17%;
    top: 5%;
  }

  .copyright .copyright__link::before {
    width: 2.5em;
    top: 0.78em;
  }

  .copyright>a>strong {
    font-size: 0.9rem;
    font-weight: 600;
  }

}