
.right-ins {
    animation: right-in 1s ease-out 0.2s both;
}

.left-ins {
    animation: left-in 1s ease-out 0.2s both;
}

/* 기본 키프레임 */


@keyframes left-in {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes right-in {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/* 폰트 */

.noto {
    font-family: 'Noto Sans KR', sans-serif !important;
}

.Frank {
    font-family: 'Frank Ruhl Libre', serif;
}





/******************************************************** 기본 스타일 ********/
[class*="con-"] {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.bgsize {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


button {
    border: none;
    outline: none;
}
a {
    display: inline-block;
    text-decoration: none;
}

*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

::after,
::before {
	position: absolute;
	display: block;
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

img, iframe, video, object {
    max-width: 100%;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.upper {
    text-transform: uppercase;
}

ul, li {
    list-style-type: none;
}
.none {
    display: none;
}

section {
    position: relative;
}

.clear,
.clear::after {
    clear: both;
}


section {
	position: relative;
	width: 100%;
}

.cont {
    position: relative;
    display: flex;
    min-height: 1px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
	max-width: 1200px;
}


/******************************************************** 기본 스크린 ********/
@media (max-width:419.99px) {
}

@media (max-width: 575.99px) and (min-width: 420px) {
}

@media (max-width: 767.99px) and (min-width: 576px) {
}

@media (max-width: 991.99px) and (min-width: 768px) {
}

@media (max-width: 1199.99px) and (min-width: 992px) {
}

@media (min-width: 1200px) {
}

/******************************************************** 컨테이너 ********/

.cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-height: 1px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding: 0 10px;
    width: 100%;
}

@media (min-width: 420px) {
    .cont {
        max-width: 420px;
        padding: 0 10px;
    }
}

@media (min-width: 576px) {
    .cont {
        max-width: 576px;
        padding: 0 10px;
    }
}

@media (min-width: 768px) {
    .cont {
        max-width: 768px;
        padding: 0 10px;
    }
}

@media (min-width: 992px) {
    .cont{
        max-width: 992px;
        padding: 0 10px;
    }
}

@media (min-width: 1200px) {
    .cont {
        max-width: 1200px;
        padding: 0 10px;
    }
}

.raw {
    /*display: -ms-flexbox*/
    display: flex;
    -ms-flex-wrap: wrap;
    position: relative;
    z-index: 0;
    flex-wrap: wrap;
}



/* ***************************** 톱 버튼 */

.top {
    position: fixed;
    z-index: 500;
    width: 35px;
    height: 35px;
    background-color: rgb(50, 51, 136);
    right: 10px;
    bottom: 20px;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    line-height: 35px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 50%;
    transition: all 1s ease-in-out;
}

.top:hover {
    background-color: rgb(226, 100, 90);
    transition: all 1s ease-in-out;
}


/* Parallax */


/* .block{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    font-size: 16px;
  }
  .block h2{
    position: relative;
    display: block;
    text-align: center;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10vw;
    color: white;
    font-weight: 400;
  }
  .img-parallax {
    width: 100vmax;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    pointer-events: none
  } */