@import url('https://fonts.googleapis.com/css?family=Arimo');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;800&display=swap');
html {
	overflow-y: scroll;
	overflow-x: scroll;
	margin: 0;
	padding: 0;
}
body {
	background: #3576ad;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-family: Poppins;
	font-weight: bold;
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
	background-image: url('../picture/background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

p {
	margin-top: 0px;
	margin-bottom: 20px;
  }
.left-item {float: left;}
.right-item {float: right;}
.top-menu {
  position: relative;
  background: rgba(34,34,34,.2);
}
.menu-main {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-main:after {
  content: "";
  display: table;
  clear: both;
}

.menu-main a {
  text-decoration: none;
  display: block;
  letter-spacing: 2px;
  color: white;
  transition: .3s linear;
}
.menu-main a:hover {background: rgba(0,0,0,.3);}
.navbar-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.navbar-logo  img {display: flex;}
.caption-bottom {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (orientation: portrait) {
  .caption-bottom {
    width: 80vw;
    margin: 10vh auto 0;
  }
.caption-bottom img {
  height: auto;
  width: 80vw;
}
  .menu-main a {
    line-height: 3vh;
    padding: 0.5vh 2vh;
    font-size: 2vh;
  }
  .navbar-logo  img {max-height: 3vh;}
  .caption-manual {
    max-height: 95vh;
    justify-content: center;
  }
  .slider {
   
   height: 92vmin;
   width: 69vmin;
   

  }
}
@media (orientation: landscape) {
  .caption-bottom {
  height: 40vh;
  margin: 1vh auto 0;
  }
.caption-bottom img {
  max-height: 40vh;
  width: auto;
}
  .menu-main a {
    line-height: 6vmin;
    padding: 0.5vw 2vw;
    font-size: 5vmin;
  }
  .navbar-logo  img {max-height: 6vmin;}
  .slider {
   margin: 3vmin 0 0;
   /*width: auto;*/
   /*height: 70vh;*/
   height: 68vmin;
   width: 51vmin;
  }
}
@media (max-width: 830px) {
  .menu-main a {
    line-height: 20px;
    padding: 5px 5px;
    font-size: 16px;
    position: absolute;
  }
}
.words {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.words__item {
	color: #3576ad;
	line-height: 1;
}

.words__item span {
	font-size: 10vw;
	display: inline-block;
	animation: move 5s ease-in-out infinite;
}
.words__item span:nth-child(2)  {animation-delay: 0.5s;}
.words__item span:nth-child(3)  {animation-delay: 1.0s;}
.words__item span:nth-child(4)  {animation-delay: 1.5s;}
.words__item span:nth-child(5)  {animation-delay: 2.0s;}
.words__item span:nth-child(7)  {animation-delay: 0.5s;}
.words__item span:nth-child(8)  {animation-delay: 1.0s;}
.words__item span:nth-child(9)  {animation-delay: 1.5s;}
.words__item span:nth-child(10) {animation-delay: 2.0s;}

@keyframes move {
	0%   {transform: translate(-33%, 0);}
	50%  {
		 text-shadow: 0 15px 40px rgba(0,0,0,.6);
		 transform: translate(33%, 0);
	     }
	100% {transform: translate(-33%, 0);}
}

.caption-manual {
  width: 100vw;
  margin: 0px 0 0;
  position: relative;
  display: flex;
}
.caption-manual img {
  height: auto;
  width: 100%;
}





.slider {
   overflow: hidden;
   border: 10px solid #000;
}
.middle {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}
.navigation {
   position: absolute;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
}

.bar {
   width: 30px;
   height: 8px;
   margin: 6px;
   cursor: pointer;
   background-color: #000;
   opacity: .5;
   border-radius: 10px;
   transition: all 0.4s ease;
}

.bar:hover {
   opacity: 1;
   transform:scale(1.1);
}

input[name="r"] {
   position: absolute;
   visibility: hidden;
}

.slides {
   width: 800%;
   height: 100%;
   display: flex;
}

.slide {
   width: 12.5%;
   transition: all 0.6s ease;
}

.img {
   width: 100%;
   height: 100%;
}

#r1:checked ~ .s1 {margin-left: 0;}
#r2:checked ~ .s1 {margin-left: -12.5%;}
#r3:checked ~ .s1 {margin-left: -25%;}
#r4:checked ~ .s1 {margin-left: -37.5%;}
#r5:checked ~ .s1 {margin-left: -50%;}
#r6:checked ~ .s1 {margin-left: -62.5%;}
#r7:checked ~ .s1 {margin-left: -75%;}
#r8:checked ~ .s1 {margin-left: -87.5%;}

