* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

* a {
  text-decoration: none;
  color: black;
}

.width {
  width: calc(100% - 24px);
  max-width: 1140px;
  margin: 0 auto;
}

.button {
  display: flex;
  width: 136px;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  height: 50px;
  font-weight: 700;
  border: 2px solid #EA436A;
  cursor: pointer;
  transition: 0.5s background-color, color;
}
.button.borderTop {
  border: unset;
  border-top: 2px solid #EA436A;
}
.button:hover {
  background: #EA436A;
  color: #ffffff;
}

.mainTitle {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  width: fit-content;
}
.mainTitle::after {
  content: "";
  width: 72px;
  height: 2px;
  background-color: #EA436A;
  position: absolute;
  left: 0;
  top: -8px;
}
.mainTitle.lineCenter::after {
  right: 0;
  margin: auto;
}
.mainTitle.lightTitle {
  color: #ffffff;
}

.scrolled #header {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  height: 48px;
}

#loader {
  top: 0;
  left: 0;
  z-index: 999;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#loader .main1text {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: -12px;
  text-align: center;
  background: linear-gradient(to right, #FFF 20%, #EA436A 40%, #EA436A 60%, #FFF 80%);
  background-size: 200% auto;
  color: #1B1B1B;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s linear infinite;
}
@keyframes shine {
  to {
    background-position: -200% center;
  }
}
#loader .main2text {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #747474;
}

#header {
  width: 100%;
  background-color: #ffffff;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  height: 100px;
  align-items: center;
  transition: 0.1s height;
}
#header #headerIn {
  display: flex;
}
#header #headerIn #menuList {
  display: flex;
  margin-left: auto;
  transition: 0.3s left;
}
#header #headerIn #menuList ul {
  margin-left: 30px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  font-size: 18px;
}
#header #headerIn #menuList ul::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: #EA436A;
  left: 0;
  bottom: -6px;
  transition: 0.3s width;
}
#header #headerIn #menuList ul:hover {
  color: #EA436A;
}
#header #headerIn #menuList ul:hover::after {
  width: 24px;
}
#header #headerIn #menuList #menuClose {
  display: none;
}
#header #headerIn #menuList #menuClose svg {
  height: 44px;
}
#header #headerIn #menuButton {
  margin-left: auto;
  display: none;
}
#header #headerIn #menuButton svg {
  height: 44px;
}

#servicesPageContent {
  margin-top: 110px;
}
#servicesPageContent .servicesPage {
  margin-top: 12px;
  white-space: pre-wrap;
}

#galleryContent {
  margin-top: 24px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: -24px;
  width: 100%;
}
#galleryContent .galleryItem {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 24px;
  flex-shrink: 0;
  width: calc((100% - 96px) / 5);
  height: calc((100vw - 144px) / 5);
  max-height: 208px;
  background-color: silver;
  display: flex;
  justify-content: center;
  align-items: center;
}
#galleryContent .galleryItem:hover {
  opacity: 0.8;
}
#galleryContent .galleryItem .playButton {
  width: 72px;
  height: 72px;
  background-color: #EA436A;
  border-radius: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#galleryContent .galleryItem .playButton svg {
  margin-left: 4px;
}

#galleryFull {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
}
#galleryFull.view {
  display: flex;
}
#galleryFull .galleryImage {
  max-width: calc(100% - 96px);
  height: auto;
}
#galleryFull .galleryFullItemVideo {
  max-width: calc(100% - 96px);
  height: auto;
}
#galleryFull .galleryFullItemYt {
  width: 100%;
  max-height: calc(100% - 48px);
  max-width: calc(100% - 96px);
  height: 100%;
}
#galleryFull .gallleryButton {
  width: 48px;
  height: 48px;
  background-color: #EA436A;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#galleryFull .gallleryButton svg {
  width: 24px;
  height: 24px;
}
#galleryFull .gallleryButton:hover {
  opacity: 0.8;
}
#galleryFull .gallleryButton.galleryNext {
  right: 24px;
}
#galleryFull .gallleryButton.galleryPrev {
  left: 24px;
}
#galleryFull .gallleryButton.galleryClose {
  top: 24px;
  margin: unset;
  right: 24px;
}

