/* Pretendard Font set up */
@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	font-display: swap;
	src: url('../resources/font/woff2/PretendardVariable.woff2') format('woff2-variations');
}

/* ---------------- Reset css ----------------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard Variable', sans-serif;
    -webkit-font-family: 'Pretendard Variable';
    -moz-font-family: 'Pretendard Variable';
}

body,
html,
main {
  overflow-x: clip !important;
  position: relative;
}

ol,
ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

button {
  cursor: pointer;
  border: none;
}

b {
  color: inherit; }

span {
  font-family: inherit;
  font-size: inherit;
  color: inherit; }

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit; }


/* --------------- css start ---------------- */

/* header  */
header{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 120px;
}
@media (min-width:768px) and (max-width:1023px) {
  header{
    padding: 20px 30px;
  }
}
@media (max-width:768px) {
  header{
    padding: 18px 26px;
  }
}
.menu_wrap{
  width: 450px;
}
.hamburger_btn{
  display: none;
}
@media (min-width:768px) and (max-width:1023px) {
  .hamburger_btn{
    display: block;
  }
  .hamburger_btn img{
    width: 22px;
  }
}
@media (max-width:768px) {
  .hamburger_btn{
    display: block;
  }
}
#nav{
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #4E5BEF;
  list-style: none;
  transition: .7s ease-in-out;
  text-align: center;
  color: #fff;
  z-index: 100;
}
.nav_items{
  padding: 12px 0;
  margin: 10px;
  transition: .3s ease-in-out;
  cursor: pointer;
  border-radius: 45px;
}
.nav_items:hover{
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 13px rgba(255, 255, 255, 0.8);
  color: #4E5BEF;
  font-weight: 600;
}
#open{
  cursor: pointer;
}
#close{
  padding: 18px 26px;
  text-align: right;
  cursor: pointer;
}

@media (min-width:768px) and (max-width:1023px) {
  .menu_wrap{
    display: none;
  }
  .hamburger_btn{
    display: block;
  }
}

