/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a,button{
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 1310px;
    padding: 0 15px;
	padding:0px;
	width:90%;
    margin: 0 auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.col-md-3{
    width: 25%;
    padding: 0 15px;
}
.col-md-4{
    width: 33.33%;
    padding: 0 15px;
}
.col-md-6{
    width:50%;
    padding: 0 15px;
}
.col-md-7{
    width: 58.33333333%;
    padding: 0 15px;
}
.col-md-5{
    width: 41.66666667%;
    padding: 0 15px;
}

/* ***** End Common Css **** */

/* ***** Landing Page ***** */
body{padding-top:108px;}
header{
    padding: 20.05px 0;
    background: #000;
	position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}
header .row{
    align-items: center;
}
.logobox img{
    width: auto;
    margin: 0 auto;
}
header .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.btn-main{
    padding: 12.5px 38.85px;
    background: #1995F2;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.btn-main:hover{
    background: #262B2F;
    color: #1995F2;
}


.hero-banner{
    position: relative;
    overflow: hidden;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.hero-banner img.banner-main{
    width: 100%;   
    height: 500px;
    object-fit: cover;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.hero-banner:before{
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.50;
    top: 0;
    left: 0;
    z-index: 1;
}
.banner-center{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 5;
}
.banner-center img{
    margin: 0 auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.hero-banner h1{
    font-size: 65px;
    font-weight: 500;
    color: #46A7FC;
    text-align: center;
    line-height: normal;
    margin: 0 auto;
    max-width: 575px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.hero-banner:hover img.banner-main{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.hero-banner:hover .banner-center img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
.hero-banner:hover h1{
    color: #fff;
}

.suppert-wrp{
    padding: 55px 0;
}
.suppert-wrp .row{
    align-items: center;
}
.support-data{
    padding: 15px 0 0 120px;
    position: relative;
}
.support-data:before{
    position: absolute;
    content: '';
    width: 4px;
    height: 100%;
    background: #46A7FC;
    top: 0;
    left: 0;
}
.support-data:after{
    position: absolute;
    content: '';
    width: 90px;
    height: 1px;
    background: #46A7FC;
    top: 45px;
    left: 0;
}
.support-data h2{
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin: 0 0 30px;
	line-height:normal;
}
.support-data p{
    font-size: 17px;
    font-weight: normal;
    color: #000;
    line-height: 32px;
    margin: 0;
    max-width: 570px;
}

.support-imgrw{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.support-imgbox{
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 100%;
    overflow: hidden;
}
.support-imgbox img.main-sup{
    width: 450px;
    height: 450px;
    border-radius: 100%;
    object-fit: cover;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    transform: scale(1);
    -webkit-transform: scale(1);
}
.g_wp .support-imgbox{width:400px; height:400px;}
.g_wp .support-imgbox img.main-sup{
    width: 400px;
    height: 400px;
}
.support-imgbox img.support-shp1{
    width: 450px;
    height: 450px;
    border-radius: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.g_wp .support-imgbox img.support-shp1{
	width: 95%;
    height: 95%;
	margin:0 auto;
	top:50%;
	transform:translateY(-50%);
}
.support-imgbox:before{
    position: absolute;
    content: '';
	content:none;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #033764;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    z-index: 1;
}
.support-imgbox h3{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    opacity: 0;
    visibility: hidden;
}
.support-imgbox:hover img.main-sup{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.fst .support-imgbox:hover img.main-sup{
    transform: scale(1);
    -webkit-transform: scale(1);
}
.support-imgbox:hover:before{
    opacity: 0.75;
}
.support-imgbox:hover h3{
    opacity: 1;
    visibility: visible;
}


.under-radar-wrp{
    padding: 100px 0 180px;
}
.under-radar-wrp .container{
    max-width: 1050px;
}
.under-radar-wrp h2{
    font-size: 40px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: 0 auto 15px;
	line-height:normal;
}
.under-radar-wrp p{
    font-size: 29px;
    font-weight: 500;
    color: #000;
    text-align: center;
    line-height: 46px;
    margin: 0;
}


.even-support-wrp .support-imgrw{
    justify-content: flex-start;
}
.support-linebox .support-imgbox:before{
    background: #5491C6;
}
.support-linebox img.support-shp1{
    top: 50%;
    right: 0;
    left: 0;
    width: 95%;
    height: 95%;
    margin: 0 auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}



.our-team-wrp{
    margin: 40px 0 0;
    padding: 75px 0;
    background: #F5F5F5;
}
.our-team-rw{
    padding: 35px 0 0 120px;
    position: relative;
}
.our-team-rw:before{
    position: absolute;
    content: '';
    width: 4px;
    height: 100%;
    background: #46A7FC;
    top: 0;
    left: 0;
}
.our-team-rw:after{
    position: absolute;
    content: '';
    width: 90px;
    height: 1px;
    background: #46A7FC;
    top: 65px;
    left: 0;
}
.our-team-rw h2{
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin: 0 0 75px;
}
.our-team-blocks{
    margin: 0 0 80px;
}
.our-team-blocks:last-child{
    margin: 0;
}
.team-img{
    width: 290px;
    height: 299px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}
.team-img img.team-imgmain{
    width: 290px;
    height: 299px;
    /*border-radius: 100%;*/
    object-fit: cover;
}
.team-data h3{
    font-size: 29px;
    font-weight: 500;
    color: #000;
    margin: 0;
	line-height:normal;
}
.team-data h4{
    font-size: 29px;
    font-weight: 500;
    color: #1995F2;
    margin: 0 0 35px;
	line-height:normal;
}
.team-data p{
    font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 26px;
    margin: 0 0 20px;
}


.step-wrp{
    padding: 30px 0;
    background: #000;
    position: relative;
}
.step-wrp .container{
    max-width: 1050px;
}
.step-wrp ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-wrp ul li{
    margin-right: 50px;
    position: relative;
}
.step-wrp ul li:after{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #1995F2;
    right: -25px;
    top: 0;
}
.step-wrp ul li:last-child:after{display: none;}
.step-wrp ul li:last-child{
    margin: 0;
}

.step-wrp ul li a{
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.step-wrp ul li a img{
    margin: 0 15px 0 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.step-wrp ul li a h6{
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.step-wrp ul li a:hover img{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
}
.step-wrp ul li a:hover h6{
    color: #1995F2;
}


.contact-wrp{
    padding: 75px 0 100px;
    position:relative;
    /*background: url('../images/contact-back.jpg') 0 0 no-repeat;*/
	background: url('../images/contact-back.webp') 0 0 no-repeat;
    background-size: cover;
}
.contact-wrp:before{
    position: absolute;
    content: '';
    background: #000;
    opacity: 0.46;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.contact-wrp .container{
    position: relative;
    z-index: 1;
}
.contact-wrp h2{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 0 auto 65px;
}
.contact-wrp h2 span{
    color: #1995F2;
}
.contact-form{
    background: rgba(217, 217, 217, 0.92);
    padding: 100px 100px 0;
}
.contact-form form{
    max-width: 870px;
    margin: 0 auto;
}
.contact-form h3{
    font-size: 30px;
    font-weight: normal;
    color: #000;
    text-align: center;
    margin: 0 auto 35px;
}
.contact-form .form-group{
    margin: 0 0 25px;
    width: 100%;
}
.contact-form .form-group .form-control{
    font-size: 20px;
    width: 100%;
    font-weight: normal;
    padding: 15px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #959393;
    box-shadow: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    display: block;
    color: #000;
    outline: none;
    resize: none;
}
.contact-form .form-group .form-control::placeholder{
    color: #000;
}
.contact-form .btn-group{
    display: flex;
    justify-content: flex-end;
}
.contact-form .btn-group .btn-main{
    border: none;
    padding: 12px 45px 10px;
    display: table;
    margin: 30px 0 -20px;
	cursor:pointer;
}
/* ***** End Landing Page ***** */

/* ***** TPLS Page ***** */
.tpls-banner h1{
    max-width:1200px;
    font-size: 55px;
}
.global-wrp{
    padding: 15px 0;
}
.global-wrp p{
    font-size: 17px;
    line-height: 30px;
    max-width: 890px;
    margin: 0 auto;
}
.tpls-imgbox .support-imgbox img.main-sup{
    position: absolute;
    top: 0;
    left: 0;
}
.tpls-imgbox .support-imgbox:before{display: none;}
.tpls-imgbox .support-imgbox:hover img.main-supimg.nrmlimg{
    opacity: 0;
}
.tpls-imgbox .support-imgbox img.main-sup.hoverimg{
    opacity: 0;
}
.tpls-imgbox .support-imgbox:hover img.main-sup.hoverimg{
    opacity: 1;
}

.service-wrp{
    padding: 55px 0 55px;
}
.service-wrp .container{
    max-width: 950px;
}
.service-row{
    margin: 0 0 45px;
}
.service-row .row{align-items: center;}
.service-row:last-child{
    margin: 0;
}
.service-img{
    width: 266px;
    height: 266px;
    border-radius: 100%;
    overflow: hidden;
}
.service-img img{
    width: 266px;
    height: 266px;
    border-radius: 100%;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.service-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.serivce-data h3{
    font-size: 40px;
    line-height: normal;
    font-weight: bold;
    color: #000;
    margin: 0 0 15px;
}
.serivce-data p{
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    line-height: 26px;
}
/* ***** End TPLS Page ***** */
.wpcf7-spinner{display:none;}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	margin: 0;
    padding: 0;
    border: none;
    display: inline-block;
}
.wpcf7 form.sent .wpcf7-response-output{
	margin: 0;
    padding: 0;
    border: none;
    display: inline-block;
	color:#46b450;
}
.elementor-656{display:none;}
.wpcf7-spinner{display:none;}
nav .contctbtn{display:none;}