/*
Theme Name: teto_c
*/
/*all*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0;
    padding: 0;
}
.wrapper{
    position: relative;
    box-sizing: border-box;
    padding-bottom: 100px;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}
li{
	list-style: none;
}
/*header*/
header{
    height: 64px;
    width: 100%;
    background-color: #4d78e6;
    position: fixed;
}
.header-div{
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin-top: 10px;
}
.header-div li{
	font-family: "Open Sans", sans-serif;
	color: #fff;
	font-size: 15px;
	padding: 10px 20px;
	display: inline-block;
  	border-radius: 50px;
	margin: 0px 20px 0px 20px;
	border: 1px solid #4d78e6;
}
.header-div li:hover{
	border: 1px solid #fff;
}
/*slider*/
.slide-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.slide {
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}
.slide div { 
  width: 33.33%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.slide1 { 
  transform: translateX(0);
}
.slide2 { 
  transform: translateX(-33.33%);
}
.slide3 {
  transform: translateX(-66.66%);
}
.slide div:nth-of-type(1){
  background-color: #E1F3FC;
}
.slide div:nth-of-type(2){ 
  background-color: #FCE8F0;
}
.slide div:nth-of-type(3){ 
  background-color: #E3F1E4;
}
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 10px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(45deg) translateY(50%);
  transform: rotate(45deg) translateY(50%);
}
.prev {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 25px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
.indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 2px #000 solid;
  cursor: pointer;
}
.indicator li:first-of-type {
  background-color: #000;
}
