@charset "UTF-8";
/* CSS Document */

/**floating bar**/

.float-cfa{
background-color: #0066b3;
position: fixed;
bottom: 0;
width: 100%;
z-index: 10;
border-top: 1px solid #fff;
}
.cfa-row{
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
padding: 15px 0;
}
.cfa-col{
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
color: #ffffff;
}
.cfa-col:first-child{
padding-right: 25px;
}
.cfa-col:last-child{
padding-left: 25px;
border-left: 1px solid white
}
.cfa-col-img{
margin-right: 15px;
}
.cfa-col-content{
text-align: center;
font-size: 24px;
line-height: 1.2;
}
a.cfa-apply-btn{
padding: 5px 30px;
display: inline-block;
background-color: #fff;
color: #ec740a;
font-size: 18px;
border-radius: 99px;
font-weight: bold;
margin-top: 10px;
}
@media (max-width: 576px){
.cfa-col{
width: 50%;
}
.cfa-col-img{
display: none;
}
.cfa-col-content{
font-size: 18px;
}
a.cfa-apply-btn{
font-size: 16px;
}
}