@charset "UTF-8";
@import url("common.css");

html {
    scroll-behavior: smooth;
    scroll-margin: 120px;
}

html, body {
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    width: 100%;
    /*height: 100%;*/
    color: #666;
    word-break: keep-all;

}

body.en{
    word-break: break-word;
}


img {
    max-width: 100%;
    object-fit: cover;
}

.wrap, .wrapper {
    margin: 0 auto;
    width: 1180px;
}



header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    transition: top 0.7s;
}

header .wrap {
    height: 80px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .wrap h1 {
    width: 88px;
    height: 32px;
    background: url("../images/logo-carry.svg") center center no-repeat;
    background-size: contain;
}
.en header .wrap h1 {
    width: 113px;
    height: 32px;
    background: url("../images/logo-en-carry.svg") center center no-repeat;
    background-size: contain;
}

header .wrap h1 button {
    width: 100%;
    height: 100%;
    color: transparent;
    font-size: 0;
}

header .wrap .gnb {
    display: flex;
    align-items: center;
    justify-content: end;
}

header .wrap .gnb nav a {
    color: #111;
    font-size: 14px;
    margin-right: 64px;
    transition: all 0.5s;
    font-family: 'Nanum Gothic';
}

header .wrap .gnb nav a:hover {
    color: #24DED3;
}
header .wrap .gnb nav a:active {
    color: #24DED3;
}


header .wrap .gnb .language button{
    border: none;
    width: auto;
    height: 26px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #111;
    font-size: 14px;
    border-radius: 0;
    margin-left: 16px;
    font-weight: 300;
    font-family: 'Nanum Gothic';
}
header .wrap .gnb .language button:first-child:after{
    content: '';
    display: inline-block;
    width: 1px ;
    height: 14px;
    background-color: #111;
    margin-left: 20px;
}
header .wrap .gnb .language button.on{
    color: #24DED3;
}


.main-visual {
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    background:#F2F3F7 url("../images/bg-main-carry.png") right top no-repeat;
    background-size: contain;

}


.main-visual .slider {
    width: 1180px;
    margin: 0 auto;
    height: 100%;
}



.main-visual .slider-main {

    display: flex;
    justify-content: start;
    align-items: start;
    height: 100%;
    z-index: 2;
    padding-top: 181px;
}

.main-visual .main-title {

    color: #040C28;
    font-size: 38px;
    text-align: left;
    white-space: nowrap;
    line-height: 48px;
    font-weight: 800;

}

.main-visual .main-title b {
    color: #00CFC3;
    font-weight: 800;
}

.main-visual .main-title span {
    display: block;
    font-size: 18px;
    letter-spacing: -0.03em;
    line-height: 26px;
    font-weight: 500;
    margin-top: 16px;
}


.main-visual .slider .wrap {
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.main-visual .pagination {
    width: 358px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 100px;
    z-index: 999999999;
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: start;*/
}

.main-visual .pagination .swiper-pagination-bullet  {
    width: 80px;
    height: 3px;
    background: #fff;
    /*box-shadow: 0px 0px 14px rgba(255, 175, 203, 0.8);*/
    border-radius: 3px;
    opacity: 0.4;
    color: transparent;
    font-size: 0
}

.main-visual .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #24DED3;
    box-shadow: 0px 0px 14px rgba(255, 175, 203, 0.8);
    opacity: 1;
}

.main-visual .slider .wrap .main-title {
    width: 370px;
    margin-right: 95px;
    text-align: left;
}

.main-visual .slider .wrap .description {
    font-size: 20px;
    width: 607px;
    line-height: 180%;
    color: #fff;
}

.main-visual .slider01 {
    background: url("../images/bg2.png") center center no-repeat;
    background-size: cover;

}

.main-visual .slider02 {
    background: url("../images/bg-main-02.png") center center no-repeat;
    background-size: cover;

}

.main-visual .slider03 {
    background: url("../images/bg-main-03.png") center center no-repeat;
    background-size: cover;

}

.main-visual .slider04 {
    background: url("../images/bg-main-04.png") center center no-repeat;
    background-size: cover;

}

/*footer*/
#footer {
    background-color: #000;
}

