header {
  box-shadow: 0 5px 5px rgba(0, 6, 8, 0.3);
}

.header__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 80px;
  padding-bottom: 10px;
}

.site-title {
  padding-left: 65px;
  padding-top: 25px;
  height: 65px;
  max-width: 340px;
  background: url(../img/logo.svg) no-repeat left center;
  font-size: 20px;
  line-height: 120%;

  /* or 24px */
  letter-spacing: 0.065em;
}

.menu {
  display: flex;
  justify-content: flex-start;
  line-height: 120%;
}

.menu li {
  margin-right: 30px;
}

.menu li:last-child {
  margin-right: 0;
}

.current-menu-item {
  border-bottom: 3px solid rgba(255, 209, 120, 0.55);
}

.menu_button {
  display: none;
  background: url(../img/burger_icon.svg) no-repeat;
  order: -1;
  background-size: contain;
  z-index: 11;
  background-color: #e5e5e5;
}

.menu-item:hover {
  border-bottom: 3px solid rgba(255, 209, 120, 0.55);
}

.socials {
  display: flex;
  justify-content: space-between;
}

.socials__intagram {
  width: 32px;
  height: 32px;
  background: url(../img/Inst.svg) no-repeat center;
  margin-right: 30px;
}

.socials__post {
  width: 37px;
  height: 32px;
  background: url(../img/Post.svg) no-repeat center;
}

.hram {
  position: relative;
  overflow: hidden;

  height: 900px;
  background: url(../img/sky.svg) no-repeat;
  background-size: 100% 100%;
  padding: 50px 0;
  z-index: 3;
}

.hram-img {
  display: block;
  margin: 0 auto;
  height: 100%;
}

header .hover {
  position: absolute;
  top: 0;
  left: calc(50% - 585px);
  background: rgba(215, 223, 226, 0.5);
  max-width: 1170px;
  height: 100%;
  padding: 250px 80px;
  z-index: 4;
}

.site-maintag {
  width: 100%;
  font-weight: 900;
  font-size: 45px;
  line-height: 55px;
  text-align: center;
}

.site-secondtag {
  margin: 65px auto;

  max-width: 550px;
  font-size: 20px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
}

header .hover button {
  display: block;
  margin: 50px auto;

  width: 260px;
  height: 50px;
  font-weight: 900;
  background: #ffd178;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.53);
}

/* Облака */
.cloudcontent {
  position: relative;
  padding: 30px;
  color: #337ab7;
  font-size: 22px;
  font-weight: bold;
  z-index: 2;
}

.cloud {
  width: 50%;
  left: 0;
  top: 0;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

@-webkit-keyframes animCloud {
  from {
    -webkit-transform: translateX(200%);
  }

  to {
    -webkit-transform: translateX(-200%);
  }
}

@-moz-keyframes animCloud {
  from {
    -moz-transform: translateX(200%);
  }

  to {
    -moz-transform: translateX(-200%);
  }
}

@keyframes animCloud {
  from {
    -webkit-transform: translateX(200%);
    -moz-transform: translateX(200%);
    -ms-transform: translateX(200%);
    -o-transform: translateX(200%);
    transform: translateX(200%);
  }

  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.cloud1 {
  -webkit-animation: animCloud 40s infinite linear;
  -moz-animation: animCloud 40s infinite linear;
  animation: animCloud 40s infinite linear;
}

.cloud2 {
  -webkit-animation: animCloud 80s infinite linear;
  -moz-animation: animCloud 80s infinite linear;
  animation: animCloud 80s infinite linear;
}

.cloud3 {
  -webkit-animation: animCloud 120s infinite linear;
  -moz-animation: animCloud 120s infinite linear;
  animation: animCloud 120s infinite linear;
}

.cloud4 {
  -webkit-animation: animCloud 160s infinite linear;
  -moz-animation: animCloud 160s infinite linear;
  animation: animCloud 160s infinite linear;
}