@charset "UTF-8";

.footer{
padding-bottom: 56px;
}
.bottom_menu{
	background:#fff ;     
	width: 100%;
    padding: 12px 0;
    position:fixed; 
    bottom:0;
    z-index:10;
	box-shadow: 1px 0px 5px #0000001c;
    border-radius: 16px 16px 0 0;
}
.bottom_menu .bottom_1200{ 
	display: inline-flex;
	width: 100%
}
.bottom_menu .b_menu{
	width: 20%; 
	display: inline-flex;
	flex-direction: row; 
	align-items: center;
	text-align: center;    
	justify-content: center;
}

.bottom_menu .b_menu a{
	display:block;
	z-index: 2;
}
.bottom_menu .b_menu img{
	width: 18px; 
	height: 18px;
}
.bottom_menu .b_menu .fBtn_call{
	width: 24px;
    height: 18px;
}
.bottom_menu .b_menu .fBtn_form{
	margin-left: 2px;
	margin-bottom: 2px;
    width: 60%;
    height: auto;
}
.bottom_menu .b_menu span{
	font-size: 2vw;
	padding-top: 4px;
	display: block;
	color: var(--mBlk);
    font-weight: 500;
}
.b_formWrap{
	width: 22% !important;
	position: relative;
}
.b_formBtn{
	width: 68px;
    height: 68px;
	position: absolute;
	bottom: 0;
	display: flex;
	align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(0deg, #e1e1e1 10%, #fff 90%);
    bottom: 10px;
    box-shadow: -1px -2px 2px #00000012, 0 4px 12px rgba(45, 113, 236, 0.3);
}
@keyframes rotate {
    100%{
        transform: rotate( 360deg );
    }  
}
.b_formBtn:after{
	width: 62px;
    height: 62px;
    content: "";
    position: absolute;
    display: block;
    border-radius: 50%;
    background: linear-gradient(90deg, #2d71ec 20% 40%, #c0d4f9);
    animation: rotate 4s infinite;
    animation-timing-function: linear;
    z-index: 0;
}
.bottom_menu .b_menu .b_formBtn span{
	color: #fff;
}
.bottom_menu .b_formBtn a {
    width: 40px;
    height: 40px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hf_click{
	top: -10px;
    left: 90%;
	position: absolute;
	animation: form_blink 3s 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.hf_click img{
	width: 56px !important;
    height: auto !important;
	display: block;
}
@keyframes form_blink {
    0%{
    opacity: 100%;
    }
    10%{
    opacity: 70%;
    }
    15%{
    opacity: 50%;
    }
    20%{
    opacity: 20%;
    }
    30%{
    opacity: 0%;
    }
    35%{
    opacity: 20%;
    }
    40%{
    opacity: 50%;
    }
    45%{
    opacity: 70%;
    }
    50%{
    opacity: 100%;
    }
    51%{
    opacity: 100%;
    }
    60%{
    opacity: 100%;
    }
    65%{
    opacity: 100%;
    }
    70%{
    opacity: 100%;
    }
    100%{
    opacity: 100%;
    }
}

/* 반응형 */
@media all and (max-width:414px) {
	.bottom_menu .b_menu span {
    font-size: 10px;
	}
	.bottom_menu .b_formBtn a {
    width: 34px;
    height: 34px;
    position: absolute;
	}
	.b_formBtn:after {
    width: 56px;
    height: 56px;
	}
	.b_formBtn {
    width: 62px;
    height: 62px;
    bottom: 6px;
	}
	.hf_click {
    top: -16px;
    left: 78%;
	}
}