/**=================================================================
 * Variables
 =================================================================*/
:root{
	--background-color-white: #fff;
	--background-color-blue: #92f9f3;
	--background-color-lightblue: #e8f9f9;
	--background-color-yellow: #f9f88a;
	--background-color-pink: #f9b8d9;
	
	--font-color-black: #000000;
	--font-color-grey: #444;
	--font-color-white: #fff;
	
	--time-general-transition: 0.3s;
}

/**=================================================================
 * Font
 =================================================================*/
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/centurygothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/centurygothic_bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Freude';
  src: url('../fonts/Freude.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/**=================================================================
 * Reset
 =================================================================*/
body {
	padding:0;
}
h1, h2, h3, h4, h5, h6	{
	font-weight:normal;
	margin-bottom:0;
	padding-bottom:0;
}
p {
	margin-bottom:0;
	padding-bottom:0;
}
ul, ol {
	padding-left:0;
	list-style:none;
}
a {
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}

/**=================================================================
 * Default
 =================================================================*/
body{
	font-family: "Century Gothic", sans-serif;
	font-optical-sizing: auto;
	font-size: 22px;
	color: var(--font-color-black);
	background:url(../images/Background.png) no-repeat top center;
	background-size:cover;
}

/**=================================================================
 * Common Classes
 =================================================================*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/**=================================================================
 * Preload
 =================================================================*/
#preload-images {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/**=================================================================
 * Animation
 =================================================================*/
@keyframes bubbleIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
	opacity: 1;
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
/**=================================================================
 * header
 =================================================================*/
header{
	padding: 80px 80px;
	text-align:right;
}

@media (min-width:768px) and (max-width:991px){
	header {
		padding:40px;
	}
}
@media (max-width:767px){
	header {
		padding:20px;
	}
	header img {
		width:140px;
	}
}

/**=================================================================
 * .heading
 =================================================================*/
.heading {
	text-align:center;
}
.heading .image_wrap {
	margin-bottom:120px;
}
.heading .image_wrap img {
	max-width:100%;
}
.heading h1 {
	font-family: "Freude", sans-serif;
	color: var(--font-color-black);
	max-width:1000px;
	margin:0 auto 40px;
}
.heading .paragraph {
	font-family: "Freude", sans-serif;
	color: var(--font-color-black);
	font-size:32px;
	max-width:1000px;
	margin:0 auto 0px;
	line-height: 1.2em;
}
@media (min-width:992px) and (max-width:1199px){
	.heading .image_wrap img{
		width:600px;
	}
}
@media (min-width:768px) and (max-width:991px){
	.heading .image_wrap {
		margin-bottom:50px;
	}
	.heading .image_wrap img{
		width:400px;
	}
	.heading h1{
		font-size:36px;
	}
	.heading .paragraph {
		font-size:28px;
	}
}
@media (max-width:767px){
	.heading .image_wrap {
		margin-bottom:30px;
	}
	.heading .image_wrap img{
		width:300px;
	}
	.heading h1{
		font-size:28px;
	}
	.heading .paragraph {
		font-size:22px;
	}
}

/**=================================================================
 * .steps
 =================================================================*/
.steps {
	padding:80px 0;
}
.steps .steps_wrap {
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap: 50px;
}
.steps .steps_wrap .step {
	padding:40px 20px;
	background:var(--background-color-blue);
}
.steps .steps_wrap .step h2 {
	font-family: "Freude", sans-serif;
	color: var(--font-color-black);
	font-size:26px;
	font-weight:bold;
	margin-bottom:20px;
	text-align:center;
}
.steps .steps_wrap .step .inner {
	font-size:24px;
	text-align:center;
	padding:20px 40px;
	background:var(--background-color-white);
	line-height:1.3em;
	min-height:200px;
}

@media (min-width:992px) and (max-width:1199px){
	.steps .steps_wrap .step h2 {
		min-height:63px;	
	}
	.steps .steps_wrap {
		gap:20px;	
	}
	.steps .steps_wrap .step .inner {
		padding:20px;
	}
}
@media (min-width:768px) and (max-width:991px){
	.steps .steps_wrap {
		gap:20px;	
		grid-template-columns:1fr;
	}
	.steps .steps_wrap .step .inner {
		padding:20px;
		min-height: auto;
	}
}
@media (max-width:767px){
	.steps {
		padding:40px 0;
	}
	.steps .steps_wrap {
		gap:20px;	
		grid-template-columns:1fr;
	}
	.steps .steps_wrap .step .inner {
		padding:20px;
		min-height: auto;
		font-size:22px;
	}
}

/**=================================================================
 * .carousel
 =================================================================*/
.carousel {
	position:relative;
	padding:80px 0;
}
.carousel h2 {
	font-size:60px;
	font-family: "Freude", sans-serif;
	color: var(--font-color-black);
	font-weight:bold;
	margin-bottom:100px;
	text-align:center;
}
.carousel .glide {
	width: calc(100% - 40px);
}
.carousel .glide__slide .slide_inner {
	text-align:center;
}
.carousel .glide__slide .slide_inner .icon_wrap {
	margin-bottom:20px;
}
.carousel .glide__slide .slide_inner .icon_wrap img{
	height:42px;
}
.carousel .glide__slide .slide_inner h3 {
	font-family: "Freude", sans-serif;
	color: var(--font-color-black);
	font-weight:500;
	margin-bottom:20px;
}
.carousel .glide__slide .slide_inner .quotation {
	padding: 0 50px;
    font-weight: 500;
    font-size: 22px;
	font-family: "Freude", sans-serif;
	line-height:1.2em;
	height:170px;
	display:grid;
	grid-template-columns:1fr;
	align-items:center;
}
.carousel .glide__slide .slide_inner .quotation span{
	display:block;
	transform: translateY(-10px);
}
.carousel .glide__slide .slide_inner .quotation .triangle-down{
	display:none;
}
.carousel .glide__slide .slide_inner .description {
	padding:20px 60px;
	font-size:20px;
	color: var(--font-color-black);
	min-height:160px;
}
.carousel .glide__slide .slide_inner .button_wrap button {
	background:url(../images/Button-Select.png) no-repeat center center;
	background-size:contain;
	padding:10px;
	color:var(--font-color-black);
	font-weight:500;
	font-family: "Freude", sans-serif;
	display:block;
	border: 0;
    width: 248px;
    height: 53px;
    line-height: 38px;
    margin: 0 auto;
	position:relative;
}
.carousel .glide__slide .slide_inner .button_wrap button:hover{
	text-decoration:none;
}
.carousel .glide__slide .slide_inner .button_wrap button:active{
	background:url(../images/Button-Select-Pressed.png) no-repeat center center;
	background-size:contain;
	text-decoration:none;
	top:1px;
	left:1px;
}

.carousel .glide__slide .slide_inner .quotation.real_talk_mom {
	background:url(../images/Bubble-RealTalkMom.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.corporate_warrior {
	background:url(../images/Bubble-CorporateWarrior.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.roast_master {
	background:url(../images/Bubble-RoastMaster.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.nostalgia {
	background:url(../images/Bubble-RealTalkMom.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.karaoke_queen {
	background:url(../images/Bubble-KaraokeQueen.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.warm_and_fuzzy {
	background:url(../images/Bubble-WarmFuzzy.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.book_worm {
	background:url(../images/Bubble-BookWorm.png) no-repeat center center;
	background-size: contain;
}
.carousel .glide__slide .slide_inner .quotation.chill_yogi {
	background:url(../images/Bubble-ChillYogi.png) no-repeat center center;
	background-size: contain;
}

.carousel .glide__arrow {
	border:0;
	position:absolute;
	top:300px;
	background:transparent;
	width:50px;
	height:50px;
}
.carousel .glide__arrow.glide__arrow--left {
	left:-20px;
	background:url(../images/Arrow-Left.png) no-repeat center center;
}
.carousel .glide__arrow.glide__arrow--left:active{
	background:url(../images/Arrow-Left-Pressed.png) no-repeat center center;
}
.carousel .glide__arrow.glide__arrow--right {
	right:-20px;
	background:url(../images/Arrow-Right.png) no-repeat center center;
}
.carousel .glide__arrow.glide__arrow--right:active{
	background:url(../images/Arrow-Right-Pressed.png) no-repeat center center;
}

@media (min-width:768px) and (max-width:991px){
	.carousel h2 {
		font-size:36px;
		margin-bottom: 40px;
	}
	.carousel .glide {
		width:100%;
	}
	.carousel .glide__slide .slide_inner .quotation {
		width:392px;
		height:173px;
		margin:0 auto;
	}
}
@media (min-width:500px) and (max-width:767px){
	.carousel h2 {
		font-size:32px;
		margin-bottom: 30px;
	}
	.carousel .glide {
		width:100%;
	}
	.carousel .glide__slide .slide_inner .quotation {
		width:392px;
		height:173px;
		margin:0 auto;
	}
	.carousel .glide__arrow.glide__arrow--left {
		left:0;	
	}
	.carousel .glide__arrow.glide__arrow--right {
		right:0;	
	}
}
@media (max-width:499px){
.carousel h2 {
		font-size:32px;
		margin-bottom: 30px;
	}
	.carousel .glide {
		width:100%;
	}
	.carousel .glide__slide .slide_inner .quotation {
		background-image:none !important;
		margin: 40px auto 20px;
		position:relative;
		height:auto;
	}
	.carousel .glide__slide .slide_inner .quotation span:first-of-type {
		border-radius: 80px;
    	padding: 20px;
	}
	.carousel .glide__slide .slide_inner .quotation .triangle-down{
		display:block;
		width: 0;
		height: 0;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		border-top: 12px solid transparent; /* triangle color */
		position:absolute;
		bottom:-10px;
		left: calc(50% + 30px);
	}
	.carousel .glide__slide .slide_inner .quotation.real_talk_mom span:first-of-type {
		background-color:#F9F88A;
	}
	.carousel .glide__slide .slide_inner .quotation.corporate_warrior span:first-of-type {
		background-color:#92F9F3;
	}
	.carousel .glide__slide .slide_inner .quotation.roast_master span:first-of-type {
		background-color:#F98DC1;
	}
	.carousel .glide__slide .slide_inner .quotation.nostalgia span:first-of-type {
		background-color:#F9F88A;
	}
	.carousel .glide__slide .slide_inner .quotation.karaoke_queen span:first-of-type {
		background-color:#BD7DD1;
	}
	.carousel .glide__slide .slide_inner .quotation.warm_and_fuzzy span:first-of-type {
		background-color:#F9F88A;
	}
	.carousel .glide__slide .slide_inner .quotation.book_worm span:first-of-type {
		background-color:#5EECF9;
	}
	.carousel .glide__slide .slide_inner .quotation.chill_yogi span:first-of-type {
		background-color:#BD7DD1;
	}
	
	.carousel .glide__slide .slide_inner .quotation.real_talk_mom span.triangle-down {
		border-top-color:#F9F88A;
	}
	.carousel .glide__slide .slide_inner .quotation.corporate_warrior span.triangle-down {
		border-top-color:#92F9F3;
	}
	.carousel .glide__slide .slide_inner .quotation.roast_master span.triangle-down {
		border-top-color:#F98DC1;
	}
	.carousel .glide__slide .slide_inner .quotation.nostalgia span.triangle-down {
		border-top-color:#F9F88A;
	}
	.carousel .glide__slide .slide_inner .quotation.karaoke_queen span.triangle-down {
		border-top-color:#BD7DD1;
	}
	.carousel .glide__slide .slide_inner .quotation.warm_and_fuzzy span.triangle-down {
		border-top-color:#F9F88A;
	}
	.carousel .glide__slide .slide_inner .quotation.book_worm span.triangle-down {
		border-top-color:#5EECF9;
	}
	.carousel .glide__slide .slide_inner .quotation.chill_yogi span.triangle-down {
		border-top-color:#BD7DD1;
	}
	
	.carousel .glide__slide .slide_inner .description {
		padding: 0px 60px 20px;
	}
	.carousel .glide__arrow.glide__arrow--left {
		left:0;	
	}
	.carousel .glide__arrow.glide__arrow--right {
		right:0;	
	}
}

/**=================================================================
 * .chat
 =================================================================*/
.chat {
	position:relative;
	padding:80px 0;
	transition:opacity 0.3s ease;
}
.chat h2 {
	font-size:60px;
	font-family: "Freude", sans-serif;
	color: var(--font-color-black);
	font-weight:bold;
	margin-bottom:50px;
	text-align:center;
}
.chat .chat_wrap {
	padding:30px;
	border-radius:20px;
	background:var(--background-color-lightblue);
	height: calc(100vh - 58px);
	position:relative;
	overflow: hidden;
}
.chat .chat_wrap .cover {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:grid;
	grid-template-columns:1fr;
	align-items:center;
	text-align:center;
	border-radius:20px;
	background:rgba(0,0,0,0.7);
	z-index: 1;
}
.chat .chat_wrap .cover p {
	font-size:60px;
	font-family: "Freude", sans-serif;
	color: var(--font-color-white);
	font-weight:600;
}
.chat .chat_wrap .chat_wrap_chat {
	padding-bottom:40px;
	height: calc(100% - 120px);
    overflow-y: auto;
	overflow-x: hidden;
	padding-right:10px;
}

.chat .chat_wrap .chat_wrap_chat .bubble_wrap {
	margin-bottom:20px;
}
.chat .chat_wrap .chat_wrap_chat .bubble_wrap>a img{
	width: 20px;
    margin-left: 10px;
    margin-top: 10px;
}
.chat .chat_wrap .chat_wrap_chat .bubble {
	padding:10px 30px;
	border-radius:30px;
	opacity: 0;
	transform: scale(0.8);
	transition: none;
	max-width: 80%;
	font-size: 18px;
}
.chat .chat_wrap .chat_wrap_chat .bubble.animate{
	animation: bubbleIn 0.3s ease-out forwards;
	transform-origin: bottom left;
}
.chat .chat_wrap .chat_wrap_chat .bubble.gpt {
	float:right;
	background:var(--background-color-yellow);
}
.chat .chat_wrap .chat_wrap_chat .bubble.user {
	float:left;
	background:var(--background-color-pink);
}
.chat .chat_wrap .chat_wrap_chat .bubble.user.highlight {
	background:var(--background-color-blue);
}
.chat .chat_wrap .input_area {
	display:grid;
	grid-template-columns:auto 140px;
	align-items:center;
	margin-bottom: 10px;
}
.chat .chat_wrap .input_area .input textarea{
	border: 1px solid #bd7dd1;
    border-radius: 10px;
    width: 100%;
	outline: none;
    text-indent: 5px;
}
.chat .chat_wrap .input_area .input textarea:focus{
	border-color: #5ab0ff;
  	box-shadow: 0 0 10px #5ab0ff;
}
.chat .chat_wrap .input_area .button .send_button{
	color: var(--font-color-black);
	font-family: "Freude", sans-serif;
	font-weight:500;
	text-decoration:none;
	display: inline-block;
    text-align: center;
	background:url(../images/Button-Send.png) no-repeat center center;
	background-size:cover;
	height: 42.75px;
    width: 115.5px;
    line-height: 45px;
	border: 0;
	position:relative;
}
.chat .chat_wrap .input_area .button .send_button span {
	display:none;
}
.chat .chat_wrap .input_area .button .send_button span.shown {
	display:inline;
}
.chat .chat_wrap .input_area .button .send_button span .spinner {
	width: 22px;
	height: 22px;
	margin-left: 8px;
	animation: rotate 1s linear infinite;
	margin-bottom: 6px;
}

.chat .chat_wrap .input_area .button .send_button span .spinner .path {
  stroke: black;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.chat .chat_wrap .input_area .button {
	padding-left:10px;
}
.chat .chat_wrap .input_area .button .send_button:active{
	text-decoration:none;
	background:url(../images/Button-Send-Pressed.png) no-repeat center center;
	background-size:cover;
	top:1px;
	left:1px;
}

.chat .chat_wrap .button_area .button {
	color: var(--font-color-black);
	font-family: "Freude", sans-serif;
	font-weight:500;
	text-decoration:none;
	display: inline-block;
    text-align: center;
	background:url(../images/Button-StartOver.png) no-repeat center center;
	background-size:cover;
	width: 198.4px;
    height: 46px;
    line-height: 45px;
	border: 0;
	position:relative;
}
.chat .chat_wrap .button_area .button:active {
	background:url(../images/Button-StartOver-Pressed.png) no-repeat center center;
	background-size:cover;
	top:1px;
	left:1px;
}
.chat .chat_wrap .button_area .button.cancel_edit_button {
	display:none;
}
.chat .chat_wrap .button_area .button.cancel_edit_button.shown {
	display:inline-block;
}
.chat .chat_wrap .button_area .button span {
	display:none;
}
.chat .chat_wrap .button_area .button span.shown {
	display:inline;
}

.chat .bottom_buttons {
	display:grid;
	grid-template-columns:repeat(3, auto);
	justify-content:end;
	align-items:center;
    gap: 20px;
    padding-top: 10px;
}
.chat .bottom_buttons img {
	height:42px;
}
.chat .bottom_buttons a {
	color: var(--font-color-black);
	text-decoration:none;
}
.chat .bottom_buttons a:hover {
	text-decoration:none;
	color:var(--font-color-grey);
}

@media (min-width:768px) and (max-width:991px){
	.chat h2 {
		font-size:36px;
	}
	.chat .chat_wrap .cover p {
		font-size:32px;
	}
}
@media (min-width:500px) and (max-width:767px){
	.chat h2 {
		font-size:32px;
	}
	.chat .chat_wrap {
		padding:20px;
		height: calc(100vh - 93px);
	}
	.chat .chat_wrap .cover p {
		font-size:28px;
	}
	.chat .chat_wrap .input_area {
		grid-template-columns: auto 105px;
	}
	.chat .chat_wrap .input_area .button .send_button {
		height: 34.8px;
	    width: 92.4px;
	    line-height: 37px;
	}
	.chat .bottom_buttons {
		grid-template-columns: repeat(3, 1fr);
		text-align:center;
	}
	.chat .bottom_buttons img {
		height:30px;
		display:block;
		margin:0 auto 5px;
	}
	.chat .bottom_buttons a {
		font-size:16px;
	}
	.chat .bottom_buttons span {
		font-size:16px;
	}
	.chat .chat_wrap .button_area .button {
		width:148.8px;
		height:35.4px;
		line-height: 39px;
	}
}
@media (max-width:499px){
.chat h2 {
		font-size:32px;
	}
	.chat .chat_wrap {
		padding:20px;
		height: calc(100vh - 93px);
	}
	.chat .chat_wrap .chat_wrap_chat {
		height: calc(100% - 100px);
	}
	.chat .chat_wrap .cover p {
		font-size:28px;
	}
	.chat .chat_wrap .chat_wrap_chat .bubble{
		font-size:16px;
		line-height:1.2em;
		padding:10px 20px;
	}
	.chat .chat_wrap .input_area {
		grid-template-columns: auto 105px;
		margin-bottom:5px;
	}
	.chat .chat_wrap .input_area .input textarea {
		font-size:16px;
	}
	.chat .chat_wrap .input_area .button .send_button {
		height: 34.8px;
	    width: 92.4px;
	    line-height: 37px;
		font-size:16px;
	}
	.chat .bottom_buttons {
		grid-template-columns: repeat(3, 1fr);
		text-align:center;
	}
	.chat .bottom_buttons img {
		height:30px;
		display:block;
		margin:0 auto 5px;
	}
	.chat .bottom_buttons a {
		font-size:16px;
	}
	.chat .bottom_buttons span {
		font-size:16px;
	}
	.chat .chat_wrap .button_area .button {
		width:144px;
		height:33px;
		line-height: 35px;
		font-size:16px;
	}
}

/**=================================================================
 * .about
 =================================================================*/
.about {
	padding:200px 0 300px;
	text-align:center;
}
.about .icon_wrap {
	margin-bottom:20px;
}
.about h2 {
	font-size:20px;
	font-weight:600;
	margin-bottom:5px;
}
.about .text {
	width:810px;
	margin:0 auto;
	font-size:20px;
}
@media (min-width:768px) and (max-width:991px){
	.about {
		padding:80px 0;
	}
	.about .text {
		width:100%;	
	}
}
@media (max-width:767px){
	.about {
		padding:50px 0;
	}
	.about .text {
		width:100%;	
	}
}

/**=================================================================
 * footer
 =================================================================*/
footer {
	padding:20px 0 120px;
}
footer p {
	font-size:14px;
}

@media (min-width:768px) and (max-width:991px){
	footer {
		padding-bottom:60px;
	}
}
@media (max-width:767px){
	footer {
		padding-bottom:60px;
	}
}

/**=================================================================
 * Misc
 =================================================================*/

/* For WebKit browsers */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}

/* Modals */
#share_modal .modal-body>ul {
	list-style: none; 
	padding: 0; 
	margin: 0;
}
#share_modal .modal-body>ul>li {
	margin-bottom: 0.75rem;
}