
    .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

    /*=========================================
        PREMIUM ABOUT SECTION
=========================================*/

.about-section{
    position:relative;
    overflow:hidden;
    background:#ffffff;
}

.about-section .pattern-layer{
    opacity:.08;
}

.about-text{
    color:#666;
    font-size:16px;
    line-height:30px;
    margin-bottom:18px;
}

.sec-title .sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    letter-spacing:1px;
}

.sec-title .sub-title i{
    color:#0E5AF2;
}

.sec-title h2{
    font-size:48px;
    line-height:58px;
    font-weight:700;
}



/*=========================================
        FEATURE BOX
=========================================*/

.premium-feature{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:40px;
}

.feature-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:flex-start;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.feature-box:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:4px;
    height:0%;
    background:linear-gradient(180deg,#0E5AF2,#bd0c0b);
    transition:.4s;
}

.feature-box:hover:before{
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.feature-box .icon{
    min-width:65px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#bd0c0b,#25B4F8);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    margin-right:18px;
    transition:.4s;
}

.feature-box:hover .icon{
    transform:rotateY(180deg);
}

.feature-box h5{
    font-size:20px;
    margin-bottom:8px;
    font-weight:700;
}

.feature-box p{
    margin:0;
    color:#666;
    line-height:26px;
}



/*=========================================
            IMAGE BOX
=========================================*/

.image_block_one .image-box{
    position:relative;
}

.image-box figure{
    overflow:hidden;
    border-radius:20px;
}

.image-box figure img{
    width:100%;
    transition:.5s;
}

.image-box:hover figure img{
    transform:scale(1.05);
}



/*=========================================
        EXPERIENCE BOX
=========================================*/

.experience-box{
    position:absolute;
    left:25px;
    bottom:40px;
    background:#fff;
    padding:22px 35px;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    z-index:10;
}

.experience-box h2{
    font-size:52px;
    color:#0E5AF2;
    margin:0;
    line-height:1;
    font-weight:700;
}

.experience-box span{
    display:block;
    margin-top:8px;
    color:#444;
    font-weight:600;
}



/*=========================================
            COUNTER
=========================================*/

.about-counter{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:45px;
}

.counter-box{
    flex:1;
    background:#bd0c0b;
    color:#fff;
    text-align:center;
    padding:28px 20px;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.counter-box:hover{
    transform:translateY(-8px);
    background:linear-gradient(135deg,#0E5AF2,#bd0c0b);
}

.counter-box h2{
    color:#0E1D40;
    font-size:42px;
    font-weight:700;
    margin-bottom:8px;
}

.counter-box span{
    display:block;
    font-size:15px;
    line-height:24px;
}



/*=========================================
            BUTTON
=========================================*/

/* .btn-box{
    margin-top:45px;
} */

/* .theme-btn.btn-one{
    border-radius:50px;
    padding:16px 42px;
} */



/*=========================================
            IMAGE SHADOW
=========================================*/

.image-box .image{
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}



/*=========================================
        RESPONSIVE
=========================================*/

@media only screen and (max-width:1199px){

.sec-title h2{
    font-size:40px;
    line-height:50px;
}

.image_block_one .image-box{
    margin-top:60px;
}

}



@media only screen and (max-width:991px){

.content-box{
    margin-right:0!important;
}

.image_block_one{
    margin-top:70px;
}

.image-box{
    padding-left:0!important;
    margin-left:0!important;
}

.premium-feature{
    grid-template-columns:1fr 1fr;
}

.about-counter{
    flex-wrap:wrap;
}

.counter-box{
    width:100%;
}

}



@media only screen and (max-width:767px){

.sec-title h2{
    font-size:34px;
    line-height:44px;
}

.premium-feature{
    grid-template-columns:1fr;
}

.feature-box{
    padding:22px;
}

.feature-box .icon{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:22px;
}

.about-counter{
    display:block;
}

.counter-box{
    margin-bottom:20px;
}

.experience-box{
    left:15px;
    bottom:15px;
    padding:15px 22px;
}

.experience-box h2{
    font-size:36px;
}

/* .about-text{
    font-size:15px;
    line-height:28px;
} */

}



@media only screen and (max-width:480px){

.sec-title h2{
    font-size:28px;
    line-height:38px;
}

.feature-box{
    flex-direction:column;
    text-align:center;
}

.feature-box .icon{
    margin:0 auto 15px;
}

.experience-box{
    position:relative;
    left:0;
    bottom:0;
    margin-top:20px;
    display:inline-block;
}

}
