@charset "utf-8";

:root {
  --po-color: #07C3E4;
  --po-gradi: linear-gradient(135deg, rgba(109, 167, 255, 1) 0%, rgba(33, 214, 255, 1) 50%, rgba(70, 243, 255, 1) 100%);
  --box-bg: #F2FFFF;
  --bdrs: 20px;
  --font-black: #222;
  --font-white: #fff;
  --trans: cubic-bezier(0.99, 0, 0, 0.99);
  --a-bg: #d1f8ff;
}

/* Pretendard */
/* @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard-dynamic-subset.css"); */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');


/* paperlogy */
@font-face {
  font-family: "paperlogy-L";
  src: url(../font/Paperlogy-3Light.ttf) format("truetype");
  src: url(../font/Paperlogy-3Light.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-R";
  src: url(../font/Paperlogy-4Regular.ttf) format("truetype");
  src: url(../font/Paperlogy-4Regular.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-M";
  src: url(../font/Paperlogy-5Medium.ttf) format("truetype");
  src: url(../font/Paperlogy-5Medium.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-SB";
  src: url(../font/Paperlogy-6SemiBold.ttf) format("truetype");
  src: url(../font/Paperlogy-6SemiBold.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-B";
  src: url(../font/Paperlogy-7Bold.ttf) format("truetype");
  src: url(../font/Paperlogy-7Bold.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-EB";
  src: url(../font/Paperlogy-8ExtraBold.ttf) format("truetype");
  src: url(../font/Paperlogy-8ExtraBold.ttf) format("woff");
}

@font-face {
  font-family: "aggro_B";
  src: url(../font/SB_aggro_B.ttf) format("truetype");
  src: url(../font/SB_aggro_B.ttf) format("woff");
}

@font-face {
  font-family: "aggro_M";
  src: url(../font/SB_aggro_M.ttf) format("truetype");
  src: url(../font/SB_aggro_M.ttf) format("woff");
}


/* 드래그 */
::selection {
  background-color: var(--a-bg);
  color: var(--po-color);
}


* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'paperlogy-R', sans-serif;
  /* font-weight: 500; */
  font-size: 1.8rem;
  color: var(--font-black);
  cursor: default;
  /*   overflow-x: hidden; */
}

input:focus,
textarea,
button,
a,
select {
  outline-color: var(--po-color);
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: top;
}

p,
span {
  word-break: keep-all;
  letter-spacing: -0.3px;
}

a {
  font-family: 'paperlogy-R', sans-serif;
  /* font-weight: 500; */
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--font-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  word-break: keep-all;
}

li {
  list-style: none;
}

.row_c {
  max-width: 1200px;
  min-width: 735px;
  margin: 0 auto;
}

.mt10 {
  margin-top: 10rem;
}

.mt15 {
  margin-top: 15rem;
}

/* .wrap {
  min-height: 850px;
} */

.padding_LR {
  box-sizing: border-box;
  padding: 0 20px;
}


/* 스크롤바 */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  margin: 10px 0;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--po-color);
  border-radius: 50px;
}

/* ::-webkit-scrollbar-button:vertical:start:decrement, modal_body::-webkit-scrollbar-button:vertical:start:increment{
  display: block;
  height: 15px;
}
::-webkit-scrollbar-button:vertical:end:decrement{
  display: block;
  width: 15px;
} */
/* 스크롤바 end */


.point_c {
  color: var(--po-color);
  color: #222;
}

.gray_c {
  color: #5f5f5f;
}

.diff_c {
  color: #5c5c5c;
}

.br {
  display: block;
}



/* .btn {
  border: 0;
  outline: none;
  background: #fff;
  border: 1px solid var(--po-color);
  padding: 1rem 2rem;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--po-color);
  border-radius: 8px;
  width: fit-content;
  transition: .3s ease-in-out;
}

.btn p {
  color: var(--po-color);
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  margin-top: 0 !important;
}

.btn:hover {
  background: var(--po-color);
}

.btn:hover p {
  color: #fff;
} */



/* top btn */


.btns .btn.visible {
  opacity: 1;
  bottom: 3rem;
}

.btns .btn {
  cursor: pointer;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  bottom: -10rem;
  right: 3rem;
  background: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: UD 1s ease-in-out infinite;
  transition: .6s ease-in-out;
  fill: var(--po-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
}


.btns .call {
  background: #3eff5e;
}

.btns .talk {
  background: #ffe812;
}

.btns .talk img {
  width: 65%;
  margin: auto;
}

.btns .talk.visible {
  bottom: 8rem;
}



.top_btn svg {
  fill: var(--po-color);
}

.btns .call,
.btns .talk {
  display: none;
}


@keyframes LR {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes UD {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


@media screen and (max-width:500px) {
  html {
    overflow-x: hidden;
  }

  .row_c {
    min-width: 0;
  }


  .btns .btn {
    animation: none;
    width: 5rem;
    height: 5rem;
  }

  .btns .call,
  .btns .talk {
    display: flex;
  }

  .btns .call svg {
    width: 20px;
  }

  .btns .top_btn.visible {
    bottom: 15rem;
  }

  .btns .talk.visible {
    bottom: 9rem;
  }


}