*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}
:root{
    --yellow-color:#F5C400;
    --yellow-light:#ffdd00;
    --black-color:#000000;
    --white-color:#ffffff;
    --light-navy-blue-color:#f0f9ff;
    --light-blue-color:#68A5f5;
    --light-green-color:#e8f9ce;
    --light-brown-color:#fee9d6;
    --gray-color:#f9f9f9;
    --light-black:#1f1f1f;
    --dark-black:#111111;
    --gray-text:#6e6e6e;
    --light-gray:#fefefe61;
    --border-light-blue-color:#0b9fec;
    --border-red-color:#fd5B1b;
    --border:#ececec;
}
@font-face {
    font-family: 's-core_dream2_extralight';
    src: url('../fonts/scdream2.woff2') format('woff2'),
         url('../fonts/scdream2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
     font-family: 's-core_dream3_light';
    src: url('../fonts/scdream3.woff2') format('woff2'),
         url('../fonts/scdream3.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 's-core_dream5_medium';
    src: url('../fonts/scdream5.woff2') format('woff2'),
         url('../fonts/scdream5.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 's-core_dream7_extrabold';
    src: url('../fonts/scdream7.woff2') format('woff2'),
         url('../fonts/scdream7.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    font-size: 16px;
    background: var(--white-color);
    font-family: 's-core_dream3_light'; 
    
}
ul{
    list-style: none;
}
.container{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.text-center{
    text-align: center;
}
a{
    text-decoration: none;
}
h1,h2{
    font-family: 's-core_dream5_medium';
    letter-spacing: -4px;
}
h3,h4,h5{
    font-family: 's-core_dream5_medium';
}
img{
    max-width: 100%;
    height: auto;
}
/******Header CSS *****/

header.header {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    padding: 46px 0;
    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
}
header.header.sticky {
    background-color: var(--white-color);
    box-shadow: 0px 0px 8px rgba(0,0,0,.2);

    transition: all ease-in-out .5s;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
}
.header .flex{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header nav.navigation-menu ul {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.header nav.navigation-menu ul li a{
    color: var(--dark-black);
    text-decoration: none;
}
.header .btn-primary{
    background-color: var(--dark-black);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    color: var(--white-color);
    text-decoration: none;
        transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}
.header .btn-primary:hover{
    background-color: var(--yellow-color);
    color: var(--black-color);
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;

}
/****** Hero Section CSS *****/

.hero-section{
    background-image: linear-gradient(#fff8cc 60%, #ffffff);
    height: 950px;
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
}
.hero-section::after{
    content: "";
    background-image: url(../images/hero-bg.png);
    background-position:center 95%;
    background-repeat: no-repeat;
    background-size: 72%;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 9;

}
.hero-text-wrap {
    position: relative;
    z-index: 10;
}
.hero-section h1{
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 26px;
    font-family: 's-core_dream5_medium';
    letter-spacing: -4px;
}
.hero-section h1 .mobile-break {
    display: none;
}
.hero-section h2{
    font-size: 28px;
    font-weight: 500;
    color: var(--gray-text);
    margin-bottom: 40px;
}
.hero-section a{
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    padding: 12px 24px;
    background-color: var(--yellow-color);
    color: var(--white-color);
}
.BannerRocket {
    position: absolute;
    right: 14%;
    top: -80%;
}
.banner-star {
    position: absolute;
}

.banner-star.star1 {
    left: 3%;
    top: -150px;
}

.banner-star.star2 {
    left: 20%;
    top: 75%;
}

.banner-star.star3 {
    right: 14%;
    bottom: -45%;
}

/****** message Section CSS *****/

.message-section {
    padding: 50px 0;
}
.message-section h2{
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 70px;
}
.message-section .MessageouterBoxwrap h3{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}
.message-section .MessageouterBoxwrap p{
    font-size: 20px;
    font-weight: 200;
    color: var(--gray-text);
}
.MessageouterBoxwrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    align-content: center;
    background-color: var(--light-navy-blue-color);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    padding: 63px 0px 0 63px; 
    border: 1px solid var(--border-light-blue-color);
}

.MessageImageBox{
    text-align: center;
    position: relative;
}
.MessageImageBox img{
    margin-bottom: -4px;
}
.MessageImageBox .btn-blue{
    padding: 17.2px 28.76px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    color: var(--white-color);
    background-color: var(--light-blue-color);
    font-size: 22.94px;
    font-weight: 200;
    cursor: pointer;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}
.MessageImageBox .btn-blue:hover{
    background-color: var(--black-color);
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}
.MessageImageBox .prank-message-btn{
    position: absolute;
    z-index: 10;
    right: 10px;
    top: 189px;
}

.MessageImageBox .apply-now-btn{
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 135px;
}
.MessageBox p{
    padding-right: 22%;
}
/****** KakaoTalk-section ********/

.KakaoTalk-section{
    padding: 100px 0;
}
.KakaoTalk-section h2{
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 70px;
}
.KakaoTalk-section h3{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 5px;
}
.KakaoTalk-section p{
    font-size: 20px;
    font-weight: 200;
    color: var(--gray-text);
} 
.KakaoTalkOuterBoxwrap{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: center;
    text-align: center;
}
.KakaoTalkOuterBoxwrap .box{
    box-shadow: 0px 10px 10px rgba(0, 0, 0, .1);
    padding: 80px 40px 0 40px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}
.KakaoTalkOuterBoxwrap .KakaoTalkBox1{
    background-color: var(--light-green-color);
}
.KakaoTalkOuterBoxwrap .KakaoTalkBox1 img {
    margin-right: -110px;
    margin-bottom: -5px;
    margin-top: 25px;
}
.KakaoTalkOuterBoxwrap .KakaoTalkBox2{
    background-color: var(--light-brown-color);
    padding-bottom: 50px;
}
.KakaoTalkOuterBoxwrap .innerContentbox{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
    align-items: center;
    margin-left: 5%;
}
.KakaoTalkOuterBoxwrap .innerContentbox .innerCircle:nth-child(1){
margin-right: -30px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .innerCircle:last-child{
margin-left: -30px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle1{
height: 310px;
width: 310px;
position: relative;
z-index: 10;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle1 svg{
position: absolute;
z-index: 9;
}
.circle-svg {
    width: 100%;
    height: auto;
    display: block;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle1 img{
position: absolute;
z-index: 10;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle2{
background-color: var(--yellow-light);
height: 250px;
width: 250px;
position: relative;
z-index: 9;
}
.KakaoTalkOuterBoxwrap .innerContentbox  h4{
    font-size: 22px;
    font-weight: 500;
}
.KakaoTalkContentBoxOuterWrap{
    width: 290px;
    margin: 0 auto;
    margin-top: 20px;
    text-align: left;
    background-image: linear-gradient(#ffffff 80%, #e8f9ce);
    border-radius: 12px 12px 0 0 ;
    -webkit-border-radius: 12px 12px 0 0 ;
    -moz-border-radius: 12px 12px 0 0 ;
    -ms-border-radius: 12px 12px 0 0 ;
    -o-border-radius: 12px 12px 0 0 ;
    margin-right: 155px;
}
.KakaoTalkContentBoxOuterWrap h4{
    font-size: 14.84px;
    padding: 15px;
    background-color: var(--yellow-color);
    color: var(--black-color);
    border-radius: 12px 12px 0 0 ;
    -webkit-border-radius: 12px 12px 0 0 ;
    -moz-border-radius: 12px 12px 0 0 ;
    -ms-border-radius: 12px 12px 0 0 ;
    -o-border-radius: 12px 12px 0 0 ;
}
.KakaoTalkContentBoxOuterWrap ul {
    padding: 15px;
}
.KakaoTalkContentBoxOuterWrap ul li{
    font-size: 14px;
}
.KakaoTalkContentBoxOuterWrap ul li:nth-child(1){
    padding: 20px 0;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.KakaoTalkContentBoxOuterWrap ul li p{
    font-size: 14px;
    margin-bottom: 15px;
}

.KakaoTalkContentBoxOuterWrap ul li p.border-radius {
    position: relative;
}
.KakaoTalkContentBoxOuterWrap ul li p.border-radius .arrow-btn{
    background-color: #f97b3f;
    color: var(--white-color);
    display: block;
    width: 155px;
    height: 76px;
    padding: 16px 24px;
    position: absolute;
    right: -178px;
    bottom: -40px;
    font-size: 16px;
    transform: rotate(-6deg);
    border-radius: 0 24px 24px 24px;
    -webkit-border-radius: 0 24px 24px 24px;
    -moz-border-radius: 0 24px 24px 24px;
    -ms-border-radius: 0 24px 24px 24px;
    -o-border-radius: 0 24px 24px 24px;
}
svg.border-svg {
    width: 125%;
    height: auto;
    display: block;
    position: absolute;
    top: -8px;
    left: -12%;
}

/***** CBT-section ******/

.CBT-section{
    padding: 100px 0;
}
.CBT-section h2{
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -4px;
}
.CBT-section p.text-center{
    margin-bottom: 70px;
    font-size: 20px;
}
.CBT-Services{
    width: 850px;
    display: grid;
   grid-template-columns: 455px 1fr; 
    gap: 12px;
    margin: 0 auto;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
}
.CBT-Services .CBTBox{
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: var(--gray-color);
    padding: 70px 20px 30px 20px;
    position: relative;
    height: 356px;
}
.CBT-Services .CBTBox:nth-child(2),
.CBT-Services .CBTBox:nth-child(3){
    background-color: var(--white-color);
    border: 1px solid var(--border);
}
.CBT-Services  .CBTBox:first-child,
.CBT-Services  .CBTBox:last-child { 
    width: 455px;
}
.CBT-Services  .CBTBox:nth-child(2),
.CBT-Services  .CBTBox:nth-child(3) { 
    width: 376px;
}
.CBT-Services .CBTBox:last-child {
    margin-left: -80px;
}
.CBT-Services .CBTBox span{
    position: absolute;
    left: 20px;
    top: 35px;
    font-size: 24px;
    font-weight: 600;
    color: #1b1b1b60;
}
.CBT-Services .CBTBox  h3{ 
     margin-top: 30px;  
    margin-bottom: 20px;
}
.CBT-Services .CBTBox:nth-child(1) h3,
.CBT-Services .CBTBox:nth-child(2) h3{
    margin-top: 0px;
    margin-bottom: 10px;
}
.CBT-Services .CBTBox p{
    color: #6d6d6d;;
}
/********* ContactUs-section ************/
.ContactUs-section{
    padding: 200px 0;
    background-image: linear-gradient(#ffffff, #fff8cc 60%);
}
.ContactUs-section h2{
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 70px;
}
.ContactUs-section .btn{
    background-color: var(--yellow-color);
    color: var(--black-color);
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;
    -o-border-radius: 80px;
    text-align: center;
    width: 260px;
    height: 45px;
    text-decoration: none;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}
.ContactUs-section  .btn:hover{
    background-color: var(--black-color);
    color: var(--white-color);
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}

/****** Footer CSS *****/

.footer{
    background-color: var(--light-black);
    padding: 60px 0;
    color: var(--white-color);
}
.footer h4{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;

}
.footer address{
    font-style: normal;
    font-family: 's-core_dream3_light';
}
.footer ul{
    margin-bottom: 20px;
}
.footer ul li{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;  
}
.footer ul li span{
    font-size: 14px;
    line-height: 14px;
}
.footer ul li span:first-child{
    border-right: 1px solid var(--white-color);
    margin-right: 10px;
    padding-right: 10px;
}
.footer ul li:last-child span {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.footer p.copy-right-text{
font-size: 14px;
}

@media only screen and (max-width: 1400px) {
  header.header {
    padding: 20px 0;
}
}
@media only screen and (max-width: 1300px) {
h1{
     font-size: 45px;
}
h2{
     font-size: 36px;
}
h3{
     font-size: 24px;
}
header.header {
    padding: 20px 0;
}
.container{
    padding: 0 15px;
}
.hero-section {
    height: 720px;
}
.hero-section h1 {
    font-size: 45px;
}
.MessageouterBoxwrap {
    padding: 50px 0px 0 50px;
}
.CBT-section,.KakaoTalk-section  {
    padding: 50px 0;
}
.KakaoTalkContentBoxOuterWrap {
    margin-right: 110px;
}
.KakaoTalkOuterBoxwrap .innerContentbox {
    margin-left: 2%;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle1 {
    height: 250px;
    width: 250px;
}
.KakaoTalkOuterBoxwrap .KakaoTalkBox1 img {
    margin-right: -30px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle2 {
    height: 200px;
    width: 200px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle img{
    width: 100px;
    width: 100px;
}
.message-section h2,.KakaoTalk-section h2,.CBT-section h2,.ContactUs-section h2 {
    font-size: 36px;
}
.KakaoTalk-section h3 {
    font-size: 30px;

}
.CBT-section p.text-center {
    margin-bottom: 40px;
}
.CBT-section p.text-center {
    font-size: 16px;
}
.CBT-section,.KakaoTalk-section{
    padding: 50px 0;
}
.ContactUs-section {
    padding: 100px 0;
}
.KakaoTalkContentBoxOuterWrap ul li p.border-radius .arrow-btn {
    width: 130px;
    height: 62px;
    padding: 10px 17px;
    font-size: 14px;
    right: -150px;
}


}

@media only screen and (max-width: 991px) {
.hero-section h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.hero-section h2 {
    margin-bottom: 30px;
}
.message-section h2, .KakaoTalk-section h2, .CBT-section h2, .ContactUs-section h2 {
    font-size: 30px;
}
.BannerRocket {
    right: 7%;
    top: -60%;
}
.BannerRocket img {
    width: 100px;
}
.message-section .MessageouterBoxwrap h3 {
    font-size: 24px;
}
.MessageImageBox .btn-blue {
    padding: 7.2px 15.76px;
}
.MessageBox p {
    padding-right:0;
}
.CBT-Services {
width: 100%;
grid-template-columns: repeat(2, 1fr);
}
.CBT-Services .CBTBox:first-child, .CBT-Services .CBTBox:last-child {
    width: auto;
}
.CBT-Services .CBTBox:nth-child(2), .CBT-Services .CBTBox:nth-child(3) {
    width:auto;
}
.CBT-Services .CBTBox:last-child {
    margin-left: auto;
}
.ContactUs-section {
    padding: 50px 0;
}
.KakaoTalk-section h2 {
    margin-bottom: 30px;
}
.KakaoTalk-section h3 {
    font-size: 20px;
}
.KakaoTalk-section p {
    font-size: 16px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .innerCircle:nth-child(1) {
    margin-right: 0px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle1 {
    height: 170px;
    width: 170px;
}
.KakaoTalkOuterBoxwrap .innerContentbox .circle2 {
    height: 140px;
    width: 140px;
}
.KakaoTalkOuterBoxwrap .innerContentbox h4 {
    font-size: 16px;
}
.CBT-Services .CBTBox img{
    width: 80px;
}
.CBT-Services .CBTBox {
    height: 300px;
    padding: 50px 20px 30px 20px;
}
.CBT-Services .CBTBox h3{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}
.KakaoTalkContentBoxOuterWrap ul li p {
    font-size: 11px;
}
.KakaoTalkContentBoxOuterWrap ul li:nth-child(1) {
    padding: 10px 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
    .KakaoTalkContentBoxOuterWrap {
        margin-right: 46px;
        width: 275px;
        zoom: 0.8;
    }
.KakaoTalkContentBoxOuterWrap ul li p.border-radius .arrow-btn {
    width: 120px;
    height: 50px;
    padding: 8px 16px;
    font-size: 12px;
    right: -86px;
    -webkit-border-radius: 0 15px 15px 15px;
}
.KakaoTalkOuterBoxwrap .box {
    padding: 40px 40px 0 40px;
}
}

@media only screen and (max-width: 667px) {

header.header {
    padding: 10px 0;
}
 .hero-section {
    height: 540px;
}
.BannerRocket img {
    width: 80px;
}
.banner-star.star1 {
    left: 3%;
    top: -80px;
}
.hero-section h1 {
    font-size: 30px;
}
.hero-section h2 {
    font-size: 22px;
}
.MessageouterBoxwrap {
    grid-template-columns: repeat(1, 1fr);
}
.MessageouterBoxwrap {
    padding: 30px;
    padding-bottom: 0;
}
.message-section h2 {
    margin-bottom: 30px;
}

.KakaoTalkOuterBoxwrap {
    grid-template-columns: repeat(1, 1fr);
}
.KakaoTalkOuterBoxwrap .box {
    padding: 40px 20px 0 20px;
}
.KakaoTalkOuterBoxwrap .innerContentbox {
    margin-top: 30px;
    padding-bottom: 30px;
    width: 350px;
    margin: 20px auto 0 auto;
}
    .KakaoTalkContentBoxOuterWrap {
        margin-right: auto;
    }
    .hero-section h1 .mobile-break,
    .message-section h2 .mobile-break,
    .message-section h3 .mobile-break {
        display: inline;
    }
}



@media only screen and (max-width: 576px) {
.header .btn-primary {
    padding: 7px 15px;
}
.header .logoWrap img {
    width: 80px;
}
.header nav.navigation-menu ul {
    gap: 15px;
}
.header nav.navigation-menu ul li a {
    font-size: 14px;
}
.hero-section::after {
    background-position: center 100%;
    background-size: 100%;
}
.KakaoTalkOuterBoxwrap .innerContentbox {
    width: 290px;
}
    .CBT-Services .CBTBox {
        height: auto;
    }
.CBT-Services .CBTBox span {
    top: 20px;
}
}

.mobile-break {
    display: none;
}

@media only screen and (max-width: 667px) {
    .mobile-break {
        display: inline;
    }
}

