
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');
@import url('flaticon.css');
@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');
@import url('animate.css');
@import url('https://cdn.jsdelivr.net/npm/pretty-checkbox@3.0/dist/pretty-checkbox.min.css');


/**************************************
                General
**************************************/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}
body{
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
}
a,a:hover,a:focus{
    color: #2f97ee;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
.container {
    position: relative;
    max-width: 1200px;
}
main{
    overflow: hidden;
}
b, strong {
    font-weight: bold;
}
.h1, .h2, .h3, .h4, h1, h2, h3, h4{
    font-family: "Noto Sans JP",sans-serif;
    font-weight: 600;
    color: #111922;
    line-height: 1.41;
}
.sec-gap{
    padding: 100px 0;
}
/**************************************
                Helper Class
**************************************/
.section-title{
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 2.125rem;
    margin-top: -5px;
    color: #fff;
    margin-bottom: 15px;
}
.sub-title{
    font-weight: 400;
    display: inline-block;
    text-transform: capitalize;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 14px;
    position: relative;
    color: #fff;
}
.sub-title span{
    color: #2f97ee;
}
.title{
font-style: normal;
font-weight: 700;
font-size: 23px;
line-height: 30px;
text-transform: uppercase;
color: #fff;
width: 122px;
}
.dec{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #001124;
}
p{
    font-size: 14px;
    line-height: 25px;
    padding-bottom: 8px;
    margin: 0;
    color: #919191;
}

.card-title{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 0.002em;
    text-transform: uppercase;
    color: #001124;   
}

.primary-btn{ 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    padding: 11px 25px 12px;
    background-color: transparent;
    border: 1px solid;
    border-radius: 3px;
    font-style: normal;
    position: relative;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Noto Sans JP",sans-serif;
    line-height: normal;
    color: #fff;
    outline: none;
    transition: all .5s ease 0s;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
}
.primary-btn:before {
    content: "";
    position: absolute;
    background-color: #2f97ee;
    height: 0%;
    width: 100%;
    bottom: 0;
    top: auto;
    left: 0;
    transition: all .3s ease-in-out;
    z-index: -1;
}
.primary-btn:hover:before {
    bottom: auto;
    top: 0;
    height: 100%;
    background-color: #2f97ee;
}
.primary-btn:hover{
    border-color: #2f97ee;
    color: #fff;
}
.primary-btn.btn-style2{
    color: #000;
    border-color: #000;
}
.primary-btn.btn-style2:hover{
    border-color: #fff;
    color: #fff;
}
.bg-thm .primary-btn::before{
    background-color: #151515;
}
.bg-thm .primary-btn:hover::before{
    background-color: #151515;
}
.bg-thm .primary-btn:hover{
    border-color: #151515;
    color: #fff;
}
.secondary-btn{
display: flex;
justify-content: center;
align-items: center;
width: 175px;
height: 49px;
background: #FFFFFF;
box-shadow: 0px 11px 15px rgba(18, 81, 151, 0.25);
border-radius: 8px;
color: #125197;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
transition: all .3s;
}
.secondary-btn:hover{
    background: #125197;
box-shadow: 0px 11px 15px rgba(18, 81, 151, 0.25);
color: #fff;
}
/**************************************
                Hero Area
**************************************/
.hero-area{
    height: 600px;
    -webkit-align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-area .hero-img{
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: 50%;
    object-fit: cover;
}
.hero-area .hero-content{
    text-align: center;
    background-image: linear-gradient(180deg,hsla(0,0%,100%,0) -50%,rgba(0,0,0,.55));
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
}
.hero-content h5{
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.hero-content h1{
    font-size: 3.375rem;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
}
.hero-content p{
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 400;
    color: hsla(0,0%,100%,.71);
    margin-top: 20px;
    margin-bottom: 40px;
}
.hero-content .primary-btn{
    background-color: #2f97ee;
    border-color: #2f97ee;
    color: #fff;
}

.hero-content .primary-btn::before{
    background-color: #151515;
}
.hero-content .primary-btn:hover::before{
    background-color: #151515;
}
.hero-content .primary-btn:hover{
    border-color: #151515;
    color: #fff;
}
/* ====== About ======= */
.list li{
    position: relative;
    font-size: 14px;
    padding-bottom: 10px;
    padding-left: 25px;
    color: #fff;
    
}
.list li i{
    position: absolute;
    color: #111922;
    left: 0;
    top: 5px;
    font-size: 14px;
}
.about-img-box{
    margin-right: 40px;
    margin-left: 20px;
    padding-bottom: 60px;
    position: relative;
}
.about-img-big{

}
.about-img-small{
    margin-left: -20px;
    margin-bottom: -60px;
    margin-top: 200px;
    padding-right: 20px;
    padding-top: 20px;
    background-color: #2f97ee;
    display: inline-block;
}
.play-btn{
    margin-right: -30px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    position: absolute;
    right: 0;
    top: 50px;
}
.play-btn a{
    background-color: #2f97ee;
    padding: 20px;
    display: inline-block;
    color: #fff;
    font-size: 45px;
    line-height: 1;
}
.play-btn a i{
    color: #fff;
}
/* ===== Service ===== */
.service,.bg-gray2{
    background-color: #f7f7f7;
}

.bg-gray{
    background-color: #fff;
}
.testimonials{
    background-color: #f7f7f7;
}
.service-box{
    padding: 25px;
    background-color: #2f97ee;
    transition: all .4s;
   position: relative;
}
.service-box:hover{
    box-shadow: 0 0 16px 16px rgba(0,0,0,.02);
}
.service-head{
    display: flex;
    align-items: center;
}
i{
    color: #2f97ee;
}
.service-head i{
    font-size: 34px;
    color: #fff;
}
.service-head h3{
    font-size: 19px;
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: capitalize;
    padding-left: 15px;
    color: #fff;
}
.service-dec{
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgb(255 255 255 / 20%);
}
.service-dec p{
    color: #ddd;
    font-weight: 400;
    line-height: 26px;
    font-size: 14px;
    letter-spacing: .2px;
}
/* ===== Testimonials ===== */
.testi-box{
    background: #e9f1f8;
    padding: 40px 50px;
}
.bg-thm{
    background-color: #2f97ee !important;
}
.bg-thm .sub-title span{
    color: #111922;
}
.bman{
    bottom: -100px;
    right: -167px;
    position: absolute;
    z-index: 2;
}
.testimonial-title {
    bottom: -109px;
    color: rgba(46, 43, 43, 0.25);
    font-size: 143px;
    line-height: 143px;
    margin-bottom: 0;
    padding: 0 15px;
    position: absolute;
    vertical-align: bottom;
    word-wrap: break-word;
    right: -368px;
    z-index: 1;
    width: 383px;
}

/* ====== Service 2====== */
.service2{
    background-image: url(../img/world-map.png);
}
.service-box2{
    text-align: center;
    overflow: visible;
    background-color: #fff;
    box-shadow: 0 0 9px 0 rgba(29,33,67,.1);
    margin: 10px;
    position: relative;
}
.service-thumbnail{
    position: relative;
    overflow: hidden;
}
.service-thumbnail img{
    -moz-transform: scale(1);
			-webkit-transform: scale(1);
			-ms-transform: scale(1);
			transform: scale(1);
			width: 100%;
			-webkit-transition: all .6s ease-in-out;
			-moz-transition: all .6s ease-in-out;
			-ms-transition: all .6s ease-in-out;
			-o-transition: all .6s ease-in-out;
}
.service-box2:hover .service-thumbnail img{
    -moz-transform: scale(1.09);
				-webkit-transform: scale(1.09);
				-ms-transform: scale(1.09);
				transform: scale(1.09);
}
.service-content{
    position: relative;
    text-align: center;
    padding: 22px 15px 24px;
}
.service-title{
    position: relative;
				overflow: hidden;
				font-size: 19px;
				line-height: 30px;
				font-weight: 600;
				margin-bottom: 10px;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
}
.service-title a{
    color: #111922;
}
.service-title a:hover{
    color: #2f97ee;
}
.slick-slider .slick-arrow {
    width: 46px;
    height: 46px;
    z-index: 1;
    color: inherit;
    background-color: hsla(0,0%,100%,.07);
    box-shadow: 0 0 10px 0 rgba(0,43,92,.08);
    border: 0;
    border: 1px solid #dbdbdb;
    border-radius: 50%;
    opacity: 0;
    z-index: 11;
    overflow: hidden;
    box-shadow: unset;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.slick-slider .slick-next {
    right: 0;
    left: auto;
}
.slick-slider:hover .slick-arrow {
    opacity: 1;
    overflow: visible;
}
.slick-slider .slick-arrow:hover {
    background-color: #2f97ee;
    border-color: #2f97ee;
}
.slick-slider .slick-arrow:hover::before{
    color: #fff;
}
.slick-slider:hover .slick-arrow.slick-next{
    right: -50px;
}
.slick-slider:hover .slick-arrow.slick-prev{
    left: -50px;
}
.slick-slider .slick-next:before, .slick-slider .slick-prev:before {
    font-family: boxicons!important;
    font-size: 25px;
    line-height: 1;
    opacity: 1;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #dbdbdb;
}
.slick-slider .slick-next:before {
    content: "\ea50";
}
.slick-slider .slick-prev:before {
    content: "\ea4d";
}
.slick-slider .slick-prev {
    left: 0;
}
.client-box {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    padding: 0 30px;
    
}
.clients-logo .col-sm-4{
    border-right: 1px solid rgb(255 255 255 / 40%);
    border-bottom: 1px solid rgb(255 255 255 / 40%);
}
.clients-logo .col-sm-4:nth-child(3),
.clients-logo .col-sm-4:nth-child(6){
    border-right: 0;
}
.clients-logo .col-sm-4:nth-child(4),
.clients-logo .col-sm-4:nth-child(5),
.clients-logo .col-sm-4:nth-child(6){
    border-bottom: 0;
}

.happy-clients{
    background-image: url(../img/happy-clients-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.happy-clients::after{
    content: '';
    background-color: rgb(31 31 31 / 80%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.happy-clients .container{
    position: relative;
    z-index: 1;
}
.counter-item{
    position: relative;
    padding-left: 66px;
    border-right: 1px solid rgb(255 255 255 / 15%);
}
.row .col-lg-3:last-child .counter-item{
    border-right: 0;
}
.counter-item h4{
    margin-bottom: 0;
    font-size: 37px;
    line-height: 47px;
    color: #fff;
}
.counter-item i {
    font-size: 46px;
    line-height: 1;
    color: #2f97ee;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
}
.counter-item p{
    color: #fff;
}

hr {
    margin: 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
    border-top-color: rgb(255 255 255 / 80%);
    margin-top: 60px;
    padding-bottom: 60px;
}
.play{
    height: 50px;
    width: 50px;
    line-height: 32px;
    background-color: #2f97ee;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play i{
    color: #fff;
}

.step{
    padding: 12px 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}
.step:last-child .step-counter::before{
    height: 0;
}
.step-counter{
    vertical-align: top;
    padding-top: 4px;
    display: table-cell;
    position: relative;
}
.step-counter:before {
    content: "";
    position: absolute;
    width: 2px;
    left: 25px;
    top: 40px;
    z-index: -1;
    height: 0;
    transition: all .6s ease;
    height: 100%;
    margin-top: 20px;
    background-color: #2f97ee;
}
.step-counter:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 2px;
    left: 25px;
    top: 45%;
    z-index: -1;
    transition: all .6s ease;
}
.step-counter-box{
    line-height: 48px;
    width: 48px;
    height: 48px;
    margin-right: 40px;
    margin-top: 25px;
    transition: all .4s;
    background-color: #2f97ee;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /* counter-increment: number; */
}
.step-counter-box i {
    font-size: 18px;
    padding-bottom: 2px;
    font-weight: 500;
    font-family: "Noto Sans JP",sans-serif;
    color: #111922;
    transition: all .6s ease;
    background-color: #2f97ee;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 39%;
    left: 26%;
    line-height: 0;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    
}
.step-counter-box i:before {
    
    /* content: counter(number, decimal-leading-zero) " "; */
}
.featured-content{
    padding: 17px 30px;
    background-color: #2f97ee;
    width: 100%;
    transition: all .6s ease;
    display: table-cell;
    vertical-align: middle;
}
.featured-content:before {
    top: 55px;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: 10px solid rgba(194,225,245,0);
    border-right-color: #2f97ee;
    left: 70px;
    transition: all .5s ease;
}
.featured-title h3 {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all .6s ease;
    color: #fff;
}
.featured-content .featured-desc p {
    margin-bottom: 0;
}
/* .process .step:first-child{
    padding-top: 0;
} */
.shape{
    position: relative;
    z-index: -1;
    padding: 105px 0 245px;
    margin: -125px -230px -230px 230px;
    background-color: rgb(247 247 247 / 3%);
}
.layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.news-item{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.08);
    position: relative;
    margin: 10px;
}
.news-thumbnail{
    position: relative;
    overflow: hidden;
}
.news-thumbnail img{
    -webkit-transform: scale(1);
    transform: scale(1);
    width: 100%;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
}
.news-date{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.date{
    display: inline-block;
    padding: 20px 8px;
    z-index: 2;
    color: #fff;
    background-color: #2f97ee;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
}
.news-content{
    padding: 20px 0 20px 20px;
    width: 100%;
}
.featured-title h3 a{
    color: #111922;
}
.post-meta {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.post-meta span {
    display: inline-block;
    position: relative;
    margin-right: 20px;
    font-size: 13px;
    line-height: 13px;
    font-style: italic;
    margin-bottom: 12px;
}
.post-meta span:not(:last-child):after {
    position: absolute;
    background-color: currentColor;
    display: inline-block;
    content: "";
    background-color: #898a9c;
    width: 1px;
    height: 100%;
    border-radius: 50%;
    vertical-align: middle;
    top: 0;
    opacity: .2;
    right: -10px;
}
.post-meta span:last-child {
    margin-right: 0;
}
.link-btn{
    margin-top: 15px;
    font-size: 13px;
    display: inline-block;
    font-family: "Noto Sans JP",sans-serif;
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    transition: all .5s ease 0s;
    color: #111922;
}
.link-btn:hover{
    color: #2f97ee;
}
#contact {
    background: #2f97ee;
}
#contact .sub-title span {
    color: #fff;
}
#contact .section-title,#contact p{
    color: #fff !important;
}
/**************************************
                Footer
**************************************/
footer{
    background-color: #111922;
    padding-top: 65px;
    
}
.footer-logo{
    margin-bottom: 0px;
    max-height: 100px;
}
.footer-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
    color: #fff;
}

.contact-list li{
    margin-bottom: 15px;
}
.social {
    display: flex;
    flex-wrap: wrap;
}

footer ul li a{
    margin-bottom: 20px;
    font-style: normal;
font-weight: 500;
font-size: 15px;
line-height: 25px;
color: #919191;
mix-blend-mode: normal;
opacity: 0.8;
    display: block;
}

footer ul li a:hover{
    color: #fff;
    opacity: 1;
}
.widget-contact {
    background-color: hsla(0,0%,100%,.03);
    padding: 30px;
}
.widget-contact ul li {
    padding-left: 54px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid hsla(0,0%,100%,.06);
    color: rgb(255 255 255 / 58%);
    text-align: left;
}
.widget-contact ul li:last-child{
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.widget-contact ul li i {
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 1;
    width: 1em;
    color: #2f97ee;
    text-align: center;
    font-size: 33px;
    font-weight: 400;
}
.widget-contact ul li h3 {
    font-size: 15px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 400;
    color: #fff;
}
.widget-contact ul li a{
    margin-bottom: 0;
    color: #fff;
}
footer .top-social a i{
    color: #fff;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}
footer .top-social a:hover i{
    color: #2f97ee;
}

.copyright{
    border-top: 1px solid rgb(255 255 255 / 8%);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.copyright p{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: #919191;
text-align: center;
mix-blend-mode: normal;
    
}
.copyright a{
    color: #fff;
}
.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 1rem;
	bottom: 16rem;
	background: #00507e;
	width: 60px;
	height: 60px;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 0 rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgb(0 80 126 / 20%), 0 0 0 5px rgb(0 80 126 / 20%), 0 0 0 10px rgb(0 80 126 / 20%), 0 0 0 20px rgba(236, 139, 0, 0); } }

      .floating_btn {
        position: fixed;
        bottom: 10rem;
        right: 1rem;
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content:center;
        z-index: 1000;
      }
      
      @keyframes pulsing {
        to {
          box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
        }
      }
      
      .contact_icon {
        background-color: #42db87;
        color: #fff;
        width: 60px;
        height: 60px;
        font-size:30px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 2px 2px 3px #999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translatey(0px);
        animation: pulse 1.5s infinite;
        box-shadow: 0 0 0 0 #42db87;
        -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
        font-weight: normal;
        font-family: sans-serif;
        text-decoration: none !important;
        transition: all 300ms ease-in-out;
      }
      .contact_icon i,.call-buton .cc-calto-action-ripple i{
        color: #fff;
      }

      .Scrolltop {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-weight: 100;
        font-size: 16px;
        background-color: #2f97ee;
        color: #fff;
        z-index: 1;
        text-align: center;
        border-radius: 50%;
        transition: all .5s ease-in-out 0s;
        -webkit-animation-duration: 2s;
        animation-duration: .5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        cursor: pointer;
        box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
        opacity: 0;
        visibility: hidden;
    }
    .Scrolltop i{
        color: #fff;
    }
    .bounce {
        -webkit-animation-name: bounce;
        animation-name: bounce;
        -webkit-animation-duration: 4s;
        animation-duration: 4s;
        -moz-animation-duration: 4s;
    }
    .Scrolltop.show {
        opacity: 1;
        visibility: visible;
      }
/*********************************
      About Page
**********************************/
.inner-banner .inner-content{
    width: 100%;
    text-align: center;
    position: relative;
    padding: 55px 0;
    color: #fff;
    background-color: rgba(0,0,0,.5);
}
.inner-banner h1{
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #fff;
}
.breadcrumb-wrapper {
    color: #2f97ee;
    font-weight: 400;
    line-height: 26px;
    font-size: 14px;
    letter-spacing: .2px;
}
.breadcrumb-wrapper a,.breadcrumb-wrapper a i {
    color: #fff;
}
.breadcrumb-wrapper .bread-sep {
    font-size: 12px;
    margin: 0 4px;
    color: #fff;
}
.icon-box{
    background-color: #fff;
    color: #fff;
    border-radius: 5px;
    height: 52px;
    width: 52px;
    line-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.icon-box i{
    color: #2f97ee;
}
.form-group{
    margin-bottom: 15px;
}
.form-control{
    padding: 20px;
    font-size: 14px;
    line-height: 1.3;
    border-radius: 6px;
    color: #919191;
    border: 1px solid hsla(0,0%,46.7%,.2);
}
form .primary-btn{
    background-color: #2f97ee;
    border-color: #2f97ee;
    color: #fff;
}

form .primary-btn::before{
    background-color: #151515;
}
form .primary-btn:hover::before{
    background-color: #151515;
}
form .primary-btn:hover{
    border-color: #151515;
    color: #fff;
}

/*******************************
    Services
********************************/
.featured-imagebox-services.style1 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #fff;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}
.featured-imagebox-services.style1:hover {
    box-shadow: 0 6px 20px -2px rgb(255 255 255 / 27%);
}
.featured-imagebox .featured-thumbnail {
    position: relative;
    overflow: hidden;
}
.featured-imagebox:hover .featured-thumbnail img {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
}
.featured-imagebox .featured-thumbnail img {
    -webkit-transform: scale(1);
    transform: scale(1);
    width: 100%;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
}
.featured-imagebox-services.style1 .featured-content {
    padding: 22px 30px 30px 40px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    width: 130%;
    background-color: #fff;
}
.featured-imagebox-services.style1 .featured-content:before {
    position: absolute;
    content: "";
    top: 50px;
    left: -20px;
    z-index: 1;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 20px solid #fff;
    border-bottom: 10px solid transparent;
}
.featured-imagebox .featured-content .featured-title h3 {
    position: relative;
    overflow: hidden;
    font-size: 19px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.featured-imagebox .featured-content .featured-title h3 a{
    /* color: #000; */
}