/*-------------------------------------

	Author: Crorpo
	Copyright © 2019-20

---------------------------------------

    CSS INDEX
    ===================

    1. BODY
	2. CUSTOM CSS / A
	3. PRELOADER
	4. header_btn
	5. main_slider_wrapper
	6. solution_wrapper
	7. core_services_wrapper
	8. gallery_wrapper
	9. prs_video_section_main_wrapper
	10. process_wrapper
	11. team_wrapper
	12. testimonial_wrapper
	13. pricing_wrapper
	14. graph_wrapper
	15. footer_wrapper

---------------------------------------*/
/*--------------
1.Theme default CSS
--------------------------*/
body, html {
	font-family: 'Lato';
	font-size: 14px;
	line-height: 24px;
	color: #797979;
	overflow-x:hidden;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a {
	color: #2d3a4b;
	text-decoration: none;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
a:hover, a:focus {
	text-decoration: none;
	outline: none;
	color:#30a3f0;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Poppins';
	line-height: 1.1;
	text-transform:uppercase;
	font-weight:400;
	color: #2d3a4b;
	margin:0;
	padding:0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	color: #2d3a4b;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a{
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
p{
	margin:0;
}
input, select, button, textarea {
	outline: none;
}
input:focus, select:focus, button:focus, textarea:focus {
	outline: none;
	box-shadow:none;
}
ul{
	list-style:none;
	margin:0;
	padding:0;
}
.float_left{
	float:left;
	width:100%;
}
a:hover {
  	text-decoration: none;
}
/*-- Preloader css start --*/
#preloader {
	background-color: #fff;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 2147483647;
	width: 100%;
	height: 100%;
}
#status {
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
#return-to-top {
    position: fixed;
    bottom: 43px;
    right: 30px;
    display: block;
    display: none;
	width: 45px;
    height: 80px;
    text-align: center;
    border-radius: 45px;
    line-height: 80px;
    background: #fff;
	box-shadow:0 0 20px rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	z-index:1000;
	-webkit-animation: jump 1s ease-in alternate infinite;
    animation: jump 1s ease-in alternate infinite;
}
#return-to-top img {
	width:40px;
    position: relative;
	background:transparent;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@-webkit-keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 50%, 0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 50%, 0);
    }
}
.cursor {
  background-color: #30a3f0;
  	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
  display: block;
  position: fixed;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: scale(1);
  transition: transform .35s ease-out;
  z-index: 1011;
}
@supports not (mix-blend-mode: multiply) {
  .cursor {
    opacity: .7;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cursor {
    visibility: hidden;
  }
}
.cursor-close {
  background-color: #110f10;
  transform: matrix(3, 0, 0, 3, 0, 0) !important;
  mix-blend-mode: difference;
}
.cursor-close::before, .cursor-close::after {
  content: '';
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: cursorClose .6s .1s ease-in-out both;
}
.cursor-close::before {
  height: 100%;
  width: 1px;
}
.cursor-close::after {
  height: 1px;
  width: 100%;
}
.open .cursor {
  mix-blend-mode: lighten;
}
.touch .cursor {
  display: none;
}
.cursor--active {
  animation: cursor-active 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}
.cursor--active.cursor--zoom {
  animation: cursor-active2 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}

@keyframes cursor-active {
  0% {
    box-shadow: 0 0 0 0 #f7541b;
  }
  100% {
    box-shadow: 0 0 0 3rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursor-active2 {
  0% {
    box-shadow: 0 0 0 0 #f7541b;
  }
  100% {
    box-shadow: 0 0 0 1rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursorClose {
  0% {
    transform: scale(0) rotate(90deg);
  }
  100% {
    transform: scale(0.45) rotate(45deg);
  }
}
/*-- Button css start --*/
.header_btn {
	padding-top:5px;
	padding-left:30px;
}
.header_btn a {
  width:150px;
  height:50px;
  background:#fff;
  float:left;
  text-align:center;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  font-size:14px;
  color:#3a424a;
  border:2px solid transparent;
  line-height:46px;
  	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  font-weight:600;
  text-transform:uppercase;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color 0.6s, color 0.6s;
	   -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.header_btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	z-index: -1;
	border-radius: inherit;
	opacity: 0;
	-webkit-transform: scale3d(0.6, 0.6, 1);
	transform: scale3d(0.6, 0.6, 1);
	-webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
	transition: transform 0.6s, opacity 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.header_btn a:hover{
	background-color:transparent;
	color: #fff;
	   -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.header_btn a:hover::before {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
	   -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}
.dez-quik-search {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: -50px;
    width: 0;
	height:170px;
	line-height:150px;
    z-index: 999;
	-moz-box-shadow: 0px 3px 20px 0 rgba(0, 0, 0, 0.06);
	-webkit-box-shadow:0px 3px 20px 0 rgba(0, 0, 0, 0.06);
	box-shadow:0px 3px 20px 0 rgba(0, 0, 0, 0.06);
    overflow: hidden;
	   -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.dez-quik-search form {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
	top:27px;
}
.dez-quik-search .form-control {
    padding: 15px;
    width: 100%;
    height: 90px;
    border: none;
    background: none;
    color: #111;
    font-size: 20px;
}
.dez-quik-search .form-control::-moz-placeholder {
    color: #797979;
}
.dez-quik-search .form-control:-moz-placeholder {
    color: #797979;
}
.dez-quik-search .form-control:-ms-input-placeholder {
    color: #797979;
}
.dez-quik-search .form-control::-webkit-input-placeholder {
    color: #797979;
}
.dez-quik-search .form-control:focus{
	outline:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow: none;
}
.dez-quik-search span {
    position: absolute;
    right: 25px;
    top: -15%;
    margin: -15px 0;
    height: 25px;
    font-size: 20px;
	color:#2d3a4b;
    cursor: pointer;
}
.extra-cell {
    display: inline-block;
}
.site-button{
    color: #2d3a4b;
    display: inline-block;
    outline: none;
    cursor: pointer;
    outline: none;
	border:0;
	padding:43px 5px;
	font-weight:700;
    background-color: transparent;
	   -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.site-button:active,
.site-button:hover,
.site-button:focus,
.active > .site-button {
    background-color: transparent;
    color: #30a3f0;
}
.site-button i:before{
	font-size:15px;
}
.cp_logo_wrapper{
	float:left;
	width:auto;
	padding:30px 0 36px 0px;
}
.cp_navi_main_wrapper{
	position:relative;
	z-index:10;
}
.kv_logo_wrapper a{
	float:left;
	padding:32px 0px;
}
.menu-bar {
    cursor: pointer;
    position: relative;
    right: 15px;
    z-index: 9;
    height: 42px;
    display: block;
    float: right;
    margin-top: 15px;
}
.menu-bar span {
    background-color: #fff;
    display: block;
    height: 2px;
    margin-bottom: 6px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 30px;
}
.mainmenu.menu-open {
    position: relative;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    right: 15px;
    visibility: visible;
}
.mainmenu ul li {
    display: inline-block;
}
.mainmenu ul li a {
    color: #2d3a4b;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    padding:43px 16px 30px;
	font-weight:600;
}
.mainmenu ul li a i{
	color:#30a3f0;
	margin-right:15px;
}
.gc_main_navigation .gc_main_navigation,
.mainmenu ul li.active > .gc_main_navigation {
	position:relative;
}

.mainmenu ul li .gc_main_navigation:after,.mainmenu ul li.active > .gc_main_navigation:after {
	content:'';
	border:1px solid #30a3f0;
	width:0;
	position:absolute;
	left:0 !important;
	right:0 !important;
	margin:0px auto !important;
	bottom:23px !important;
	opacity:0 !important;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.mainmenu ul li:hover .gc_main_navigation,
.mainmenu ul li.active > .gc_main_navigation {
    opacity: 1;
	color:#30a3f0 !important;
}
.mainmenu ul li:hover .gc_main_navigation:after,
.mainmenu ul li.active > .gc_main_navigation:after {
	content:'';
border:1px solid #30a3f0;
width:45px;
position:absolute;
left:0;
right:0;
margin:0px auto;
bottom:23px !important;
opacity:1 !important;
-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent;
}
.menu-bar:after,
.menu-bar:before {
    background-color: #fff;
    content: "";
    height: 2px;
    position: absolute;
    right: 0;
    top: 8px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 30px;
}
.menu-bar.menu-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.menu-bar.menu-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.menu-bar.menu-close span {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.mainmenu ul ul,
.mainmenu ul li .mega-menu {
    width: 220px;
    position: absolute;
    text-align: left;
    top: calc(100% + 30px);
    z-index: 9999999;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
}
.mainmenu ul li:hover > ul,
.mainmenu ul li:hover > .mega-menu {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    top: 100%;
	-ms-box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.mainmenu ul ul li {
    display: block;
	position:relative;
	float:left; width:100%;
}
.mainmenu ul ul li a,
.mainmenu ul li.has-mega .mega-menu span a {
    color: #797979;
    text-transform: none;
    padding: 5px 0 5px 0;
    border-bottom: 0;
	margin:0;
	font-weight:500;
}
.mainmenu ul li.has-mega .mega-menu span a:hover{
	background-color: #00468c;
	color:#ffffff !important;
}
.mainmenu ul ul li:last-child > a {
    border-bottom: 0px;
}
.mainmenu ul ul li a:after {
    content: "";
}
.mainmenu ul ul li > ul {
    left: -100%;
    top: 50%;
    -webkit-transform-origin: 100% 50% 0;
    transform-origin: 100% 50% 0;
}
.mainmenu ul ul li:hover > ul {
    top: 20%;
}
.mainmenu ul li.has-mega .mega-menu {
    width: 100%;
    left: 0;
    padding: 20px 0px;
}
.mainmenu ul li.has-mega .mega-menu span {
    width: 25%;
    float: left;
    border-left: 1px solid #eee;
}
.mainmenu ul li.has-mega .mega-menu span a {
    padding-left: 20px;
    padding-right: 0px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.mainmenu ul li.has-mega .mega-menu span a:last-child {
    border-bottom: 0px;
}
.mainmenu ul li.has-mega .mega-menu span a:hover {
    padding-left: 3px;
	padding-left: 20px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.mainmenu ul li span a.active {
    font-weight: 600;
}
.mainmenu ul ul li.active > a {
    background-color: #eee;
    font-weight: 600;
}
.main_nav_ul {
	    float:right;
}
/*************************
02.2 Sticky menu
*************************/
.header-area.stick .logo a {
    color: #222;
    margin-top: 2px;
    position: relative;
    z-index: 9999999;
}
.header-area.stick .logo a h2 span {
    background-color: #222;
    color: #fff;
}
.header-area.stick .mainmenu ul li a,
.stick .mean-container a.meanmenu-reveal {
    color: #000000;
}

.header-area.stick .menu-bar:after,
.header-area.stick .menu-bar:before,
.header-area.stick .menu-bar span,
.stick .mainmenu ul li.parent:after,
.stick .mainmenu ul li.parent:before,
/* .stick .mainmenu ul li.gc_main_navigation > a:before, */
.stick .mainmenu ul li.has-mega > a:after,
.stick .mean-container a.meanmenu-reveal span {
    background-color: #222;
}
.mainmenu ul li:hover > .navi_2_dropdown{
	top:112%;
	background:#fff;
	border-top:2px solid #30a3f0;
}
.navi_2_dropdown:after {
    content: '';
    border-right: 13px solid transparent;
    border-bottom: 13px solid #30a3f0;
    border-left: 13px solid transparent;
    position: absolute;
    left: 45px;
    top: -13px;
}
/*************************
02.3 Hidden menu bar
*************************/

.hidden-menu-bar .mainmenu {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    right: 0;
    visibility: visible;
    padding-right: 0;
    position: relative;
	z-index:10;
	float:right;
}
/*************************
02.4 Onepage side menu
*************************/

.left-side-wrapper {
    background-color: #222;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 15%;
    z-index: 99;
}
.left-side-wrapper .logo {
    text-align: center;
}
.left-side-wrapper .mainmenu ul li {
    display: block;
}
.left-side-wrapper .mainmenu ul li a {} .left-side-wrapper .mainmenu {
    margin-top: 50px;
    position: relative;
}
.left-side-wrapper .mainmenu ul li > a:after,
.left-side-wrapper .mainmenu ul li.active > a:after {
    bottom: -5px;
    left: 20px;
    right: auto;
}
.right-side-wrapper {
    margin-left: 15%;
    width: 85%;
}
.right-side-wrapper .container-fluid {
    padding: 0% 10%;
}
.right-side-wrapper .container-fluid .single-project-item {
    height: 370px;
}
.right-side-wrapper .container-fluid .single-project-item.large {
    height: 460px;
}
/*************************
02.5 Onepage Menu
*************************/

.mainmenu.one-page-menu ul li a {
    padding-right: 10px;
    padding-left: 10px;
}
.mainmenu.one-page-menu ul li:hover a:after,
.mainmenu.one-page-menu ul li.active a:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    width: 90%;
}
.mainmenu.one-page-menu ul li a:after {
    width: 0%;
    height: 1px;
    content: "";
    background-color: #fff;
    position: absolute;
    left: 5%;
    top: 50%;
    margin-top: -5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.stick .mainmenu.one-page-menu ul li a:after {
    background-color: #222;
}
.rp_mobail_menu_main_wrapper{
	float:none;
	width:100%;
}
.kv_sub_menu{
position:static !important;
background: #fff !important;
}

.mainmenu ul li:hover > .kv_mega_menu{
	opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    top: 97%;
	box-shadow:none;
}


.kv_mega_menu{
	width:100% !important;
	left:0;
}
.kv_mega_menu_width{
	float:left;
	width:100%;
}

.jn_menu_partion_div{
	padding: 30px;
	position:relative;
	background:#ffffff!important;
	border-top:2px solid #30a3f0;
	min-height: 1000px;
}
.jn_menu_partion_div li{
	float:left;
	width:100%;
}
.jn_menu_partion_div ul{
	    position: unset !important;
}
.mainmenu ul li:hover > ul .jn_menu_partion_div ul, .mainmenu ul li:hover > .mega-menu .jn_menu_partion_div ul{
	opacity: 1 !important;
    visibility: visible !important;
}
.jn_menu_tabs_cont li a{
	font-weight:500 !important;
	text-transform:uppercase !important;
	background:transparent !important;
	color:#004165 !important;
	padding-left: 30px !important;
	    font-size: 14px !important;
}
.jn_menu_partion_div:after {
    content: '';
    border-right: 13px solid transparent;
    border-bottom: 13px solid #30a3f0;
    border-left: 13px solid transparent;
    position: absolute;
    right: 46%;
    top: -13px;
		background-color: #ffffff!important;
}
.jn_menu_tabs_cont ul{
	width:100% !important;
	border-bottom: 0;
}
.jen_tabs_conent_list ul{
	width:100% !important;
}
.jen_tabs_conent_list li a{
	border:0 !important;
}
.jen_tabs_conent_list li a:hover{
	color:#30a3f0;
}
.jn_menu_img_blog{
	text-align:center;
	margin-top:20px;
}
.jn_menu_img_blog h5{
	padding-top:10px;
	line-height: 26px;
}
.navi_btn{
	float: left;
    width: 180px;
    height: 30px;
    background: #9c1111;
    color: #fff !important;
    text-align: center;
    line-height: 28px;
    padding: 0 !important;
    margin-left: 20px !important;
    margin-top: 15px !important;
}
.jen_tabs_conent_list  ul{
	padding-top:40px;
}
.mainmenu ul li:hover .gc_main_navigation i, .mainmenu ul li.active > .gc_main_navigation i{
	color:#e17000 !important;
}
.cp_navigation_wrapper{
	float:right;
	width:auto;
}
.jen_search_btn_wrapper{
	float:right;
	width:auto;
	padding-left:5px;
}
.active{
	color:#30a3f0 !important;
}
.parent a:hover{
	color:#30a3f0;
}
.jen_tabs_conent_list h1{
	font-size:22px;
	text-transform:capitalize;
	color:#2d3a4b;
	font-weight:600;
	position:relative;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.jen_tabs_conent_list h1:after{
	content: '';
    border: 2px solid #29abff;
    width: 45px;
   	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
    position: absolute;
    left: 0px;
    top: 35px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.mainmenu ul li a span{
	float:right;
}
.mainmenu ul li:hover > .dropdown-menu-right{
	display:block;
}
.mainmenu ul li .dropdown-menu-right{
	position: absolute;
	display:block;
	background-color: #fff;
		-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-moz-box-shadow: 0 6px 12px rgba(0,0,0,.100);
	-webkit-box-shadow:0 6px 12px rgba(0,0,0,.100);
	box-shadow: 0 6px 12px rgba(0,0,0,.100);
	left:100%;
	right:auto;
	min-width:210px;
}
.mainmenu ul li .dropdown-menu-right li a{
	padding:13px 5px;
	font-size:16px;
	font-weight:400;
}
.mainmenu ul li:hover > .dropdown-menu-right{
	display:block;
}
.navi_2_dropdown li{
	padding:0px 0 0px 25px;
}
.header_btn{
	float:right;
	width:auto;
}
.topbar {
    position: relative;
	z-index:10;
}
.topheader_bg{
	 background: #f9f9f9;
	 float:left;

	 width:100%;
	 height:50px;
	 z-index:1;
}
.cp_header_2{
	background:#fff;
	padding:0 30px 0 30px;
}
.topbar ul>li a {
    text-transform: capitalize;
    color: #5e6d77;
    font-size: 14px;
	float:left;
	width:100%;
}
.topbar ul>li a:hover {
    color: #29abff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.top_header_add {
    float: right;
    width: 38%;
	line-height:50px;
    padding-left: 35px;
}
@media (max-width: 1024px){
.top_header_add {
    float: right;
    width: 48%!important;
	line-height:50px;
    padding-left: 35px;
}
}
@media (max-width: 768px){
.top_header_add {
    /* float: right; */
    width: 100%!important;
	line-height:20px;
    padding-left: 15px;
		padding-top:5px;
}
}

.top_header_add ul {
    margin: 0px;
    padding: 0px;
    width: 100%;
}
.top_header_add li {
    float: right;
    width: auto;
    list-style: none;
    color: #5e6d77;
	position:relative;
	font-size:12px!important;
    margin-right: 40px;
}
.top_header_add ul li:first-child:after {
    /* content: "";
    position: absolute;
    top: 0;
    right: -15px;
    background-color: #e4e4e4;
    width: 1px;
    height: 100%; */
}
.top_header_add ul li i {
    margin-right: 7px;
    text-align: center;
    font-size: 14px;
	color:#30a3f0;
}
.top_header_add ul li span {
    text-transform: capitalize;
}
.top_header_add ul li a {
    color: #5e6d77;
	font-size:10px;
    text-transform: uppercase;
}
.topbar .reg-section ul li {
    float: left;
    margin-right: 35px;
}
.social_links_wrapper {
    width: 60%;
    float: left;

}
.social_links{
	float:left;
}
.social_links ul li{
    float: left;
		padding: 0 10px;
}
.social_links ul li a{
    float: left;
    /* width:33px; */
	/* height:50px; */
	text-align:center;
	line-height:50px;
	position:relative;
	color:#797979;
}
.social_links ul li a:hover{
	color:#30a3f0;
	 -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.social_links ul li:last-child{
   padding-right:10px;
}
.header2_btn{
	float:right;
	padding:0;
}
.header2_btn a{
	width:190px;
	height:50px;
	line-height:52px;
	background:#30a3f0;
	color:#fff;
	font-size:14px;
	border-radius:0;
	border:0;
}
.header2_btn a:hover {
    background: transparent;
    color: #30a3f0;
}
.header2_btn a::before {
    border: 2px solid #30a3f0;
}
/***------ slider wrapper css -------***/
.main_slider_wrapper{
	float:left;
	width:45%;
	background:url('../images/banner.jpg') 50% 0 repeat-y;
	background-position:center 0;
	background-size:cover;
	height:100%;
	position:relative;
	height:100%;
}
.main_slider_overly{
	 position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background:rgba(12, 16, 22, 0.85);
}
.slider-area .carousel-inner .carousel-item .caption-1, .slider-area .carousel-inner .carousel-item .caption-2, .slider-area .carousel-inner .carousel-item .caption-3 {
  width:100%;
  height:100%;
  position: relative;
  min-height:1000px;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content {
  display: block;
  position: relative;
  z-index: 999;
  overflow: hidden;
  vertical-align: middle;
  padding-top: 320px;
  padding-bottom: 200px;
  padding-left: 200px;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content ul{
	display:inline-block;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content_tabs{
	display: block;
  position: relative;
  z-index: 999;
  vertical-align: middle;
  padding-top:100px;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 15px;
  animation-delay: 1.6s;
  text-transform:capitalize;
  line-height: 70px;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content p{
	animation-delay: 2.0s;
	line-height: 30px;
	color:#fff;
	font-size:22px;
	font-style:italic;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content ul{
	margin-top:50px;
}
.slider_btn{
	animation-delay: 3.0s;
}
.slider-area .carousel-inner .carousel-indicators {
    bottom: 61px;
    width: 45%;
    left: 0;
    right: 0;
}
.slider-area .carousel-inner .carousel-indicators li {
    position: relative;
    width: 30px;
    height: 1px;
    display: block;
   	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
    cursor: pointer;
    margin: 0;
    color: #fff;
    border: 0.5px solid rgba(255, 255, 255, 0.06);
}
.slider-area .carousel-inner .carousel-indicators li.active {
	background: #fff;
    width: 30px;
    height: 4px;
    top: -1px;
		-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.carousel-nevigation{
	position:absolute;
	bottom:92px;
	float:left;
	width:100%;
	z-index:1;
}
.slider-area .carousel-inner .carousel-item .carousel-captions .content img{
	padding-bottom:15px;
	animation-delay: 1.3s;
}
.carousel-nevigation > .prev{
	left:50px;
	position: absolute;
    width: 55px;
    height: 55px;
	text-align:left;
    background: transparent;
	border:0;
	line-height:18px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.carousel-nevigation > .next{
	right:36%;
	position: absolute;
    width: 55px;
    height: 55px;
    background: transparent;
	border:0;
	line-height:18px;
	text-align:right;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.carousel-nevigation > .prev:after {
  content: '';
    position: absolute;
    left: 18px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    width: 25px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    bottom: 25px;
}
.carousel-nevigation > .next:after {
 content: '';
    position: absolute;
    right: 17px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    width: 25px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    bottom: 25px;
}
.carousel-nevigation > .next i:before{
	color: rgba(255, 255, 255, 0.5);
	font-size:22px;
	margin-right:-5px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.carousel-nevigation > .prev i:before{
	color:rgba(255, 255, 255, 0.4);
	font-size:22px;
	margin-left:-4px;
	 -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.slider_right_wrapper{
	 float: left;
    width: 55%;
    position: relative;
    height: 1000px;
   background:#4391e5;
}
.banner_top_wrapper{
	position:relative;
	overflow:hidden;
	margin-top:-164px;
	height:1000px;
}
.carousel-nevigation > .prev span {
    color: #fff;
    font-size: 12px;
    text-transform:uppercase;
	font-weight:600;
	letter-spacing:3px;
}
.carousel-nevigation > .next span {
    color: #fff;
    font-size: 12px;
	letter-spacing:3px;
    text-transform:uppercase;
	font-weight:600;
}
.slider-area .carousel-inner {
	z-index:1;
}
.wave-holder {
    position: absolute;
    width: 1003px;
    height: 1000px;
    left: -520px !important;
    overflow: hidden;
    -webkit-pointer-events: auto;
    -moz-pointer-events: auto;
    pointer-events: auto;
    top: 0;
    left: 24%;
    -webkit-transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    -moz-transition: 8.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    -ms-transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    -o-transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    transition: 1.2s cubic-bezier(0.67, 0.02, 0.2, 0.97) 2s;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.wave-holder {
    opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
#wave {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-pointer-events: auto;
   -moz-pointer-events: auto;
     pointer-events: auto;
	-webkit-transform: rotate(-90deg);
   -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
     -o-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	-webkit-transform-origin: center;
   -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    transform-origin: center;
}
.cp_shape_top {
   position: relative;
    z-index: 1;
    top: 250px;
    right: -126px;
}
.cp_shape_top img{
	width:100%;
}
.slider_btn{
	float:left;
	width:100% !important;
	padding-top:30px !important;
}
/***----solution wrapper css----****/
.solution_wrapper{
	padding:100px 0;
}

@media (max-width: 767px){
	.solution_wrapper{
		padding:10px 0;
	}
	.fix-margen{
		margin: 20px 0;
	}
}

.eglobal{
	margin: 0 0!important;
	padding: 10px 0!important;
}



.about_slution_tab .nav{
	border:0;
	background:#fafafa;
}
.about_slution_tab .nav li{
	border:0;
}
.about_slution_tab .nav-tabs .nav-link{
	font-size: 16px;
    font-weight: 500;
	color:#444444;
    text-transform: capitalize;
    padding: 15px 45px;
	border:0;
	padding-left:25px;
	border-radius:0;
}
.about_slution_tab ul{
	display:inline-block;
}
.about_slution_tab .nav-tabs .nav-item.show .nav-link, .about_slution_tab .nav-tabs .nav-link.active{
    color: #fff !important;
	border-radius:0;
	background:#30a3f0;
	position:relative;
}
.about_slution_tab .nav li .nav-link.active{
	border-top-right-radius:30px;
	border-bottom-right-radius:30px;
}
.abt_tab_heading h1{
	font-size:22px;
	font-weight:600;
	text-transform:capitalize;
	padding-bottom:20px;
}
.abt_tab_img img{
	width:100%;
}
.abt_tab_heading  p{
	color:#797979;
}
.tab_btn{
	padding-left:0;
	padding-top:20px;
	float:left;
}
/***--service wrapper css---***/
.services_wrapper{
	padding:100px 0 80px 0;
	background:#f9f9f9;
}
#accordion .card {
  background: #fff;
  border:0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-bottom:20px;
}
#accordion .card_pagee h5 {
  font-weight: 500;
  font-size:16px;
  text-transform:capitalize;
}
#accordion .card-body {
	float: left;
    width: 100%;
    padding: 50px 30px;
	background:#fff;
}
#accordion .card-body .card_img {
	 float:left;
	 width:100px;
}
#accordion .card-body .card_cntnt {
	 float:left;
	 width:calc(100% - 100px);
	 padding-left:30px;
}
#accordion [data-toggle="collapse"].collapsed:after{
    content: "\f067";
}
#accordion [data-toggle="collapse"]:after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f068";
    position: absolute;
    font-size: 14px;
    top: 19px;
    right: 15px;
}
#accordion .card_pagee a.collapsed {
   color: #2d3a4b;
    background-color: #fff;
    display: block;
    padding: 14px 30px;
	padding-left:20px;
    border: 1px solid #e3e3e3;
}
#accordion .card_pagee a{
    display: block;
    background: #30a3f0;
    color: #fff;
	padding:14px 20px;
    border: 1px solid #30a3f0;
}
#accordion .card_pagee a:after{
	color:#fff;
}
#accordion .card_pagee a.collapsed:after {
	 color: #2d3a4b;
}
/***--core services css---***/
.core_services_wrapper{
	background: url(../images/core_serv.jpg) 50% 0 repeat-y;
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    background-attachment: fixed;
	padding-top:100px;
}
.main_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(12, 16, 22, 0.88);
}
.white_heading h3{
	color:#fff !important;
}
.white_heading p{
	color:rgba(255, 255, 255, 0.8);
}
.text_wrapper_list{
	padding-top: 85px;
	padding-bottom: 60px;
	color: #fff;
}
.text_wrapper_list h2{
	color: #fff;
	font-size: 36px;
	font-weight:700;
	text-transform: uppercase;
}
.text_wrapper_list p{
	font-size: 16px;
}
.text_wrapper_left{
	float: left;
	width: 100%;
}
.text_wrapper_right{
	float: left;
	width: 100%;
}
.text_wrapper_right h4, .text_wrapper_right p{
	text-align:left;
}
.text_wrapper_left h4, .text_wrapper_left p{
	text-align:right;
}
.icon_content_right, .icon_content_left {
	float:left;
	width:calc(100% - 70px);
	display:inline-block;
}
.icon_content_right{
	padding-left:25px;
}
.icon_content_left{
	padding-right:25px;
}
.icon_img_effect{
	text-align: center;
    float: left;
}
.icon_img_list{
	display:inline-block;
	color: #fff;
	width:70px;
	height:70px;
	line-height:70px;
	background:#30a3f0;
	font-weight:500;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.icon_wrapper_list{
	text-align:center;
	padding-bottom:50px;
	padding-top:55px;
	float:left;
	width:100%;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.icon_wrapper_list:hover h4 a{
	color: #30a3f0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.icon_wrapper_list h4 a{
	color: #fff;
	font-size:22px;
	text-transform:capitalize;
	font-weight:500;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.pd1{
	padding-left:40px;
}
.icon_wrapper_list p{
	margin-top: 13px;
	font-size:16px;
	color:rgba(255, 255, 255, 0.8);
}
.icon_img_list i:before{
	font-size:24px;
}
/***----galley wrapper css----****/
.gallery_wrapper{
	padding:50px 0;
	text-align:center;
}
.gallery_wrapper .protfoli_filter{
	padding-bottom:50px;
	display:inline-block;
}
.gallery_wrapper .protfoli_filter li {
  float: left;
  border:0;
  margin-right:10px;
}
.gallery_wrapper .protfoli_filter li a {
  color: #2d3135;
  display: inline-block;
  font-size:16px;
  font-weight:500;
  text-transform:capitalize;
  text-align: center;
	padding: 12px 22px;
   border-radius: 5px;
}
.gallery_wrapper .protfoli_filter li:hover a, .gallery_wrapper .protfoli_filter li:focus a, .gallery_wrapper .protfoli_filter li.active a {
	background: #30a3f0;
	color:#fff;
  	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.gallery_wrapper .portfoli_right {
  padding: 0;
  padding-left: 45px;
}
.gallery_wrapper .portfoli_inner .portfolio_item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
 border-radius:5px;
}
.gallery_wrapper .portfoli_inner .portfolio_item img {
  max-width: 100%;
  transition: all 500ms linear 0s;
}
.gallery_wrapper .portfoli_inner .portfolio_item:hover img, .gallery_wrapper .portfoli_inner .portfolio_item:focus img {
  transform: scale3D(1.2, 1.2, 2);
}
.gallery_wrapper .portfolio_item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.gallery_wrapper .portfolio_item {
  position: relative;
  overflow: hidden;
}
.gallery_wrapper .portfolio_item .portfolio_hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 300ms linear 0s;
}
.gallery_wrapper .portfolio_item:hover .portfolio_hover{
	 opacity: 1;
	 transition: all 300ms linear 0s;
}
.gallery_wrapper .portfolio_item .portfolio_hover a {
  color: #fff;
  font-size:20px;
  text-transform:capitalize;
  text-align: center;
  font-weight:600;
  position: relative;
  z-index: 1;
}
.gallery_wrapper .portfolio_item .portfolio_hover span {
  font-weight: 400;
  font-size: 16px;
  display: block;
  text-transform:capitalize;
  padding-top: 10px;
  color: #30a3f0;
}
.gallery_wrapper  .portfolio_item .portfolio_hover .zoom_popup i:before {
    line-height: 55px;
    font-size: 20px;
	color:#fff;
    font-weight: 600;
}
.portfolio_overlay {
  width: 100%;
  height:100%;
  background:rgba(0, 63, 91, 0.9);
  position:absolute;
  top:100%;
}
.gallery_wrapper .portfolio_item .portfolio_hover .zoom_popup {
  line-height: 55px;
  text-align: center;
  width: 55px;
  height: 55px;
  background: #30a3f0;
  border-top-left-radius:5px;
  border-bottom-right-radius:5px;
  display: block;
  position: absolute;
  right: 0;
  bottom:0;
  padding: 0;
  z-index:1;
  transition: all 300ms linear 0s;
}
.portfolio_item img{
	width:100%;
}
.gallery_btn{
	float:left;
	width:100%;
	padding-left:0;
	text-align:center;
}
.gallery_btn a{
	float:none;
	display:inline-block;
}
/*--video section Start --*/
.prs_video_section_main_wrapper{
	background:url('../images/vedio_bg.jpg') 50% 0 repeat-y;
	background-position:center 0;
	background-size:cover;
	background-repeat:no-repeat;
	height:100%;
	position:relative;
	background-attachment:fixed;
	padding-top:200px;
	padding-bottom:200px;
}
.prs_video_sec_icon_wrapper h1{
	font-size:90px;
	font-weight:600;
	color:#ffffff;
	text-transform:capitalize;
	padding-top:30px;
}
.prs_video_sec_icon_wrapper{
	text-align:center;
	float:left;
	width:100%;
}
.prs_video_sec_icon_wrapper img{
	width:100px;
}
.prs_video_sec_icon_wrapper ul{
	display:inline-block;
}
.prs_video_sec_icon_wrapper li{
    float: left;
   color:#ffffff;
	 -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
/***-----process wrapper css----***/
.process_wrapper{
	background:#f9f9f7;
	padding:100px 0;
	text-align:center;
}
.work_box{
	text-align:center;
	position:relative;
}
.work_img{
	padding-bottom:30px;
}
.work_process_wrapper{
	float:left;
	width:21%;
}
.work_process_wrapper:hover .work_box  h2 a{
	color:#30a3f0;
}
.work_process_main_wrapper{
	display:inline-block;
}
.work_img img{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width:100%;
}
.work_box  h2 a{
	float:left;
	width:100%;
	font-size:20px;
	font-weight:600;
	padding-bottom:10px;
	text-transform:capitalize;
}
.p2{
	margin:0 60px;
	position:relative;
}
.p2:after{
	content:'';
	position:absolute;
	left: -58px;
    border: 1px dashed #cecece;
    top: 36%;
    width: 56px;
    height: 1px;
}
.p2:before{
	content:'';
	position:absolute;
	right: -58px;
    border: 1px dashed #cecece;
    top: 36%;
    width: 56px;
    height: 1px;
}
.p3{
	margin-right:60px;
	position:relative;
}
.p3:before{
	content:'';
	position:absolute;
	right: -58px;
    border: 1px dashed #cecece;
    top: 36%;
    width: 56px;
    height: 1px;
}
.numbering{
	position: absolute;
    content: '';
    width: 55px;
    height: 55px;
    line-height: 47px;
    color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size: 22px;
    background-image: -webkit-gradient(linear,right bottom,left top,from(#fd4959),to(#fb7a85));
    background-image: linear-gradient(to top left,#fd4959,#fb7a85);
	right: -17px;
    bottom: 95px;
    border: 5px solid #f9f9f7;
}
.numbering2{
    background-image: -webkit-gradient(linear,right bottom,left top,from(#4a9ae7),to(#6badec));
    background-image: linear-gradient(to top left,#4a9ae7,#6badec);
}
.numbering3{
    background-image: -webkit-gradient(linear,right bottom,left top,from(#f5664f),to(#f78b78));
    background-image: linear-gradient(to top left,#f5664f,#f78b78);
}
.numbering4{
    background-image: -webkit-gradient(linear,right bottom,left top,from(#1ec3ce),to(#65d9e1));
    background-image: linear-gradient(to top left,#1ec3ce,#65d9e1);
}
/***----team wrapper css -----***/
.team_wrapper{
	padding:20px 0;
}
.team_slider_main {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius:5px;
	background:#2d3a4b;
}
.team_img_wrapper{

}
.team_info_wrapper{

	background:#2d3a4b;
	border-top-right-radius:7px;
	border-bottom-right-radius:7px;
	padding:50px 40px;
	padding-top:10px;
	padding-bottom:34px;
	 -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.team_slider_wrapper .owl-theme .owl-dots {
    display: none;
}
.team_slider_wrapper .owl-theme .owl-nav {
	position: absolute;
    top: 43%;
    z-index: 1000;
    display: block;
    left: 0;
    right: 0;
    margin: 0px auto;
}
.team_slider_wrapper .owl-theme .owl-nav .owl-prev {
	margin: 0;
    padding: 0;
	position:absolute;
    top: 0;
    color: #2d3a4b;
    width: 40px;
	left:-60px;
    height: 40px;
    line-height: 40px;
	border-radius:0;
    background: transparent;
    cursor: pointer;
	  -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team_slider_wrapper .owl-theme .owl-nav .owl-next {
    color: #2d3a4b;
	right: -60px;
    top: 0;
    position: absolute;
	width: 40px;
    height: 40px;
    line-height: 33px;
	background: transparent;
    cursor: pointer;
	border-radius:0;
	  -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team_slider_wrapper .owl-theme .owl-nav .owl-prev i:before, .team_slider_wrapper .owl-theme .owl-nav .owl-next i:before{
	font-size:28px;
	font-weight:600;
}
.team_slider_wrapper .owl-theme .owl-nav .owl-next:hover{
    color: #30a3f0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team_slider_wrapper .owl-theme .owl-nav .owl-prev:hover{
    color: #30a3f0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.team_info_wrapper h4 a{
	font-size:20px;
	font-weight:500;
	color:#fff;
	text-transform:capitalize;
	position:relative;
}
.team_info_wrapper h5{
	font-size:16px;
	color:rgba(255, 255, 255, 0.7);
	margin-top:10px;
	font-family: 'Lato';
	text-transform:capitalize;
	font-style:italic;
}
.team_info_social_icons {
    margin-top: 20px;
}
.team_info_social_icons li {
    display: inline-block;
    margin-right: 15px;
}
.team_info_social_icons li a {
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
}
.team_info_social_icons li a i {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #fff;
}
.team_info_social_icons li a:hover i{
	color:#30a3f0;
}
.team_info_wrapper h4 a:after {
    content: '';
    border: 2px solid #29abff;
    width: 30px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    left: 0;
    top: -14px;
}
.team_info_wrapper h4 a:before {
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    position: absolute;
    left: 0px;
    top: -13px;
}
.team_info_wrapper p{
	color:#fff;
	padding-top:20px;
}
/****----testimonial wrapper css-----****/
.testimonial_wrapper{
	/* background-image: url(../images/testi_img.jpg); */
    /* height: 85vh; */
    background-position: center 0;
    background-size: cover;
    position: relative;
	background-attachment:fixed;
    padding-top: 20px;
    padding-bottom: 35px;
}
@media (max-width: 767px){
.testimonial_wrapper{
    height: 100%;

}
.testimonial_wrapper h1{
	font-size:38px!important;
}
}


.testimonial_wrapper h1{
	font-size:58px
}

.testimonial_slider_wrapper{
	text-align:center;
}
.testimonial_slider_wrapper  .owl-theme .owl-dots{
	 position: absolute;
    top: 100%;
    margin: 0;
    left: 0;
    right: 0;
	z-index:1;
	display:block;
	margin-top:-120px;
}
@media (max-width: 1800px){
	.testimonial_slider_wrapper  .owl-theme .owl-dots{
		 position: absolute;
	    top: 100%;
	    margin: 0;
	    left: 0;
	    right: 0;
		z-index:1;
		display:block;
		margin-top:-40px;
	}
}



@media (max-width: 767px){
.testimonial_slider_wrapper  .owl-theme .owl-dots{
	 position: absolute;
    top: 100%;
    margin: 0;
    left: 0;
    right: 0;
	z-index:1;
	display:block;
	margin-top:-30px;
}
}
.testimonial_slider_wrapper  .owl-theme .owl-dots .owl-dot span{
	width: 12px;
    height: 12px;
	margin:5px;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	background:rgba(255, 255, 255, 0.3);
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.testimonial_slider_wrapper  .owl-theme .owl-dots .owl-dot.active span, .testimonial_slider_wrapper  .owl-theme .owl-dots .owl-dot:hover span {
	background:#30a3f0;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

/***----Slide1 start------***/
.testi_cont_wrapper {text-align:center; padding-bottom:50px;}
.testimonial_slider_wrapper .owl-theme .owl-nav {
    display:none;
}
/* .testi_cont_wrapper i:before{
	color:#30a3f0;
	font-size:60px;
	background:transparent;
	width:60px;
	height:60px;
	line-height:60px;
} */
.testi_cont_wrapper p{
	color:#fff;
	font-size:18px;
	font-weight:400;
	font-family: 'Lato';
	line-height:30px;
	padding:40px 80px;
	font-style:italic;
}
.testi_cont_wrapper h1 a{
	color:#fff;
	font-size:42px;
	font-weight:400;
	text-transform:uppercase;
	font-family: 'Lato';
}
@media (max-width: 767px){
.testi_cont_wrapper h1 a{
	color:#fff;
	font-size:20px;
	font-weight:400;
	text-transform:uppercase;
	font-family: 'Lato';
}


.testi_cont_wrapper h1{
	line-height: 22px!important;
	margin-top:10px;
}
}

.testi_cont_wrapper .ceo{

	color:#30a3f0;
	font-size:16px;
	line-height: 16px;
	padding:0;
	padding-top:240px;
}

@media (max-width: 1800px){
	.testi_cont_wrapper .ceo{

		color:#30a3f0;
		font-size:16px;
		line-height: 16px;
		padding:0;
		padding-top:160px;
	}
}

.testi_cont_wrapper img{
	display:inline-block !important;
	width:auto !important;
}
@media (min-width: 1920px){
	.testi_cont_wrapper img{
		display:block !important;
		width:35% !important;
		padding-left: 50px;
		padding-bottom: 10px;
	}
}
@media (min-width: 768px){
	.testi_cont_wrapper img{
		display:block !important;
		width:35% !important;
		padding-left: 50px;
		padding-bottom: 10px;
	}

	.testi_cont_wrapper .ceo{
		padding-top: 60px !important;
	}
}
@media (max-width: 767px){
	.testi_cont_wrapper img{
		display:block !important;
		width:95% !important;
		padding-left: 50px;
		padding-bottom: 10px;
	}
}




/***----pricing wrapper start------***/
.pricing_wrapper{
	padding:100px 0;
}
.pricing_box_wrapper{
	background:#f9f9f7;
	text-align:center;
	border-radius:5px;
}
.pricing_box_wrapper h1{
	font-size:22px;
	text-transform:capitalize;
	font-weight:600;
	padding:30px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.pricing_box_wrapper h2{
	font-size:50px;
	font-weight:700;
	padding:20px 0;
	color:#fff;
	font-family: 'Lato';
	line-height:13px;
	text-transform:capitalize;
}
.pricing_box_wrapper h2 span{
	font-size:16px;
	color:rgba(255, 255, 255, 0.59);
	font-weight:400;
	float:left;
	width:100%;
	padding-top:30px;
}
.pricing_main_text{
	font-size:14px !important;
	padding:30px 0 !important;
}
.pricing_wrapper h5{
	float:left;
	width:100%;
	padding-top:40px;
	font-size:18px;
	line-height:30px;
	font-weight:500;
	text-align:center;
	color:#2d25c8;
	text-transform:capitalize;
}
.main_pdet{
	background:#2d3a4b;
	padding:20px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.pricing_list22{
	float:left;
	width:100%;
	text-align:center;
	padding:20px 30px;
}
.pricing_list22 li{
    display: block;
    padding: 8px 0;
    color: #2d3a4b;
	text-transform:capitalize;
}
.dollarr{
	font-size:30px !important;
	color:#fff !important;
	float:none !important;
	width:auto !important;
}
.price_btn{
	width: 170px;
    height: 50px;
    background: #2d3a4b;
    display:inline-block;
	border:0;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    color: #fff;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	margin-bottom:40px;
    line-height: 50px;
    font-weight: 600;
    text-transform: uppercase;
}
.price_btn:hover{
	color:#fff;
}
.pricing_box_wrapper:hover h1{
	color:#30a3f0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.pricing_box_wrapper:hover .main_pdet{
	background:#30a3f0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.pricing_box_wrapper:hover .price_btn{
	background:#30a3f0;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
/***--graph wrapper css---***/
.graph_wrapper{
	background-image: url(../images/graph.jpg);
    height: 100%;
    background-position: center 0;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    padding: 100px 0;
}
.slill_bar{
	display:block;
	float:left;
	position:absolute;
	margin-top: 60px;
}
.skills span {
  float:right;
  margin-right:5px;
}
.skill-item {
  margin-bottom: 30px;
}
.skill-item h6{
	font-size:16px;
	font-weight:500;
	padding-bottom:16px;
	text-transform:capitalize;
}
.skill-item:last-child {
  margin-bottom: 0;
}
.skills-progress {
    height: 12px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    position: relative;
	border: 1px solid #eeeeee;
}
.skills-progress span {
     position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 11px;
    background: #30a3f0;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.skills-progress span h5 {
  position: absolute;
  top: 23px;
  left: 0;
  width: 0;
  height: 100%;
  background: #000;
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
/***--blog wrapper css---***/
.blog_wrapper{
	padding:100px 0;
}
.blog_wrapper .blog-post-wrapper .post-thumbnail{
	position:relative;
}
.blog_wrapper .blog-post-wrapper .blog-content{
	padding-top:30px;
}
.blog_wrapper .blog-post-wrapper .entry-header {
  margin-bottom: 20px;
  background:transparent;
}
.blog_wrapper .blog-post-wrapper .entry-title a{
	font-size:22px;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-weight:600;
}
.blog_wrapper .blog-post-wrapper .entry-header .entry-meta {
	font-size: 13px;
	color:#444444;
	text-transform: uppercase;
	padding-top:10px;
}
.blog_wrapper .blog-post-wrapper .entry-header .entry-meta li {
	display: inline-block;
	line-height: 10px;
	padding-right: 15px;
	margin-right: 15px;
}
.post-thumbnail .test-popup-link{
	position:absolute;
	top:45%;
	left:0;
	right:0;
	margin:0px auto;
	text-align:center;
}
.post-thumbnail img{width:100%;}
.vedie_img img{
	width:auto;
}
.blog_wrapper .blog-post-wrapper .entry-header .entry-meta li:last-child:after{
	content: '';
    position: absolute;
    top: -2px;
    width: 1px;
    height: 15px;
    background: #444;
    left: -18px;
}
.blog_wrapper .blog-post-wrapper .entry-header .entry-meta li:last-child {
	border-right: 0;
	padding-right: 0;
	margin-right: 0;
	position:relative;
}
.blog_wrapper .blog-post-wrapper .entry-header .entry-meta li a{
	color: #444444;
}
.blog_wrapper .blog-post-wrapper .entry-header .entry-meta li a:hover{
	color: #30a3f0;
}
.blog_wrapper .blog-post-wrapper .entry-content {}
.blog_wrapper .blog-post-wrapper .entry-content p{
	margin: 0;
}
.blog_wrapper .blog-post-wrapper .entry-footer {
	position: absolute;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
	bottom:20px;
}
.blog-post-wrapper{
	float:left;
	width:100%;
	position:relative;
}
.blog_wrapper .blog-post-wrapper .entry-footer .entry-meta li {
	display: inline-block;
	margin-right: 7px;
}
.blog_wrapper .blog-post-wrapper .entry-footer a{
  display: block;
  padding: 5px 13px;
  font-size: 14px;
  color: #707070;
  background: #fff;
  text-transform: uppercase;
  -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
		-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.blog_wrapper .blog-post-wrapper .entry-footer a i{
	margin-right:5px;
}
.blog_wrapper .blog-post-wrapper .entry-footer a:hover{
  color: #fff;
  background: #30a3f0;
  	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.blog-post-wrapper:hover .entry-title a{
	color:#30a3f0;
}
.blog_wrapper .blog-post-wrapper .entry-footer .entry-meta li:last-child {
	margin-right: 0;
}
#blogoneSlider .carousel-control {
  top: 49%;
  bottom: 20px;
  position:absolute;
  width: 30px;
  height: 23px;
  font-size: 14px;
  font-weight:600;
  color: #2d3a4b;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}
#blogoneSlider .carousel-control.left,
#blogoneSlider .carousel-control.right {
  background-image: none;
  background-color: #fff;
  line-height: 24px;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  text-align:center;
  line-height: 35px;

}
#blogoneSlider .carousel-control:focus,
#blogoneSlider .carousel-control:hover {
  background-color: #30a3f0;
  color: #fff !important;
  filter: alpha(opacity=100);
  opacity: 1;
}

#blogoneSlider .carousel-control.left {
  left: 10px;
}
#blogoneSlider .carousel-control.right {
  right: 10px;
}
.blog-content .blog_read{
	text-transform:capitalize;
	color:#30a3f0;
	padding-top:20px;
	padding-bottom:30px;
	font-weight:500;
	float:left;
	display:inline-block;
}
.blog-content .blog_read i{
	position:relative;
	top:1px;
	left:5px;
}
/****----partner wrapper css-----****/
.partner_wrapper{
	padding:100px 0;
	background:#fff;

}
.pn_slider_wraper .item {
	width:100%;

}
.pn_slider_wraper .owl-theme .owl-dots .owl-dot {
    display: none;
}
.pn_slider_wraper .owl-theme .owl-nav {
	display:none;
}
.pn_img_wrapper{
	text-align:center;
	float:left;
	width:100%;

}
.pn_img_wrapper img{
	width:auto !important;
	opacity:0.6;
	display:inline-block !important;
	 	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.pn_img_wrapper img:hover{
	opacity:1;
	 	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
/* newsletter wraper css */
.news_letter_wrapper{
	padding-top:80px;
	padding-bottom: 80px;
	background:#30a3f0;
}
.lr_nl_heading_wrapper{
	float:left;
	width:50%;
}
.lr_nl_heading_wrapper h2{
	font-size:44px;
	color:#fff;
	font-weight:600;
	text-transform:uppercase;
}
.lr_nl_heading_wrapper p{
	color:#fff;
	padding-top:5px;
}

.lr_nl_heading_wrapper_news{

}
.lr_nl_heading_wrapper_news h2{
	font-size:44px;
	color:#fff;
	font-weight:600;
	text-transform:uppercase;
}
.lr_nl_heading_wrapper_news p{
	color:#fff;
	padding-top:5px;
}
.lr_nl_form_wrapper{
	float:left;
	width:50%;
	margin-top:8px;
}
.about_wrappper {
	background:#fff;
}
.lr_nl_form_wrapper input{
	float:left;
	width:calc(100% - 150px);
	height:50px;
	border:0;
	background:rgba(255, 255, 255, 0.19);
	color:#fff;
	padding-left:20px;
	/* text-transform:capitalize; */
	border-right:0;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
	position: relative;
}
.lr_nl_form_wrapper button{
	width:150px;
	height:50px;
	float:left;
	background:#fff;
	border:1px solid #fff;
	color:#2d3a4b;
	cursor:pointer;
	text-transform:uppercase;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
	font-weight:700;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.lr_nl_form_wrapper button:hover{
	color:#379ff0;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.lr_nl_form_wrapper input::-webkit-input-placeholder {
	color: #fff;
}
.lr_nl_form_wrapper input::-moz-placeholder {
	color: #fff;
}
.lr_nl_form_wrapper input:-ms-input-placeholder {
	color: #fff;
}
.lr_nl_form_wrapper input:-moz-placeholder {
	color: #fff;
}
/****-----------footer wrapper css------------********/
.footer_wrapper {
   background:#1e2733;
   padding:100px 0;
}
.foter_top_wrapper{
	padding:50px 0;
	padding-bottom:45px;
	text-align:center;
	 background:#1e2733;
	 border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.section2_footer_wrapper {
    float: left;
    width: 100%;
}
.tb_foter_left {
    float: left;
    width: 100%;
    text-align:center;
}
.foter_top_wrapper li{
	display:inline-block;
	width:9%;
	text-align:center;
}
.foter_top_wrapper li a{
	float:left;
	width:100%;
	text-align:center;
	color:rgba(255, 255, 255, 0.7);
	font-size:24px;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.foter_top_wrapper li a:hover{
	color:#30a3f0;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_about_wrapper,
.wrapper_second_useful,
.wrapper_second_blog {
    float: left;
    width: 100%;
}
.section2_footer_wrapper h4 {
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 32px;
	font-weight:500;
    text-transform: uppercase;
    color: #fff;
}
.wrapper_first_image{
	padding-bottom:30px;
}
.footer_widget h4:before {
    content: '';
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    position: absolute;
    left: 0px;
    bottom:34px;
}
.footer_widget h4:after {
    content: '';
    border: 2px solid #29abff;
    width: 30px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    left: 0;
    bottom:33px;
}
.abotus_content {
    float: left;
    width: 100%;
}
.abotus_content {
    padding-bottom: 25px;
}
.abotus_content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}
.footer_about_wrapper .blog_read{
	text-transform:capitalize;
	color:#30a3f0;
}
.aboutus_social_icons {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer_useful_wrapper ul li {
    margin-bottom: 13px;
}
.footer_useful_wrapper ul li i {
    color: #ececec;
    margin-right: 20px;
    font-size: 16px;
}
.footer_useful_wrapper ul li a {
    color: #ececec;
    font-size: 16px;
    text-transform: capitalize;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_useful_wrapper ul li a:hover {
    color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_about_wrapper {
	padding-bottom:15px;
	 border-bottom:1px solid rgba(255, 255, 255, 0.2);
}
.btm_foter_box {
    float: left;
    width: 100%;
    padding-top: 40px;
	text-align:center;
    padding-bottom: 30px;
}
.ft_blog_wrapper1,
.ft_blog_wrapper2 {
    float: left;
    width: 100%;
}
.ft_blog_wrapper1 {
    padding-bottom: 25px;
	position:relative;
}
.ft_blog_wrapper1:after{
	content:'';
	position:absolute;
	bottom:15px;
	left:0;
	right:0;
	height:1px;
	width:100%;
	background:rgba(255, 255, 255, 0.2);
}
.ft_blog_date {
	font-size: 14px;
    color: #30a3f0;
	margin-top:5px;
	text-transform:uppercase;
}
.ft_blog_image {
    float: left;
    width: 80px;
}
.ft_blog_text {
    font-size: 14px;
    font-weight: 500;
    float: left;
    width: calc(100% - 80px);
    padding-left: 10px;
}
.ft_blog_text p a {
    font-size: 16px;
    color:rgba(255, 255, 255, 0.7);
	line-height:20px;
	text-transform:capitalize;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.ft_blog_text p a:hover {
    color: #30a3f0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.section2_bottom_wrapper {
	background:#1e2733;
	border-top:1px solid rgba(255, 255, 255, 0.2);
}
.footer_btn_wrapper {
    float: right;
}
.foter_contact_nav ul li a p {
    color: #fff;
    text-transform: lowercase !important;
}
.contect_form_footer input::-webkit-input-placeholder, .contect_form_footer textarea::-webkit-input-placeholder  {
	color: rgba(255, 255, 255, 0.5);
}
.contect_form_footer input::-moz-placeholder, .contect_form_footer textarea::-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.contect_form_footer input:-ms-input-placeholder, .contect_form_footer textarea:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.contect_form_footer input:-moz-placeholder, .contect_form_footer textarea:-moz-placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.foter_contact_nav ul li a p:hover {
    color: #f6ce33;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.footer_widget h4{
	font-size:22px;
	color:#fff;
	position:relative;
	text-transform:capitalize;
	padding-bottom:55px;
}
.ft_blog_image img{
	border-radius:5px;
}
.footer_about_wrapper .blog_read i{
	position:relative;
	top:2px;
	left:4px;
}
.contect_form_footer {
    position: relative;
}
.contect_form_footer input {
    width: 100%;
    height: 40px;
    color: #c8c8c8;
    background: #353d48;
    font-size: 14px;
	font-style:italic;
    padding-left: 10px;
    margin-bottom: 10px;

    line-height: 40px;
    border-radius: 2px;
    border:0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_contact_wrapper ul li {
    margin-bottom: 12px;
	float:left;
	width:100%;
	padding-bottom:10px;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_contact_wrapper ul li:last-child{
	border:0;
}
.footer_btn{
	padding-top:5px;
	padding-left:0;
	width:100%;
}
.footer_btn a{
	width:100%;
	height:40px;
	line-height:38px;
}
.dark_btn a::before {
    border: 2px solid #30a3f0;
}
.dark_btn a{
	background: #30a3f0;
    color: #fff;
}
.dark_btn a:hover {
    background: transparent;
    color: #30a3f0;
}
.contect_form_footer textarea {
    height: 120px;
	padding-left:10px;
	width:100%;
    font-size: 14px;
	color:#c8c8c8;
	font-style:italic;
    line-height: 24px;
    /* text-transform: capitalize; */
    border-radius: 2px;
    border: 0;
	resize:none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #353d48;
}
.contect_form_footer i{
	margin-right: -30px;
    position: relative;
    left: -26px;
    font-size: 14px;
}
.footer_contact_wrapper li span {
    float: left;
    width: 80px;
    color: #67737f;
	text-transform:capitalize;
}
.footer_contact_wrapper li p {
    float: left;
    width: calc(100% - 80px);
    color: #79848f;
	padding-left:15px;
    margin-bottom: 0px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.footer_contact_wrapper li p a{
	color:#79848f;
}
.footer_contact_wrapper li p a:hover, .btm_foter_box p a:hover{
	color:#30a3f0;
}
.btm_foter_box p{
	float:left;
	color:#67737f;
	font-size:16px;
	text-transform:capitalize;
}
.btm_foter_box p a{
	color: #67737f;
	margin-left:2px;
}
.aboutus_social_icons{
	float:right;
	margin:0;
	padding:0;
	list-style:none;
}
.aboutus_social_icons li{
	float:left;
	margin-left:20px;
}
.aboutus_social_icons li:first-child{
	margin-left:0px;
}
.aboutus_social_icons li a{
	float:left;
	text-align:center;
	color:#67737f;
	text-transform:uppercase;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.aboutus_social_icons li a:hover{
	color:#30a3f0;
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.cd-dropdown h2 a{
	text-transform:capitalize;
	font-size:22px;
	font-weight:500;
	color:#2d3a4b;
}
.cd-dropdown h2 a span img{
	width:180px;
	margin-right:4px;
	margin-top:-4px;
}
.cd-dropdown h2{
	line-height:55px;
}
.cd-dropdown .cd-close::after, .cd-dropdown .cd-close::before{
	top:55%;
	height: 18px;
    width: 2px;
    background-color: #2d3a4b;
}
.cp_heading_wraper{
	text-align:center;
	padding-bottom:60px;
}
.cp_heading_wraper h3 {
    font-size: 36px;
    color: #3a424a;
    line-height: 40px;
    position: relative;
    /* text-transform: capitalize; */
    font-weight: 600;
	margin-bottom:50px;
}
.cp_heading_wraper h3:after {
    content: '';
    border: 2px solid #29abff;
    width: 35px;
   	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
    position: absolute;
    left: 0;
	right:0;
	margin:0px auto;
    top: 59px;
}
.cp_heading_wraper h3:before {
    content: '';
    border: 1px solid #c8c8c8;
    width: 80px;
    position: absolute;
    left: 0px;
    top: 60px;
	right:0;
	margin:0px auto;
}
.cp_heading_wraper p {
    font-size: 16px;
    font-weight: 400;
    /* text-transform: capitalize; */
}


.cp_heading_wraper_fix{
	text-align:center;
	padding-bottom:100px;
}
.cp_heading_wraper_fix h3 {
    font-size: 36px;
    color: #3a424a;
    line-height: 40px;
    position: relative;
    /* text-transform: capitalize; */
    font-weight: 600;
	margin-bottom:50px;
}
.cp_heading_wraper_fix h3:after {
    content: '';
    border: 2px solid #29abff;
    width: 35px;
   	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
    position: absolute;
    left: 0;
	right:0;
	margin:0px auto;
    top: 99px;
}
.cp_heading_wraper_fix h3:before {
    content: '';
    border: 1px solid #c8c8c8;
    width: 80px;
    position: absolute;
    left: 0px;
    top: 100px;
	right:0;
	margin:0px auto;
}
.cp_heading_wraper_fix p {
    font-size: 16px;
    font-weight: 400;
    /* text-transform: capitalize; */
}

.special{
	background-color: #c8c8c8;
}

.columnas{
  columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
}
.submg{
	font-size: 14px;
	line-height: 17px;
	padding: 10px 10px;
	font-weight: normal;

}
@media (max-width: 767px){
.hide-mob{
/* width: 80%;*/
padding-left: 10%;
}
}

@media (max-width: 767px){
.blog_wrapper{
	padding:10px 0;
}

}
.fix-padding{
	padding-top:80px;
}
@media (max-width: 767px){
.fix-padding{
	padding-top:0;
}
}

/* @media (mix-width: 767px){
.fix-slider{
	width:80%;
}
} */

/****-----inner page header----*****/
.page_title_section {
	padding:40px 0;
	text-align:center;
	position:relative;
	padding-bottom:10px;
}
.page_title_section:after{
	content:'';
	position:absolute;
	left:0;
	top:35px;
	right:0;
	margin:0px auto;
	/* height:1px; */
	width:100%;
	background:rgba(255, 255, 255, 0.1);
}
.page_header h1 {
    font-size: 35px;
    line-height: 35px;
	text-transform:capitalize;
    color: #fff;
    font-weight: 600;
	letter-spacing:1px;

}
.sub_title_section{
   text-align:center;
    padding-top:15px;
}
.sub_title_section ul{
	display:inline-block;
}
.page_header .sub_title li{
	float: left;
    font-size: 16px;
	line-height:35px;
	text-transform:capitalize;
    color: rgba(255, 255, 255, 0.6);
	font-weight: 400;
}
.page_header .sub_title li:last-child{
	color: #30a3f0;
	font-style:italic;
}
.page_header .sub_title a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
	text-transform:capitalize;
	font-style:italic;
}
.page_header .sub_title a:hover {
    color: #30a3f0;
}
.inner_top_header{
	background: url(../images/inner_header.jpg) 50% 0 repeat-y;
    float: left;
    width: 100%;
    height: 100%;
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/****----login wrapper css------****/
.login_wrapper_top{
	background-image: url(../images/login.jpg);
    height: 100%;
    background-position: center 0;
    background-size: cover;
    position: relative;
    padding:50px 0;
}
.login_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
}
.login_tabs .nav{
	border:0;
	padding:30px 0;
}
.login_tabs {
	text-align:center;
}
.login_tabs .nav li{
	float:left;
	border:0;
	border-left:0;
}
.login_tabs .nav-tabs .nav-link{
	font-size: 16px;
    font-weight: 500;
	color:#30a3f0;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 85px;
	border:0;
	border-radius:0;
	background:#fbfbfb;
}
.login_tabslogin_tabs{
    text-align: center;
}
.login_tabs ul{
	display:inline-block;
}
.login_tabs .nav-tabs .nav-item.show .nav-link, .login_tabs .nav-tabs .nav-link.active{
    color: #fff !important;
	border-radius:0;
	background:#30a3f0;
	position:relative;
}
.login_form_wrapper p{
	text-align:center;
}
.login_wrapper a.btn {
    color: #fff;
    width: 100%;
    height: 50px;
	padding: 6px 25px;
    line-height: 36px;
	margin-bottom:20px;
	text-align:left;
    background: #2c49ab;
    font-size: 16px;
	border-radius:0;
    border: 1px solid #2c49ab;
}
.login_wrapper a.btn:focus{
	outline:none;
	border:none;
	box-shadow:none;
}
.login_wrapper a.btn:hover {
   background-color: #002398;
   border-color: #002398;
   -webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.login_wrapper .form-control {
	height: 53px;
    padding: 15px 20px;
    font-size: 14px;
	text-transform:none;
    line-height: 24px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
	border-radius:0;
	-webkit-transition: all 0.3s ease 0s;
   -moz-transition: all 0.3s ease 0s;
   -o-transition: all 0.3s ease 0s;
   transition: all 0.3s ease 0s;
   background-color: #fff;
}
.pd3{
	padding:0 20px;
}
.login_wrapper h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}
.login_wrapper textarea.form-control{
	height:auto;
	resize:none;
}
.login_wrapper input::placeholder, .login_wrapper textarea::placeholder {
  color: #999;
}
.login_wrapper {
	padding:0 40px;
	padding-bottom:10px;
}
.login_wrapper .form-control:focus {
	color: #999;
	background-color: fafafa;
	border: 1px solid #30a3f0  !important;
}
.login_remember_box{
	margin:20px 0;
	color:#999;
}
.login_remember_box .control {
    position: relative;
	padding-left:20px;
    cursor: pointer;
    font-size: 14px;
	line-height:14px;
    font-weight: 500;
	margin:0;
}
.login_remember_box .control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.login_remember_box .control__indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  background: #fff;
  border: 1px solid #999;
}
.login_remember_box .control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.login_remember_box .control input:checked ~ .control__indicator:after {
  display: block;
}
.login_remember_box .control--checkbox .control__indicator:after {
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.login_remember_box .forget_password{
	float:right;
	color:#db4c3e;
	font-size:14px;
	text-decoration:underline;
}
.check-box {
    margin-top: 35px;
}
.check_box_anchr {
    color: ##002398 !important;
}
.login_tab_top_wrap{
	box-shadow:0px 4px 25px rgba(0,0,0,0.06);
	background:#fff;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.login_btn {
	padding:0;
	padding-bottom:30px;
	float:left;
	padding-top:10px;
	width:100%;
}
.login_btn a{
	width:100%;
	line-height:50px;
	border-radius:0;
}
.facebook_wrap i, .ig_wrap i, .lk_wrap i, .tw_wrap i{
	margin-right:40px;
	font-weight:300 !important;
	color:#fff!important;

}

.facebook_wrap a:hover {
    background: transparent;
    color: #425b96;
}
.facebook_wrap a::before {
    border: 2px solid #425b96;
}
.google_wrap a{
	background:#bd081c;
	text-transform:capitalize;
}
.google_wrap a:hover {
    background: transparent;
    color: #bd081c;
}
.google_wrap a::before {
    border: 2px solid #bd081c;
}



/***----about wrapper II-----****/
.iner_about_II{
	padding:100px 0;
}
.about_bg_II {
    position: relative;
    left: -100px;
}
.iner_about_II .video_img_box {
    position: absolute;
    top: 70px;
}
.iner_about_II .video_img_box:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
	background: rgba(48, 163, 240, 0.8);
}
.iner_about_II img{
	width:100%;
}
.iner_about_II .video_img_box .test-popup-link {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-left: -30px;
    margin-top: -30px;
    border: 0;
    color: #3498db;
    background: #fff;
    font-size: 20px;
    line-height: 80px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.iner_about_II .about_text_wrapper{
	float:left;
	width:100%;
	padding-left: 50px;
}
.iner_about_II .about_text_wrapper ul li {
    font-size: 18px;
    color: #2d3a4b;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 16px;
    margin-bottom: 0px;
}
.iner_about_II .about_text_wrapper span {
    width: 40px;
    height: 40px;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    vertical-align: middle;
    border-radius: 100%;
    margin-right: 15px;
}
.iner_about_II .about_text_wrapper span:after {
    content: "";
    width: 2px;
    height: 18px;
    display: block;
    margin: -1px auto 0 auto;
    background-color: #2d3a4b;
}
.iner_about_II .about_text_wrapper ul{
	padding-top:20px;
	padding-bottom:10px;
}
.iner_about_II .about_text_wrapper ul li:last-child span:after {
    background: none;
}
.iner_about_II .btn_style {
    background: #3498db;
    color: #fff;
    margin-top: 30px;
}
.iner_about_II .section_content p{
	margin:0;
	font-style:normal;
}
.inner_Story_wrapper{
	padding:100px 0;
}
.inner_Story_wrapper_ch{
	padding:20px 0;
}
.num{
	color: #33a4f0;
	margin: 20px 0 5px 0;
}


/*******------- error page start--------*******/
.error_wrapper{
    float: left;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 120px;
}
.main_wrapper_three_img{
	float:left;
	width:100%;
	position:relative;
}
.main_wrapper_three_img img{
	-webkit-animation: fa-spin 10s infinite linear;
    animation: fa-spin 10s infinite linear;
}
.wheel_img_one_wrapper{
	position:absolute;
	left:0;
}
.abt_iner_img{
	float:left;
	width:100%;
}
.wheel_img_two_wrapper{
	position: absolute;
	left: 170px;
    top: 111px;
}
.wheel_img_three_wrapper{
	position: absolute;
	left: 0;
    top: 217px;
}
.main_wrapper_three_content{
	float:left;
	width:100%;
	padding-left:60px;
}
.main_wrapper_three_content span{
	font-size:200px;
	color:#29abff;
	font-weight:600;
}
.main_wrapper_three_content h2 span:first-child{
	text-shadow: -15px 0px 5px #dedede;
    position: relative;
    z-index: 1;
}
.main_wrapper_three_content h2 span:nth-child(2){
	color: #2d3a4b;
    margin-left: -30px;
    z-index: 1;
	text-shadow: 4px 8px 5px #dedede;
    position: relative;
}
.main_wrapper_three_content h2 span:last-child{
	margin-left: -30px;
    z-index: 1;
    text-shadow: 15px 10px 5px #dedede;
    position: relative;
}
.main_wrapper_three_content h3{
	font-size:30px;
	color:#34495e;
	font-weight:600;
	text-transform:uppercase;
	position:relative;
	margin-bottom:50px;
	line-height:30px;
}
.main_wrapper_three_content h3:before {
    content: '';
    border: 1px solid #c8c8c8;
    width: 70px;
    position: absolute;
    left: 0px;
    top: 46px;
}
.main_wrapper_three_content h3:after {
    content: '';
    border: 2px solid #29abff;
    width: 30px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    left: 0;
    top: 45px;
}
.main_wrapper_three_content p{
	font-size:16px;
	margin-bottom:20px;
}
.main_wrapper_three_content p a{
	color:#30a3f0;
	font-style:italic;
	text-transform:capitalize;
}
.main_wrapper_three_email{
	text-align:center;
}
.main_wrapper_three_email input {
    height: 46px;
	width:36%;
    color: #949494;
    font-size: 28px;
	/* text-transform:capitalize; */
    background: transparent;
    border:0;
	padding-left:20px;
}
.main_wrapper_three_email input:focus{
    outline: none;
}
.main_wrapper_three_email i {
    color: #949494;
	font-size:26px;
}
.error_form{
	position:relative;
}
.error_form .form-control {
	width:100%;
    height: 50px;
    padding: 15px 10px;
    font-size: 16px;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    box-shadow: none;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #f9f9f9;
}
.error_form  i {
    position: absolute;
    top: 20px;
    right: 10px;
    font-size: 14px;
    color: #30a3f0;
	cursor:pointer;
}
/***---comming soon css---***/
.comming_main_wrapper {
    background: url(../images/comming.png) 50% 0 repeat-y;
    background-position: center 0;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 30px 15px;
    height: 100vh;
    overflow: hidden;
}
.comming_wrapper{
	border:1px solid #30a3f0;
}
.comming_logo{
	float:left;
	width:auto;
}
.comming_about{
	float:right;
	width:auto;
}
.comming_top_header{
	padding:50px;
}
.comming_about h2 a{
	font-size:18px;
	font-weight:600;
	text-transform:capitalize;
}
.comming_wrapper h1{
	font-size:36px;
	font-weight:600;
	float:left;
	width:100%;
	text-align:center;
	padding-bottom:40px;
	text-transform:capitalize;
}
.comming_about h2 a i{
	font-size:20px;
	margin-right:6px;
}
#clockdiv{
    float: left;
    width: 100%;
    color: #fff;
    display: inline-block;
}
#clockdiv > div{
    display: inline-block;
    margin: 0px 40px;
	font-size:84px;
	position:relative;
	text-align:center;
}
#clockdiv > div:after {
    content: "";
    position: absolute;
    top: 45%;
    right: -31px;
    background-image: url(../images/timerdot.png);
    height: 30px;
    width: 7px;
    background-repeat: no-repeat;
    margin-top: -30px;
}
#clockdiv > div:last-child:after {
	display:none;
}
#clockdiv div > span{
    float: left;
    width: 100%;
	letter-spacing:10px;
	font-weight:500;
}
.smalltext{
    float: left;
    width: 100%;
    padding-top: 40px;
    font-size: 16px;
    color: #fff;
	text-transform:uppercase;
	font-weight:400;
	letter-spacing:2px;
}
.timer_wrapper{
	background:#30a3f0;
	padding:60px;
	padding-top:90px;
	position:relative;
	text-align:center;
}
.comming_soon_form{
	padding:65px 0;
}
.comming_soon_form .cp_heading_wraper h3{
	font-size:30px;
}
.comming_soon_form .cp_heading_wraper{
	padding-bottom:30px;
}
.cming_btn{
	padding:0;
}
.cming_btn a{
	width:170px;
}
.comming_soon_form .form-control{
	background:#fff;
}
.iner_about_II .about_text_wrapper span {
    width: 40px;
    height: 40px;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    text-align: center;
    line-height: 37px;
    vertical-align: middle;
    border-radius: 100%;
    margin-right: 15px;
}
.iner_about_II .about_text_wrapper span:after {
    content: "";
    width: 2px;
    height: 18px;
    display: block;
    margin: -1px auto 0 auto;
    background-color: #2d3a4b;
}
.iner_about_II .about_text_wrapper ul{
	padding-top:20px;
	padding-bottom:10px;
}
.iner_about_II .about_text_wrapper ul li:last-child span:after {
    background: none;
}
.iner_about_II .btn_style {
    background: #3498db;
    color: #fff;
    margin-top: 30px;
}
.iner_about_II .section_content p{
	margin:0;
	font-style:normal;
}


.contact_section .form-control {
	height: 50px;
    padding: 15px 18px;
    font-size: 13px;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    box-shadow: none;
	/* text-transform:capitalize; */
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #f9f9f9;
}
.contact_section form{
	width:100%;
}
.contact_section textarea.form-control{
	height:auto;
	resize:none;
}
.contact_section input::placeholder,
.contact_section textarea::placeholder {
  color: #999;
}
.contact_section .form-control:focus, .contact_section .form-control:hover {
    color: #111;
    background-color: transparent;
    border: 1px solid #30a3f0 !important;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.contact_section .btn:focus{
	outline:none;
}
.contact_section-pos,.contact_section-e,
.contact_section-m,.contact_section-p{
	position: relative;
}
.contact_section .tb_es_btn_wrapper{
	float:left;
	width:100%;
	text-align:left;
}
.ctc_row{
	padding-right:0;
}
.contact_section .form-group i {
    position: absolute;
    top: 20px;
    right: 17px;
	font-size:14px;
    color: #c7c7c7;
}
.contact_section .tb_es_btn_wrapper button{
	display:inline-block;
    width: 100%;
    height: 50px;
    line-height: 48px;
    text-align: center;
   -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #30a3f0;
    color: #fff;
    font-weight: 600;
	text-transform:uppercase;
	border:2px solid #30a3f0;
    border-radius: 0;
	cursor:pointer;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.contact_section{
	padding:20px 0;
}
.contact_section .form-group{
	margin-bottom:13px;
	position:relative;
}
/* Big half circle */
#bigHalfCircle path {
	fill: #f9f9f9;
	stroke: #f9f9f9;
}

/* .logos-nav li{float:left; margin: 5px; display:block; position:relative}
.logos-nav .hover{
  position:absolute; background: RGBA(255, 255, 255, 0.9); top:0; right:0;
  font:11px arial; text-decoration:none; color: gray; text-align:center;
  line-height:50px; width:130px; height:50px; display:none;
}

.accesos-mobile{
	margin-top:320px;
} */

.fix-drop{
	color:ccc!important;
}

.marcas-home{


}

.marcas-home .pn_img_wrapper{
	width: auto !important;

}
.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}




/*magnific-popup-containt*/
.popup-links {
	position: fixed;
	right: 0;
	top: 190px;
}

.popup-links-inner {
	background: #ffffff;
	position: relative;
	right: calc(-100% - -40px);
}

.popup-links ul li {
	background: #1f1f2f;
	color: #fff;
	width: 100%;
	right: 0;
	padding-right: 5px;
	position: relative;
	margin-bottom: 1px;
	transition: all 0.4s ease 0s;
}

.popup-links ul li:hover {
	right: calc(100% - 40px);
}

.popup-links a {
	display: inline-block;
}
.popup-links ul li .icon-text {
	color: #fff;
	background: #1f1f2f;
	line-height: 40px;
}

.popup-links .icon {
	background: rgba(0, 0, 0, 0) url("../images/sprite.png") no-repeat scroll 0 0;
	width: 40px;
	height: 35px;
	display: inline-block;
	float: left;
}

.popup-links ul li.categories .icon {
	background-position: -55px -785px;
}

.popup-links ul li.cart-icon .icon {
	background-position: -6px -343px;
}

.popup-links ul li.account .icon {
	background-position: -45px -192px;
}

.popup-links ul li.search .icon {
	background-position: -5px -85px;
}

.popup-links ul li.scroll .icon {
	background-position: -54px -814px;
}

.popup-position {
	background: #fff;
	margin: 0 auto;
	max-width: 530px;
	position: relative;
}

.popup-detail{
	padding: 30px;
	max-height: 530px;
	overflow-y: scroll;
}

.popup-position .mfp-close {
	color: #fff;
}

.popup-title {
	padding: 30px;
	border-bottom: 1px solid #e1e1e1;
	background: #1b2839;
}

.popup-title .main_title {
	color: #fff;
}


#account_popup .account-inner {
	text-align: center;
	padding: 30px 0;
	border: 1px solid #2b9ac2;

}

#account_popup .popup-detail a {
	text-align: center;
	color: #2b9ac2;
}

#account_popup a:hover .account-inner  {
	color: #1b2839;
}

#account_popup .popup-detail .fa {
	font-size: 40px;
}


.btn-cta{
	background-color: #fff;
	color:#999;
	text-transform: uppercase;
	margin: 50px 0;
	padding: 20px 0;
	width: 50%;
}
@media (max-width: 767px){
	.btn-cta{
		background-color: #fff;
		color:#999;
		text-transform: uppercase;
		margin: 50px 0;
		padding: 20px 0;

	}
}

@media (max-width: 767px){
	.marcas-home{
		padding-right: 10px !important;
		padding-left: 0 !important;

	}
}
.btn-slider a{
	padding-left: 30px 30px!important;
  background-color: #ccc!important;
	margin-top:20px;

}


@media (max-width: 767px){
.bg-fix{
	min-height:500px !important;
}
}

@media (min-width: 1200px){
.bg-fix{
	min-height:370px !important;
}
}


.footer-social i{
color: #fff!important;
padding: 0 20px!important;
}