#mainContent {
  padding-top: 100px;
  height: 426px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#mainContent .mainP {
  width: calc(50% - 30px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
#mainContent #mainTextBl {
  align-items: flex-end;
}
#mainContent #mainTextBl .main1text {
  font-size: 68px;
  font-weight: 700;
  margin-bottom: -12px;
  text-align: right;
}
#mainContent #mainTextBl .main2text {
  font-size: 32px;
  font-weight: 700;
  text-align: right;
}
#mainContent #mainImage {
  max-width: 500px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

#servicesContent {
  width: 100%;
  padding-top: 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#servicesContent #servicesTitle {
  font-size: 32px;
}
#servicesContent .servicesControlButt {
  width: 58px;
  height: 58px;
  position: absolute;
  left: 12px;
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}
#servicesContent .servicesControlButt.hidden {
  display: none;
}
#servicesContent .servicesControlButt:hover {
  background: #EA436A;
}
#servicesContent .servicesControlButt:hover svg path {
  stroke: #ffffff;
}
#servicesContent .servicesControlButt#servicesNext {
  left: unset;
  right: 12px;
}
#servicesContent #servicesIn {
  margin-top: 36px;
  display: flex;
  padding: 12px 24px;
  max-width: 100%;
  width: fit-content;
  overflow-x: auto;
  -ms-overflow-style: none;
  position: relative;
  scrollbar-width: none;
}
#servicesContent #servicesIn::-webkit-scrollbar {
  display: none;
}
#servicesContent #servicesIn .servicesItem {
  margin-right: 30px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 48px 24px 24px 24px;
  width: 378px;
  height: 378px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: 0.5s background-color;
  cursor: pointer;
}
#servicesContent #servicesIn .servicesItem:hover {
  background-color: #EA436A;
}
#servicesContent #servicesIn .servicesItem:hover svg path {
  fill: #ffffff;
}
#servicesContent #servicesIn .servicesItem:hover .servicesTitle {
  color: #ffffff;
}
#servicesContent #servicesIn .servicesItem:hover .servicesText {
  color: #ffffff;
}
#servicesContent #servicesIn .servicesItem .servicesIcon {
  width: 50px;
  height: 50px;
}
#servicesContent #servicesIn .servicesItem .servicesIcon svg {
  height: 50px;
}
#servicesContent #servicesIn .servicesItem .servicesTitle {
  margin-top: 26px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  min-height: 70px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#servicesContent #servicesIn .servicesItem .servicesTitle::after {
  content: "";
  width: 72px;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background: #EA436A;
}
#servicesContent #servicesIn .servicesItem .servicesText {
  margin-top: 20px;
  font-size: 16px;
  color: #747474;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#aboutContent {
  padding-top: 72px;
}
#aboutContent #aboutIn {
  display: flex;
}
#aboutContent #aboutIn #aboutImage {
  width: 388px;
  height: 520px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#aboutContent #aboutIn #aboutTextContent {
  margin-left: 30px;
}
#aboutContent #aboutIn #aboutTextContent #aboutText {
  margin-top: 6px;
  color: #747474;
  white-space: pre-wrap;
}

#publicationsContent {
  padding-top: 78px;
  width: 100%;
}
#publicationsContent #publicationsContentCover {
  background: #F9F9F9;
  padding: 24px 0;
  width: 100%;
  margin-top: 24px;
}
#publicationsContent #publicationsContentCover #publicationsIn {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#publicationsContent #publicationsContentCover #publicationsIn a {
  display: contents;
}
#publicationsContent #publicationsContentCover #publicationsIn .publicationItem {
  width: calc((100% - 60px) / 3);
  padding: 6px;
  background: #ffffff;
  transition: 0.5s background-color;
  margin-bottom: 24px;
}
#publicationsContent #publicationsContentCover #publicationsIn .publicationItem:hover {
  background-color: #EA436A;
}
#publicationsContent #publicationsContentCover #publicationsIn .publicationItem:hover .publicationTitle, #publicationsContent #publicationsContentCover #publicationsIn .publicationItem:hover .publicationText {
  color: #ffffff;
}
#publicationsContent #publicationsContentCover #publicationsIn .publicationItem .publicationImage {
  width: 100%;
  height: calc((100vw - 108px) / 3);
  max-height: 360px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#publicationsContent #publicationsContentCover #publicationsIn .publicationItem .publicationTitle {
  font-size: 24px;
  padding: 0 6px;
  font-weight: 500;
  margin-top: 6px;
}
#publicationsContent #publicationsContentCover #publicationsIn .publicationItem .publicationText {
  color: #747474;
  margin: 6px 6px 12px 6px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#publicationsContent #publicationsContentCover #moreButton {
  margin: 24px auto 0 auto;
}
#publicationsContent #publicationsContentCover #moreButton.hidden {
  display: none;
}
#publicationsContent #publicationsContentCover #moreButton.loading {
  font-size: 0;
  background: url(../img/load.gif) no-repeat;
  background-position: center;
  background-size: 140px;
}

