


1. Google font
------------------*/

/*@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap');*/
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

/*-------------------
2. Theme Default CSS
--------------------*/

* {
    outline: none;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #333333;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: #768ede;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 400;
    line-height: 1.4em;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 32px;
}

html,
body {
    height: 100%
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #8790af;
}


/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*-- 3. Button-Style --*/

.bttn-white {
    position: relative;
    /*background: rgb(72, 44, 191);
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
	background: #2f1768;
background: -moz-linear-gradient(45deg,  #2f1768 1%, #0053c4 100%);
background: -webkit-linear-gradient(45deg,  #2f1768 1%,#0053c4 100%);
background: linear-gradient(45deg,  #2f1768 1%,#0053c4 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f1768', endColorstr='#0053c4',GradientType=1 );

    overflow: hidden;
    z-index: 1;
    margin-right: 10px;
    border: none;
}

.bttn-white img {
    height: 20px;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}



.bttn-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.bttn-white.active,
.bttn-white:hover {
    color: #ffffff;
}

.bttn-white.active:before,
.bttn-white:hover:before {
    opacity: 0;
}

.bttn-default {
        padding: 12px 20px 12px;
    min-width: 120px;
    display: inline-block;
    color: #303030;
    text-transform: uppercase;
    text-transform: inherit;
    border-radius: 4px;
    letter-spacing: inherit;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
	    transition: color .2s ease,background-color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease;
        border: 2px solid transparent;
	vertical-align: middle;
	background: #F6F6F6; text-align: center;
}

.bttn-default .lnr,
.bttn-white .lnr {
    margin-right: 10px;
}

.bttn-white-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}
.bttn-white-outline:hover{color: white !important;}

.bttn-empty-style {
    min-width: auto;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
	color: white;
}


.bttn-empty-style:hover {
    color: #fff !important; background-color: rgba(255,255,255,0.1) !important;
}

.bttn-default:hover {
    color: #303030;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px 0 rgba(136,144,195,0.22), 0 8px 15px 0 rgba(37,44,97,0.17);
}


.bttn-white:hover {background: #E8E8E8;color: #261F8A; /*-webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);*/
}

