:root 
{
    --main-color: #003D8F;
    --point-color: #427CE8;
    --subTitleText-color: #767676;
    --background-gray1 : #F7F7FB;
    --background-deppgray: #f1f1f5;
    --banner-title : 85px;
    --title : 42px;
    --subTitleText : 24px;
    --list-subTitleText : 18px;
    --btn-font: 14px;
    --menu-font: 16px;
    --font-24:24px;
}
.letterSpcing{
	letter-spacing: 0px !important;
}

body 
{
    display: flex;
    justify-content: center;
}


.container 
{
    width: 100%;
}


/* section */

section
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px 0;
    padding:120px 0;
}

.section.five
{
    padding-bottom: 150px;
}
.sectionBackground {
	position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
   /* background: url(../../images/abstract-blue-background-with-dynamic-shape.jpg);*/
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.5;
    
}
.sectionBackground video{
	width: 100%;
		
}
section .sectionWrap 
{
    width: calc((1400 / 1920) * 100%);
    display: flex;
    align-items: center;
    gap:0 5%;
}
.sectionWrap.one{
	display: flex;
	flex-direction: column !important;
}
section:nth-child(2n) .sectionWrap 
{
    flex-direction: row-reverse;
} 

.sectionCon.left 
{
    width:50%;
}

.sectionCon.right 
{
    width: 50%;
}

.sectionCon.leftCon{
	width: 45%;
	
}
.sectionCon.rightCon{
	width: 55%;
    display: flex;
    flex-direction: column;
	height: 60vh;
    position: relative;
	
}
.leftCon .subTitleWrap{
    border: none;
    padding: 0;
    padding-top: 48px;
}

.sectionCon img
{
    width: 100%;
    border-radius: 5px;
    
}
.sectionCon.right img{
	border-radius: 5px;
	border: solid 1px #000;
}
.label span img 
{
	width: 24px;
	height: 24px;
}

.sectionCon.left
{
    display: flex;
    flex-direction: column;
    gap:24px 0;
}

.title a
{
    font-size:var(--title);
    color: var(--main-color);
}

.dashboardTitle 
{
    font-size:48px;
    color: #222;
    padding:20px 0 100px;
    text-align: center;
}

.subTitleWrap 
{
    border-left: 4px solid #e5e5ec;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap:24px 0;
}

.subTitleWrap.one
{
    border-left: 4px solid var(--main-color);
}

.subTitle 
{
    color: #111;
    font-size: var(--subTitleText);
    letter-spacing: -1.5px;
}

