@charset "utf-8";
 


.hero {
  padding: 0; 
}

.hero .carousel {
  width: 100%;
  height: calc(100vh - 0px);
  padding: 0;
  margin: 0;
  background-color: #0097ff;
  background-color: #036ce9;
  position: relative; 
}

.hero .carousel .bg01 {
  width: 100%; 
  height: 100%;
  background-color: #036ce9;
  position: relative;
	background-image: url("/img/main/visual01.jpg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%; 
}

.hero .carousel .bg02 {
  width: 100%;  
  height: 100%;
  background-color: #3691ff;
  position: relative;
	background-image: url("/img/main/visual02.jpg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 100%; 
}
@media (max-width: 1240px) {
  .hero .carousel {
    height: calc(80vh - 0px); 
    max-height: 600px;
  }
}
@media (max-width: 992px) {
  .hero .carousel {
    height: calc(70vh - 0px);
    max-height: 500px;
  }
}
@media (max-width: 767px) {
  .hero .carousel {
    height: calc(60vh - 0px);
	background-size: 155%; 
    max-height: 400px;
  }
}
@media (max-width: 576px) { 
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; 
}
/*
.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden; 
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
*/
.hero .carousel-container {
  position: absolute;
  inset: 80px 15px 50px 15px ;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
	text-align: center;
	color: #fff;
}  
.hero h1,
.hero h1 * { 
	font-family: 'SchoolSafetyNotification', 'Noto Sans KR', 'Spoqa Han Sans', 'Sans-serif' ; 
	line-height: 1.2;
	letter-spacing: -1px;
  margin-bottom: 20px;  
  animation: fadeInDown 1s both;
}

.hero h1 span, 
.hero h1 * span {
  color: #fcff09;
}

.hero h3 {
  margin-bottom: 30px; 
text-transform: uppercase; 
  animation: fadeInDown 1s both;
}

.hero strong  {
  font-weight: 700;
}


.hero h5,
.hero h6 {
  font-weight: 400;
	line-height: 1.4;
	letter-spacing: -1px;
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1240px) { 
  .hero h1,
  .hero h3,
  .hero h5,
  .hero h6  { 
  }
}
 
@media (max-width: 767px) { 
 
}

@media (max-width: 576px) { 
	.hero h1,
	.hero h1 * {  
	  margin-bottom: 10px;   
	}
	
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}