.bttn-default-primary{ background:#0580da; color:#fff;}

.bttn-default-secondary{ background:#08e872; color:#fff;}

.bttn-empty{ background: none; color:#fff; border: 2px solid #fff; text-transform:uppercase;}

.bttn-empty:hover{color:#fff;}

.bttn-blue{ background: #0580da; color:#fff; border: 2px solid #0580da; text-transform:uppercase;}

.bttn-blue:hover{color:#fff;}


.bttn-badge {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    border-radius: 9999px;
    padding: 5px 15px 5px 6px;
    text-decoration: none !important;
    transition: background-color .2s ease;
	    background-color: #DFEAFE;
    color: #4D61FC;
}
.bttn-badge .badge {
    height: 24px;
    line-height: 24px;
    border-radius: 24px;
    padding: 0 7px;
    white-space: nowrap;
    background-color: #4D61FC;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.bttn-badge span.bt_sp_text {
    margin-left: 10px;
    letter-spacing: 0.02em;
}
.bttn-badge span.bt_sp_arrow {
    margin-left: 9px;
    height: 1em;
    width: 1em;
    transform-origin: right center;
    transition: transform .2s ease;
	color: #4D61FC;
}
.bt_sp_arrow svg * {
    fill: #4D61FC;
}
.bttn-badge:hover .bt_sp_arrow {
    transform: translateX(3px);
}

.bttn-badge:hover{background-color: #cbddfd;
    color: #4D61FC;}

.bttn-default span.bt_sp_text2 {display: inline-block;vertical-align: middle;}

.bttn-default .bt_sp_arrow { color: #fff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 14px;
    height: 14px;
    margin-left: 7px;
    transition: opacity .2s ease,transform .2s ease;
}

.bttn-default .bt_sp_arrow .icon svg * {
    fill: white;
}
.bttn-default:hover .bt_sp_arrow {
    transform: translateX(3px);
}

.sq {
    border-radius: 3px !important; 
}

.com_mlr5{margin-left: 5px; margin-right: 5px;}

.com_ml5{margin-left: 5px;}

.com_mr5{margin-right: 5px;}

/*-- 4. Helper-Classes --*/

.section-padding-top {
    padding-top: 120px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.upper {
    text-transform: uppercase;
}

.angle,
.overlay {
    position: relative;
    z-index: 1;
}

.overlay:before {  display:none;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    /*background: rgb(72, 44, 191);*/
    /* Old browsers */
    /* FF3.6-15 */
    /*background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* Chrome10-25,Safari5.1-6 */
    /*background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
    opacity: 0.85;
    /* IE6-9 fallback on horizontal gradient */
    z-index: -2;
	background: #00396B;

}

.angle:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left bottom, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left bottom, right top, color-stop(50%, #ffffff), color-stop(50%, transparent)) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -o-linear-gradient(left bottom, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right top, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    z-index: -1;
}

.dark-color {
    color: #434345
}

.blue-color {
    color: #5e88fc;
}

.white-color {
    color: #ffffff !important;
}

.gray-bg {
    background-color: #f5f6ff;
}

/*-- 5. MainMenu-Area --*/

.mainmenu .dropdown:hover .dropdown-menu {
  display: block;
}



.mainmenu-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0 10px 0;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgb(72, 44, 191);
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
	background: #fff;
    z-index: -1;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
	box-shadow: 0 0 20px 0 rgba(21, 21, 21, 0.33);
}

.mainmenu-area.affix {
    position: fixed;
    top: 0;
}

.mainmenu-area.affix:before {
    opacity: 1;
}

/*.mainmenu-area.affix .navbar-brand .logo_white{display: none;}
.mainmenu-area .navbar-brand .logo_color{display: none}
.mainmenu-area.affix .navbar-brand .logo_color{display: inline-block}*/

.mainmenu-area.affix ul.nav.navbar-nav li a{color: #303030;}


.mainmenu-area .right-button {
    position: absolute;
    right: 15px;
    top: 12px;
}

.mainmenu-area .right-button a {
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14px;
}

.mainmenu-area .right-button a:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #768ede;
}

.mainmenu-area ul.mainmenu {
    text-align: center;
    float: none;
    display: inline-block;
}

.mainmenu-area ul.mainmenu li {
    float: none;
    display: inline-block;
    text-align: center;
}

.mainmenu-area ul.nav.navbar-nav li a {
    color: #333333;
    padding: 9px 2px 8px;
    /*text-transform: capitalize;*/
    background: transparent;
    font-weight: normal;
    border-bottom: 0;
    margin: 0 15px;
	font-size: 15px;
}
.mainmenu .dropdown-toggle i {margin-left: 3px;
    font-size: 12px;}

.mainmenu-area ul.nav.navbar-nav li a:hover,
.mainmenu-area ul.nav.navbar-nav li.active a {
    border-bottom-color: #ffffff; border: none !important;
}
.mainmenu-area ul.nav.navbar-nav li a:hover {
	color: #1970e0;}
.mainmenu-area .mega-dropdown.open .dropdown-toggle{color: #1970e0;}

.mainmenu-area .navbar-brand {
    height: auto;
    padding: 0;
}
.navbar-collapse {
    padding-right: 0;
	padding-left: 0;}

.mainmenu-area .navbar-brand img {
    /*height: 50px;*/ max-height: 38px;
	/*width: 132px;*/ height: auto;
}


.mainmenu.menu_left{ padding-left: 25px;}

.mainmenu-area .mainmenu .dropdown-menu {padding: 18px 0;
    background-color: #fff;
    width: 200px;
    border-radius: 8px;
    margin-top: -5px;
    z-index: 9999;
    box-shadow: 0 0px 30px 0 rgba(0, 0, 0, 0.1);
transition: all ease 0.3s; border: none !important;}

.mainmenu-area .mainmenu .dropdown-menu li {display: block !important;}

.mainmenu-area .mainmenu .dropdown-menu li a{padding: 9px 30px; text-align: left;
    color: #1b1b1b;
    font-size: 14px;
    font-family: "proxima", sans-serif;
    display: block;}
.mainmenu-area .mainmenu .dropdown-menu li a:hover {
    color: #265cdc;
}
.mainmenu-area .mainmenu .nav-item.dropdown a.dropdown-toggle span {
    padding-right: 14px;
    position: relative;
}
.mainmenu-area .mainmenu .nav-item.dropdown a.dropdown-toggle span:after {
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 1px;
}

.header_contact a {display:inline-block; margin-right:8px; color:#565656; font-size:14px; padding:2px;}

.header_contact a i {display:inline-block; vertical-align:middle; margin-right:5px; color:#0580da; font-size:18px;}

.header_contact a i {display:inline-block; vertical-align:middle;}

.header_top_sec {padding-bottom:10px;}
.header_contact .lnr-envelope:before {
    height: 13px;
    display: inline-block;
    line-height: 4px;
}
.loginregister_bubg {display:inline-block; vertical-align:top;}

.register_bu {display:inline-block; background:none; text-decoration:none; border-radius:5px; border: 1px solid #0580da; padding:5px 10px; color:#0580da; font-size:14px; font-weight:300; height:31px; min-width: 93px; margin-left:8px;}

.register_bu:hover{background:#0580da; color:#fff;}

.login_bu{display:inline-block; background:#0580da; text-decoration:none; border-radius:5px; border: 1px solid #0580da; padding:5px 10px; color:#fff; font-size:14px; font-weight:300; height:31px; min-width: 93px; margin-left:8px;}

.login_bu:hover{background:#0580da; color:#fff; opacity:0.8;}

.contry_select_bubg {display:inline-block; vertical-align:top;}

.contry_select_bubg select{display:inline-block; padding:5px 8px;}

.header_apps_bubg {display:inline-block; vertical-align:top; padding-right:5px;}

.contry_select_bubg .btn {  padding: 5px 12px;}

.inner-area {background:url(../images/slider_bg_1.jpg) no-repeat center; background-size: contain;}

.inner-area .container {padding-top: 50px;}


/*-- 6. Page-Title --*/

.page-title .title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8790af;
    font-weight: 600;
}

.text-center.page-title .title:before,
.page-title .title:after {
    content: '';
    width: 50px;
    height: 1px;
    display: inline-block;
    background-color: #e1e1e1;
    margin: 0 15px;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

/*-- 7. Home-Area --*/

.home-area {
    width: 100%;
    background-color: #fff;
	/*background-image: url(../images/hero_video_bg.jpg);*/ 
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
    /*padding-top: 20vh;
	padding-bottom: 20vh;*/
	padding-top: 70px;
	padding-bottom: 0px;
    color: #ffffff;
    margin-bottom: 0; overflow: hidden;
	/*height: 100vh; min-height: 660px;*/
}

.home-area .mobile-image {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;    position: relative;
    z-index: 2;
}
.home-area .mobile-image img {max-width: 562px; margin-left: -60px;}

.home-area{position: relative;}
/*.home-area:after {
    content: "";
    width: 100%;
    height: 220px;
    background: #fff;
    z-index: 1;
    bottom: -210px;
    background-color: #fff;
    left: 0;
    position: absolute;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}*/

.home_banner_logo {padding-bottom: 32px; display: block; text-align: center; padding-right: 45px;}
.home_banner_logo img {max-width: 160px;}

.home-area h1 {font-size: 3em; line-height: 1.3; color: #fff;    font-weight: 700; margin: 0;
	margin-top: 25px;
}
.home-area h1 span{display: block;}
/*.home-area .col-md-7 {padding-left: 0; padding-top: 30px;}*/

.home-area .desc p{font-size: 16px; line-height: 24px; color: #fff;    font-weight: 400; max-width: 480px; display: inline-block;}

.hero_slider_items_bg {width: 100%; background-position:top center !important; background-size:cover; background-repeat:no-repeat;padding-top: 130px; padding-bottom: 395px; min-height: 500px; overflow:hidden;}

.hero_slider_items_2 .slider_img_bg img {max-width: 400px;}

.hero-slide .owl-dot span {display:inline-block; width:25px; height:5px; background:rgba(225, 225, 225, 0.6);}

.hero-slide .owl-dot.active span {background:#fff;}

.hero-slide .owl-dot {display:inline-block; padding:0 5px;}

.hero-slide .owl-dots {text-align:right; display:inline-block; margin: 0 auto; max-width: 1200px; width: 100%;}

.hero-slide .owl-controls {    text-align: center;
    margin: 0;
    position: absolute;
    bottom: 50px;
    width: 100%;
}



.heading_style_2{}

.home-area {}

.hero_slider_items_1 h3 {font-weight:300; color:#fff; font-size:20px;}

.hero_slider_items_1 h3 span {display:inline-block; padding: 3px 10px; background:#0580da;}

.hero_slider_items_1 h1 {text-transform:uppercase;}

.hero_slider_items_1 h1 .heading_style_1 {font-weight:300; color:#fff; font-size:63px;}

.hero_slider_items_1 h1 .heading_style_2 {font-weight:600; color:#fff; font-size:63px;text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.32);}

.slider_img_bg {position:absolute; top: -60px;}


.hero_slider_items_2 h3 {font-weight:300; color:#fff; font-size:20px;}

.hero_slider_items_2 h3 span {display:inline-block; padding: 3px 20px;  background: #8ac957;}

.hero_slider_items_2 h1 {text-transform:uppercase;}

.hero_slider_items_2 h1 .heading_style_1 {font-weight:300; color:#fff; font-size:63px;}

.hero_slider_items_2 h1 .heading_style_2 {font-weight:600; color:#fff; font-size:63px;text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.32);}

.hero_slider_items_2 .home_slider_ul_1 li:before { background: rgb(138, 201, 87);}


.getintouch_formbg .healthgates_maichip_inputbg input.input_textbox{color: #303030;}

.getintouch_formbg .healthgates_maichip_inputbg input.input_textbox::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #303030 !important;
}
.getintouch_formbg .healthgates_maichip_inputbg input.input_textbox::-moz-placeholder { /* Firefox 19+ */
  color: #303030 !important;
}
.getintouch_formbg .healthgates_maichip_inputbg input.input_textbox:-ms-input-placeholder { /* IE 10+ */
  color: #303030 !important;
}
.getintouch_formbg .healthgates_maichip_inputbg input.input_textbox:-moz-placeholder { /* Firefox 18- */
  color: #303030 !important;
}

/*-- 8. Progress-Area --*/


.box3_sec_box {text-align: center;}

.box3_section {padding-top: 70px; padding-bottom: 60px;}

.box3_section .row {max-width: 900px; margin: 0 auto; display: inline-block;}

.box3_section .row ul{padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;}
.box3_section .row ul li{ margin: 0 20px 0;}

.box3_section li .box3_sec_box img {width: auto; margin-bottom: 10px; max-height: 32px; max-width: 190px;}

.box3_section li:first-child .box3_sec_box img{max-height: 27px;}
.box3_section li:last-child .box3_sec_box img{max-height: 24px;}

.box3_sec_box h3 {color: #13034f;font-size: 21.795px; margin: 0 0 16px; font-weight: 600; line-height: 31px;}

.box3_sec_box p{color: #13034f;font-size: 15.851px; margin: 0 0 10px; line-height: 26px; font-weight: 300; padding: 0 18px;}

.section_bg_gray {background: #f9f9f9;}

.progress-area {
    background-image: url('../images/progress-bg.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    margin-top: 90px;
    margin-bottom: 220px;
}

.progress-area .mobile-image {
    margin-top: -90px;
    margin-bottom: -153px;
}

.pad-lr-0{padding-left: 0; padding-right: 0;}

.row2line { text-align: center;}

.row2line .col-md-3{float: none; margin: 0 auto;}

/*-- 9. Video-Area --*/

.video-area {
    background-image: url('../images/video-bg.jpg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    margin-bottom: 120px;
}

.video-photo {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.video-photo > img {
    width: 100%;
}

.video-area a.video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/*-- 10. Feature-Area --*/

.feature-area .mobile-image img {/*max-width: 268px;*/}

.page-title h3 {     color: #303030;
    font-size: 31.702px;
    font-weight: 600;
    line-height: 45px;margin-bottom: 7px;}
.page-title p {     color: #3d3d3d;
    font-size: 16px;
    font-weight: 400;
        line-height: 1.4;}

.page-title h2 {
    color: #303030;
    font-size: 30px;
    font-weight: 400;
    line-height: 41px;margin-bottom: 15px;}


.feature-area {
    color: #ffffff;
    /*background-color: #5e88fc;
    background-image: url('../images/feature-bg.png');
    background-position: bottom -120px center;
    background-repeat: no-repeat;
    background-size: auto 94%;*/
	    /*background: #2f1768;
background: -moz-linear-gradient(left,  #2f1768 0%, #0053c4 100%);
background: -webkit-linear-gradient(left,  #2f1768 0%,#0053c4 100%);
background: linear-gradient(to right,  #2f1768 0%,#0053c4 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f1768', endColorstr='#0053c4',GradientType=1 );*/
	background: #fff;
    margin-bottom: 112px;
}
.feature-area.section-padding-top {padding-top: 50px;}

.feature-area .page-title .title {
    color: #ffffff;
}

.feature-area .mobile-image { text-align: center;
   /* margin-bottom: -142px;*/
}


.matt_sec_img img {max-width: 160px;}

.matt_sec_img {display: block; padding-left: 50px;}

.matt_sec_text {display: block; margin-left: 270px; padding-top: 80px; padding-bottom: 65px; /*background: url(../images/quote.png) no-repeat 20px center;*/ background-size: contain;}

.matt_sec_text p{display: block; margin:  0 0 10px;
	font-size: 21.7952px;
    line-height: 31px; color: #000000;    font-style: italic;}

.matt_sec_text h3{display: block; margin:  0 0 10px;font-size: 19.8144px;
    line-height: 28px; color: #606060;}

.br_sp {display: block;}

.matt_section .row{position: relative;}

.matt_section .row .col-md-4 {position: absolute; left: 0; top: 0;padding-top: 70px;}

.matt_section .row{}

.section-padding.matt_section {
    padding-top: 50px;
    padding-bottom: 0;
}

.faq_text_bg_bg {padding-left: 45px; padding-right: 45px; padding-bottom: 40px;}

.faq_text_bg_bg h3{font-size: 18px;  line-height: 24px; color: #000000; margin: 0; display: block; text-align: left;}

.faq_text_bg_bg p{font-size: 14px;  line-height: 25px; color: #606060; margin: 0;}

.faq_text_bg_bg .col-lg-4 {    padding-right: 50px;}

.footer-area .page-title p{font-size: 20.8048px;  line-height: 29px; color: #303030; margin: 0;}

.footer-mailchip {display: inline-block;}

.footer-area .section-padding {
        padding-top: 50px;
    padding-bottom: 40px;
}

/*-- 11. Service-Box --*/

.service-box {
    position: relative;
        padding-left: 30px; padding-top: 20px;
    text-align: left; padding-bottom: 20px;
}

.service-box .box-icon {position: inherit !important; display: inline-block; margin-right: 15px; margin-bottom: 15px; vertical-align: middle; margin-top: 5px;}

.team-slide .owl-controls .owl-nav > div, .press-slide .owl-controls .owl-nav > div, .contry-box-slide .owl-controls .owl-nav > div, .hero-slide .owl-controls .owl-nav > div
.service-box .box-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    /*background: rgb(72, 44, 191);*/
    /* Old browsers */
    /* FF3.6-15 */
    /*background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* Chrome10-25,Safari5.1-6 */
    /*background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
	
    z-index: 1;
    color: #97a2b4;
}

.team-slide .owl-controls .owl-nav > div:hover, .press-slide .owl-controls .owl-nav > div:hover, .contry-box-slide .owl-controls .owl-nav > div:hover, .hero-slide .owl-controls .owl-nav > div:hover,
.service-box:hover .box-icon {
    color: #0070e0;
}

/*.team-slide .owl-controls .owl-nav > div:before,
.service-box .box-icon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}
*/
.team-slide .owl-controls .owl-nav > div:hover:before, .press-slide .owl-controls .owl-nav > div:hover:before, .contry-box-slide .owl-controls .owl-nav > div:hover:before, .hero-slide .owl-controls .owl-nav > div:hover:before
.service-box:hover .box-icon:before {
    opacity: 0;
}

.service-box h4 {
       margin-bottom: 5px; display: inline-block; vertical-align: middle;
        text-transform: uppercase;
    font-size: 12px;
        font-weight: 700;
    line-height: 1.3;
    color: #303030;
}
.service-box p {
	    margin-bottom: 10px;
    color: #3d3d3d;
        font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
	display: block;
	    opacity: 0.85;
}


/*-- 12. Testimonial-Area --*/

.testimonial-area {
    padding-top: 60px;
    padding-bottom: 60px;
}

.team-box {
    position: relative;
    padding: 20px;
    margin-top: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 10px;
    margin-left: 15px;
    margin-right: 15px;
}

/*.team-box:hover {
    -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}*/

.team-box .team-image {
    width: 100%;
    height: auto;
    text-align: center;
	
}
.team-box .team-image img{ max-width: 170px;display: inline-block;}

.team-box h4 {
    color: #5e88fc;
    font-weight: 600;
    font-size: 20px;
}

.team-box h6.position {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
}

.team-slide .owl-controls .owl-nav > div {
    position: absolute;
    top: 50%;
    left: auto;
    right: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.team-slide .owl-controls .owl-nav > div.owl-next {
    right: auto;
    left: 100%;
}

.press-slide .owl-controls .owl-nav > div {
    position: absolute;
    top: 50%;
    left: auto;
    right: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.press-slide .owl-controls .owl-nav > div.owl-next {
    right: auto;
    left: 100%;
}

.hero-slide .owl-controls .owl-nav > div {
    position: absolute;
    top: 50%;
    left: auto;
    right: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.hero-slide .owl-controls .owl-nav > div.owl-next {
    right: auto;
    left: 100%;
}

.contry-box-slide .owl-controls .owl-nav > div {
    position: absolute;
    top: 50%;
    left: auto;
    right: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.contry-box-slide .owl-controls .owl-nav > div.owl-next {
    right: auto;
    left: 100%;
}


/*-- 13. Gallery-Area --*/

.gallery-area {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    /*background: rgb(72, 44, 191);*/
    /* Old browsers */
    /* FF3.6-15 */
    /*background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* Chrome10-25,Safari5.1-6 */
    /*background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
    /* IE6-9 fallback on horizontal gradient */
    /*color: #ffffff;*/
	/*background: #2f1768;
background: -moz-linear-gradient(45deg,  #2f1768 1%, #0053c4 60%, #3873c1 100%);
background: -webkit-linear-gradient(45deg,  #2f1768 1%,#0053c4 60%,#3873c1 100%);
background: linear-gradient(45deg,  #2f1768 1%,#0053c4 60%,#3873c1 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f1768', endColorstr='#3873c1',GradientType=1 );*/
	background: #fff;
	position: relative;

}

/*.gallery-area:after {
    content: "";
    width: 100%;
    height: 220px;
    background: #fff;
    z-index: 1;
    bottom: -210px;
    background-color: #fff;
    left: 0;
    position: absolute;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}*/

.gallery-slide .owl-stage-outer {
    background: url('../images/mobile-screen.png') no-repeat center right / auto 100%;

}

.gallery-slide .item {
    margin: 58px 17px 70px 15px;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-slide .owl-controls {
    position: static;
    text-align: right;
    padding-right: 80px;
}

.gallery-slide .owl-controls .owl-nav > div {
    display: inline-block;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    color: rgba(72, 44, 191, 1);
    margin: 5px;
}

.gallery-slide .owl-controls .owl-dots .owl-dot {
    display: inline-block;
    margin: 3px;
}

.gallery-slide .owl-controls .owl-dots .owl-dot span {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 5px;
    border-radius: 50%;
    background-color: #164cb9;
    opacity: 0.5;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.gallery-slide .owl-controls .owl-dots .owl-dot.active span {
    opacity: 1;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

/*-- 14. Download-Area --*/

.download-area {
    background-image: url('../images/download-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 70px;
    margin-bottom: 100px;
    color: #ffffff;
}

.download-area .mobile-image {
    margin-top: -106px;
    margin-bottom: -200px;
}

/*-- 15. Price-Area --*/

.price-box {
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    color: #8790af;
    -webkit-box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.price-box:hover {
    -webkit-box-shadow: 0 0 50px -15px #4d43c6;
    box-shadow: 0 0 50px -15px #4d43c6;
}

.price-box .price-header {
    background-color: #f2f3fc;
    padding: 40px;
    color: #768ede;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: rgb(72, 44, 191);
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.price-box .price-header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f3fc;
    z-index: -1;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.price-box:hover .price-header {
    color: #ffffff;
}

.price-box:hover .price-header:before {
    opacity: 0;
}


.price-box .price-header .price-icon {
    font-size: 60px;
    margin-bottom: 10px;
}

.price-box .price-header h4 {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
}

.price-box .price-body {
    padding: 40px;
}

.price-box .price-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-box .price-rate {
    color: #768ede;
    margin-bottom: 40px;
    font-size: 20px;
}

.price-box .price-rate sup {
    top: -20px;
    font-size: 26px;
}

.price-box .price-rate .rate {
    font-size: 56px;
}

.price-box .price-footer {
    margin-bottom: 40px;
}

.price-box .price-footer .bttn-white {
    padding: 13px 50px;
}

.price-box .price-footer .bttn-white:before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 100px;
    left: 2px;
    top: 2px;
}

/*-- 16. Questions-area --*/

.questions-area {
    /*background-color: #f5f6ff;*/
}

.toggole-boxs {
    margin-top: -20px;
}

.toggole-boxs h3 {
    font-size: 18px;
    background-color: #f0f3f5;
    margin-bottom: 0;
    margin-top: 20px;
    outline: none;
    padding: 20px 30px 20px 60px;
    color: #000;
    cursor: pointer;
    position: relative;
}

.toggole-boxs h3:before,
.toggole-boxs h3:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    width: 10px;
    height: 2px;
    background-color: #434345;
}

.toggole-boxs h3:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.toggole-boxs h3.ui-state-active:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.toggole-boxs div {
    background-color: #ffffff;
    padding: 15px 30px 20px 60px;
}

/*-- 17. Subscribe-Form --*/

.subscribe-area {
    background: url('../images/subscribe-bg.jpg') no-repeat scroll center center / cover;
}

.subscribe-form {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 5px;
}

.subscribe-form form {
    position: relative;
}

.subscribe-form form .control {
    width: 100%;
    height: auto;
    padding: 15px 180px 15px 30px;
    border-radius: 100px;
    border: 1px solid #5e88fc;
}

.subscribe-form form .bttn-white {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 0;
}


/*----Video section---*/

.video_section_bg {background: #f9f9f9;}

.video_btnandtextbg {display: block; text-align: center; margin: 0;}

.video_btnandtextbg_1 {display: inline-block; text-align: center; margin: 0;}

.video_btnandtextbg_1 h3 {margin: 0 0 15px; display: block; color: #13034f;
    font-size: 31.702px;
    font-weight: 600;
    line-height: 45px;}

.video_btnandtextbg_1 a {margin: 0 0 10px; display: inline-block; text-decoration: none; background: url(../images/play.png) no-repeat center; background-size: 100% auto; width: 70px; height: 70px;}

.video_btnandtextbg_1 p{color: #8D93A9;
    font-size: 16.842px;
    font-weight: 300;
    line-height: 27px;
    max-width: 300px;}

.mfp-arrow {display: none !important;}
.mfp-wrap {	z-index: 10000;}
.mfp-bg {z-index: 10000;}


.about_2side_sec {
    padding: 0 80px;
}
/*.ab_com_img img {border-radius: 6px;}*/

.ab_left_imgtext {padding-top: 0; padding-bottom: 50px;}

.ab_left_imgtext .ab_com_text {padding-left: 70px;}

.ab_left_imgtext .ab_com_text h2{ font-size: 32px;  line-height: 1.4; font-weight: 400}

.ab_right_imgtext {padding-top: 10px; padding-bottom: 0;}

.ab_left_imgtext .ab_com_img img { max-width: 362px; margin-left: 44px;}

.ab_right_imgtext .ab_com_text {
    /*padding-left: 59px;*/
	padding-top: 50px;
}

.ab_right_imgtext .ab_com_text p {max-width: 550px;}

.ab_right_imgtext .ab_com_img img {max-width: 509px; width: 100%;}

.ab_com_text h2{color: #333333;font-size: 30px; font-weight: 400;}


.ab_com_text p {color: #7d7d7d;font-size: 16px; font-weight: 400; line-height: 1.8; max-width: 670px;}

.ab_com_text {padding-top: 13px;}

.ab_com_text .bttn-badge {margin-top: 20px;}

.primary_color_text {color:#0580da;}

.app_bu_com .app_bu_icon{position:absolute; left:0; top: 0; padding:5px; margin: -30px 0 0 -30px; background-color:#fff; height:63px; width:63px;
box-shadow: 0 5px 10px 0 rgba(37,44,97,0.15);    border-radius: 4px;
}

.app_bu_com {position:relative; margin: 50px 35px 15px; padding:15px 25px; min-width:190px; font-size:20px;}

.app_bu_com:hover{color:#fff !important;}

.android_icon{background-image:url(../images/android_icon.png); background-repeat:no-repeat; background-position:center; background-size: 55% auto;}

.apple_icon{background-image:url(../images/apple_icon.png); background-repeat:no-repeat; background-position:center; background-size: 55% auto;}

.app_download_bg {display:block; padding:20px 0;}

.app_bu_text {padding-left:15px;}


/*.optimize_fund_section h2 {color: #13034f;
    font-size: 31.702px;
    font-weight: 600;
    line-height: 45px;}

.optimize_fund_section .page-title p{color: #8d93a9;
    font-size: 16.842px;
    font-weight: 300;
    line-height: 27px;
}*/



.press-slide .press-image {text-align: center;}

.press-slide{ margin-top: 60px;}

.press-box {display: inline-block; padding: 10px; vertical-align: middle;}

.press-slide.owl-carousel .owl-item img{width: auto; max-width: 89px; max-height: 50px;
-webkit-filter: grayscale(1); /* Webkit */
  filter: gray; /* IE6-9 */
  filter: grayscale(1); /* W3C */
}

.press-slide.owl-carousel .owl-item {text-align: center;}

.header_demo_bu {
    cursor: pointer;
    text-align: center;
    display: inline-block;
       border: 1px solid #0070e0;
    border-radius: 50px;
    padding: 5px 15px;
    text-decoration: none;
    transition: background-color .5s,border-color .5s;
    background-color: #0070e0;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.header_demo_bu:hover{opacity: 0.8; color: #fff;}


.getintouch_container {max-width: 300px; margin: 0 auto; width: 100%; text-align: center;}

.getintouch_container .form-group .form-control{
	color: #000000;
    background-color: #FFFFFF;
	font-size: 15px;
    height: 43px;
	border: 1px solid #A3BAC6;
    border-radius: 3px;
	width: 100%;    padding: .5rem .625rem .5625rem; font-weight: 300;
	
}
.getintouch_container .form-group .btn{background: #261F8A;
    color: #FFFFFF;
    font-size: 17.834px;
    font-weight: 700;
    height: 52px;
    width: 100%;
    border-radius: 3px;    cursor: pointer;
    min-height: 100%;
	transition:All 0.5s ease;
-webkit-transition:All 0.5s ease;
-moz-transition:All 0.5s ease;
-o-transition:All 0.5s ease;

}
.getintouch_container .form-group .btn:hover {
    background: #1565C0;
	transition:All 0.5s ease;
-webkit-transition:All 0.5s ease;
-moz-transition:All 0.5s ease;
-o-transition:All 0.5s ease;
}
.error{border: 1px solid #ff0000 !important;}

.getstarted_section h3{font-size: 20px; color: white; font-weight: 700;  line-height: 1.3;}

.getstarted_section h3 span {display: block;}

.getstarted_section{ /*background-color: #00396B; color: #fff;*/}

.primary_color_bg{background-color: #00396B; color: #fff;}

.getstarted_section span.sub_top_title{opacity: 0.8; line-height: 1.15; font-size: 14px;}

.container.container-mid {
    max-width: 900px;
}
.container.container-medium {
max-width: 1080px;
}
.getstarted_section .bttn-default {margin-top: 28px;}



.try_healthgates_section .col-md-6 img {max-width: 525px; width: 100%; height: auto;}

.try_healthgates_section .col-md-6 {text-align: center;}

.try_healthgates_section .col-md-6 h2{color: #303030;
    font-size: 31.702px;
    font-weight: 600;
    line-height: 1.3;}

.try_healthgates_section .col-md-6 p { 
    color: #3d3d3d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 450px;
}

.try_healthgates_section .col-md-6 h2 span {
    display: block;
}

.try_healthgates_section .col-md-6.text-left {text-align: left;}

.try_healthgates_section .bttn-badge {
    margin-top: 30px;
}

.whitepaper_section, .team_area {padding-top: 0;}

.whitepaper_box_backbox{
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transform: rotate(-3deg);
    box-shadow: 0 2px 4px 0 rgba(136,144,195,0.2), 0 5px 15px 0 rgba(37,44,97,0.15);
    background-color: white;
}

.whitepaper_box_orginbox {
    padding: 60px 90px 35px;
    box-shadow: 0 2px 4px 0 rgba(136,144,195,0.2), 0 5px 15px 0 rgba(37,44,97,0.15);
    background-color: white;
	position: relative;
    z-index: 10;
}
.whitepaper_box_orginbox h3{ margin-top: 0.5em;  font-weight: 700;  line-height: 1.3;font-size: 18.7px; color: #303030;}
.whitepaper_box_orginbox p{margin-bottom: 1em;  margin-top: 1em;font-size: 16px;    color: #3d3d3d; line-height: 1.4;}

.whitepaper_box_bg {position: relative; margin-bottom: 26px;}

.whitepaper_box_orginbox .bttn-badge {margin-bottom: 14px; margin-top: 20px;}


/*.healthgates_maichip_bg#mc_embed_signup div.mce_inline_error {
    margin: 0;
    padding: 5px 35px;
    position: absolute;
    background-color: transparent;
    font-weight: lighter;
    z-index: 1;
    color: red;
    left: 0;
}*/ 
.healthgates_maichip_bg #mce-responses{display: block;
    width: 100%;
    color: #fff;    float: left;
    padding-top: 5px;}


.newsletter_section_bg { text-align: center;}

.newsletterbtnandtextbg {display: block; text-align: center; margin: 0;}

.newsletter_btnandtextbg_1 {display: inline-block; text-align: center; margin: 0;}

.newsletter_btnandtextbg_1 h3 {margin: 0 0 15px; display: block; color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 45px;}

.newsletter_form_bg {margin-top: 50px;    display: inline-block;
    margin: 0 auto;
    max-width: 523px;
    position: relative;}

.dis_block {display: block;}


.meet_dr_iframebg { width: 100%; margin-top: 0;
border-radius: 10px;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    box-shadow: 0 12px 44px 0 rgba(0,0,0,0.1);
    background-color: #303030;
	    overflow: hidden;
    position: relative;
	display: inline-block;
}

.meet_dr_iframebg iframe{position: relative;
    z-index: 10;
width: 100%;height: 350px;}

.team-bg{}

.team_items_bg {padding: 10px 15px;}

.profile_box {
    /*width: 260px;*/
    padding: 25px 20px 10px;
    margin: 0 0 20px;
    background-color: white;
    box-shadow: 0 5px 15px 0 rgba(37,44,97,0.15);
    border-radius: 10px;
    text-align: center;
}

 .profile_img {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    margin-top: 10px;
    border-radius: 50%;
    box-shadow: 0 7px 25px 0 rgba(37,44,97,0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee;
	     overflow: hidden;
}
.profile_box b{
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase; display: block; color: #3d3d3d;
}
.profile_box span {background-color: #E9F1FF;margin-bottom: 15px;
color: #4D61FC;
display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.profile_links {display: block;margin-bottom: 15px;}

.profile_links a{opacity: 0.2;display: inline-block;
    text-decoration: none;
    transition: opacity .2s ease,transform .2s ease,box-shadow .2s ease;}
.profile_links a img {
    max-width: 18px;
    max-height: 18px;
    width: 100%;
}

.profile_links a:hover {
    opacity: 0.5;
    transform: translateY(-2px);
}

.readytowork_box {display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 45px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(136,144,195,0.2), 0 5px 15px 0 rgba(37,44,97,0.15);
    background-color: white;}

.readytowork_box h2{
    font-weight: 700;
    line-height: 1.3;
    color: #303030;
font-size: 24px;

}
.readytowork_box span{font-size: 14px;
    line-height: 1.4;
opacity: 0.6; color: #3d3d3d;}

.readytowork_heading_box {max-width: 270px;}

.getintouch_formbg {width: calc(100% - 300px); text-align: center; position: relative;}

.getintouch_formbg .bttn-default {box-shadow: 0 2px 4px 0 rgba(136,144,195,0.2), 0 5px 15px 0 rgba(37,44,97,0.15);}

.video_over_a:before {content:" "; position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 1; background-color: rgba(0, 0, 0, 0.22); background-image: url(../images/play-sign.png); background-repeat: no-repeat; background-position: center; background-size: 55px 55px;
transition:All 0.5s ease;
-webkit-transition:All 0.5s ease;
-moz-transition:All 0.5s ease;
-o-transition:All 0.5s ease;
}
.video_over_a {display: inline-block; position: relative;}
.video_over_a:hover:before {background-color: rgba(0, 0, 0, 0.52);
	transition:All 0.5s ease;
-webkit-transition:All 0.5s ease;
-moz-transition:All 0.5s ease;
-o-transition:All 0.5s ease;
}

.hoalding_video_bg video {
    width: 100%;
    height: auto;
}

.hoalding_video_bg {
    width: 100%;
    height: 100%;
    margin: 0;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute; z-index: -3;
}


.contry_area {padding: 0 !important;}



.contry_box-bg {
    max-width: 1050px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 5px 20px 0 rgba(37,44,97,0.25);
	background-color: white;
	border-radius: 10px;
	margin-top: -70px;
    position: relative;
    z-index: 2; width:100%;
}

.country_search_box_12bg {margin-top: -240px;}

.mg_top_0 {margin-top: 0 !important;}

.mg_top_18 {margin-top: -32px !important;}

.mg_top_18 .our_top_dest_p p { color: #9a9a9a;}

/*.country_search_box_bg {
    max-width: 700px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 5px 20px 0 rgba(37,44,97,0.25);
	background-color: white;
	border-radius: 8px;
	margin-top: -100px;
    position: relative;
    z-index: 2; width:100%; padding:25px 30px;
}*/
.country_search_box_bg {
    max-width: 700px;
    display: inline-block;
    margin: 0 auto;
    box-shadow: 0 5px 20px 0 rgba(37,44,97,0.25);
    background-color: rgb(255 255 255 / 31%);
    border-radius: 50px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 15px 15px;margin-bottom: 35px;
}

.frmSearch {position:relative; display:block;}

.country_search_box_bg .form-control {width: 100%; border:2px solid #ddd; margin:0;border-radius: 50px;font-size: 18px; padding-left: 67px;}

.country_search_list_bg {width: 100%; position:relative; padding: 0; margin: 0;}

.country_search_list_bg ul{list-style: none; margin-top: -3px;
    padding: 0;
    width: 100%;
    position: absolute;
    box-shadow: 0 1px 10px 0 rgba(37,44,97,0.35);
    background-color: white;
    border-radius: 6px;
    max-height: 250px;
    overflow-y: auto; z-index: 2;}
	
.country_search_list_bg ul li {
    padding: 13px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    background: #fff; cursor: pointer;
}	
.country_search_list_bg ul li:last-child {border-bottom:none !important; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px;}

.country_search_list_bg ul li:first-child { border-top-left-radius: 6px; border-top-right-radius: 6px;}

.country_search_list_bg ul li:hover {  background: #f1f1f1;}	

.country_search_list_bg ul li .flag {margin-right: 10px; vertical-align: middle;}

.country_search_iconbg { position: relative;}

.country_search_iconbg span {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 30px;
    margin-top: 14px;
    margin-left: 15px;
    font-size: 20px;
    color: #a6a6a6;
    line-height: 28px;
}

.our_top_dest {
    display: block;
    /* text-align: left; */
    padding-top: 10px;
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -40px;
}

.our_top_dest_ulbg {
    display: inline-block;
    vertical-align: middle;
}

.our_top_dest_ulbg ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.our_top_dest_ulbg li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 4px; cursor: pointer;
}

.our_top_dest_ulbg li:hover {opacity: 0.9;}

.our_top_dest_ulbg span.flag {
    width: 30px;
    height: 20px;
}

.our_top_dest_p {
    display: inline-block;
    padding-left: 10px;
}

.our_top_dest_p p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400; color:#fff;
}

.county_resultlist_sec {padding-top: 55px;}

.county_resultlist_box1 {
    padding: 20px;
    text-align: center;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
}

.county_resultlist_box1 h2 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding: 10px 0;
    color: #333333;
}

.county_resultlist_box1 h3 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    padding: 10px 0;
    color: #0580da;
    text-transform: uppercase;
}

ul.county_result_box1ul {
    margin: 0 auto;
    list-style: none;
    padding: 10px;
    max-width: 400px;
}

.county_result_box1ul li {
    padding: 10px;
    background: rgb(5 128 218 / 12%);
    border-radius: 4px;
    color: #5380da;
    margin-bottom: 13px;
}

.county_resultlist_box2 {
    padding: 32px 20px;
    text-align: center;
    border: 2px solid #dcdcdc;
    border-radius: 10px;
}

.county_result_box2table {
    text-align: left;
}

.county_result_box2table table th {
    font-size: 18px;
    font-weight: 400;
    color: #0580db;
    padding: 15px 20px !important;
}

.county_result_box2table table td {
    font-size: 18px;
    font-weight: 400;
    padding: 15px 20px !important;
    color: #333;
}

span.crb2_no {
    display: inline-block;
    vertical-align: middle;
    background: #e0f0fb;
    padding: 0px 5px;
    min-width: 25px;
    min-height: 25px;
    text-align: center;
    border-radius: 4px;
    color: #0580db;
    margin-right: 10px;
}

span.crb2_rate {
    font-size: 18px;
    font-weight: 500;
}

span.crb2_rate span {
    font-size: 16px;
}

span.crb2_minuts {
    font-weight: 500;
}

span.crb2_secbil {
    font-weight: 500;
}

span.crb2_secbil span {
    font-weight: 400;
}

.county_result_box2table th {
    width: 22%;
}

.county_result_box2table th:last-child {
    width: 30%;
}

.county_resultlist_buttoncol {
    padding-top: 25px;
    padding-bottom: 25px;
}

.county_resultlist_boxcol3 {
    padding: 10px 6%;
}

.county_result_box3table {
    text-align: center;
    background: #fff;
    box-shadow: 0 5px 20px 0 rgba(37,44,97,0.25);
    padding: 30px 20px;
    border-radius: 8px;
}

.county_result_box3table th {
    text-align: center;
    font-weight: 400;
    color: #0580da;
    padding: 10px 15px !important;
}

.county_result_box3table td {
    text-align: center;
    font-weight: 400;
    color: #0580da;
    padding: 10px 15px !important;
}

.county_result_box3table .fly_td {
    font-weight: 600;
    background: #e0f0fb;
}

.county_result_box3table table.table {
    margin: 0;
}

.county_result_box3table h4 {
    margin: 0;
    padding-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.inter_call_main_box {
    padding: 42px 40px 40px 50px;
    background-color: #ffffff !important;
    box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.1) !important;
    border-style: solid;
    border-color: transparent;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: all ease-out .2s;
    max-width: 1000px;
    margin: 0 auto;
}

.inter_call_tb_country b {display:block;}

.inter_call_tb_country {text-align:center;}

.inter_call_tb_col1 {width: 37%;}
.inter_call_tb_col2 {width: 25%;}
.inter_call_tb_col3 {width: 38%; text-align:center;}

.inter_call_table table th {
    font-size: 18px;
    font-weight: 400;
    color: #0580db;
    padding: 12px 20px !important;vertical-align: top !important;
}
.inter_call_table table td {
    font-size: 17px;
    font-weight: 400;
    color: #333;
    padding: 12px 20px !important; vertical-align: middle !important;
}

.inter_call_table table .inter_sub_tb_head th {font-size: 16px; padding-top: 6px !important; padding-bottom: 6px !important;}

.inter_call_table .inter_call_flyca {  font-weight: 600;  background: #e0f0fb;}

/*.inter_call_table table tr:nth-child(even) td {border-bottom: 2px solid #ddd}*/


.contry_box_items_bg {padding: 10px 15px; display:block;}

.contry_box {
    /*width: 260px;*/
    padding: 5px;
    margin: 0;
    /*background-color: white;*/
   /* box-shadow: 0 5px 15px 0 rgba(37,44,97,0.15);*/
    border-radius: 10px;
    text-align: center;
}

 .contry_box_img {
    display: inline-block;
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    margin-top: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
	     /*overflow: hidden;*/
}
.contry_box b{
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    font-size: 30px;
    font-weight: 600; display: block; color: #0580da;
}
.contry_box span.rate_sp {background-color: #E9F1FF;margin-bottom: 15px;
color: #4D61FC;
display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase; max-width: 120px; width:100%; text-align:center;
}
.contry_box b span{ font-size: 13px; color:#08e872;}

.contry_box h4{font-size:16px; font-weight:400; color: #0580da; text-transform:uppercase; margin-bottom:0;}

.contry-box-slide .owl-item.active{position:relative;}

.contry-box-slide .owl-item.active:before{content:" "; position:absolute; left: 0; top: 10%; bottom: 0; width:1px; background:#c4f9dd;height: 80%;}

/*.contry-box-slide .owl-item.active:first-child:before{display:none;}*/

.contry_select_bubg .bootstrap-select{max-width:150px;}


.call_to_3box_sec {background: #0580da; padding: 30px 0;}

.call_to_3box_12 {text-align: center; padding-left: 7%; padding-right: 7%}

.call_to_3box_bg {display: block; position:relative;}

.call_to_3box_12 .col-md-4 .call_to_3box_bg:before {content: " "; height: 80%; width: 1px;
    background: rgb(0 96 167); position:absolute; right:0; top: 0; margin-top: 5%; margin-right: -15px;}

.call_to_3box_12 .col-md-4:last-child .call_to_3box_bg:before {display:none;}

.call_to_3box_12 .col-md-4 .call_to_3box_bg:after {content: " "; height: 80%; width: 1px;
    background: rgb(36 141 218); position:absolute; right:0; top: 0; margin-top: 5%; margin-right: -14px;}

.call_to_3box_12 .col-md-4:last-child .call_to_3box_bg:after {display:none;}

.call_to_3box_12 .call_to_3box_bg:hover i {  color: #032f50;}

.call_to_3box_bg h3 {margin: 0; color:#fff; font-size: 22px;  padding-bottom: 6px;  font-weight: 400;}

.call_to_3box_bg h3 span {  font-weight: 500;}

.call_to_3box_bg .flag {margin-bottom: 8px;}

.call_to_3box_bg p {color:#fff;}

.call_to_imgbg {display:block; padding-bottom:17px;}

.call_to_imgbg img {max-width: 80px;}

.call_to_3box_12 i {  font-size: 18px;  display: inline-block;  margin-top: 10px;  color: #fff;}


.working_boxbg {
    background-color: white;
    border-radius: 2px;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
-webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
	margin:0 15px;
}

.working_imgbg {overflow:hidden; display:block; position:relative; height:477px;}

.phone_dummy {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.phone_gif_bg {
    display: inline-block;
    margin: 60px auto 0;
    max-width: 197px;
}

.working_imgbg img {width: 100%;}

.working_textbg h3 {font-size: 20px; margin:0; padding-bottom: 8px; color:#303030;}

.working_textbg {padding: 15px 10px;}

.inter_call_table {  overflow-x: auto;}

.why_textbg h3 {font-size: 20px; margin:0; padding-bottom: 8px;color: #0580da;}

.why_boxbg {text-align:center;}

.why_imgbg {  display: block;  padding-bottom: 18px;}
.why_3box_12 {  padding: 0 6%;}

.why_3box_sec {padding-bottom: 30px;}


.footer_social_bg {
    display: block;
    text-align: center;
    padding-top: 15px;
}

.footer_social_bg a {
    margin: 4px;
    display: inline-block;
}

.footer_social_bg a img {
    max-width: 40px;
}

.footer_social_bg a:hover {opacity: 0.8;}




/*magamenu*/

.mega-dropdown {
  position: static !important;
  /*width: 100%;*/
}

.mega-dropdown-menu {
  padding: 20px 0px;
  width: 100%;
	box-shadow: 0 0 35px -10px rgba(102,120,109,.6); border-radius: 5px !important;
}

.mega-dropdown-menu:before {
  content: "";
  border-bottom: 15px solid #fff;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  position: absolute;
  top: -15px;
  left: 285px;
  z-index: 10;
	display: none;
}

.mega-dropdown-menu:after {
  content: "";
  border-bottom: 17px solid #ccc;
  border-right: 19px solid transparent;
  border-left: 19px solid transparent;
  position: absolute;
  top: -17px;
  left: 283px;
  z-index: 8;
	display: none;
}

.mainmenu-area .mega-dropdown-menu > li > ul {
  padding: 0;
  margin: 0;
}

.mainmenu-area .mega-dropdown-menu > li > ul > li {
  list-style: none;
	display: block !important;
}

.mainmenu-area .mega-dropdown-menu > li > ul > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #999;
  white-space: normal;
}

.mainmenu-area .mega-dropdown-menu > li ul > li > a:hover,
.mainmenu-area .mega-dropdown-menu > li ul > li > a:focus {
  text-decoration: none;
  color: #444;
  background-color: #f5f5f5;
}

.mainmenu-area .mega-dropdown-menu .dropdown-header {
  color: #13034f;
  font-size: 16px;
  font-weight: 500; padding: 0 !important;
}

.mainmenu-area .mega-dropdown-menu form {
  margin: 3px 20px;
}

.mainmenu-area .mega-dropdown-menu .form-group {
  margin-bottom: 3px;
}

.mainmenu-area .container {position: relative;}

.mainmenu-area .mega-dropdown-menu > li.megamenu_inner_block {float: left;}

.mainmenu-area .mega-dropdown-menu .divider {float: none; text-align: left; display: block;}

.mainmenu-area .mega-dropdown-menu > li.megamenu_inner_block a { text-align: left; display: block;}

.mainmenu-area .mega-dropdown-menu li ul li {display: block; text-align: left;}

.mainmenu-area .nav.navbar-nav .mega-dropdown-menu li ul li a{display: block; text-align: left; margin: 0;padding: 8px 12px;}

.megamenu_blog_view {display: block;}

.menu_blog_list {display: block;}
.mainmenu-area .nav.navbar-nav .mega-dropdown-menu li ul li .menu_blog_list a:hover { display: block;
    border-bottom-color: #ffffff;
    border: none !important;
    background-color: #f5f5f5;
}



/* // magamenu*/



.home-area.inner-area h1 {font-weight: 400;}

section.pricing {
  background: #fff;
  
}

.pricing .card {
  border: none;
  border-radius: 1rem;
  transition: all 0.2s;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
  background:#fff;
}
.pricing .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.pricing hr {
  margin: 1.5rem 0;
}

.pricing .card-title {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: .1rem;
  font-weight: bold;
}

.pricing .card-price {
  font-size: 3rem;
  margin: 0;
}

.pricing .card-price .period {
  /*font-size: 0.8rem;*/
  font-size: 1.4rem;
}

.pricing ul li {
  margin-bottom: 1rem;
}

.pricing .text-muted {
  opacity: 0.7;
}

.pricing .btn {
  font-size: 80%;
  border-radius: 5rem;
  letter-spacing: .1rem;
  font-weight: bold;
  padding: 1rem;
  opacity: 0.7;
  transition: all 0.2s; background:#0580da; border:none !important;
}

/* Hover Effects on Card */

@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  }
  .pricing .card:hover .btn {
    opacity: 1;
  }
}



/*FAQ*/

.faq_main_box {    padding: 42px 40px 40px 50px;    background-color: #ffffff !important;
    box-shadow: 0px 0px 70px 0px rgba(0,0,0,0.1) !important;border-style: solid;
    border-color: transparent;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transition: all ease-out .2s;max-width: 800px;
    margin: 0 auto;}

.faq_main_box h2{margin-bottom: 30px;  font-size: 27px;}

.faq_main_box h3 .numb {
    position: absolute;
    left: 0;
    top: -6px;
    display: inline-block;
    color: #265cdc;
    font-size: 27px;
    line-height: normal;
}
.faq_main_box .faq_panel_group h3 .h3inner {    position: relative;  padding-left: 50px; padding-right: 18px; display: block;}

.faq_main_box .faq_panel_group h3{display: block;}

.faq_main_box .faq_panel_group h3 a{padding: 21px 29px 28px 35px;font-size: 16px;    margin: 0; border-bottom: 0 solid #e7e7e7; background: none; color: #414042; display: block; padding-bottom: 13px;}

.faq_main_box .faq_panel_group h3 a:hover{ color: #265cdc;}

.faq_main_box .faq_panel_group h3 a.collapsed {border-bottom: 1px solid #e7e7e7;  padding: 21px 29px 28px 35px;}

.faq_main_box .faq_content{padding: 5px 28px 20px 36px; }

.faq_content.collapse.in{border-bottom: 1px solid #e7e7e7; }

.faq_main_box .faq_content p{ font-size: 15px; margin: 0 0 15px;}

.faq_main_box .faq_content p:last-child {margin-bottom: 0 !important;}

.faq_main_box .faq_content b {font-weight:500; padding-bottom:10px; display:block;}

.faq_main_box .faq_content ul{display:block; margin-bottom: 10px;}

.faq_main_box .faq_content ul li{display:block; padding:5px 0;}

.faq_main_box .panel-default>.panel-heading {
    color: transparent;
    background-color: transparent;
    border-color: transparent;
	padding: 0; border: none;
}

.faq_main_box .panel-default>.panel-heading+.panel-collapse>.panel-body { padding: 0;
    border-top-color: transparent;
}

.faq_main_box .panel-group .panel{border: none !important; box-shadow: none; margin-bottom: 20px;}

.faq_main_box {}

.faq_main_box .faq_panel_group h3 a .lnr{/*font-family: none !important;*/ position: absolute; right: 0; top: 0;}

.faq_main_box .faq_panel_group h3 a .lnr:before {
    /*content: "\33";
    font-family: "ElegantIcons";*/
    font-size: 25px;
    line-height: 22px;
    font-weight: normal;
    color: #d3d5d8;
    right: 0;
    top: 0;
	transition: all ease 0.3s;}


.rotate{
		-webkit-transform: rotate(180deg);  /* Chrome, Safari, Opera */
			-moz-transform: rotate(180deg);  /* Firefox */
			-ms-transform: rotate(180deg);  /* IE 9 */
				transform: rotate(180deg);  /* Standard syntax */    
    }

.faq_left {padding-top: 80px;}

.faq_left h2{font-weight: 300;
    color: #0a0a0a;
    font-size: 54px;
    line-height: 60px; margin-bottom: 60px;}





/* // FAQ*/

.features_pg_box {padding: 10px; background:#fff; margin-bottom: 25px; position:relative;}
.features_pg_boxtext {position:relative; padding-top: 22px;}

.home_phone_boxbg .features_pg_boxtext:before{ position:absolute; left:0; top:0; right:0; width: 40px; height:3px; margin:0 auto; background:#0580da; content: " ";}
.features_pg_boxtext:before{ position:absolute; left:0; top:0; width: 40px; height:3px; background:#0580da; content: " ";}

.features_pg_box img {margin-bottom:10px;}

.features_pg_box h4 {font-size: 18px; font-weight:400; margin: 0 0 10px;color: #676767;}

.features_pg_box p {margin:0; font-size: 14px;}

.list_check_ul {margin:0; padding:0; list-style:none; display:block;}

.list_check_ul li {margin:0; padding:8px 0; list-style:none; display:block;}

.list_check_ul li i {margin-right:10px;}

.home_phone_boxbg .features_pg_box {
    padding: 20px 10px;
    background: #fff;
    margin-bottom: 25px;
    position: relative;
    background-color: #ffffff !important;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1) !important;
}

.privacy_policy_bg {padding-top:50px;}

.privacy_policy_bg p {
    color: #7d7d7d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.privacy_policy_bg h2 {
    color: #333333;
    font-size: 30px;
    font-weight: 400;
}
.privacy_policy_bg h3 {
    color: #333333;
    font-size: 22px;
    font-weight: 400;
}
.privacy_policy_bg h4 {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
}
.privacy_policy_bg ul {
    margin: 0 0 10px;
    padding: 0;
    list-style: circle;
    display: block;
}
.privacy_policy_bg ul li {
    margin: 0 0 0 27px;
    padding: 5px 0;
    list-style: circle;color: #7d7d7d;
}

.privacy_policy_bg ol {
    margin: 0 0 10px;
    padding: 0;
    display: block;
}
.privacy_policy_bg ol li {
    margin: 0 0 0 27px;
    padding: 5px 0;color: #7d7d7d;
}

.privacy_policy_bg b {font-weight: 500;color: #7d7d7d; margin-bottom: 0; padding-bottom:10px;display: block;}

.privacy_policy_bg p b {margin-bottom:0; padding-bottom:0;display: inline-block;}

.ab_com_text_all p {
    color: #7d7d7d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.ab_com_text_ul li {color:#7d7d7d;line-height: 1.8;font-size: 16px;}

.titil_h3 {margin: 0; padding: 10px 0; font-size: 25px; font-weight: 400;  line-height: 41px;}

.plans_row {padding-bottom:45px;}

.faq_part_heading {display:block; padding:10px 0;}

.faq_part_heading h3{font-size: 20px; margin:0; color:#265cdc; text-transform: uppercase; line-height: 26px;}

.home_slider_ul_1 {list-style: none; margin:0; padding: 0 0 10px; display:block;}

.home_slider_ul_1 li {list-style: none; margin: 5px 0; padding: 0; display:inline-block; position:relative; width:100%;}

.home_slider_ul_1 li h2 {font-size: 30px; line-height: 36px; margin:0; padding:0; font-weight: 300; text-shadow: 0px 1px 8px rgb(0 0 0 / 67%);}

.home_slider_ul_1 li:before {position:absolute; left: 0; top: 0; bottom: 0; content: " "; background:#0580da; width:5px; height: 100%; display:none;}

.home_slider_ul_1 li h2 b {font-weight: bold;}

.inner-area {  padding-bottom: 42px;}

.app_down_bu {display:inline-block; margin: 5px;}


/*-- 18. Footer-Area --*/


.app_down_12 h3 {font-size: 28px; margin: 0; padding: 11px 0;
    color: #fff;}

.app_down_sec { position:relative;
    padding: 30px 0;
	background-image:url(../images/app_download_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; background-attachment:fixed;
}
.app_down_sec:before{ content:" "; left:0; right:0; top:0; bottom:0; position:absolute; 
    background-color: rgb(5 128 218 / 68%);}

.app_down_bu img {
    max-width: 180px;
}

.footer-area {background-color: #F0F4F7; background-image:url(../images/footer_bg.png); background-position: center; background-size:cover;}

.footer-box {
    text-align: center;

}

.footer-area a {color: #fff;}

.footer-area a:hover {opacity: 0.8;}

.footer-area h3{font-size: 18.5px; font-weight: 700;
    line-height: 1.3;
    color: #303030; margin: 0; padding-bottom: 20px;}

.footer_resources ul {display: block; list-style: none; margin: 0; padding: 0;}

.footer_resources ul li {display: block; list-style: none; margin: 0; padding: 0 0 10px;}

.footer_resources ul li a{color: #565656;font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
    max-width: 300px;}
	
.footer_social_media p {color: #565656;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;}	

.footer_social_media ul {display: block; list-style: none; margin: 0; padding: 0;}

.footer_social_media ul li {display: inline-block; list-style: none; margin: 2px 5px; padding: 0;}

.footer_social_media ul li img {
    max-width: 18px;
    max-height: 18px;
    width: 100%;
}
.footer_social_media ul li a{ display: inline-block; transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer_social_media ul li a:hover{opacity: 0.8;
    transform: translateY(-2px);
}

.footer_about img {margin-bottom: 20px;width: 120px;
    height: auto;}

.footer_about p{color: #303030;font-size: 15.851px;
    font-weight: 400;
    line-height: 26px;
    max-width: 300px; margin: 0; padding-bottom: 1px;}

.footer_about p.rights { color: #565656;font-size: 14px;
    line-height: 1.6;}

.footer-box .box-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 30px auto;
    text-align: center;
    line-height: 75px;
    color: #ffffff;
    font-size: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    /*background: rgb(72, 44, 191);*/
    /* Old browsers */
    /* FF3.6-15 */
    /*background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* Chrome10-25,Safari5.1-6 */
    /*background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);*/
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
	background: #2f1768;
    background: -moz-linear-gradient(left, #2f1768 0%, #0053c4 100%);
    background: -webkit-linear-gradient(left, #2f1768 0%,#0053c4 100%);
    background: linear-gradient(to right, #2f1768 0%,#0053c4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f1768', endColorstr='#0053c4',GradientType=1 );
    border-radius: 100%;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer-box .box-icon:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 2px solid #ffffff;
    border-radius: 100%;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.footer-box:hover .box-icon {
    color: #5e88fc;
}

.footer-box:hover .box-icon:before {
    background-color: #ffffff;
}

.footer-bottom .rights {font-size:13px; color:#565656;}

.footer-bottom {
    padding: 0;
    /*background: #F0F4F7;*/
}

.footer-bottom .footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footer-bottom .footer-menu ul li {
    display: inline-block;
}

.footer-bottom .footer-menu ul li a {
    padding: 10px;
    color: #565656;
}

.footer-bottom .footer-menu ul li a:hover {
    color: #2f1768;
}
.footer-bottom .right_sp {font-size: 14.8608px; color: #fff; line-height: 21px; font-weight: 300;}

.footer_bottom_links {display: inline-block; margin: 0 auto; padding: 0;}

.footer_bottom_links li {display: inline-block; list-style: none; margin: 5px 5px;}

.footer_bottom_links a{color: #565656;font-size: 12px; font-weight: 400;}
.footer_bottom_links a:hover{color: #141414;}

.footer-bottom .container-medium{border-top: 1px solid #D8DDE6; padding-top: 25px; padding-bottom: 22px;}


/*-- 19. ScrollUp-Button --*/

#scrollUp {
    right: 0;
    bottom: 0;
    height: 49px;
    width: 49px;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: #4D61FC;
	background: #E9F1FF;
	margin-right: 4px;
	margin-bottom: 4px;
}

.preloader { display: none !important;
    background-color: #ffffff;
    bottom: 0;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
}

.preloader span { opacity: 0.5;
    /*background: rgb(72, 44, 191);
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);*/
    border-radius: 100%;
    height: 60px;
    width: 60px;
    line-height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    margin: auto;
    /*-webkit-animation: mymove 1.5s infinite linear;
    animation: mymove 1.5s infinite linear;*/
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@-webkit-keyframes mymove {
    0 {
        -webkit-box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
    }
    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 20px rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 20px rgba(94, 136, 252, 0.6);
    }
    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
    }
}

@keyframes mymove {
    0 {
        -webkit-box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
    }
    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 20px rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 20px rgba(94, 136, 252, 0.6);
    }
    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 10px rgba(94, 136, 252, 0.6), 0 0 0 10px rgba(94, 136, 252, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
        box-shadow: 0 0 0 0 rgba(94, 136, 252, 0.6), 0 0 0 0 rgba(94, 136, 252, 0.6);
    }
}

/*-- 20. Blog-Post --*/

.site-header {
    background: rgb(72, 44, 191);
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #ffffff;
    padding: 180px 0 120px;
}

.site-header a {
    color: #ffffff;
}

.breadcrumb {
    background: none;
    display: inline-block;
    margin-top: 10px;
    padding: 0;
}


.post-single:after {
    content: "";
    clear: both;
    display: table;
}

.post-single {
    padding: 30px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.single-post .post-single {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.single-post .post-single .post-media {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.post-single.sticky .post-media {
    width: 55%;
    float: left;
    margin-right: 60px;
}

.post-single .post-media {
    overflow: hidden;
    border-radius: 3px;
}

.post-single .post-media img {
    width: 100%;
}

.post-single .post-meta {
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.post-single .post-body .post-meta .post-tags {
    float: left;
}

.post-single .post-body .post-meta .post-date {
    float: right;
}

.post-single .post-body h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.post-single .post-body .read-more {
    margin-top: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    color: #768ede;
}

.post-single .post-body .read-more:after {
    content: '\e87a';
    font-family: 'Linearicons-Free';
    margin-left: 5px;
}

/*-- 21. Pagination --*/

.pagination .nav-links {
    padding: 20px;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.pagination {
    text-align: center;
    margin-top: 80px;
    width: 100%;
}

.pagination .nav-links .page-numbers {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 50%;
}

.pagination .nav-links .page-numbers:hover {
    color: rgb(72, 44, 191);
    background-color: #f5f6ff;

}

.pagination .nav-links .page-numbers.current {
    background: rgb(72, 44, 191);
    background: -webkit-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    background: linear-gradient(45deg, rgba(72, 44, 191, 1) 0%, rgba(106, 198, 240, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#482cbf', endColorstr='#6ac6f0', GradientType=1);
    color: #ffffff;
}

.post-single blockquote {
    padding: 50px 160px;
    text-align: center;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    font-size: 26px;
    line-height: 1.6em;
    border: none;
    color: #626264;
    background-color: #f4f4f4;
    border: 30px solid #ffffff;
    font-style: italic;
}

/*-- 22. Comment-Respond --*/

.comment-respond h4,
.comments-area .comment-heading {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #434345;
}

.comments-list,
.comments-list ul {
    list-style: none;
}

.comments-list .comment {
    position: relative;
    padding-left: 130px;
}

.comments-list .comment .comment-pic {
    width: 100px;
    height: 100px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.comments-list .comment .comment-content .comment-header {
    color: #434345
}

.comments-list .comment .comment-content .comment-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.comments-list li li .comment .comment-pic {
    width: 80px;
    height: 80px;
}

.comments-list li {
    margin-bottom: 30px;
}

/*-- 23. Form-Stype --*/

.form-control {
    border-radius: 2px;
    padding: 15px 20px;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-double .box {
    width: calc(50% - 15px);
    float: left;
}

.form-double .box.last {
    float: right;
}


@media (min-width: 768px){
.container {
	max-width: 970px;
    width: 100%;
}
	}

@media (min-width: 992px){
.container {
	max-width: 970px;
    width: 100%;
}
	}

@media (min-width: 1200px){
.container {
    max-width: 1200px;
	width: 100%;
}
}















