@charset "utf-8";
@import url(normalize.css);
@import url(all.min.css);

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url(https://fonts.googleapis.com/css?family=Monomakh&display=swap|Sulphur+Point:300,700|Noto+Sans+KR);

/*font*/
body {
    font-family: 'Pretendard';
    background: rgb(157, 203, 255);
  }

/* header */
header {
    position: fixed;
    background: white;
    width: 100%;
    height: 50px;
    font-family: "Monomakh", serif;
    z-index: 1;
    box-shadow: 1px 1px 4px rgba(0, 0, 0,0.1);
}
header h1 {
    line-height: 52px;
    margin-left: 20px;
    color: rgb(29, 119, 234);
}
header .btn {
    position: relative;
    float: right;
    top: -35px;
    margin-right: 20px;
}

/* main */
main {
    padding-top: 50px;
    height: auto;
    overflow: hidden;
    background: white;
}
main .info {
    float: left;
    width: 20%;
    box-sizing: border-box;

    padding: 25% 40px 0 40px;
}
main .info h2 {
    position: relative;
    font-size: 2em;
    margin-bottom: 20px;
}
main .info h2::before {
    content: '';
    position: absolute;
    top: -20px;
    background: rgb(29, 119, 234);
    width: 15px;
    height: 3px;
}
main .info p {
    font-size: .9em;
    margin-bottom: 5px;
}
main .info p.detail {
    margin-bottom: 20px;
    line-height: 1.4em;
}
main .info .progress h4 {
    margin-top: 30px;
    margin-bottom: 10px;
}
main .info .progress p {
    display: inline-block;
    background: rgba(157, 203, 255,0.5);
    padding: 4px 4px 4px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    margin-right: 5px;
}
main .info .progress span {
    display: inline-block;
    padding: 1px 5px;
    border-radius: 50px;
    background: rgb(255, 255, 255);
}
main .img {
    display: flex;
    /* float: left;/// */
    width: 80%;
}
main .img img {
    display: block;
    width: 100%;
}

/* section  */
section.go {
    background: rgb(29, 119, 234);
    color: white;
    text-align: center;
    height: 70px;
    line-height: 71px;
    overflow: hidden;
}
section.go a {
    display: block;
    height: 70px;
    transition: all .5s;
}
section.go .arrow {
    display: inline-block;
    animation: slide 1s ease-in-out infinite;
}
@keyframes slide {
    0%, 100% {
      transform: translate(0, 0);
    }
  
    50% {
      transform: translate(5px, 0);
    }
  }
section.go a:hover {
    background: rgb(189, 189, 189);
}
section.go a:hover .arrow {
    animation: none;
}

section.gallery {
    column-count: 2;
    column-gap: 10px;
    width: calc(100% - 20px);
    padding-top: 100px;
    margin-left: 10px;
    box-sizing: border-box;
}

section.gallery img{
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
}


@media screen and (max-width:1400px) {
    main {
        display: flex;
        flex-direction: column;
    }
    main .info {
        order: 2;
        width: 100%;
        padding: 50px 40px 30px 40px;
    }
    main .img {
        order: 1;
        width: 100%;
    }
}