/*태그로앱 PG 심사를 위해 임시로 앱다운로드 버튼 적용_PG심사 후 삭제 예정*/
footer .btn button {
    margin-bottom: 20px;
    width: 120px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    font-size: 10px;
    font-weight: 300;
    transition: background 0.3s ease-out;
}
footer .btn button i {
    width: 19px;
    height: 19px;
    background: url("../images/ic-go-white.svg") center center no-repeat;
    background-size: contain;
    margin-left: 20px;
}
footer .btn button:hover {
    color: #fff;
    border-color: #ff7caa;
    background-color: #ff7caa;
    background-position: left bottom;
}
footer .btn button:hover i {
    background-image: url('../images/ic-go-white.svg');
}
/*태그로앱 PG 심사를 위해 임시로 앱다운로드 버튼 적용_PG심사 후 삭제 예정*/


footer .wrap {
    padding: 100px 0;
    margin: 0 auto;
    position: relative;
}

footer .wrap .fnb {
    /*width: 700px;*/
}

footer .wrap .fnb .logo-wrap {
    position: relative;
}
footer .wrap .fnb .logo-wrap .sns {
    position: absolute;
    top: 0;
    right: 0;
}

footer .wrap .fnb .logo {
    margin-bottom: 20px;
}

footer .wrap .fnb h6 {
    width: 128px;
    height: 28px;
    background: url("../images/logo-white-carry.svg") left center no-repeat;
    background-size: contain;
}
.en footer .wrap .fnb h6 {
    width: 100px;
    height: 28px;
    background: url("../images/logo-white-en-carry.svg") center center no-repeat;
    background-size: contain;
}

footer .wrap .fnb .sns button {
    width: 38px;
    height: 38px;

}

footer .wrap .fnb .sns button.instar {
    background: url("../images/ic-instar.svg") center center no-repeat;
    background-size: contain;
}

footer .wrap .fnb .sns button.facebook {
    background: url("../images/ic-facebook.svg") center center no-repeat;
    background-size: contain;
}

footer .wrap .fnb .sns button.blog {
    background: url("../images/ic-blog.svg") center center no-repeat;
    background-size: contain;
}