@media (max-width:768px) {
  .menu_wrap{
    display: none;
  }
  .hamburger_btn{
    display: block;
  }
}
.menu{
  display: flex;
  justify-content: space-between;
  color: #4E5BEF;
  font-weight: 600;
}
@media (min-width:768px) and (max-width:1023px){
  .menu{
    display: none;
  }
}
@media (max-width:768px) {
  .menu{
    display: none;
  }
}
.menu_items{
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: .5s;
  margin-top: 11px;
}
.menu_items:after {
  display:block;
  content: '';
  margin-top: 7px;
  height: 3px;
  border-radius: 4px;
  background-color: #4E5BEF; 
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
.menu_items:hover:after { 
  transform: scaleX(1); 
}
@media (min-width:768px) and (max-width:1023px){
  .logo img{
    width: 150px;
  }
}
@media (max-width:768px) {
  .logo img{
    width: 117px;
  }
}

/* (pc스크린) 메뉴 : 입금계좌 드롭박스 나오게 */
.menu_items_drop{
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: .5s;
  margin-top: 11px;
  position: relative;
}
.menu_items_drop:after {
  display:block;
  content: '우리은행 1005-105-830344 (주)솔박스 ';
  padding: 15px 20px;
  background: rgba(0,0,0,0.8);
  border-radius: 40px; 
  transform: scaleX(0);  
  transition: transform .4s ease-in-out;
  color: #fff;
  position: absolute;
  top: 42px;
  left: -100%;
  z-index: 200;
  width: 275px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  background-color: #4E5BEF;
  cursor: default;
}
.menu_items_drop:hover:after { 
  transform: scaleX(1);
}

/* main top */
main{
  width: 100%;
}

.main_top{
  width: 100%;
  background: center/cover no-repeat url("../resources/images/bg_beehouse.png");
  padding: 120px 0;
}
@media (max-width:768px){
  .main_top{
    padding: 48px 0;
    background: center/cover no-repeat url("../resources/images/mobile_beehouse.png");
  }
}
.top_txt{
  margin: 0 auto;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width:768px){
  .top_txt{
    font-size: 26px;
  }
}
.txt_blue{
  color: #4E5BEF;
}
.btn_blue{
  display: block;
  background-color: #4E5BEF;
  padding: 20px 90px;
  color: #fff;
  border-radius: 30px;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
}
.btn_blue:hover{
  box-shadow: 0 0 24px #4E5BEF;
}
@media (min-width:768px) and (max-width:1023px) {
  .btn_blue{
    padding: 15px 60px;
  }
}
@media (max-width:768px){
  .btn_blue{
    padding: 10px 45px;
    font-size: 16px;
    margin-top: 30px;
  }
}


/* content keywords */
.main_key{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width:1024px) and (max-width:1280px){
  .main_key{
    width: 1000px;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .main_key{
    width: 100%;
    padding: 0 45px;
  }
}
@media (max-width:768px){
  .main_key{
    width: 100%;
    padding: 0 26px;
    margin-top: 60px;
  }
}
.key_items{
  display: flex;
  align-items: center;
  width: 310px;
  margin-bottom: 60px;
}
@media (min-width:768px) and (max-width:1023px){
  .key_items{
    width: 255px;
  }
}
@media (max-width:768px){
  .key_items{
    display: block;
    width: 45%;
    text-align: center;
    margin-bottom: 45px;
  }
}
.key_ico img{
  width: 80px;
  margin-right: 24px;
}
@media (min-width:768px) and (max-width:1023px){
  .key_ico img{
    width: 63px;
    margin-right: 10px;
  }
}
@media (max-width:768px){
  .key_ico img{
    width: 45px;
    margin-right: 0;
  }
}
.key_txt{
  font-size: 24px;
  font-weight: 600;
  color: #222;
}
@media (min-width:768px) and (max-width:1023px){
  .key_txt{
    font-size: 20px;
  }
}
@media (max-width:768px){
  .key_txt{
    font-size: 16px;
    margin-top: 10px;
  }
}

/* content csp link */
.csp_link{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media (min-width:1024px) and (max-width:1280px){
.csp_link{
  width: 1000px;
} 
}
@media (min-width:768px) and (max-width:1023px){
  .csp_link{
    width: 100%;
    padding: 0 30px;
  }
}
@media (max-width:768px){
  .csp_link{
    width: 100%;
    padding: 0 26px;
    margin-top: 30px;
  }
}
.csp_link article{
  width: 587px;
  height: 217px;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 34px;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media (min-width:1024px) and (max-width:1280px){
  .csp_link article{
    width: 49%;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .csp_link article{
    width: 49%;
    height: 180px;
    font-size: 20px;
  }
}
@media (min-width:481px) and (max-width:767px) {
  .csp_link article{
    width: 100%;
    height: 140px;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (max-width:480px){
  .csp_link article{
    width: 100%;
    height: 117px;
    font-size: 18px;
    padding: 22px;
    margin-bottom: 15px;
  }
}
.btn_link{
  background: none;
  font-size: 18px;
  color: #222;
  display: block;
  margin-top: 24px;
  position: relative;
}
.btn_link:after {
  display:block;
  content: '';
  margin-top: 7px;
  height: 2.5px;
  border-radius: 4px;
  background-color: #fff; 
  transform: scaleX(0);  
  transition: transform 250ms ease-in-out;
}
.btn_link:hover:after { 
  transform: scaleX(1);
}
@media (min-width:768px) and (max-width:1023px){
  .btn_link{
    font-size: 16px;
    margin-top: 20px;
  }
}
@media (max-width:768px){
  .btn_link{
    font-size: 14px;
    margin-top: 10px;
  }
}

/* csp 1. naver */
.link_naver{
  background: center right/cover no-repeat url("../resources/images/link_goldpartner.png");
  transition: .3s;
  cursor: pointer;
}
.link_naver:hover{
  background: center right/cover no-repeat url("../resources/images/hover_public.png");
  transition: .3s;
  color: #fff;
}
.link_naver:hover .btn_link{
  transition: .3s;
  color: #fff;
}
/* csp 2. cloudflare */
.link_cloudflare{
  background: center right/cover no-repeat url("../resources/images/link_cloudflare.png");
  transition: .3s;
  cursor: pointer;
}
.link_cloudflare:hover{
  background: center right/cover no-repeat url("../resources/images/hover_cloudflare.png");
  transition: .3s;
  color: #fff;
}
.link_cloudflare:hover .btn_link{
  transition: .3s;
  color: #fff;
}
/* csp 3. public naver */
.link_naverPublic{
  background: center right/cover no-repeat url("../resources/images/link_public.png");
  transition: .3s;
  cursor: pointer;
}
.link_naverPublic:hover{
  background: center right/cover no-repeat url("../resources/images/hover_public.png");
  transition: .3s;
  color: #fff;
}
.link_naverPublic:hover .btn_link{
  transition: .3s;
  color: #fff;
}
/* csp 4. scs */
.link_scs{
  background: center right/cover no-repeat url("../resources/images/link_scs.png");
  transition: .3s;
  cursor: pointer;
}
.link_scs:hover{
  background: center right/cover no-repeat url("../resources/images/hover_scs.png");
  transition: .3s;
  color: #fff;
}
.link_scs:hover .btn_link{
  transition: .3s;
  color: #fff;
}


/* content event */
.event_banner{
  margin: 0 auto;
  width: 1200px;
  height: 217px;
  border-radius: 10px;
  background: center/cover no-repeat url("../resources/images/event_bg.png");
  text-align: center;
  position: relative;
  margin-top: 106px;
}
@media (min-width:1024px) and (max-width:1280px){
  .event_banner{
    width: 1000px;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .event_banner{
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width:768px){
  .event_banner{
    width: 100%;
    height: 150px;
    margin-top: 60px;
    border-radius: 0;
  }
}
.event_banner article{
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width:768px) and (max-width:1023px) {
  .event_banner article{
    font-size: 30px;
    width: 100%;
  }
}
@media (max-width:768px){
  .event_banner article{
    font-size: 22px;
    width: 100%;
  }
}
.btn_white{
  display: block;
  background-color: #fff;
  padding: 18px 80px;
  color: #4E5BEF;
  border-radius: 30px;
  margin: 0 auto;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width:768px) and (max-width:1023px){
  .btn_white{
    padding: 15px 60px;
  }
}
@media (max-width:768px){
  .btn_white{
    font-size: 14px;
    padding: 10px 45px;
    margin-top: 20px;
  }
}
.btn_white:hover{
  box-shadow: 0 0 18px #fff;
}

/* customer slider */
.customer_logos{
  width: 1200px;
  margin: 0 auto;
  margin-top: 120px;
}
@media (min-width:1024px) and (max-width:1280px){
  .customer_logos{
    width: 1000px;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .customer_logos{
    width: 100%;
    padding: 0 30px;
  }
}
@media (max-width:768px) {
  .customer_logos{
    width: 100%;
    padding: 0 26px;
    margin-top: 60px;
  }
}

.slider_wrap{
  width: 100%;
  height: 115px;
  overflow-y: hidden;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width:480px) {
  .slider_wrap{
    height: 161px;
  }
}
.slider_wrap img{
  display: inline;
}
@media (min-width:481px) and (max-width:756px) {
  .slider_wrap img{
    width: 33%;
    height: auto;
  }
  .slider_wrap img:nth-child(4){
    display: none;
  }
  .slider_wrap img:last-child{
    display: none;
  }
}
@media (max-width:480px) {
  .slider_wrap img{
    width: 50%;
  }
  .slider_wrap img:last-child{
    display: none;
  }
}

/* content contact info & bank account */
.contact_bankacc{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}
@media (min-width:1024px) and (max-width:1280px){
  .contact_bankacc{
    width: 1000px;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .contact_bankacc{
    width: 100%;
    padding: 0 30px;
    display: block;
  }
}
@media (max-width: 768px){
  .contact_bankacc{
    width: 100%;
    padding: 0 26px;
    display: block;
    margin-top: 60px;
  }
}
.contact_info{
  width: 587px;
  height: 145px;
  border-radius: 10px;
  background: #F1F5FF;
  padding: 34px 0;
}
@media (min-width:1024px) and (max-width:1280px){
  .contact_info{
    width: 49%;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .contact_info{
    width: 100%;
    height: auto;
    background: none;
    padding: 0;
  }
}

@media (max-width: 768px){
  .contact_info{
    width: 100%;
    height: auto;
    padding: 0 22px;
    background: none;
  }
}
.contact_txt{
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media (max-width:768px){
  .contact_txt{
    font-size: 18px;
  }
}

.contact_btn{
  width: 210px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 20px;
}
.contact_btn button{
  width: 38px;
  height: 38px;
  border-radius: 20px;
}
/* telegram */
.btn_telegram{
  background: center/cover no-repeat url("./resources/ico/ico_telegram.png");
  transition: .3s;
  position: relative;
}
.btn_telegram:hover{
  box-shadow: 0 0 8px #33A8DA;
}
.tooltip_telegram{
  visibility: hidden;
  position: absolute;
  top: 50px;
  left: -40px;
  background-color: #33A8DA;
  box-shadow: 0 0 8px #33A8DA;
  border-radius: 20px;
  padding: 5px 0;
  width: 120px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  z-index: 300;
}
.btn_telegram:hover .tooltip_telegram{
  visibility: visible;
}
/* email */
.btn_email{
  background: center/cover no-repeat url("../../resources/ico/ico_mail.png");
  transition: .3s;
  position: relative;
}
.btn_email:hover{
  box-shadow: 0 0 8px #4E5BEF;
}
.tooltip_email{
  visibility: hidden;
  position: absolute;
  top: 50px;
  left: -40px;
  background-color: #4E5BEF;
  box-shadow: 0 0 8px #4E5BEF;
  border-radius: 20px;
  padding: 5px 0;
  width: 120px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  z-index: 300;
}
.btn_email:hover .tooltip_email{
  visibility: visible;
}
/* zendisk */
.btn_zendisk{
  background: center/cover no-repeat url("../resources/ico/ico_zendisk.png");
  transition: .3s;
  position: relative;
}
.btn_zendisk:hover{
  box-shadow: 0 0 8px #03363D;
}
.tooltip_zendesk{
  visibility: hidden;
  position: absolute;
  top: 50px;
  left: -40px;
  background-color: #03363D;
  box-shadow: 0 0 8px #03363D;
  border-radius: 20px;
  padding: 5px 0;
  width: 120px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  z-index: 300;
}
.btn_zendisk:hover .tooltip_zendesk{
  visibility: visible;
}

/* 내 IP찾기 */
.btn_ip{
  background: center/cover no-repeat url("../resources/ico/ico_ip.png");
  transition: .3s;
  position: relative;
}
.btn_ip:hover{
  box-shadow: 0 0 8px #325BC5;
}
.tooltip_ip{
  visibility: hidden;
  position: absolute;
  top: 50px;
  left: -25px;
  background-color: #325BC5;
  box-shadow: 0 0 8px #325BC5;
  border-radius: 20px;
  padding: 5px 0;
  width: 90px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  z-index: 300;
}
.btn_ip:hover .tooltip_ip{
  visibility: visible;
}



.bank_account{
  width: 587px;
  height: 145px;
  border-radius: 10px;
  background: #F1F5FF;
  padding: 34px 0;
  text-align: center;
}
@media (min-width:1024px) and (max-width:1280px){
  .bank_account{
    width: 49%;
  }  
}
@media (min-width:768px) and (max-width:1023px) {
  .bank_account{
    width: 100%;
    margin-bottom: 120px;
  }
}
@media (max-width:768px) {
  .bank_account{
    width: 100%;
    height: 117px;
    padding: 22px;
    margin-bottom: 60px;
  }
}
.acc_wrap{
  margin: 0 auto;
  width: fit-content;
  display: flex;
}
@media (max-width:768px) {
  .acc_wrap{
    display: block;
  }
}
.woori_logo img{
  width: 148px;
}
@media (max-width:768px) {
  .woori_logo img{
    width: 110px;
  }
}
.acc_number{
  font-size: 20px;
  color: #393939;
  text-align: left;
  margin-left: 24px;
  line-height: 200%;
}
@media (max-width:768px) {
  .acc_number{
    font-size: 16px;
    margin-left: 0;
    line-height: 150%;
    text-align: center;
  }
}
.font_large{
  font-size: 32px;
  font-weight: 600;
}
@media (max-width:768px) {
  .font_large{
    font-size: 22px;
  }
}

/* ------------------- footer ------------------- */
footer{
  width: 100%;
  padding: 34px 0;
  border-top: 1px solid #F0F0F0;
  margin-top: 120px;
  color: #777777;
}
@media (min-width:768px) and (max-width:1023px) {
  footer{
    width: 100%;
    padding: 26px 30px;
  }
}
@media (max-width:768px){
  footer{
    width: 100%;
    padding: 26px;
    margin-top: 60px;
  }
}

.footer_info{
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width:1024px) and (max-width:1280px){
  .footer_info{
    width: 1000px;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .footer_info{
    width: 100%;
  }
}

@media (max-width:768px){
  .footer_info{
    width: 100%;
    display: block;
    text-align: center;
    font-size: 10px;
  }
}
.solcloud_logo{
  margin-bottom: 8px;
}
.copyright{
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}


/* --------------fixed button ------------------- */
.fixed_btn{
  position: fixed;
  right: 45px;
  bottom: 30px;
  cursor: pointer;
}
@media (min-width:1024px) and (max-width:1280px){
  .fixed_btn{
    right: 25px;
    bottom: 60px;
  }
}
@media (max-width:768px) {
  .fixed_btn{
    display: none;
  }
}
.fixed_btn:hover{
  transform: scale(1.1);
  transition: .3s;
}

/* ---------- 커스텀 셀렉트 박스 추가 -------------*/
.select_wrap{
  width: 180px;
  margin: 15px auto;
  position: relative;
  user-select: none;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.select_wrap .default_option{
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.select_ul{
    border: 1px solid #ddd;
}
.select_wrap .default_option li{
    padding: 10px 20px;
}

.select_wrap .default_option:before{
    content: "";
    position: absolute;
    top: 13px;
    right: 18px;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent #555555 #555555;
    transform: rotate(-45deg);
}

.select_wrap .select_ul{
  position: absolute;
  top: -87px;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  display: none;
}

.select_wrap .select_ul li{
  padding: 10px 20px;
  cursor: pointer;
}

.select_wrap .select_ul li:first-child:hover{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover{
  background: #4E5BEF;
  color: #fff;
}

.select_wrap .option{
  display: flex;
  align-items: center;
}

.select_wrap.active .select_ul{
  display: block;
}

.select_wrap.active .default_option:before{
  top: 20px;
  transform: rotate(-225deg);
}