.subTitleText
{
    font-size:var(--list-subTitleText);
    color: var(--subTitleText-color);
    line-height:1.5;
    font-weight: 400;
    letter-spacing: -1.5px;
}
.BtnWarp{
	display: flex;
    align-items: center;
    gap: 0 24px;

}
.BtnWarp a{
	color: #fff;
	font-weight: 500;
}
.BtnWarp p {
	position: absolute;
    font-size: var(--list-subTitleText);
    left: 24px;
    font-weight: 400;
}
.BtnWarp img{
	width: 10px;
	position: absolute;
	right : 24px;
	
}
.BtnWarp .Btn{
	position: relative;
	padding: 24px 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 12px;
    cursor: pointer;
    font-size: var(--btn-font);
    background-color:var(--main-color);
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.3s;
}
.BtnWarp .Btn:hover{
	background-color: #000;
}
/* ===== section one : banner ===== */
section.one 
{
    margin-top: 90px;
    background: #f7f7fb;

}
section.two{
	gap:120px 0;
}
section.one.banner{
	width: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
	/*height: 100vh;*/
	background: url(../../images/background.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
	
}
section.one.banner .BannerVideoWrap{
	width: 100%;
	height: 100%;
	display: flex;
	gap : 0 40px;
	justify-content: center;
	align-items: center;
}
.BannerVideoWrap .videoright{
	width: 25%;
    height: 80%;
    background-color: blue;
    background: url(../../images/plantpulsemain.png);
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    border-radius: 0 20px 20px 0 ;
}
.BannerVideoWrap .videomiddle{
	width: 50%;
	height: 100%;
	background-color: white;
	display: flex;
	padding:24px;
	border-radius: 20px;
	box-shadow: 0px 0px 12px 0px rgb(236 236 236);
	position: relative;
}
.videomiddle video{
	width: 100%;
  	height: 100%;
  	object-fit: cover; /* 부모 크기에 맞추면서 꽉 채우기 */
  	border-radius: 10px;
}
.right video,
.left video
{
	width: 100%;
  	height: 100%;
  	object-fit: cover; /* 부모 크기에 맞추면서 꽉 채우기 */
  	
}

.right video,
.left video{
	border-radius: 5px;
	border: solid 1px #000;
}
.BannerVideoWrap .videoleft{
	width: 25%;
    height: 80%;
    background-color: blue;
    background: url(../../images/timeserise.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    border-radius: 20px 0 0 20px;
}

.dashboardTitle 
{
    font-size: var(--title);
    color: #222;
    padding:20px 0;
    text-align: center;
}

section.one .title a
{
    font-size:56px;
    color: var(--main-color);
}


.section.one .subTitleWrap 
{
    border: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    align-items: center;
    justify-content: center;

}

section.one .subTitleText
{
    font-size: var(--list-subTitleText);
    color: #767676;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: -1.2px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:12px 0;
}

section.one .subTitleText span{
	text-align: center;
	
}
.sectionCon.bannerTitle{
	display: flex;
	align-items: center;
	justify-content: center;
}
.bannerTitle{
	width: 100% !important;
}
.bannerTitle h5, .bannerTitle div{
	width: 100%;
}

.BannerBtn a{
	color:var(--main-color);
	font-size: var(--subTitleText);
}

.section.antherone{
	height: 80vh;
	margin-top: 120px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-color: #f7f7fb;
    padding: 120px 0 120px 0;
}
.antherone .sectionWrap{
	height: 80%;
}
.sectionCon.leftCon .title a {
	color : #111;
}
.ContentWarp{
    display: flex;
    position: relative;
    width: calc((1400 / 1920)* 100%);
    justify-content: center;
    align-items: center;
    height: 100%;
    box-shadow: 0px 0px 10px 0px rgb(230 230 230);
    border-radius: 13px;
}
.sectionCon.rightCon .imgBox{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
}
.imgBox img{
	width: 100%;
	object-fit: cover;
}
.ContentWarp .IconBox{
	display: flex;
	position: absolute;
	justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
}
.labelWrap 
{
    position: relative;
    width: 100%;
    height: 100%;
}
.labelWrap .label[data-status="success"] {
    background-color: var(--main-color);
    background-color: rgb(0 61 143 / 70%);
}
.labelWrap .label[data-status="warning"] {
    background-color: yellow;
    background-color: rgb(255 255 0 / 70%);
}
.labelWrap .label[data-status="error"] {
    border: 1px solid #ff9999;
    background: #f6d3d3;
    background: rgb(246 211 211 / 70%);
}
.labelWrap .label[data-status="default"] {
    background-color: rgb(238, 240, 255);
    background-color: rgb(238 240 255 / 70%);
    border: 1px solid rgb(207, 212, 253);

}

.label 
{
    padding:8px;
    background: rgb(238 240 255);
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); */
    display: inline-flex;
    align-items: center;
    gap:0 8px;
    font-size: 14px;
    position: absolute;
    border: 1px solid rgb(207 212 253);
    justify-content: center;
}
/* label 위치 및 색상 잡기 :nth-child로 몇번째 블럭인지 지정
    좌측 기준으로
    123
    45
    678 이렇게 잡았습니다.
    위치 : top , left
    색깔 : background-color
*/

.label:nth-child(1) 
{ 
    top: 65%;
    left: 12%;
    /*border: 1px solid #ff9999;
    background: #f6d3d3;*/
}
.label:nth-child(2) 
{ 
    top: 7%; 
    left:36%; 
   /* border: 1px solid var(--main-color);
    background: #e2e7f5;*/
}
.label:nth-child(3) 
{ 
    top: 56%;
    left: 72%;
    border:0;
    /*background: #f23535;
    color: #fff;*/
}
.label:nth-child(4) 
{ 
    top: 24%; 
    left:0%; 
    border:0;
   /* background: var(--main-color);
    color: #fff;*/
}
.label:nth-child(5) 
{ 
    top: 14%; 
    right:0%; 
   /* border:0;
    background: rgb(207 212 253);*/
}
.Imgpadding img {
	padding: 1.5rem;
	
}
