
 
 .cardContainer{
    
}
 .cardText{
    
    
}
  .Cardwrapper {
    display: flex;
    flex-flow: row wrap;
   
  }
  
  .card {
    width: 420px;
    height: 340px;
    margin: 1em;
    perspective: 1500px;
  }
  .card .Cardcontent {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.75, 0, 0.85, 1);
  }
  
  .more {
    display: none;
  }
  .more:checked ~ .Cardcontent {
    transform: rotateY(180deg);
  }
  
  .front,
  .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 6px;
  }
  .front .inner,
  .back .inner {
    height: 100%;
    display: grid;
    padding: 1.5em;
    transform: translateZ(80px) scale(0.94);
  }
  
  .front {
    background-color: #fff;
    background-size: cover;
    background-position: center center;
  }
  .front:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    backface-visibility: hidden;
    background: linear-gradient(40deg, rgba(67, 138, 243, 0.7), rgba(255, 242, 166, 0.7));
  }
  .front .inner {
    grid-template-rows: 5fr 1fr 1fr 2fr 1fr;
    justify-items: center;
  }
  .front h2 {
    grid-row: 2;
    margin-bottom: 0.3em;
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  .front .rating {
    grid-row: 3;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    flex-flow: row nowrap;
  }
  .front .rating i {
    margin: 0 1px;
  }
  
  .back {
    transform: rotateY(180deg);
    background-color: #fff;
    border: 2px solid #f0f0f0;
  }
  .back .inner {
    grid-template-rows: 1fr 2fr 1fr 2fr 14fr 1fr 1fr;
    grid-template-columns: repeat(4, auto);
    grid-column-gap: 0.8em;
    justify-items: center;
  }
  .back .info {
    position: relative;
    display: flex;
    align-items: center;
    color: #355cc9;
    grid-row: 3;
  }
  .back .info:not(:first-of-type):before {
    content: "";
    position: absolute;
    left: -0.9em;
    height: 18px;
    width: 1px;
    background-color: #ccc;
  }
  .back .info span {
    font-size: 4rem;
    font-weight: 700;
  }
  .back .info img {
    font-size: 4rem;
  }
  .back .info img:before {
    background: linear-gradient(40deg, #355cc9, #438af3);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }
  .back .info .icon {
    margin-left: 0.3em;
  }
  .back .info .icon span {
    display: block;
    margin-top: 2em;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }
  .back .description {
    grid-row: 5;
    grid-column: 1/-1;
    font-size: 2em;
    border-radius: 5px;
    font-weight: 600;
    line-height: 1.4em;
    overflow: auto;
    color: #355cc9;
    padding-right: 10px;
  }

  .back .description ul{
  
    align-items: left;
    justify-content: left;
    text-align: left;
    color: #020024;
    
  }
  .back .description ul li{
    align-items: left;
    justify-content: left;
    text-align: left;
    color: #020024;


  }
  .back .description ul li a{
    color: #3e3e40;
  }
  .back .description ul li i{
    color: #355cc9;
    padding: 5px;
  }





  .back .location,
  .back .price {
    font-weight: 600;
    color: #355cc9;
    grid-row: 1;
    font-size: 8px;
  }
  .back .location {
    grid-column: 1/3;
    justify-self: left;
    font-size: 14px;
  }
  .back .price {
    grid-column: 3/-1;
    justify-self: right;
  }
  .back .button {
    grid-column: 1/-1;
  }
  
  .button {
    grid-row: -1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    padding: 0 1.5em;
    height: 3em;
    line-height: 2.9em;
    min-width: 3em;
    background-color: transparent;
    border: solid 2px #fff;
    color: #fff;
    border-radius: 4px;
    left: 30%;
    backface-visibility: hidden;
    transition: 0.3s ease-in-out;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }
  .button:hover {
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    text-shadow: none;
    color: #355cc9;
  }
  .button.return {
    line-height: 3em;
    color: #355cc9;
    border-color: #355cc9;
    text-shadow: none;
  }
  .button.return:hover {
    background-color: #355cc9;
    color: #fff;
    box-shadow: none;
  }
  
  ::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #859ddf;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #355cc9;
  }




  main {
    width: 90%;
    margin: 0 auto;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: min(10vh, 5em);
  }
  main .header {
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
  }
  @media screen and (max-width: 600px) {
    main .header {
      margin-bottom: 70px !important;
    }
  }
  main .header h1 {
    font-weight: 800;
    font-size: 3rem;
    margin: 5px -5px 15px;
  }
  main .header span {
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
  }
  main .header p {
    font-size: 3rem;
    margin: 5px -5px 15px;
  }
  main .item {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
   
  }
  main .item:hover {
    cursor: pointer;
    transition: 0.35s;


  }
  main .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  main .item img {
    transition: 0.35s;
    transition: opacity 1s ease, -webkit-transform 5s cubic-bezier(0.3, 0, 0.7, 1);
    transition: transform 5s cubic-bezier(0.3, 0, 0.7, 1), opacity 1s ease;
    transition: transform 5s cubic-bezier(0.3, 0, 0.7, 1), opacity 1s ease, -webkit-transform 5s cubic-bezier(0.3, 0, 0.7, 1);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            -webkit-animation: scenic 140s cubic-bezier(0.2, 0, 0.8, 1) infinite;
            animation: scenic 140s cubic-bezier(0.2, 0, 0.8, 1) infinite;
    
  }
  main .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 28px 25px;
    color: #fff;
    background: #020024;
    background: linear-gradient(0deg, #020024 0%, #000032a1 3%, #17d9ff00 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  main .item .overlay span {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 7px 40px;
    display: inline-block;
    border: 1px solid #00a1e4;
    color: #f1f4f5;
    font-size: 15px;
    
  }
  main .item .overlay > div h2 {
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 30px;
  }
  main .item .overlay > div p {
    font-size: 13px
   
  }
  
  .owl-nav {
    position: absolute;
    top: 26rem;
    right: 0;
  }
  @media screen and (max-width: 600px) {
    .owl-nav {
      top: -60px !important;
    }
  }
  .owl-nav button {
    background: #6d6c6c !important;
    margin: 250px 0 10px;
    width: 50px;
    height: 45px;
    font-size: 25px !important;
    box-shadow: 0px 0px 17px #00000005;
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
    }
  .owl-nav button:nth-of-type(1) {
    margin-right: 13px;
  }


  #section7 {
    background: url(/images/main/sec7_bg.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
}

#section7 h2 {
    font-size: 36px;
    color: #fff;
    font-weight: 400;
}

#section7 h2 span {
    display: inline-block;
    line-height: 100%;
    border-bottom: 1px solid #fff;
}

#section7 h3 {
    margin: 25px 0 15px;
    font-size: 55px;
    color: #fff;
    font-weight: 600;
}

#section7 p {
    font-size: 17px;
    color: #fff;
}

#section7 a {
    display: inline-block;
}

#section7 .btn_top {
    display: inline-flex;
    justify-content: space-between;
    width: 110px;
    position: absolute;
    right: -20px;
    bottom: 100px;
    z-index: 100;
    transform: rotate(90deg);
    cursor: pointer;
}

#section7 .btn_top .txt {
    font-family: "Montserrat";
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

#section7 .btn_top .arr {
    position: relative;
    width: 70px;
    margin: 5px 0 0 0;
    border-top: 1px solid #fff;
    animation: scroll 1s infinite alternate;
}

#section7 .btn_top .arr:after {
    display: block;
    content: "";
    width: 6px;
    height: 1px;
    border-top: 1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
}

#section7 a text {
    font-family: "Noto Sans KR", "돋움", dotum, sans-serif;
}

@keyframes scroll {
    0% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0px);
    }
}



.foot .core_links {
        width: 620px;
    }

    .foot .core_links ul {
        display: flex;
        justify-content: flex-end;
    }

    .foot .core_links ul li {
        margin-left: 5px;
    }

    .foot .core_links ul li:nth-child(1) {
        width: 125px;
    }

    .foot .core_links ul li:nth-child(2) {
        width: 100px;
    }

    .foot .core_links ul li:nth-child(3) {
        width: 155px;
    }

    .foot .core_links ul li:nth-child(4) {
        width: 225px;
    }

    .foot .core_links ul li a {
        display: block;
        position: relative;
        box-sizing: border-box;
        padding: 0 0 18px;
        text-align: center;
    }

    .foot .core_links ul li a:before {
        display: block;
        content: "";
        box-sizing: border-box;
        width: 100%;
        height: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .foot .core_links ul li a:after {
        display: block;
        content: "";
        box-sizing: border-box;
        width: 0%;
        height: 4px;
        background: #50ccff;
        position: absolute;
        left: 50%;
        bottom: 0;
        transition: all 0.4s;
        transform: translateX(-50%);
        transform-origin: center;
    }

    .foot .core_links ul li:hover a:after {
        width: 100%;
    }

    .foot .core_links ul li a .ico {
        box-sizing: border-box;
        height: 27px;
        margin-bottom: 10px;
    }

    .foot .core_links ul li:nth-child(2) a .ico {
        padding-top: 3px;
    }

    .foot .core_links ul li:nth-child(4) a .ico {
        padding-top: 3px;
    }

    .foot .core_links ul li a .sbj {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 300;
        transition: all 0.4s;
    }


    .foot .core_links ul li:hover a .sbj {
        color: #fff;
    }

    /**
.foot .core_links ul li:nth-child(1):hover .ico circle{animation:footer_hover_ani1 1s linear;animation-fill-mode:forwards;stroke:#50ccff}
.foot .core_links ul li:nth-child(1):hover .ico line{animation:footer_hover_ani1 1s linear;animation-fill-mode:forwards;stroke:#50ccff}
@keyframes footer_hover_ani1{
	0%{stroke-dashoffset:40;stroke-dasharray:40;}
	100%{stroke-dashoffset:0;stroke-dasharray:40;}
}
*/

    .foot .core_links ul li:nth-child(1):hover .ico {
        transform-origin: center;
        animation: footer_hover_ani1-1 1s linear;
        animation-fill-mode: forwards;
        stroke: rgba(255, 255, 255, 0.2)
    }

    .foot .core_links ul li:nth-child(1):hover .ico circle {
        stroke: rgba(255, 255, 255, 0.2)
    }

    .foot .core_links ul li:nth-child(1):hover .ico line {
        stroke: rgba(255, 255, 255, 0.2)
    }

    @keyframes footer_hover_ani1-1 {
        0% {
            transform: rotateZ(360deg);
        }

        100% {
            transform: rotateZ(0);
        }
    }



    .foot .core_links ul li+li:hover .ico * {
        stroke-dashoffset: 200;
        stroke-dasharray: 200;
        animation: footer_hover_ani2 1.8s linear;
        animation-fill-mode: forwards;
        stroke: rgba(255, 255, 255, 0.2)
    }

  



















































/*  */



.swiper-container {
    width: 100% !important;
    height: 100vh;
 
} 
.swiper-wrapper{
    width: 100%;
    height: 100vh;
}
.swiper-slide{
    width: 100% !important;
    height: 100vh;
}

.swiper-slide img{
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    background-position: center center;
  background-repeat: no-repeat;
}
.swiper-slide .slide-info{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 100;
}
.swiper-slide .slide-info h1{
    width:80%;
    font-weight: 600;
    font-size: 60px;
    margin: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;

}