#mss {
  position: fixed;
  max-width: 380px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
}
#mss .mss-alert {
  margin-top: 12px;
  width: calc(100% - 60px);
  padding: 12px 12px 12px 48px;
  background: url("../img/success.png") no-repeat;
  background-position: left 12px top 12px;
  background-size: 24px;
  position: relative;
  line-height: 24px;
  border: 1px solid #747474;
  background-color: white;
}
#mss .mss-alert.alert {
  background: url("../img/alert.png") no-repeat;
  background-position: left 12px top 12px;
  background-size: 24px;
  background-color: white;
}

#partnersContent {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#partnersContent #partnersIn {
  cursor: pointer;
  margin-top: 48px;
  padding: 12px 0 12px 24px;
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  position: relative;
  scrollbar-width: none;
}
#partnersContent #partnersIn::-webkit-scrollbar {
  display: none;
}
#partnersContent #partnersIn .partnerItem {
  flex-shrink: 0;
  padding: 12px;
  margin-right: 24px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 200px;
  height: 200px;
  transition: 0.05s padding;
}
#partnersContent #partnersIn .partnerItem:hover {
  padding: 16px;
}
#partnersContent #partnersIn .partnerItem .partnerItemIn {
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#footer {
  background-color: #1B1B1B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  padding-top: 72px;
}
#footer #footerIn {
  margin-top: 24px;
  display: flex;
  margin-bottom: 48px;
  justify-content: space-around;
  justify-content: space-around;
}
#footer #footerIn .footerPart {
  width: calc((100% - 48px) / 2);
}
#footer #footerIn .footerPart.loading {
  opacity: 0.5;
  pointer-events: none;
}
#footer #footerIn .footerPart #sendButton {
  margin-left: auto;
}
#footer #footerIn .footerPart .contactLine {
  display: flex;
}
#footer #footerIn .footerPart .contactLine .contactContent {
  margin-left: 12px;
  color: #ffffff;
  margin-bottom: 24px;
}
#footer #footerIn .footerPart .contactLine .contactContent a {
  color: #ffffff;
}
#footer #footerIn .footerPart .contactLine .contactContent .contactLIneTitle {
  font-weight: 500;
}
#footer #footerIn .footerPart .contactLine .contactContent .contactLIneText {
  margin-top: 6px;
  white-space: pre-wrap;
}
#footer #footerIn .footerPart .contactContentSoc {
  display: flex;
  margin-top: 48px;
  margin-bottom: 24px;
}
#footer #footerIn .footerPart .contactContentSoc a {
  display: contents;
}
#footer #footerIn .footerPart .contactContentSoc a .socIcon {
  margin-right: 12px;
  transition: 0.1s margin-top;
}
#footer #footerIn .footerPart .contactContentSoc a .socIcon svg path {
  fill: #ffffff;
}
#footer #footerIn .footerPart .contactContentSoc a {
  display: contents;
}
#footer #footerIn .footerPart .contactContentSoc a:hover .socIcon {
  margin-top: -2px;
}
#footer #footerIn .footerPart .contactContentSoc a:hover .socIcon svg path {
  fill: #EA436A;
}
#footer #footer-line {
  padding: 12px 0;
  text-align: center;
  background: white;
  width: 100%;
}
#footer #footer-line a {
  color: #EA436A;
  font-weight: 600;
}
#footer #footer-line a:hover {
  opacity: 0.8;
}

.mInput {
  display: block;
  width: 100%;
  max-width: 342px;
  border: 1px solid #747474;
  border-top: 2px solid #EA436A;
  height: 50px;
  padding: 7px;
  margin-bottom: 24px;
}
.mInput:focus {
  outline: none;
  background-color: #ffffff;
}
.mInput.warning {
  background: rgba(234, 67, 106, 0.2);
}

