| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 |
- @charset "UTF-8";
- @import 'reset';
- @import 'mixin';
- @import 'media';
- header{
- position: fixed;
- width: 100%;
- top: 0;
- left: 0;
- z-index: 10;
- background: #fff;
- .header--line--banner--wrap{
- background-image: url(../img/top_line_bg.svg);
- background-size: auto;
- background-repeat: no-repeat;
- background-position: left center;
- background-color: #2ECC71;
- width:100%;
- padding:0px;
- @include flex-center;
- overflow: hidden;
- transition: all linear .2s;
- height:100px;
- &.actv{
- padding:0px 0px;
- height:0px;
- &+.header--contents--wrap{
- .header--dim{
- top: 170px;
- }
- }
- }
- .inner--contents{
- width:100%;
- max-width: 1200px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- position: relative;
- .close--btn{
- background: none;
- border: 0px;
- padding:0px;
- position: absolute;
- top: calc(50% - 15px);
- right:0px;
- }
- h3{
- color: #FFF;
- text-align: center;
- font-size: 20px;
- font-style: normal;
- font-weight: 700;
- margin-bottom: 10px;
- letter-spacing: -0.4px;
- }
- p{
- color: #FFF;
- font-size: 15px;
- letter-spacing: -0.3px;
- font-weight: 500;
- }
- }
- }
- .header--contents--wrap{
- width:100%;
- @include flex-center;
- min-height:80px;
- .hnb--wrap{
- @include flex-center;
- gap:10px;
- button{
- padding:0px;
- border:0px;
- background: none;
- width:30px;
- height:30px;
- @include flex-center;
- &.hmb--btn{
- display: none;
- }
- }
- }
- .header--contents{
- width:100%;
- display: flex;
- flex-direction: column;
- .header--logo--wrap{
- border-bottom: 1px solid #d9d9d9;
- .logo--wrap{
- height: 100px;
- align-items: center;
- margin: 0 auto;
- width: 100%;
- max-width:1200px;
- display: flex;
- justify-content: space-between;
- padding: 20px 0;
- .logo{
- width: 210px;
- height: 58px;
- a{
- display: inline-block;
- img{
- width: 100%;
- }
- }
- }
- .txt{
- display: flex;
- flex-direction: column;
- gap: 15px;
- justify-content: center;
- p{
- color: #000;
- font-size: 15px;
- font-weight: 300;
- letter-spacing: -0.15px;
- line-height: 1;
- span{
- color: #1aaf59;
- font-weight: 600;
- }
- &:last-child{
- font-size: 18px;
- span{
- font-weight: 700;
- }
- }
- }
- }
- }
- }
- .header--gnb--wrap{
- .gnb--wrap{
- width: 100%;
- max-width: 1200px;
- margin: 0 auto;
- transition: left linear .2s;
- &.actv{
- >ul{
- li{
- >ul{
- display: block;
- top:52px;
- pointer-events: auto;
- transform: translateX(-50%) translateY(0px);
- opacity: 1;
- }
- }
- }
- }
- >ul{
- width: 100%;
- @include flex-center;
- li{
- width: 20%;
- position: relative;
- text-align: center;
- a{
- width: 100%;
- color: #000;
- font-size: 17px;
- height: 70px;
- display: inline-block;
- line-height: 70px;
- font-style: normal;
- font-weight: 600;
- letter-spacing: -0.34px;
- }
- ul{
- /*!2025-07-23 추가 */
- pointer-events: none;
- position: absolute;
- top:-500px;
- left:50%;
- opacity: 0;
- transform: translateX(-50%) translateY(-20px);
- transition: transform linear .2s, opacity linear .4s;
- background: transparent;
- padding:10px;
- z-index: 1000;
- li{
- padding:5px;
- a{
- color: #191919;
- font-size: 17px;
- font-style: normal;
- font-weight: 500;
- letter-spacing: -0.34px;
- white-space: nowrap;
- strong{
- color: #5D1BB8;
- font-size: 17px;
- font-style: normal;
- font-weight: 700;
- letter-spacing: -0.34px;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- }
-
- .header--wrap{
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- &:after{
- transition: all ease-in-out .3s;
- content: "";
- display: block;
- height:0px;
- width:100%;
- background: #fff;
- position: absolute;
- top: 166px;
- left:0px;
- border-top:1px solid #ebebeb;
- z-index: -1;
- }
- }
-
-
- }
- .header--dim{
- &.actv{
- display: block;
- height:300px;
- }
- display: none;
- width:100%;
- height: 0px;
- position: fixed;
- top:270px;
- left:0px;
- background:#fff;
- border-top:1px solid #eee;
- z-index: 900;
- }
- main{
- padding-top: 270px!important;
- &.actv{
- padding-top: 170px!important;
- }
-
- .main--visual--section{
- overflow: hidden;
- position: relative;
- .main--visual--wrap{
- width:100%;
- .main--visual--img{
- width:100%;
- overflow: hidden;
- height:500px;
- position: relative;
- img{
- position: absolute;
- left:50%;
- transform: translateX(-50%);
- }
- .main--visual--txt{
- position: absolute;
- width: 100%;
- left: 50%;
- transform: translateX(-50%);
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- max-width: 1200px;
- gap: 40px;
- h3{
- color: #191919;
- font-size: 50px;
- font-weight: 700;
- }
- p{
- font-size: 18px;
- color: #191919;
- font-weight: 400;
- margin-bottom: 30px;
- }
- }
- }
- }
- .main--visual--pager{
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom:30px;
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 90px;
- padding: 20px 35px;
- border-radius: 1000px;
- background: rgba(255, 255, 255, 0.60);
- backdrop-filter: blur(2px);
- .prev--next--wrap{
- padding-top: 20px;
- @include flex-center;
- display: flex;
- gap: 15px;
- align-items: center;
- justify-content: center;
- button{
- @include flex-center;
- width: 18px;
- height: 18px;
- border: none;
- background-color: transparent;
- background-image: url(../img/ico--swiper--left.svg);
- background-repeat: no-repeat;
- background-position: center;
- &.next--btn{
- background-image: url(../img/ico--swiper--right.svg);
- }
- }
- }
- .play--pause{
- @include flex-center;
- gap:11px;
- button{
- @include flex-center;
- width: 50px;
- height: 50px;
- border-radius: 50px;
- border:0px;
- background: rgba(255, 255, 255, 0.80);
- backdrop-filter: blur(2px);
- }
- }
- .main--visual--fraction{
- display: flex;
- align-items: center;
- justify-content: center;
- span{
- font-size: 13px;
- font-style: normal;
- line-height: 1;
- letter-spacing: -0.32px;
- font-weight: 500;
- color: rgba(0, 0, 0, 0.50);
- &.swiper-pagination-current{
- color:#000;
- font-weight: 800;
- }
- &.fraction-separator{
- background-color: #000;
- width: 1px;
- height: 12px;
- display: inline-block;
- margin: 0 10px;
- }
- }
- }
- .main--visual--pagination{
- display: flex;
- margin-right: 20px;
- gap: 5px;
- align-items: center;
- justify-content: center;
- padding-top: 20px;
- .swiper-pagination-bullet{
- width: 34px;
- height: 34px;
- border-radius: 50%;
- border: none;
- opacity: 1;
- background-color: transparent;
- cursor: pointer;
- position: relative;
- &::after{
- position: absolute;
- content: '';
- width: 4px;
- height: 4px;
- background-color: #000;
- border-radius: 50%;
- left: calc(50% - 2px);
- top: calc(50% - 2px);
- display: inline-block;
- }
- &.swiper-pagination-bullet-active{
- border: 1px solid rgba(0, 0, 0, 0.50);
- }
- }
- }
- .main--visual--progress{
- display: flex;
- justify-content: center;
- flex-direction: column;
- margin-right: 20px;
- .main--visual--progress--bar{
- display: flex;
- align-items: center;
- }
- .progress-title{
- padding-left: 30px;
- color: #000;
- font-size: 16px;
- font-weight: 500;
- line-height: 1;
- margin-bottom: 4px;
- }
- .progress-bar{
- width: 200px;
- height: 2px;
- background-color: rgba(0, 0, 0, 0.2)!important;
- border-radius: 100px;
- position: relative;
- overflow: hidden;
- }
- .progress-text{
- color: #000;
- font-size: 15px;
- font-weight: 500;
- width: 30px;
- }
- }
- }
- }
- .mna--reason--wrap{
- overflow-x: hidden;
- .btn--wrap{
- display: flex;
- justify-content: center;
- padding: 40px 0;
- gap: 10px;
- button{
- border: 1px solid #dadada;
- background-color: #fff;
- width: 50px;
- height: 50px;
- border-radius: 50%;
- background-repeat: no-repeat;
- background-position: center;
- &.play--btn{
- background-image: url(../img/ico--swiper--pause.svg);
- &.pause{
- background-image: url(../img/ico--swiper--play.svg);
- }
- }
- &.prev--btn{
- background-image: url(../img/ico--swiper--left2.svg);
- }
- &.next--btn{
- background-image: url(../img/ico--swiper--right2.svg);
- }
- }
- }
- .swiper-slide{
- transform: translateX(50%);
- height: auto;
- .reason--box{
- border-radius: 30px;
- border: 1px solid #EEE;
- background: #FFF;
- box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
- height: 100%;
- display: flex;
- padding: 40px 45px 70px;
- flex-direction: column;
- >span{
- color: #1aaf59;
- font-size: 18px;
- font-weight: 700;
- line-height: 1;
- text-decoration-line: underline;
- text-decoration-style: solid;
- text-decoration-skip-ink: auto;
- text-decoration-thickness: auto;
- text-underline-offset: auto;
- text-underline-position: from-font;
- margin-bottom: 45px;
- }
- dt{
- color: #000;
- font-size: 20px;
- font-weight: 700;
- letter-spacing: -0.2px;
- margin-bottom: 35px;
- }
- dd{
- color: #333;
- font-size: 15px;
- font-weight: 300;
- letter-spacing: -0.15px;
- }
- }
- }
- }
- .gray--section{
- background-color: #f9f9f9;
- }
- .green--section{
- background-color: #2ECC71;
- }
- .section--container{
- max-width: 1200px;
- width: 100%;
- margin: 0 auto;
- &.p--120{
- padding: 120px 0;
- }
- &.p--100{
- padding: 100px 0;
- }
- .title--wrap{
- >h2{
- text-align: center;
- color: #000;
- font-size: 35px;
- font-weight: 300;
- strong{
- font-weight: 700;
- }
- }
- >p{
- text-align: center;
- }
- &.big{
- >h2{
- color: #000;
- font-size: 50px;
- font-weight: 300;
- letter-spacing: -0.5px;
- margin-bottom: 60px;
- line-height: 1.4;
- strong{
- font-weight: 700;
- }
- }
- >p{
- color: #000;
- font-weight: 300;
- line-height: 1.7;
- font-size: 18px;
- }
- }
- &.le{
- >h2, >p{
- text-align: left;
- }
- }
- }
- .now--box--wrap{
- .box--top{
- display: flex;
- margin-bottom: 90px;
- justify-content: space-between;
- .box{
- gap: 40px;
- width: 33.333%;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- text-align: center;
- >p{
- color: #000;
- font-size: 18px;
- font-weight: 300;
- strong{
- font-weight: 700;
- }
- }
- }
- }
- .box--bot{
- display: flex;
- gap: 40px;
- .box{
- width: 50%;
- border-radius: 20px;
- padding: 0 40px;
- display: flex;
- align-items: center;
- height: 120px;
- background-size: 100%;
- background-image: url(../img/bg--now1.svg);
- &:last-child{
- background-image: url(../img/bg--now2.svg);
- }
- }
- }
- }
- .growth--logic--wrap{
- display: flex;
- flex-wrap: wrap;
- gap: 40px;
- >div{
- width: calc((100% - 120px) / 3);
- }
- .title--box{
- width: calc((100% - 120px) / 3 + 40px);
- h2{
- color: #fff;
- font-size: 45px;
- font-weight: 300;
- letter-spacing: -0.45px;
- strong{
- font-weight: 800;
- color: #fff;
- }
- }
- .btn--wrap{
- display: flex;
- gap: 15px;
- a{
- display: inline-block;
- padding: 20px 30px;
- color: #fff;
- border-radius: 1000px;
- border: 1px solid #fff;
- line-height: 1;
- }
- }
- }
- .logic--box{
- border-radius: 25px;
- background-color: #fff;
- min-height: 350px;
- padding: 50px 45px 70px;
- dt{
- color: #333;
- font-size: 22px;
- font-weight: 700;
- letter-spacing: -0.22px;
- margin-bottom: 30px;
- strong{
- color :#1aaf59;
- font-weight: 700;
- }
- }
- dd{
- color: #444;
- font-size: 15px;
- font-weight: 400;
- letter-spacing: -0.15px;
- line-height: 1.7;
- }
- &.special{
- width: calc((100% - 120px) / 3 + 40px);
- background-color: #139e4e;
- background-image: url(../img/ico--logic.svg);
- background-repeat: no-repeat;
- background-position: right bottom;
- dt{
- color :#fff;
- text-decoration-line: underline;
- text-decoration-style: solid;
- text-decoration-skip-ink: auto;
- text-decoration-thickness: auto;
- text-underline-offset: auto;
- text-underline-position: from-font;
- }
- dd{
- color: #fff;
- }
- }
- }
- }
- .best--service--wrap{
- display: flex;
- gap: 40px;
- .service--box{
- padding: 40px 45px 70px;
- border: 1px solid #e5e5e5;
- border-radius: 25px;
- position: relative;
- width: calc((100% - 80px) / 3);
- &:nth-child(2){
- .service--numb{
- background-image: url(../img/numb--service2.svg);
- }
- }
- &:nth-child(3){
- .service--numb{
- background-image: url(../img/numb--service3.svg);
- }
- }
- .service--numb{
- position: absolute;
- right: 0;
- display: inline-block;
- width: 100px;
- height: 100px;
- background-repeat: no-repeat;
- background-position: top right;
- top: 10px;
- background-image: url(../img/numb--service1.svg);
- }
- h3{
- margin-top: 40px;
- margin-bottom: 30px;
- font-size: 22px;
- color: #191919;
- font-weight: 300;
- letter-spacing: -0.22px;
- line-height: 1.4;
- strong{
- font-weight: 700;
- }
- }
- p{
- color: #333;
- font-size: 16px;
- letter-spacing: -0.16px;
- line-height: 1.7;
- font-weight: 300;
- }
- }
- }
- .process--plan--wrap{
- .title--wrap{
- margin-bottom: 70px;
- span{
- color: #1aaf59;
- font-size: 15px;
- text-transform: uppercase;
- display: inline-block;
- margin-bottom: 25px;
- }
- h2{
- font-size: 30px;
- font-weight: 400;
- margin-bottom: 25px;
- }
- p{
- font-size: 18px;
- font-weight: 300;
- }
- }
- .content--wrap{
- h3{
- .ico{
- width: 20px;
- height: 20px;
- background-image: url(../img/ico--heart.svg);
- display: inline-block;
- background-repeat: no-repeat;
- background-position: center;
- margin-right: 15px;
- }
- color: #000;
- font-size: 20px;
- font-weight: 700;
- letter-spacing: -0.2px;
- display: flex;
- align-items: center;
- margin-bottom: 40px;
- }
- .direct--wrap{
- display: flex;
- justify-content: space-between;
- align-items: center;
- gap: 20px;
- .circle{
- display: flex;
- min-width: 190px;
- justify-content: center;
- gap: 12px;
- padding: 20px 40px;
- background-color: #2ECC71;
- align-items: center;
- border-radius: 100px;
- p{
- color: #fff;
- font-size: 17px;
- font-weight: 600;
- line-height: 1;
- letter-spacing: -0.17px;
- }
- .ico{
- width: 25px;
- height: 25px;
- display: inline-block;
- background-position: center;
- background-repeat: no-repeat;
- background-size: 100%;
- background-image: url(../img/ico--direct1.svg);
- }
- &:nth-of-type(2){
- background-color: #188345;
- .ico{
- background-image: url(../img/ico--direct2.svg);
- }
- }
- &:nth-of-type(3){
- .ico{
- background-image: url(../img/ico--direct3.svg);
- }
- }
- &:nth-of-type(4){
- background-color: #188345;
- .ico{
- background-image: url(../img/ico--direct4.svg);
- }
- }
- }
- .bar{
- width: 70px;
- height: 1px;
- border-bottom: 3px dashed #2ecc71;
- }
- }
- .process--wrap{
- .process--title{
- text-align: center;
- font-weight: 700;
- font-size: 25px;
- line-height: 1;
- color: #333;
- margin-bottom: 45px;
- strong{
- color: #188345;
- }
- }
- .process--cont{
- .process--top{
- display: flex;
- align-items: center;
- justify-content: space-between;
- .process--side{
- width: 123px;
- display: flex;
- gap: 15px;
- flex-direction: column;
- justify-content: center;
- .circle{
- color: #444;
- font-size: 16px;
- text-align: center;
- padding: 20px 0;
- border-radius: 100px;
- border: 2px solid #ddee81;
- font-weight: 600;
- line-height: 1;
- letter-spacing: -0.16px;
- strong{
- font-weight: 600;
- color: #1aaf59;
- }
- }
- .line{
- height: 50px;
- width: 50%;
- border-right: 3px dashed #ddee81;
- }
- &.right{
- }
- }
- .process--circle{
- width: calc(100% - 346px);
- height: 390px;
- display: flex;
- background-image: url(../img/bg--process--circle.svg);
- background-repeat: no-repeat;
- background-position: center;
- align-items: center;
- justify-content: center;
- background-size: 100%;
- .circle{
- width: 28%;
- display: flex;
- flex-direction: column;
- gap: 35px;
- align-items: center;
- .ico{
- width: 80px;
- height: 80px;
- background-position: center;
- background-size: 100%;
- background-repeat: no-repeat;
- display: inline-block;
- }
- &:nth-child(1){
- .ico{
- background-image: url(../img/ico--process--circle1.svg);
- }
- }
- &:nth-child(2){
- .ico{
- background-image: url(../img/ico--process--circle2.svg);
- }
- }
- &:nth-child(3){
- .ico{
- background-image: url(../img/ico--process--circle3.svg);
- }
- }
- }
- }
- }
- .process--bot{
- }
- }
- }
- }
- }
- }
- }
|