* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-width: 1024px;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'latoregular';
  font-size: 12px;
}
a {
  color: inherit;
}
a:hover {
  color: #173d53;
}
.spacer {
  clear: both;
}
.sprite {
  background-image: url(../images/sprite.svg);
  background-repeat: no-repeat;
}
nav {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 65px;
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}
nav ul {
  position: relative;
  width: 960px;
  margin: 0 auto;
  padding: 0 40px;
  list-style: none;
}
nav ul li {
  float: left;
  padding: 24px 18px;
  margin: 0;
  color: #a6a6a6;
  font-size: 12px;
  cursor: pointer;
}
nav ul li:hover {
  color: white;
}
nav ul li.active {
  padding-top: 19px;
  border-top: 5px solid #173d53;
}
nav .audio {
  position: absolute;
  right: 0;
  top: 18px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-position: -31px -52px;
  background-size: 200%;
}
nav .audio.on {
  background-position: 0px -52px;
}
nav.fly {
  position: fixed;
  top: 0 !important;
  background: rgba(0, 0, 0, 0.5);
}
section.main {
  position: relative;
  padding-top: 65px;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  background: black url(../images/bg1.jpg) no-repeat center top / cover;
  color: #e8e8e8;
}
section.main .bg-slider {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
section.main .overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
section.main .bg-slider .item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.main .bg-slider .item1 {
  background-image: url(../images/IMG_1782.jpg);
}
section.main .bg-slider .item2 {
  background-image: url(../images/IMG_2021.jpg);
}
section.main .bg-slider .item3 {
  background-image: url(../images/IMG_9471.jpg);
}
section.main .bg-slider .item4 {
  background-image: url(../images/IMG_9478.jpg);
}
@media screen and (max-width: 2560px) and (max-height: 1440px) {
  section.main .bg-slider .item1 {
    background-image: url(../images/IMG_1782_2560.jpg);
  }
  section.main .bg-slider .item2 {
    background-image: url(../images/IMG_2021_2560.jpg);
  }
  section.main .bg-slider .item3 {
    background-image: url(../images/IMG_9471_2560.jpg);
  }
  section.main .bg-slider .item4 {
    background-image: url(../images/IMG_9478_2560.jpg);
  }
}
@media screen and (max-width: 1920px) and (max-height: 1080px) {
  section.main .bg-slider .item1 {
    background-image: url(../images/IMG_1782_1920.jpg);
  }
  section.main .bg-slider .item2 {
    background-image: url(../images/IMG_2021_1920.jpg);
  }
  section.main .bg-slider .item3 {
    background-image: url(../images/IMG_9471_1920.jpg);
  }
  section.main .bg-slider .item4 {
    background-image: url(../images/IMG_9478_1920.jpg);
  }
}
@media screen and (max-width: 1366px) and (max-height: 768px) {
  section.main .bg-slider .item1 {
    background-image: url(../images/IMG_1782_1366.jpg);
  }
  section.main .bg-slider .item2 {
    background-image: url(../images/IMG_2021_1366.jpg);
  }
  section.main .bg-slider .item3 {
    background-image: url(../images/IMG_9471_1366.jpg);
  }
  section.main .bg-slider .item4 {
    background-image: url(../images/IMG_9478_1366.jpg);
  }
}
section.main .bg-slider .item.anim {
  -webkit-transition: opacity 8s linear;
  -moz-transition: opacity 8s linear;
  -o-transition: opacity 8s linear;
  transition: opacity 8s linear;
}
section.main .bg-slider .item.off {
  opacity: 0;
}
section.main .scrollline-wrapper {
  position: absolute;
  left: 50%;
  top: 352px;
  margin-left: -210px;
  z-index: 3;
}
section.main .scrollline-wrapper .v-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 1px;
  height: 203px;
  background: rgba(232, 232, 232, 0.4);
  -webkit-transition: height 1s;
  -moz-transition: height 1s;
  -o-transition: height 1s;
  transition: height 1s;
}
section.main .scrollline-wrapper.before .v-line {
  height: 0px;
}
section.main .scrollline-wrapper .circle {
  position: absolute;
  left: 16px;
  top: 203px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(232, 232, 232, 0.4);
  border-radius: 50%;
  -webkit-transition: transform 0.7s 1s;
  -moz-transition: transform 0.7s 1s;
  -o-transition: transform 0.7s 1s;
  transition: transform 0.7s 1s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center top;
  -moz-transform-origin: center top;
  -ms-transform-origin: center top;
  -o-transform-origin: center top;
  transform-origin: center top;
}
section.main .scrollline-wrapper.before .circle {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
section.main .scrollline-wrapper .arrow {
  position: absolute;
  left: 0px;
  top: 226px;
  width: 40px;
  height: 40px;
  background: url(../images/2scroll.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  -webkit-transition: opacity 1s 1.7s;
  -moz-transition: opacity 1s 1.7s;
  -o-transition: opacity 1s 1.7s;
  transition: opacity 1s 1.7s;
  opacity: 1;
}
section.main .scrollline-wrapper.before .arrow {
  opacity: 0;
}
section.main .scrollline-wrapper .text {
  position: absolute;
  left: -15px;
  top: 275px;
  width: 70px;
  color: #fcfcfc;
  font-size: 12px;
  font-style: italic;
  text-align: center;
  opacity: 1;
  -webkit-transition: all 0.5s 2.7s;
  -moz-transition: all 0.5s 2.7s;
  -o-transition: all 0.5s 2.7s;
  transition: all 0.5s 2.7s;
}
section.main .scrollline-wrapper.before .text {
  opacity: 0;
  font-size: 1px;
}
section.main .main-text {
  position: absolute;
  left: 50%;
  margin-left: -440px;
  top: 100px;
  z-index: 5;
  width: 520px;
  font-family: 'latohairline';
  font-size: 42px;
}
section.main .main-text div {
  width: 520px;
  height: 450px;
}
section.main .main-text p {
  margin: 0;
  line-height: 50px;
}
section.main .main-text b {
  font-family: 'latoregular';
  font-weight: normal;
}
section.main .main-text .small {
  font-size: 14px;
  text-align: right;
}
section.interview {
  height: 660px;
  padding-top: 60px;
}
section.books {
  height: 540px;
  padding-top: 100px;
}
section.photogallery {
  height: 510px !important;
}
section.contacts {
  height: 470px;
}
footer {
  height: 70px;
}
svg.main {
  position: absolute;
  right: 50%;
  margin-right: -480px;
  top: 100px;
  z-index: 10;
  width: 6000px;
  height: 6000px;
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  -o-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
svg.main circle.orbit {
  fill: transparent;
  stroke: #e8e8e8;
  stroke-width: 10px;
  opacity: 0.3;
}
svg.main circle.point {
  fill: #e8e8e8;
  stroke: #e8e8e8;
  opacity: 0.8;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
svg.main circle.hover-outer,
svg.main circle.hover-inner {
  fill: rgba(232, 232, 232, 0.3);
  stroke: rgba(232, 232, 232, 0.8);
  stroke-width: 10px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  cursor: pointer;
}
svg.main text.hover-text {
  fill: #e8e8e8;
  font-family: 'latoregular';
  font-size: 120px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.5s, font-size 0.5s;
  -moz-transition: transform 0.5s, font-size 0.5s;
  -o-transition: transform 0.5s, font-size 0.5s;
  transition: transform 0.5s, font-size 0.5s;
  cursor: pointer;
}
svg.main circle.tr-hidden {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
svg.main text.tr-hidden {
  font-size: 0px;
}
section.interview .inner {
  width: 960px;
  margin: 0 auto;
}
section.interview .left {
  float: left;
  width: 310px;
  height: 405px;
}
section.interview .right {
  float: right;
  width: 635px;
  height: 405px;
}
section.interview h2 {
  margin: 0 0 20px 0;
  color: #797979;
  font-family: 'latohairline';
  font-size: 30px;
  text-transform: uppercase;
}
section.interview .left {
  padding: 20px;
  background: #f7f5f5;
  box-shadow: 0 0 10px 10px #e9e7e7 inset;
}
section.interview .scroll-wrapper {
  position: relative;
  height: 310px;
  overflow: hidden;
}
section.interview .text {
  padding: 0px 20px 0 5px;
  color: #5c5a5a;
  font-family: 'latoregular';
  font-size: 12px;
  text-align: justify;
}
section.interview .text p {
  display: inline;
  padding-left: 1.5em;
}
section.interview .align-right {
  color: #646363;
  font-size: 12px;
  text-align: right;
}
section.interview .video-pagination {
  position: relative;
}
section.interview .video-pagination .left-line {
  position: absolute;
  left: 0;
  top: 32px;
  width: 50%;
  height: 1px;
  background: #173d53;
}
section.interview .video-pagination .right-line {
  position: absolute;
  right: 0;
  top: 32px;
  width: 50%;
  height: 1px;
  background: #ededed;
}
section.interview .video-pagination .work-area {
  position: absolute;
  left: 50%;
  margin-left: -480px;
  top: 32px;
  width: 960px;
  height: 90px;
  z-index: 1;
}
section.interview .video-pagination .from-to-line {
  position: absolute;
  top: 0;
  height: 1px;
  background: #ededed;
  -webkit-transition: background 2s ease 1s;
  -moz-transition: background 2s ease 1s;
  -o-transition: background 2s ease 1s;
  transition: background 2s ease 1s;
}
section.interview .video-pagination .from-to-line.active {
  background: #173d53;
}
section.interview .video-pagination .point {
  position: absolute;
  top: 0;
  width: 7px;
  height: 7px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #ededed;
}
section.interview .video-pagination .point.active {
  background: #173d53;
}
section.interview .video-pagination .point .hover {
  position: absolute;
  left: -17px;
  top: -17px;
}
section.interview .video-pagination .point .outer-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  z-index: 30;
  border: 1px solid #173d53;
  border-radius: 50%;
  background: white;
  opacity: 0.43;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}
section.interview .video-pagination .point:hover .outer-circle,
section.interview .video-pagination .point.click .outer-circle {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
section.interview .video-pagination .point .inner-circle {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 40;
  width: 28px;
  height: 28px;
  padding: 7px 0;
  border: 1px solid #173d53;
  border-radius: 50%;
  font-size: 11px;
  text-align: center;
  background: white;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  cursor: pointer;
}
section.interview .video-pagination .point:hover .inner-circle,
section.interview .video-pagination .point.click .inner-circle {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
section.interview .video-pagination .point .v-line {
  position: absolute;
  left: 20px;
  top: 23px;
  width: 1px;
  height: 0px;
  background: #173d53;
  -webkit-transition: height 0.5s ease 0.5s;
  -moz-transition: height 0.5s ease 0.5s;
  -o-transition: height 0.5s ease 0.5s;
  transition: height 0.5s ease 0.5s;
}
section.interview .video-pagination .point:hover .v-line,
section.interview .video-pagination .point.click .v-line {
  height: 54px;
}
section.interview .video-pagination .point .terminal-point {
  position: absolute;
  left: 17px;
  top: 75px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #173d53;
  -webkit-transition: transform 0.5s ease 1s;
  -moz-transition: transform 0.5s ease 1s;
  -o-transition: transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
section.interview .video-pagination .point:hover .terminal-point,
section.interview .video-pagination .point.click .terminal-point {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
section.interview .video-pagination .point .text-outer {
  position: absolute;
  left: 30px;
  top: 40px;
  width: 0px;
  height: 63px;
  overflow: hidden;
  color: #173d53;
  font-size: 9px;
  -webkit-transition: width 0.5s ease 1.5s;
  -moz-transition: width 0.5s ease 1.5s;
  -o-transition: width 0.5s ease 1.5s;
  transition: width 0.5s ease 1.5s;
}
section.interview .video-pagination .point:hover .text-outer,
section.interview .video-pagination .point.click .text-outer {
  width: 100px;
}
section.interview .video-pagination .point .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  line-height: 14px;
  text-align: left;
}
section.interview .video-pagination .fast-pag {
  margin-top: 70px;
  color: #646363;
  font-size: 12px;
  text-align: right;
}
section.books .inner {
  width: 960px;
  margin: 0 auto;
}
section.books .left {
  float: left;
  width: 50%;
}
section.books .left.bg {
  height: 320px;
  background: black url(../images/kniga_po4ti_pdf.jpg) no-repeat center center;
}
section.books .right {
  float: left;
  width: 50%;
}
section.books .right.bg {
  height: 320px;
  background: black url(../images/audio_bg.jpg) no-repeat center center / cover;
}
section.books .scroll-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}
section.books .ps-container .ps-scrollbar-y-rail {
  right: 35px !important;
  background: #173d53;
  -webkit-transform: scale(0.85);
  -moz-transform: scale(0.85);
  -ms-transform: scale(0.85);
  -o-transform: scale(0.85);
  transform: scale(0.85);
}
section.books .ps-container .ps-scrollbar-y-rail:hover .ps-scrollbar-y,
section.books .ps-container .ps-scrollbar-y {
  background-color: white;
}
section.books .item {
  height: 54px;
  padding: 20px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.3);
  background: rgba(25, 25, 25, 0.68);
  color: white;
  font-family: 'latothin';
  font-size: 14px;
}
section.books .item .sprite.audio {
  display: inline-block;
  width: 18px;
  height: 14px;
  background-position: -14px -67px;
  background-size: 200%;
}
section.books .item .sprite.audio.active {
  background-position: -14px -81px;
}
section.books .item .sprite.download {
  display: inline-block;
  width: 18px;
  height: 14px;
  background-position: 4px -69px;
  background-size: 200%;
}
section.books .links {
  padding-top: 15px;
  color: #9d9c9c;
  font-size: 12px;
  text-align: center;
}
section.books .links span div {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -5px;
  background-size: 200%;
}
section.books .links.left span div {
  background-position: 3px -53px;
}
section.books .links.right span div {
  background-position: -18px -53px;
}
section.photogallery {
  background: black;
}
section.photogallery .item {
  position: relative;
  width: 960px;
  height: 455px !important;
  background-color: black;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.photogallery .item .hover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 180px 50px 180px 65%;
  background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0.7) 50%, transparent 80%);
  color: white;
  font-family: 'latothin';
  font-size: 42px;
  text-transform: uppercase;
}
section.photogallery .item.current:hover .hover {
  display: block;
}
section.contacts {
  background: #fcfcfc;
}
section.contacts .inner {
  width: 700px;
  margin: 0 auto;
}
section.contacts .title {
  width: 290px;
  margin: 0 auto 40px;
  color: #797979;
  font-family: 'latolight';
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}
section.contacts form {
  height: 285px;
  text-align: right;
}
section.contacts form input[type="text"],
section.contacts form textarea {
  width: 100%;
  height: 36px;
  padding: 9px;
  margin-bottom: 12px;
  border: 1px solid #ababab;
  box-shadow: 0;
}
section.contacts form textarea {
  height: 135px;
  resize: none;
}
section.contacts form button {
  width: 140px;
  height: 40px;
  border: 1px solid #ababab;
  background: #1b223e;
  color: white;
  font-family: 'latohairline';
  font-size: 18px;
  text-transform: uppercase;
}
section.contacts form button:hover {
  background: #23357E;
}
section.contacts .complite {
  display: none;
  height: 285px;
  line-height: 285px;
  font-family: 'latolight';
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}
footer {
  background: #fcfcfc;
}
footer .inner {
  width: 960px;
  margin: 0 auto;
  padding-top: 10px;
  border-top: 1px solid #ababab;
  font-family: 'latolight';
  font-size: 14px;
}
footer .left {
  float: left;
}
footer .social {
  float: right;
}
footer .right {
  float: right;
}
footer .right a {
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */