/*--------------------------------------------------------------
# Add Styling
--------------------------------------------------------------*/
.font-14s,
p {
	font-size:1.1rem;
}

.border-white {
	border:5px solid #ffffff;
}

.btn {
	padding-left:25px;
	padding-right:25px;
}

.img-round-30 {
	border-radius:30px;
}
.img-round-50p {
	border-radius:50%;
}

.main-header-logo {
	position:absolute;
	top:0;
	left:0;
	right:0;
	width:100%;
	z-index:996;
	text-align:center;
	background-color:rgba(255,255,255,0.75);
	padding:15px 0;
}

.main-header-logo img {
	width:100%;
	max-width:360px;
	display: inline-block;
}
.hero h2 {
	font-size:8.2rem;
	font-weight:900;
	line-height:100%;
	background: linear-gradient(90deg,rgba(128, 75, 210, 1) 0%, rgba(62, 21, 199, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #ffffff;
}
.hero h3 {
	font-size:2.2rem;
	font-weight:700;
	background: linear-gradient(90deg,rgba(128, 75, 210, 1) 0%, rgba(62, 21, 199, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mode001 {
	background: #F1DCEF;
	background: linear-gradient(0deg, rgba(241, 220, 239, 1) 0%, rgba(209, 253, 254, 1) 100%);
}

.mode002 {
	background: #f1f0f7;
	background: linear-gradient(90deg, rgba(241, 240, 247, 1) 0%, rgba(250, 250, 250, 1) 100%);
}

.information {
	background: #823DFA;
	background: linear-gradient(51deg, rgba(130, 61, 250, 1) 0%, rgba(88, 48, 243, 1) 100%);
}

.application {
	background-image: url('../../assets/img/bg002.jpg');
	min-height:680px;
	background-size: cover;
	background-position: bottom center;
}

.root_daum_roughmap .cont {
	display: none;
}

.stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 1.6rem;
  font-weight:700;
  background: linear-gradient(90deg,rgba(128, 75, 210, 1) 0%, rgba(62, 21, 199, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo-img {
	width:100%;
	max-width:360px;
}

.table-div-body {
	border:10px solid #bbbbbb;
	border-radius:20px;
}

.table-div-body .table {
	margin-bottom:0px;
}


.table thead th,
.table tbody th,
.table tbody td {
	text-align: center;
	vertical-align: middle;
}

/* Mouse animation */
.mouse_scroll {
	display: block;
	margin: 0 auto;
	width: 24px;
	height: 100px;
	margin-top: -110px;
	position: relative;
	z-index:9;
}


.m_scroll_arrows
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
   
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;
  
  width: 16px;
  height: 16px;
}


.unu
{
  margin-top: 1px;
}

.unu, .doi, .trei
{
	-webkit-animation: mouse-scroll 1s infinite;
	-moz-animation: mouse-scroll 1s infinite;
	animation: mouse-scroll 1s infinite;
  
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  
  animation-direction: alternate;
  animation-delay: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .2s;
  animation-direction: alternate;
  
  margin-top: -6px;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  
  animation-delay: .3s;
  animation-direction: alternate;
  
  
  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
		  border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel{
   0% {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
  }

  100% {
	opacity: 0;
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@-o-keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}
@keyframes mouse-wheel {

   0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}


@media (max-width: 575px) {
	.font-14s,
	p {
		font-size:0.9rem;
	}
	
	.btn {
		padding-left:15px;
		padding-right:15px;
	}
	
	.img-round-30 {
		border-radius:30px;
	}
	.img-round-50p {
		border-radius:50%;
	}
	
	.main-header-logo {
		position:absolute;
		top:0;
		left:0;
		right:0;
		width:100%;
		z-index:996;
		text-align:left;
		background-color:rgba(255,255,255,0.75);
		padding:15px 0;
	}
	
	.main-header-logo img {
		width:100%;
		max-width:240px;
		display: inline-block;
		margin-left:15px;
	}
	.hero h2 {
		font-size:3.2rem;
		font-weight:900;
		line-height:100%;
		background: linear-gradient(90deg,rgba(128, 75, 210, 1) 0%, rgba(62, 21, 199, 1) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		-webkit-text-stroke-width: 3px;
		-webkit-text-stroke-color: #ffffff;
	}
	.hero h3 {
		font-size:1.2rem;
		font-weight:700;
		background: linear-gradient(90deg,rgba(128, 75, 210, 1) 0%, rgba(62, 21, 199, 1) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.hero p {
		font-size:1rem;
	}
	
	.mode001 {
		background: #F1DCEF;
		background: linear-gradient(0deg, rgba(241, 220, 239, 1) 0%, rgba(209, 253, 254, 1) 100%);
	}
	
	.mode002 {
		background: #f1f0f7;
		background: linear-gradient(90deg, rgba(241, 240, 247, 1) 0%, rgba(250, 250, 250, 1) 100%);
	}
	
	.information {
		background: #823DFA;
		background: linear-gradient(51deg, rgba(130, 61, 250, 1) 0%, rgba(88, 48, 243, 1) 100%);
	}
	
	.application {
		background-image: url('../../assets/img/bg002.jpg');
		min-height:680px;
		background-size: cover;
		background-position: bottom center;
	}
	
	.root_daum_roughmap .cont {
		display: none;
	}
	
	.about .content ul li {
		margin-bottom: 10px;
		display: flex;
		align-items: center;
	}
	
	.about .content ul strong {
		margin-right: 10px;
		width:42px;
	}
	
	.about .content ul span {
		width:calc(100% - 100px);
	}
	
	.resume h4 {
		font-size:0.9rem;
	}
	
	.stats-item p {
		padding: 0;
		margin: 0;
		color: color-mix(in srgb, var(--default-color), transparent 50%);
		font-size: 1.2rem;
		font-weight:900;
		background: linear-gradient(90deg,rgba(128, 75, 210, 1) 0%, rgba(62, 21, 199, 1) 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	
	.services .service-item {
		background-color: var(--surface-color);
		box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
		height: 100%;
		padding: 30px 15px;
		text-align: center;
		transition: 0.3s;
		border-radius: 30px;
	}	
	
	.footer-logo-img {
		width:100%;
		max-width:240px;
	}
	
	.table-div-body {
		border:3px solid #bbbbbb;
		border-radius:10px;
	}
	
	.table-div-body .table {
		margin-bottom:0px;
	}
	
	
	.table thead th,
	.table tbody th,
	.table tbody td {
		font-size:0.9rem;
	}
	
	.border-white {
		border:3px solid #ffffff;
	}
}