.mTextArea {
  display: block;
  width: 100%;
  border-top: 2px solid #EA436A;
  height: 240px;
  padding: 7px;
  margin-bottom: 24px;
}
.mTextArea:focus {
  outline: none;
  background-color: #ffffff;
}
.mTextArea.warning {
  background: rgba(234, 67, 106, 0.2);
}

#map iframe {
  width: calc(100vw - 24px);
}

@media only screen and (max-width: 680px) {
  #header #headerIn #menuList {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: -100%;
    top: 0;
  }
  #header #headerIn #menuList ul {
    margin-left: 0;
    margin-bottom: 24px;
    position: relative;
  }
  #header #headerIn #menuList ul:hover {
    color: #EA436A;
  }
  #header #headerIn #menuList #menuClose {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
  }
  #header #headerIn #menuButton {
    display: block;
  }

  .menuOpened #header #headerIn #menuList {
    left: 0;
  }

  #mainContent {
    height: unset;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  #mainContent .mainP {
    width: 100%;
  }
  #mainContent #mainTextBl {
    align-items: center;
  }
  #mainContent #mainTextBl .main1text {
    font-size: 56px;
    margin-bottom: 0px;
    text-align: center;
  }
  #mainContent #mainTextBl .main2text {
    font-size: 28px;
    font-weight: 700;
    text-align: right;
  }
  #mainContent #mainImage {
    max-width: unset;
    height: 60vw;
    background-position: center;
    margin-bottom: 12px;
  }

  .servicesControlButt {
    display: none !important;
  }

  #aboutContent {
    padding-top: 72px;
  }
  #aboutContent #aboutIn {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #aboutContent #aboutIn #aboutImage {
    width: 100%;
    height: 170vw;
    max-height: 520px;
  }
  #aboutContent #aboutIn #aboutTextContent {
    margin-left: 0px;
    margin-top: 48px;
  }
  #aboutContent #aboutIn #aboutTextContent #aboutText {
    margin-top: 6px;
    color: #747474;
    white-space: pre-wrap;
  }

  .mainTitle {
    margin: 0 auto;
    text-align: center;
  }
  .mainTitle::after {
    right: 0;
    margin: auto;
  }

  #publicationsContent #publicationsContentCover #publicationsIn {
    margin-top: 24px;
  }
  #publicationsContent #publicationsContentCover #publicationsIn a {
    display: contents;
  }
  #publicationsContent #publicationsContentCover #publicationsIn .publicationItem {
    width: 100%;
    padding: 6px;
    background: #ffffff;
    transition: 0.5s background-color;
    margin-bottom: 24px;
  }
  #publicationsContent #publicationsContentCover #publicationsIn .publicationItem:hover {
    background-color: #ffffff;
  }
  #publicationsContent #publicationsContentCover #publicationsIn .publicationItem:hover .publicationTitle, #publicationsContent #publicationsContentCover #publicationsIn .publicationItem:hover .publicationText {
    color: #747474;
  }
  #publicationsContent #publicationsContentCover #publicationsIn .publicationItem .publicationImage {
    width: 100%;
    height: calc(100vw - 24px);
  }
  #publicationsContent #publicationsContentCover #moreButton {
    margin: 24px auto 0 auto;
  }
  #publicationsContent #publicationsContentCover #moreButton.hidden {
    display: none;
  }
  #publicationsContent #publicationsContentCover #moreButton.loading {
    font-size: 0;
    background: url(../img/load.gif) no-repeat;
    background-position: center;
    background-size: 140px;
  }

  #footer #footerIn {
    margin-top: 24px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
  #footer #footerIn .footerPart {
    width: 100%;
  }

  .mInput {
    max-width: unset;
  }

  #galleryContent .galleryItem {
    width: calc((100% - 24px) / 2);
    height: calc((100vw - 48px) / 2);
    max-height: 208px;
    background-color: silver;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #galleryContent .galleryItem:hover {
    opacity: 0.8;
  }
  #galleryContent .galleryItem .playButton {
    width: 72px;
    height: 72px;
    background-color: #EA436A;
    border-radius: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #galleryContent .galleryItem .playButton svg {
    margin-left: 4px;
  }
}

/*# sourceMappingURL=style.css.map */
