| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338 |
- @charset "UTF-8";
- @import 'reset';
- @import 'mixin';
- @import 'media';
- main{
- .main--impt--search--section{
- background: #F9F9F9;
- .inner--contents{
- padding-top:100px;
- padding-bottom:100px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- > ul{
- display: flex;
- align-items: center;
- justify-content: center;
- gap:40px;
- row-gap: 35px;
- padding-top:70px;
- width:100%;
- max-width:1200px;
- flex-wrap: wrap;
- li{
- display: flex;
- align-items: center;
- justify-content: flex-start;
- gap:25px;
- ;
- width:calc( (100% - 80px ) / 3);
- border-radius: 100px;
- padding:20px 30px;
- position: relative;
- &:nth-of-type(odd){
- background: linear-gradient(134deg, #52ABFF 6.76%, #5281FF 50.56%, #AE52FF 93.53%);
- }
- &:nth-of-type(even){
- background: linear-gradient(134deg, #6DF3C4 6.76%, #2ECC71 50.56%, #25AD92 93.53%);
- }
- &:after{
- content: '';
- display: block;
- width:18px;
- height:18px;
- background: url(../img/ic_arrow_02.svg) no-repeat center;
- position: absolute;
- top:50%;
- right:30px;
- transform: translateY(-50%);
- }
- .title{
- color: #FFF;
- font-size: 18px;
- font-style: normal;
- font-weight: 600;
- line-height: 100%; /* 18px */
- letter-spacing: -0.36px;
- }
- .thumbs{
- display: inline-flex;
- min-width:34px;
- width: 34px;
- height: 34px;
- background: url(../img/thumbs_ic.png) no-repeat center;
- }
- }
- }
- .section--title--center{
- color: #333;
- text-align: center;
- font-size: 35px;
- font-style: normal;
- font-weight: 300;
- line-height: 100%; /* 35px */
- letter-spacing: -0.7px;
- strong{
- color: #191919;
- font-size: 35px;
- font-style: normal;
- font-weight: 800;
- line-height: 100%;
- letter-spacing: -0.7px;
- }
- }
- }
- }
- .main--prof--sections{
- padding-top:110px;
- padding-bottom:120px;
- .inner--contents{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- .section--title--center{
- color: #333;
- text-align: center;
- font-size: 35px;
- font-style: normal;
- font-weight: 300;
- line-height: 100%; /* 35px */
- letter-spacing: -0.7px;
- strong{
- color: #191919;
- font-size: 35px;
- font-style: normal;
- font-weight: 800;
- line-height: 100%;
- letter-spacing: -0.7px;
- }
- }
- .nav--wrapper{
- display: flex;
- align-items: center;
- justify-content: center;
- gap:10px;
- padding-bottom:50px;
- padding-top:40px;
- button{
- display: flex;
- width: 50px;
- height: 50px;
- border-radius: 50px;
- border-radius: 100px;
- border: 1px solid #DADADA;
- background: #fff;
- justify-content: center;
- align-items: center;
- &.play--btn{
- display: none;
- }
- }
- }
- .prof--man--swiper{
- width:100%;
- .swiper-slide{
- max-width:494px;
- .prof--card{
- display: flex;
- width:100%;
- padding:30px 40px;
- border-radius: 30px;
- border: 1px solid #E2E2E2;
- background: #FFF;
- box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
- align-items: center;
- justify-content: flex-start;
- gap:30px;
- .thumb{
- overflow: hidden;
- width:150px;
- height:150px;
- border-radius: 150px;
- }
- .desc--wrap{
- >h2{
- color: #191919;
- font-size: 20px;
- font-style: normal;
- font-weight: 800;
- line-height: 100%; /* 20px */
- span{
- color: #1AAF59;
- font-size: 15px;
- font-style: normal;
- font-weight: 600;
- line-height: 100%; /* 15px */
- margin-left:12px;
- }
- }
- .key--word{
- display: flex;
- padding-top:30px;
- gap:5px;
- span{
- color: #1AAF59;
- text-align: center;
- font-size: 13px;
- font-style: normal;
- font-weight: 500;
- line-height: 100%; /* 13px */
- border-radius: 100px;
- border: 1px solid rgba(46, 204, 113, 0.50);
- padding:8px 10px;
- }
- }
- }
- }
- }
- }
- }
- }
- .main--impt--sections{
- background: url(../img/dear_bg.png) no-repeat center center / cover;
- .inner--contents{
- padding-top:120px;
- padding-bottom:120px; ;
- .section--title--center{
- color: #333;
- text-align: center;
- font-size: 35px;
- font-style: normal;
- font-weight: 300;
- line-height: 100%; /* 35px */
- letter-spacing: -0.7px;
- strong{
- color: #191919;
- font-size: 35px;
- font-style: normal;
- font-weight: 800;
- line-height: 100%;
- letter-spacing: -0.7px;
- }
- }
- .impt--list--wrap{
- width:100%;
- padding-top:50px;
- ul{
- display: flex;
- align-items: center;
- justify-content: center;
- gap:50px;
- li{
- border-radius: 30px;
- background: #FFF;
- padding:55px 50px;
- max-width:575px;
- h3{
- color: #000;
- font-size: 20px;
- font-style: normal;
- font-weight: 600;
- line-height: 100%;
- strong{
- color: #225DFF;
- }
- }
- .captions{
- padding-top:30px;
- color: #000;
- font-size: 16px;
- font-style: normal;
- font-weight: 300;
- line-height: 2.1; /* 16px */
- }
- .thumb{
- width:204px;
- height:130px;
- margin-top:60px;
- &.thumb--01{
- background: url(../img/dear_bg_ic01.png) no-repeat center center / contain;
- }
- &.thumb--02{
- background: url(../img/dear_bg_ic02.png) no-repeat center center / contain;
- }
- }
- }
- }
- }
- }
- }
- .compatibility--section{
- width: 100%;
- display: flex;
- justify-content: center;
- padding-top:120px;
- padding-bottom:120px;
- .inner--contents{
- width:100%;
- max-width:1200px;
- .section--title--left{
- color: #333;
- font-size: 50px;
- font-style: normal;
- font-weight: 300;
- line-height: 1.3; /* 50px */
- letter-spacing: -1px;
- strong{
- font-weight: 700;
- color: #1AAF59;
- font-size: 50px;
- font-style: normal;
- font-weight: 800;
- line-height: 100%;
- letter-spacing: -1px;
- }
- }
- .compatibility--inner--conls{
- width:100%;
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- flex-direction: column;
- border-radius: 30px;
- background: #2ECC71 url(../img/line_more_bg.png) no-repeat 100% top;
- padding:50px;
- position: relative;
- max-height:280px;
- >h2{
- color: #FFF;
- font-size: 25px;
- font-style: normal;
- font-weight: 700;
- line-height: 100%; /* 25px */
- letter-spacing: -0.5px;
- margin-bottom:17px;
- position: relative;
- &:after{
- content:'';
- display: block;
- width:301px;
- height:64px;
- background: url(../img/dot_more_bg.png) no-repeat center;
- position: absolute;
- top:-23px;
- left:-50px;
- }
- }
- .captions{
- color: #FFF;
- font-size: 16px;
- font-style: normal;
- font-weight: 500;
- line-height: 1.9;
- letter-spacing: -0.32px;
- }
-
- .desc{
- color: #EF0;
- font-size: 16px;
- font-style: normal;
- font-weight: 600;
- line-height: 1.9;
- letter-spacing: -0.32px;
- margin-top:30px;
- }
- .btn--wrapper{
- position: absolute;
- top:50px;
- right:55px;
- display: flex;
- gap:15px;
- button{
- border-radius: 1000px;
- background: #FFF;
- color: #1AAF59;
- font-size: 15px;
- font-style: normal;
- font-weight: 600;
- display: flex;
- align-items: center;
- justify-content: center;
- letter-spacing: -0.3px;
- line-height: 100%;
- padding:20px;
- border:0px;
- }
- }
- }
- .step--section{
- padding-bottom:100px;
- &.sect--02{
- .inner--grid{
- max-width:970px;
- &:after{
- max-width:930px;
- }
- }
- }
- &:last-child{
- padding-bottom:0px;
- }
- .inner--s--title{
- span{
- &:nth-of-type(1){
- color:#1AAF59;
- font-size: 25px;
- font-style: normal;
- font-weight: 700;
- line-height: 100%; /* 25px */
- letter-spacing: -0.5px;
- margin-right:30px;
- em{
- font-style: normal;
- }
- }
- &:nth-of-type(2){
- color: #444;
- font-size: 17px;
- font-style: normal;
- font-weight: 300;
- line-height: 100%; /* 17px */
- letter-spacing: -0.34px;
- }
- }
- }
- .inner--grid{
- display: flex;
- align-items:flex-start;
- justify-content: space-between;
- margin-top:40px;
- position: relative;
- &:after{
- content:'';
- display: block;
- width:100%;
- height:1px;
- background: rgba(46, 204, 113, 0.50);
- position: absolute;
- top:55px;
- z-index: -1;
- }
- .grid{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- .thumb{
- width:110px;
- height:110px;
- border-radius: 110px;
- border: 2px solid rgba(46, 204, 113, 0.50);
- background: #FFF;
- display: flex;
- align-items: center;
- justify-content: center;
- box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.20);
- }
- .desc{
- padding-top:20px;
- color: #000;
- text-align: center;
- font-size: 15px;
- font-style: normal;
- font-weight: 300;
- line-height: 1.5; /* 15px */
- letter-spacing: -0.3px;
- strong{
- font-weight: 700;
- letter-spacing: -0.3px;
- }
- }
- }
- }
- }
- .month--text--contents{
- >p{
- color: #191919;
- font-size: 17px;
- font-style: normal;
- font-weight: 300;
- line-height: 100%; /* 17px */
- letter-spacing: -0.34px;
- display: flex;
- }
- .month--gap{
- padding-top:49px;
- padding-bottom:30px;
- > span{
- &:nth-of-type(1){
- border-radius: 1000px;
- border: 1px dashed #2ECC71;
- color: #1AAF59;
- font-size: 16px;
- font-style: normal;
- font-weight: 600;
- line-height: 100%; /* 16px */
- letter-spacing: -0.32px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- padding:20px;
- margin-right:25px;
- }
- &:nth-of-type(2){
- color: #111;
- font-size: 20px;
- font-style: normal;
- font-weight: 500;
- line-height: 100%; /* 20px */
- letter-spacing: -0.4px;
- strong{
- font-weight: 800;
- }
- }
- }
- }
- }
- .progress--section{
- padding-top:120px;
- padding-bottom:100px;
- $color_1: #222222;
- $color_2: #191919;
- $font-family_1: Pretendard, var(--default-font-family);
-
- .progress--container {
- overflow: hidden;
- box-sizing: border-box;
- position: relative;
- width: 1200px;
- height: 401px;
- margin: 0 auto;
- * {
- box-sizing: border-box;
- }
- }
-
- // Step 01 - 사전 진행
- .progress--step.step--01 {
- position: absolute;
- width: 110px;
- height: 266px;
- top: 0;
- left: 0;
- font-size: 0px;
- z-index: 27;
-
- .step--label {
- display: block;
- position: relative;
- height: 25px;
- margin: 0 0 0 0;
- color: $color_1;
- font-family: $font-family_1;
- font-size: 25px;
- font-weight: 700;
- line-height: 25px;
- text-align: left;
- white-space: nowrap;
- letter-spacing: -0.5px;
- z-index: 27;
- }
-
- .step--circle {
- position: relative;
- width: 110px;
- height: 110px;
- margin: 71px 0 0 0;
- background: rgba(46, 204, 113, 0.1);
- z-index: 3;
- overflow: visible auto;
- border-radius: 1000px;
-
- .step--circle--inner {
- position: relative;
- width: 72px;
- height: 72px;
- margin: 19px 0 0 19px;
- background: rgba(46, 204, 113, 0.2);
- z-index: 4;
- overflow: visible auto;
- border-radius: 1000px;
-
- .step--circle--core {
- position: relative;
- width: 36px;
- height: 36px;
- margin: 18px 0 0 18px;
- background: #2ecc71;
- z-index: 5;
- border-radius: 1000px;
- }
- }
- }
-
- .step--desc {
- position: relative;
- width: 70px;
- height: 40px;
- margin: 20px 0 0 20px;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: center;
- text-overflow: initial;
- white-space: nowrap;
- letter-spacing: -0.3px;
- z-index: 6;
-
- .desc--main {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: center;
- letter-spacing: -0.3px;
- }
-
- .desc--sub {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 700;
- text-align: center;
- letter-spacing: -0.3px;
- }
- }
- }
- // Step 06 - M&A진행결정시
- .progress--step.step--06 {
- position: absolute;
- width: 222px;
- height: 162px;
- top: 85px;
- left: 978px;
- z-index: 28;
-
- .step--arrow {
- position: relative;
- width: 160px;
- height: 82px;
- margin: 0 0 0 32px;
- background: url(../img/man_arrow_bg.png) no-repeat center;
- background-size: cover;
- z-index: 28;
- }
-
- .step--box {
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- gap: 20px;
- position: relative;
- width: 222px;
- margin: 0 0 0 0;
- padding: 15px 30px 15px 20px;
- background: #ffffff;
- border: 1px solid rgba(46, 204, 113, 0.5);
- z-index: 21;
- border-radius: 100px;
- box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
-
- .step--icon {
- flex-shrink: 0;
- position: relative;
- width: 50px;
- height: 50px;
- background: #2ecc71;
- z-index: 22;
- border-radius: 1000px;
-
- .icon--img {
- position: relative;
- width: 24px;
- height: 19px;
- margin: 16px 0 0 13px;
- background: url(../img/blk_01.svg) no-repeat center;
- background-size: cover;
- z-index: 23;
- overflow: hidden;
- }
- }
-
- .step--desc {
- flex-shrink: 0;
- position: relative;
- width: 102px;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- text-overflow: initial;
- white-space: nowrap;
- letter-spacing: -0.3px;
- z-index: 24;
-
- .desc--main {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- letter-spacing: -0.3px;
- }
-
- .desc--sub {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 700;
- text-align: left;
- letter-spacing: -0.3px;
- }
- }
- }
- }
- // 나머지 Progress Steps와 Line 연결 요소들
-
- // Step 03 - M&A 상담
- .progress--step.step--03 {
- position: absolute;
- width: 313px;
- height: 308px;
- top: 93px;
- left: 365px;
- z-index: 29;
-
- .step--badge {
- &.badge--blue {
- position: relative;
- width: 79px;
- height: 79px;
- margin: 229px 0 0 0;
- background: url(../img/blue_ic01.svg) no-repeat center;
- background-size: cover;
- overflow: hidden;
- }
-
- &.badge--purple {
- position: absolute;
- width: 57px;
- height: 57px;
- top: 0;
- left: 41px;
- background: url(../img/purple_ic01.svg) no-repeat center;
- background-size: cover;
- z-index: 1;
- overflow: hidden;
- }
- }
-
- .step--box {
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- gap: 20px;
- position: absolute;
- width: 239px;
- height: 80px;
- top: 26px;
- left: 74px;
- padding: 15px 30px 15px 20px;
- background: #ffffff;
- border: 1px solid rgba(46, 204, 113, 0.5);
- z-index: 11;
- border-radius: 100px;
- box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
-
- .step--icon {
- flex-shrink: 0;
- position: relative;
- width: 50px;
- height: 50px;
- background: #2ecc71;
- z-index: 12;
- border-radius: 1000px;
-
- .icon--img {
- position: relative;
- width: 21px;
- height: 22px;
- margin: 14px 0 0 15px;
- background: url(../img/blk_02.svg) no-repeat center;
- background-size: cover;
- z-index: 13;
- overflow: hidden;
- }
- }
-
- .step--desc {
- flex-shrink: 0;
- position: relative;
- width: 119px;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- text-overflow: initial;
- white-space: nowrap;
- letter-spacing: -0.3px;
- z-index: 14;
-
- .desc--sub {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 700;
- text-align: left;
- letter-spacing: -0.3px;
- }
-
- .desc--main {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- letter-spacing: -0.3px;
- }
- }
- }
-
- .step--dot.dot--purple {
- position: absolute;
- width: 10px;
- height: 10px;
- top: 153px;
- left: 19px;
- background: url(../img/purple_dot01.svg) no-repeat center;
- background-size: cover;
- z-index: 29;
- border-radius: 50%;
- }
- }
-
- // Step 02 - M&A궁합 담당자 전화
- .progress--step.step--02 {
- position: absolute;
- width: 228px;
- height: 218px;
- top: 136px;
- left: 180px;
- z-index: 30;
-
- .step--dot.dot--green {
- position: relative;
- width: 10px;
- height: 10px;
- margin: 0 0 0 164px;
- background: url(../img/green_dot01.svg) no-repeat center;
- background-size: cover;
- z-index: 30;
- border-radius: 50%;
- }
-
- .step--box {
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- gap: 20px;
- position: relative;
- width: 228px;
- margin: 128px 0 0 0;
- padding: 15px 30px 15px 20px;
- background: #ffffff;
- border: 1px solid rgba(46, 204, 113, 0.5);
- z-index: 7;
- border-radius: 100px;
- box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
-
- .step--icon {
- flex-shrink: 0;
- position: relative;
- width: 50px;
- height: 50px;
- background: #2ecc71;
- z-index: 8;
- border-radius: 1000px;
-
- .icon--img {
- position: relative;
- width: 18px;
- height: 18px;
- margin: 16px 0 0 16px;
- background: url(../img/blk_03.svg) no-repeat center;
- background-size: cover;
- z-index: 9;
- overflow: hidden;
- }
- }
-
- .step--desc {
- flex-shrink: 0;
- position: relative;
- width: 108px;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- text-overflow: initial;
- white-space: nowrap;
- letter-spacing: -0.3px;
- z-index: 10;
-
- .desc--main {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- letter-spacing: -0.3px;
- }
-
- .desc--sub {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 700;
- text-align: left;
- letter-spacing: -0.3px;
- }
- }
- }
- }
-
- // Step 05 - 진행 여부 결정
- .progress--step.step--05 {
- position: absolute;
- width: 252.5px;
- height: 154px;
- top: 190px;
- left: 726px;
- z-index: 32;
-
- .step--dot.dot--pink {
- position: relative;
- width: 10px;
- height: 10px;
- margin: 0 0 0 173px;
- background: url(../img/pink_dot01.svg) no-repeat center;
- background-size: cover;
- z-index: 32;
- border-radius: 50%;
- }
-
- .step--line.line--04 {
- position: absolute;
- width: 49.5px;
- height: 61.5px;
- top: 16.5px;
- left: 203px;
- background: url(../img/line_05.svg) no-repeat center;
- background-size: cover;
- z-index: 16;
- }
-
- .step--box {
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- gap: 20px;
- position: absolute;
- width: 203px;
- height: 80px;
- top: 37px;
- left: 0;
- padding: 15px 30px 15px 20px;
- background: #ffffff;
- border: 1px solid rgba(46, 204, 113, 0.5);
- z-index: 17;
- border-radius: 100px;
- box-shadow: 0 0 10px 0 rgba(46, 204, 113, 0.3);
-
- .step--icon {
- flex-shrink: 0;
- position: relative;
- width: 50px;
- height: 50px;
- background: #2ecc71;
- z-index: 18;
- border-radius: 1000px;
-
- .icon--img {
- position: relative;
- width: 20px;
- height: 22px;
- margin: 14px 0 0 15px;
- background: url(../img/blk_04.svg) no-repeat center;
- background-size: cover;
- z-index: 19;
- overflow: hidden;
- }
- }
-
- .step--desc {
- flex-shrink: 0;
- position: relative;
- width: 83px;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- text-overflow: initial;
- white-space: nowrap;
- letter-spacing: -0.3px;
- z-index: 20;
-
- .desc--sub {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 700;
- text-align: left;
- letter-spacing: -0.3px;
- }
-
- .desc--main {
- position: relative;
- color: $color_2;
- font-family: $font-family_1;
- font-size: 15px;
- font-weight: 400;
- text-align: left;
- letter-spacing: -0.3px;
- }
- }
- }
-
- .step--badge.badge--clover {
- position: absolute;
- width: 63px;
- height: 63px;
- top: 91px;
- left: 165px;
- background: url(../img/clovar_ic.svg) no-repeat center;
- background-size: cover;
- z-index: 2;
- overflow: hidden;
- }
- }
-
- // Step Line - 연결선
- .progress--step.step--line {
- position: absolute;
- width: 70px;
- height: 199px;
- top: 116px;
- left: 110px;
- z-index: 31;
-
- .step--dot.dot--yellow {
- position: relative;
- width: 10px;
- height: 10px;
- margin: 0 0 0 14px;
- background: url(../img/yellow_dot01.svg) no-repeat center;
- background-size: cover;
- z-index: 31;
- border-radius: 50%;
- }
-
- .step--line.line--02 {
- position: relative;
- width: 70px;
- height: 164px;
- margin: 25.5px 0 0 0;
- background: url(../img/line_03.svg) no-repeat center;
- background-size: cover;
- z-index: 25;
- }
- }
-
- // 전역 라인 요소들
- .step--line.line--01 {
- position: absolute;
- width: 90.5px;
- height: 155px;
- top: 67.5px;
- left: 44px;
- background: url(../img/line_02.svg) no-repeat center;
- background-size: cover;
- z-index: 26;
- }
-
- .step--line.line--03 {
- position: absolute;
- width: 47px;
- height: 108px;
- top: 159.5px;
- left: 679px;
- background: url(../img/line_04.svg) no-repeat center;
- background-size: cover;
- z-index: 15;
- }
-
- }
- }
- }
- .faq--wrapper{
- width: 100%;
- display: flex;
- justify-content: center;
- padding-top:120px;
- padding-bottom:120px;
- .inner--contents{
- width:100%;
- max-width:1200px;
- .section--title{
- color: #191919;
- text-align: center;
- font-size: 35px;
- font-style: normal;
- font-weight: 800;
- line-height: 100%; /* 35px */
- letter-spacing: -0.7px;
- }
- .faq--list--wrap{
- width:100%;
- max-width:1200px;
- padding-top:70px;
- ul{
- width: 100%;
- border-bottom:1px solid #E6E6E6;
- li{
- width: 100%;
- text-align: left;
- border-top:1px solid #E6E6E6;
- position: relative;
-
-
-
- @for $i from 1 through 9 {
- &:nth-of-type(#{$i}) {
- .faq--item--title {
- &::before {
- content: 'Q#{$i}';
- }
- }
- }
- }
- .faq--item--title{
- padding:30px 20px;
- position: relative;
- cursor: pointer;
- transition: background-color 0.3s ease;
- &:after{
- content:'';
- display: block;
- width:100%;
- height:1px;
- width:18px;
- height:18px;
- background: url(../img/chv_down.svg) no-repeat center center / contain;
- position: absolute;
- top:50%;
- right:20px;
- transform: translateY(-50%);
- }
- &.active{
- &:after{
- background: url(../img/chv_up.svg) no-repeat center center / contain;
- transform: translateY(-50%) rotate(0deg);
- }
- }
-
- > p{
- padding-left:60px;
- color: #222;
- font-size: 18px;
- font-style: normal;
- font-weight: 400;
- line-height: 100%; /* 18px */
- letter-spacing: -0.36px;
- }
- &::before{
- content:'';
- display:inline-flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- top:50%;
- left:20px;
- transform: translateY(-50%);
- width:40px;
- min-width:40px;
- height:40px;
- border-radius: 40px;
- border-radius: 100px;
- border: 1px solid #E6E6E6;
- background: #FFF;
- color: #2ECC71;
- text-align: center;
- font-size: 15px;
- font-style: normal;
- font-weight: 700;
- line-height: 100%; /* 15px */
- letter-spacing: -0.3px;
- }
- }
- .faq--item--content{
- position: relative;
- padding:30px 20px;
- border-top: 1px solid #E6E6E6;
- background: #F6F6F6;
- display: none;
- > p{
- padding-left:60px;
- color: #333;
- font-size: 16px;
- font-style: normal;
- font-weight: 400;
- letter-spacing: -0.32px;
- }
- &::before{
- content:'A';
- position: absolute;
- top:50%;
- left:20px;
- transform: translateY(-50%);
- color: #FFF;
- text-align: center;
- font-size: 17px;
- font-style: normal;
- font-weight: 700;
- line-height: 100%; /* 17px */
- letter-spacing: -0.34px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width:40px;
- min-width:40px;
- height:40px;
- border-radius: 100px;
- background: linear-gradient(180deg, #65CC2E 0%, #2ECC71 52.4%, #2597D0 100%);
- }
- }
- }
- }
- }
- }
- }
- }
- footer{
- display: flex;
- align-items: center;
- justify-content: center;
- width:100%;
- background: #191919;
- section{
- width:100%;
- padding-top:40px;
- padding-bottom:55px;
- max-width:1200px;
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- .footer--left{
- >a{
- display: block;
- width: 100%;
- max-width: 163px;
- img{
- width: 100%;
- }
- }
- .copy--text{
- display: flex;
- flex-direction: column;
- gap:20px;
- margin-top:30px;
- p{
- color: #FFF;
- font-size: 16px;
- font-style: normal;
- font-weight: 500;
- line-height: 100%;
- letter-spacing: -0.32px;
-
- span{
- color: #FFF;
- font-size: 16px;
- font-style: normal;
- font-weight: 500;
- line-height: 100%;
- letter-spacing: -0.32px;
- margin-right:31px;
- position: relative;
- &::after{
- content:'';
- display: block;
- width:1px;
- height:100%;
- background: #535353;
- position: absolute;
- top:50%;
- width:1px;
- height:15px;
- right:-16px;
- transform: translateY(-50%);
- }
-
- &:last-child{
- margin-right:0px;
- &::after{
- display: none;
- }
- }
- }
- }
- }
- }
- .footer--right{
- display: flex;
- gap:50px;
- a{
- color: #FFF;
- font-size: 16px;
- font-style: normal;
- font-weight: 500;
- line-height: 100%; /* 16px */
- letter-spacing: -0.32px;
- text-transform: uppercase;
- }
- }
- }
- }
|