footer address {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

footer address * {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0;
}

footer address span {
    color: #fff;
}

footer address a {
    color: #fff !important;
}

footer address i {
    margin: -1px 8px 0;
    display: inline-block;
    width: 0.5px;
    height: 9px;
    background: #E1E1E1;
    vertical-align: middle;
    opacity: .5;
}

footer address em {
    color: #C8C8C8;
}

footer .copy{
    margin-top: 50px;
}

footer .dropdown {
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 10;
}

footer .dropdown ul {
    display: none;
    margin-bottom: 16px;
    position: absolute;
    /*bottom: 100%;*/
    top: calc(100% - 38px);
    left: 0;
    z-index: 9999999999999999;
    background: #121212;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 4px;
    width: 147px;
}

footer .dropdown li {
    display: block;
}

footer .dropdown li a {
    display: block;
    padding: 10px 16px;
    text-align: left;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 28px;
    color: #C8C8C8;
    background: url('../images/ic-arrow.png') right 18px center no-repeat;
    background-size: 8px;
}

footer .dropdown li a:hover {
    background-image: url('../images/ic-arrow-pink.png');
    color: #ef4d94;
}
footer .dropdown li a span{
    font-size: 14px;
}

footer .dropdown button {
    width: 147px;
    height: 38px;
    border: 1px solid #9E9E9E;
    box-sizing: border-box;
    border-radius: 4px;
    background: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;

}

footer .dropdown button {
    background: linear-gradient(to right, #ef4d94 50%, transparent 50%) right bottom;
    background-size: 200% 100%;
    transition: all 0.3s ease-out;
}

footer .dropdown button span {

    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    color: #C8C8C8;
}

footer .dropdown button em {
    margin: 0 0 0 12px;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url("../images/ic-plus.svg") right top no-repeat;
    background-size: 14px;
    transition: opacity 0.3s, transform 0.3s;
}

footer .dropdown button:hover {
    border-color: #ef4d94;
    background-position: left bottom;
    color: #fff;
}

footer .dropdown button:hover span {
    color: #fff;
}

footer .dropdown button:active {
    border-color: #24DED3;
    background: #24DED3;
}

footer .dropdown.active button {
    border-color: #24DED3;
    background: #24DED3;
}

footer .dropdown.active button em {
    background-image: url('../images/ic-cross-dark.png');
}

footer .dropdown.active ul {
    display: block;
}

.fade {
    animation: fade 2s;
    -webkit-animation: fade 2s;
    -moz-animation: fade 2s;
    -o-animation: fade 2s;
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes sc-down-ani {
    0% {
        transform: translate3d(0, -250%, 0);
    }
    to {
        transform: translate3d(0, 250%, 0);
    }
}

@keyframes sc-down-ani {
    0% {
        transform: translate3d(0, -250%, 0);
    }
    to {
        transform: translate3d(0, 250%, 0);
    }
}


/*container*/


.container h2.title {
    color: #00CFC3;
    font-size: 40px;
    font-weight: 800;
    line-height: 54px;
    margin-bottom: 40px;
}
.container h2.title span{
    color: #040C28;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: block;
}
.container h2.title span b{
    font-weight: 600;
}

.container section {
    margin: 0 auto;
}

/*.business-container */

.business-container  {
    background: #fff url("../images/bg-laas-01.png") right top no-repeat;
    padding: 80px 0 80px 0;
    height: 400px;
    background-size: cover;
}


/*service-container*/
.service-container{
    padding: 97px;
    background:  url("../images/bg-laas.png") right top no-repeat;
    background-size: cover;
}
.service-container h2.title span{
    color: #fff;
    margin-top: 16px;
}

.service-container .img{
    height: 313px;
    background:  url("../images/img-service.png") left top no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}

.en .service-container .img{
    height: 313px;
    background:  url("../images/img-service-en.png") left top no-repeat;
    background-size: contain;
    margin-bottom: 10px;
}


/*guide-container*/
.guide-container{
    height: 740px;
    background:  url("../images/bg-taglo.png") center center no-repeat;
    background-size: cover;
    padding: 70px;
}
.guide-container h2.title{
    color: #fff;
    text-align: center;

}
.guide-container .wrap{
    height: 480px;
    position: relative;
}
.guide-container .wrap .cont{
    display: flex;
    justify-content: space-between;
    align-items: start;
    background: #1AB8AE;
    width: 380px;
    height: 100px;
    border-radius: 50px;
    padding: 10px;
}
.guide-container .wrap .cont span{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #24DED3;
    font-weight: 800;
    font-size: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;

}
.guide-container .wrap .cont dl{
    flex: 1;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}
.guide-container .wrap .cont dl dd{
    font-weight: 200;
    font-size: 17px;
    margin-top: 5px;
    line-height: 18px;
}
.guide-container .wrap .cont:nth-child(1){
    position: absolute;
    left: 0;
    top: 0;
}
.guide-container .wrap .cont:nth-child(2){
    position: absolute;
    right: 0;
    top: 0;
}
.guide-container .wrap .cont:nth-child(3){
    position: absolute;
    right: 0;
    bottom: 0;

}
.guide-container .wrap .cont:nth-child(4){
    position: absolute;
    left: 0;
    bottom: 0;
    background: #24DED3;
}

/*plan-container*/
.plan-container{
    padding: 70px;
}
.plan-container h2.title{
    text-align: center            ;
}
.plan-container .wrap{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.plan-container .wrap .cont{
    flex: 1;
    margin-right: 20px;
}
.plan-container .wrap .cont:last-child{
    margin-right: 0;
}
.plan-container .wrap .cont span{
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 30px;
    display: block;
}

.en .plan-container .wrap .cont span{
    text-align: left;
    font-size: 16px;
    line-height: 24px;
}


/*partner-container*/
.partner-container {
    padding: 100px 0;
    text-align: center;
    background: #F9F9F9;
    height: 404px;

}
.partner-container h2.title{
    margin-bottom: 0;
}

.partner-container .wrap {
    height: 175px;
    background: url("../images/img-member.png") center center no-repeat;
    background-size: contain;
}


/*address-container*/
section.address-container {
    width: 100%;
    padding: 100px 0;
    /*height: 497px;*/
    background-color: #fff;
}

section.address-container .wrap {
    display: flex;
    justify-content: start;
    align-items: start;
    height: 480px;
}

.address-container .img {
    width: 480px;
    margin-right: 80px;
    height: 480px;
}



.address-container .cont {
    width: 500px;
}

.address-container h3.title {
    font-size: 20px;
    color: #2D2B2B;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}

.en .address-container h3.title{
    font-size: 18px;
    line-height: 30px;
}

.en .address-container dl dt{
    font-size: 18px;
    line-height: 30px;
}

.address-container dl {
    margin-bottom: 56px;
    color: #2D2B2B;
}

.address-container dl dt {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.address-container dl dd {
    font-size: 18px;
    font-weight: 300;
    display: flex;
    justify-content: start;
    align-items: center;
}

.address-container a {
    color: #2D2B2B;
}

.address-container a:hover {
    color: #9E9E9E;
}

.address-container a:active {
    color: #24DED3;
}

.address-container .ic-mail {
    width: 24px;
    height: 24px;
    background: url("../images/ic-mail.svg") center center no-repeat;
    margin-right: 5px;
}
