/* сброс стилей браузера */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.2;
}
ol {
  padding-left: 1.4em;
  list-style: decimal;
}
ul {
  padding-left: 1.4em;
  list-style: square;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* конец кода сброса стилей браузера */
body {
  position: relative;
  margin: 0;
  padding: 0;
  width: auto;
  height: 100vh;
}
.container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
}
.container1 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: end;
  align-items: center;
}
.container2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: flex-start;
}
.container3 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: flex-end;
  align-items: flex-start;
}
.container4 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: flex-start;
  align-items: flex-start;
}

.btnVis {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  opacity: 0.5;
}
.btnUnVis {
  position: absolute;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  opacity: 0;
}

.innerHorRLstart {
  position: absolute;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  transform: translateX(0) translateY(0);
}
.innerHorRL {
  position: absolute;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  animation-name: horizontalRightLeft;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 4;
  animation-direction: alternate;
}

.innerVertTBstart {
  position: absolute;
  /* align-self: center; */
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  transform: translateX(0) translateY(0);
}
.innerVertTB {
  position: absolute;
  align-self: flex-start;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  animation-name: verticalTopBottom;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 4;
  animation-direction: alternate;
}
.innerDiagTopRBottomLstart {
  position: absolute;
  /* align-self: flex-end; */
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  transform: translateX(0%) translateY(0);
}
.innerDiagTopRBottomL {
  position: absolute;
  /* align-self: flex-start; */
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  animation-name: diagTopRBottomL;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 4;
  animation-direction: alternate;
}
.innerDiagTopLBottomRstart {
  position: absolute;
  /* align-self: flex-end; */
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  transform: translateX(0%) translateY(0);
}
.innerDiagTopLBottomR {
  position: absolute;
  /* align-self: flex-start; */
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: rgb(247, 235, 3);
  animation-name: diagTopLBottomR;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: 4;
  animation-direction: alternate;
}

/*
************************************************************
*/

.inner2 {
  position: relative;
  top: 122px;
  left: 217px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: rgb(224, 244, 7);
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* transition: transform 500ms ease-in-out; */

  animation-name: spin;
  animation-duration: 7s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes spin {
  /* from {
    transform: rotate(0turn) translateY(0px) translateY(110px) rotate(1turn);
  }
  to {
    transform: rotate(1turn) translateY(110px) translate(0px) rotate(0turn);
  } */

  0% {
    transform: rotate(0turn) translateY(0px) translateY(115px) rotate(4turn);
  }
  100% {
    transform: rotate(4turn) translateY(115px) translate(0px) rotate(0turn);
  }
  /* 50% {
    transform: rotate(1turn) translateY(110px) translate(0px) rotate(0turn);
  }
  75% {
    transform: rotate(1turn) translateY(110px) translate(0px) rotate(0turn);
  }
  100% {
    transform: rotate(1turn) translateY(110px) translate(0px) rotate(0turn);
  } */
}
