
body {
  /*background: #cdcdcd;*/
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #007bff;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

#header{
    position: absolute;
    left: 0;
    right: 0;
}

.header-scrolled {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    /*background: rgba(71,104,148,1);*/
    /*background: -moz-linear-gradient(top, rgba(71,104,148, 0.8) 0%, rgba(179,162,199, 0.8) 51%, rgba(38,143,192,1) 100%);*/
    /*background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,0.8)), color-stop(51%, rgba(179,162,199,0.8)), color-stop(100%, rgba(38,143,192,1)));*/
    /*background: -webkit-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,0.8) 100%);*/
    /*background: -o-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);*/
    /*background: -ms-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,08) 51%, rgba(38,143,192,1) 100%);*/
    /*background: linear-gradient(to bottom, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );*/
}



p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
	position: fixed;
	display: none;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
	background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 110px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding: 20px 0;
    /*background: rgba(71,104,148,1);*/
    /*background: -moz-linear-gradient(top, rgba(71,104,148, 0.8) 0%, rgba(179,162,199, 0.8) 51%, rgba(38,143,192,1) 100%);*/
    /*background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,0.8)), color-stop(51%, rgba(179,162,199,0.8)), color-stop(100%, rgba(38,143,192,1)));*/
    /*background: -webkit-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,0.8) 100%);*/
    /*background: -o-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);*/
    /*background: -ms-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,08) 51%, rgba(38,143,192,1) 100%);*/
    /*background: linear-gradient(to bottom, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );*/
  /* background: #fff; */
  /* box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3); */
}

/*#header.header-scrolled,*/
/*#header.header-pages {*/
/*  height: 60px;*/
/*  padding: 10px 0;*/
/*}*/

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin-top: -15px;
    max-height: 140px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto
}

.main-pages {
  margin-top: 60px;
}

.dropdown-menu a.dropdown-item {
    color: #333;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
	padding-top:0;
    background: rgba(179,162,199,1);
}

.gridworld {
    max-width: 20px;
    margin: 0 auto;
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
	width: 100%;
    position: relative;
	padding: 160px 0 120px 0;
	/* background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );*/
   background: url(../img/img-resize.jpg) center bottom no-repeat;
    background-position: center;
    background-size: cover;
	z-index: 1;
}

#intro::before{
	content: '';
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
	background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148, 0.8) 0%, rgba(179,162,199, 0.8) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,0.8)), color-stop(51%, rgba(179,162,199,0.8)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,0.8) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,08) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}

#intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
 /*  width: 50%; */
  margin: 0 auto;
}

#intro .intro-info h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    line-height: 40px;  
}

#intro .intro-info h2 span {
  color: #fff;
  text-decoration: underline;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#intro .intro-info .btn-get-started {
  background: #007bff;
  border: 2px solid #007bff;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#intro .intro-info .btn-services {
  border: 2px solid #fff;
}

#intro .intro-info .btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  list-style: none;
  padding-top: 2px;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}
.homeMainImg {
  text-align: center;
}
.homeMainImg img {
  border-radius: 10px;
  box-shadow: 0px 0px 15px #000;
}

.main-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 2px 15px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
li select {
  border-radius: 20px;
  background: transparent;
  border: none;
  display: block;
  color: #ffffff;
  padding: 4px 15px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
li select option {
  color: #000 !important;
  border-radius: 5px;
  overflow: hidden;
}
li select:focus {
  outline: none !important;
}
li select option:focus {
  color: #000 !important;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #fff;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 10px;
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #007bff;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -1000px;
  width: 100%;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}
.four_img_radis img {
  border-radius: 5px;
}
.mobile-nav * {
  margin: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 99999;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #ffffff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

.new-wrapper, .section-wrapper, .content_sec, .content-wrapper, .uniqe-sec, .partners-wrapper{
	background-color:#fff;
}

.meysranew_section h4{
	background: rgba(73,106,149,1);
	background: -moz-linear-gradient(left, rgba(73,106,149,1) 0%, rgba(179,162,199,1) 45%, rgba(39,144,193,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(73,106,149,1)), color-stop(45%, rgba(179,162,199,1)), color-stop(100%, rgba(39,144,193,1)));
	background: -webkit-linear-gradient(left, rgba(73,106,149,1) 0%, rgba(179,162,199,1) 45%, rgba(39,144,193,1) 100%);
	background: -o-linear-gradient(left, rgba(73,106,149,1) 0%, rgba(179,162,199,1) 45%, rgba(39,144,193,1) 100%);
	background: -ms-linear-gradient(left, rgba(73,106,149,1) 0%, rgba(179,162,199,1) 45%, rgba(39,144,193,1) 100%);
	background: linear-gradient(to right, rgba(73,106,149,1) 0%, rgba(179,162,199,1) 45%, rgba(39,144,193,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#496a95', endColorstr='#2790c1', GradientType=1 );
	color:#fff;
	text-align:center;
	padding: 10px 0;
    border-radius: 30px;
	max-width: 70%;
    margin: 0 auto;
}

hr {
    border-top: 1px #eee solid;
}

.section-img{
	text-align:center;
    border-radius: 50%;
    width: 150px;
    height: 150px;	
    margin: 0 auto;	
}

.section-img img{
    border-radius: 50%;
    width: 150px;
    height: 125px;
    object-fit: scale-down;
}

.mini-circle{
/*	background-color:#00F;
    width: 80px;
    height: 80px;*/
    border-radius: 50%;
    position: absolute;
    right: -40px;
    top: 40px;
    border: 8px #fff solid;
}

.mini-circle img{
	width: auto;
	height: auto;
}

.content-wrapper{
	position: relative;
	z-index:1;
}

.inner_text h3, ul li{
	color: #fff;
	list-style: none;
}

.note-sec ul li{
    color: #333;
}

.inner_text {
    z-index: 1;
}

.content-wrapper::before{
	position: absolute;
	opacity: 0.6;
	z-index:1;
	content: '';
	display: inline-block;
	width: 100%;
    height: 360px;
    top: 23%;
	background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}

.center-sec{
	padding-top: 80px;
}

.meysra-border{
	position: relative;
}

.meysra-border::before{
	position: absolute;
	content: '';
	display: inline-block;
	width: 1px;
	height: 75%;
    bottom: 0;
    background: #ccc;
}

.user_list {
	padding-bottom: 12px;
    border-bottom: 1px #ccc solid;
}

.user_list img {
    height: 40px;
}

.user_list p{
	margin-bottom: 0;
    height: 40px;
    line-height: 40px;

}

.border_none{
	border-bottom: 0;
}

.section-wrapper h3{
	margin: 0 0;
	padding: 30px 0;
    font-size: 20px;
}

.before_arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.inner_uni{
	position:absolute;
	right:0;
	top: 10px;
}

.inner_uni2{
	position:absolute;
	right:0;
    top: 45px;	
}

.inner_uni3{
	position:absolute;
	right:0;
	top:0;
}

.uniqe-sec1{
	position: absolute;
	left: 0 ;
	top: 10px;
}
.uniqe-sec2{
	position: absolute;
	left: 0 ;
	top: 45px;
}
.uniqe-sec3{
	position: absolute;
	left: 0 ;
	top: 10px;
}
/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

.uniqe-sec ul li span{
	color: #333;
	text-transform: capitalize;
	font-size: 13px;
    display: inline-block;	
}

.home-middle span {
    font-size: 13px;
    margin-top: 10px;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

#services .box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -10px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#why-us {
  padding: 60px 0;
  background: #004a99;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: #00458f;
  border-color: #00458f;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
}

#why-us .card:hover {
  background: #003b7a;
  border-color: #003b7a;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/* Testimonials Section
--------------------------------*/
.login_form textarea.form-control{
	margin: 0 0 15px; 
	border-radius: 0;
	width: 64%;
	display: inline-block;
	margin-bottom: 35px;
	border: 1px solid #ccc;
}
.login_form {
	padding: 30px 20px;
	width: 100%;
	border: none;
	/*margin: 0 auto;
	background: #00aae5;*/
	border: 1px #00aae5 solid;
	border-radius: 0;
}
.login_form input {
	margin: 0 0 30px;
	border: 1px solid #ccc;
	height: 40px;
	border-radius: 0;
	font-weight: 300;
	width: 70%;
	display: inline-block;
	/*-background: transparent;-*/
}
.login_form input[type="file"]{
	padding: 0;
	overflow: hidden;
}

.form-control:focus{
    box-shadow: none;
}
.login_form textarea:hover{
	border: 1px solid #00aae5;
}

.login_form input:hover {
  border: 1px solid #00aae5;
}
.login_form input:focus {
  border: 1px solid #1545b3;
  outline: none !important;
}
/*.login_form .loginBtnAncor {*/
/*	width: 160px;*/
/*	color: #fff;*/
/*	background-color: #00e64d;*/
/*	border-color: #00e64d;*/
/*	transition: 0.4s;*/
/*	padding: 10px 0;*/
/*	font-size: 20px;*/
/*	text-transform: uppercase;*/
/*	margin: 0 auto;*/
/*	border-radius: 0;*/
/*}*/
.login_form .loginBtnAncor:hover {
  /*-padding-left: 30px;
  background: #00aae5;
  border-color: #00aae5;
  color: #fff;-*/
}
.login_form h1 {
  text-align: center;
  font-size: 26px;
margin-bottom: 25px;
text-transform: uppercase;
/*-color: #fff;-*/
}

#signup_form .login_form input{
	/* margin-bottom: 30px; */
	    font-size: 14px;
}

.login_input_btn {
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  position: relative;
  top: 15px;
  border: 2px solid #8a8a8a;
    border-right: none !important;
}


.intro-info {
    /*padding-top: 100px;*/
}

.send_button{ text-align: center;}

.contact{ padding-top: 130px;}
.login_form input{ }

.login_form input[type="file"] {
    display: none;
    height: auto;
    border-radius: 0;
}

.login_form input[type="file"] + label.fileUpload::before {
    font-family: 'FontAwesome';
    content: "\f093";
    font-weight: 900;
	margin-right: 15px;
}

.login_form input[type="file"] + label.fileUpload {
    line-height: 50px;
    color: #00aae5;
    text-align: center;
    cursor: pointer;
}
.login_form input[type="file"] + label.fileUpload {
    display: block;
    height: 50px;
    width: 100%;
    line-height: 50px;
    color: #00aae5;
    text-align: center;
    padding: 0 30px;
    margin-top: .5rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 100px;
    cursor: pointer;
    transition-duration: .3s;
}

.login_form input[type="file"] + label.fileUpload {
    line-height: 50px;
    color: #00aae5;
    text-align: center;
    cursor: pointer;
	width: 100% !important;
	float: right;
}



/* Custom dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  margin-bottom: 30px;
 /* margin: 10px;  demo only */
}

.custom-dropdown select {
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: inherit;
    padding: .5em;
    padding-right: 1.5em;
    margin: 0;
    text-indent: 0.01px;
    text-overflow: '';
    /*Hiding the select arrow for firefox*/
    -moz-appearance: none;
    /*Hiding the select arrow for chrome*/
    -webkit-appearance:none;
    /*Hiding the select arrow default implementation*/
    appearance: none;
    text-transform: capitalize;
    font-weight: 300;
    font-size: 14px;
}
/*Hiding the select arrow for IE10*/
.custom-dropdown select::-ms-expand {
    display: none;
}

.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-dropdown::after { /*  Custom dropdown arrow */
  content: "\25BC";
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -.5em;
}

.custom-dropdown::before { /*  Custom dropdown arrow cover */
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0,0,0,.2);
}

.custom-dropdown::after {
  color: rgba(0,0,0,.6);
}

.custom-dropdown select[disabled] {
  color: rgba(0,0,0,.25);
}

.main-search-input-item {
    position: relative;
}

#ui-datepicker-div{
	background: rgb(255, 255, 255) none repeat scroll 0% 0%;
	-webkit-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
	width: 25% !important;
}

.ui-datepicker .ui-datepicker-header {
	background-color: transparent !important;
	box-shadow: none !important;
}
.ui-widget-header a {
    top: 10px !important;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
	border: 1px #ccc solid;
}

.ui-datepicker td {
    border: 0 !important;
    background-color: transparent !important;
}
.ui-datepicker td span, .ui-datepicker td a{ 
	color: #333 !important;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 32px;
}

.ui-datepicker td.ui-state-disabled {
    background-color: #fff !important;
}
.ui-datepicker th{ color:#333 !important;}
.ui-datepicker table thead{ background: none !important;}

.ui-datepicker td span, .ui-datepicker td a:hover{ background: #00aae5; color: #fff !important;}


.goal h2{
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.count{
	width: 60px;
	height: 60px;
	background: #00aae5;
	color: #fff;
	line-height: 60px;
	text-align: center;
	font-size: 24px;
	position: absolute;
	top: 10px;
}

.inner-text {
    padding-left: 90px;
}

.easy-to-use{
	font-size: 16px;
	position: relative;
}

.inner-text h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
	font-weight: 600;
}

.inner-text p {
    font-size: 14px;
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #00AAE5;
    position: absolute;
    top: 7px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.radio-buttons label{
	width: auto;
}
	
.radio-buttons{
	display: inherit;
}
.radio-buttons span {
    font-size: 17px;
    text-transform: capitalize;
    font-weight: 300;
    /*margin: 0px 15px 30px;*/
}

.form-inline.radio-buttons {
    align-items: start;
}

.custom-drop {
    width: 22%;
}
.form-inline{
	align-items: start;
}
.form-inline span {
    font-size: 18px;
    font-weight: 300;
}

.ui-datepicker .ui-datepicker-header {
    color: #333 !important;
}

.ui-datepicker .ui-datepicker-title {
    margin: 10px 2.3em 20px !important;
}

    .drop-down { 
     position: relative;  
     display: inline-block;    
     width: auto;       
     margin-top: 0;   
     font-family: verdana;    
     }      
     .drop-down select {   
     display: none;    
     }      
     .drop-down .select-list {   
     position: absolute;     
     top: 0;      
     left: 0;     
     z-index: 1;    
     margin-top: 40px;    
     padding: 0;         
     background-color: #595959;      
     }      
     .drop-down .select-list li {   
     display: none;      
     }    
     .drop-down .select-list li span {  
     display: inline-block;      
     min-height: 40px;        
     min-width: 280px;      
     width: 100%;        
     padding: 5px 15px 5px 35px;     
     background-color: #595959;     
     background-position: left 10px center;   
     background-repeat: no-repeat;       
     font-size: 16px;       
     text-align: left;       
     color: #FFF;        
     opacity: 0.7;      
     box-sizing: border-box;     
     }     
     .drop-down .select-list li span:hover,  
     .drop-down .select-list li span:focus {     
     opacity: 1;     
     }
	 

	 
div.mm-dropdown {
  
	width: 70%;
	border-radius: 0;
	font-weight:300;
	margin-bottom: 30px;
}

div.mm-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
}

div.mm-dropdown ul li,
div.mm-dropdown div.textfirst {
  padding: 0;
  color: #333;
  border: 1px solid #ccc;
  padding: 7px 15px;
}

div.mm-dropdown div.textfirst img.down {
  float: right;
  margin-top: 5px
}

div.mm-dropdown ul li:last-child {

}

div.mm-dropdown ul li {
  display: none;
  padding-left: 25px;
}

div.mm-dropdown ul li.main {
  display: block;
}

div.mm-dropdown ul li img {
	width: 50px;
	height: 40px;
}

.form_input {
    display: inline-block !important;
}

.gj-datepicker-md {
    width: 70%;
	display: inline-block !important;
}

.gj-datepicker input {
    width: 100%;
}

.gj-datepicker-md [role="right-icon"] {
	position: absolute !Important;
	right: 10px !important;
	top: 8px !important;
}

.gj-timepicker-md [role="right-icon"] {
	position: absolute !Important;
	right: 10px !important;
	top: 8px !important;
}

.gj-timepicker-md {
    width: 70%;
    display: inline-block;
    font-weight: 300;
}

.gj-timepicker input {
    width: 100%;
    padding-left: 13px;
    font-size: 18px;
    font-weight: 300;
}
/* #signup_form .card label {
    float: right;
    clear: both;
	text-align: right;
} */

#signup_form .card label{
	font-weight: 300;
	padding-bottom: 8px;
	width: 29%;
	font-size: 18px;
	vertical-align: top;
	text-transform: capitalize;
	justify-content: left;
	align-items: flex-start;
	
}

/* span.help-inline.error {
  margin: -15px 42px 20px auto !important;
} */

span.help-inline.error {
  color: red;
  width: 70%;
  margin: -15px 0 20px auto;
  display: block;
  text-align: -webkit-left;
}

.location_input {
    width: 100%;
    display: inline-block !important;
    position: relative;
}

.location_input img {
    position: absolute;
    right: 20px;
    top: 4px;
}	

.arabic-custom {
   width: 28%;
}

.radio-buttons span {
    font-weight: 300;
	font-size: 17px;
}

.arabic-radio {
    display: inline-block;
}

#signup_form .login_form input{
	/* text-align: right;
	padding-right: 15px; */
}

.gj-datepicker-md [role="right-icon"], .gj-timepicker-md [role="right-icon"]{
	left: 10px;
}


element {

}
*, ::after, ::before {

    box-sizing: border-box;

}
.custom-dropdown select {
    text-align-last: left;
    padding-right: 40px;
}



.custom-dropdown {
    width: 27%;
}
 
.custom-drop {
    width: 27%;
}

.count{
	right: 0;
}

.inner-text {
    text-align: right;
    padding-right: 90px;
}

.arbi {
	float: right;
}

div.mm-dropdown ul li, div.mm-dropdown div.textfirst{
	text-align: left;
}

div.mm-dropdown div.textfirst img.down {
    float: right;
    clear: both;
    margin-left: 10px;
    margin-right: -10px;
}

div.mm-dropdown {
    margin-right: 5px;
}

div.mm-dropdown ul li{
	position: relative;
	padding-right: 60px;
}
div.mm-dropdown ul li img {
    width: 50px;
    height: 28px;
    position: absolute;
    right: 2px;
}


.arbi {
    float: left !important;
}

.custom-dropdown {
    margin-right: 4px;
}

.custom-dropdown {
    margin-right: 4px;
    /*float: right;*/
}

/*.radio-buttons span {*/
/*    float: right;*/
/*}*/

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #007bff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #007bff;
  border: 1px solid #007bff;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .form button[type="submit"]:hover {
  background: #0067d5;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	padding: 0 0 30px 0;
	color: #eee;
	font-size: 14px;
	position: relative;
	/*background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );*/
	background: url(../img/img-resize.jpg) center bottom no-repeat;
    background-position: top center;
    background-size: cover;
	z-index: 1;
}

/*#intro {
	width: 100%;
    position: relative;
	padding: 200px 0 120px 0;
	 background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );

}*/

#footer::before{
	content: '';
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
	background: rgba(71,104,148,1);
	background: -moz-linear-gradient(top, rgba(71,104,148, 0.8) 0%, rgba(179,162,199, 0.8) 51%, rgba(38,143,192,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,0.8)), color-stop(51%, rgba(179,162,199,0.8)), color-stop(100%, rgba(38,143,192,1)));
	background: -webkit-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,0.8) 100%);
	background: -o-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);
	background: -ms-linear-gradient(top, rgba(71,104,148,0.8) 0%, rgba(179,162,199,08) 51%, rgba(38,143,192,1) 100%);
	background: linear-gradient(to bottom, rgba(71,104,148,0.8) 0%, rgba(179,162,199,0.8) 51%, rgba(38,143,192,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}

.right-icon-link{
	text-align: center;
}

.right-icon-link a{
	color: #fff
}

#footer .footer-top {
	padding: 50px 0 0px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 46px;
    height: 46px;
    transition: 0.3s;
    line-height: 40px;
    vertical-align: middle;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}
.footer-links h5 {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}


.social-links img {
    max-width: 20px;
}

.android {
    max-width: 130px;
    margin: 0 auto;
}

.ios {
    margin-top: 15px !important;
}

.footer-info a{
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

/*-------ABOUT-US CSS START----------*/

#main {
    /*-background: #cdcdcd;-*/
}
/*.about-bg{ */
	/*-background:#474747 !important;-*/
/*	padding: 10px 0 !important;*/
/*	margin:  0;*/
	/*border-top: 10px #1545b3 solid;*/
	/*background: url(images/analysis-business.jpg) no-repeat;*/
/*}*/

.about-bottom h2{
	font-size: 35px;
	margin-bottom: 15px;
	font-weight: normal;
	color: #000;
	font-weight:500;
}
.about-bottom p{ color: #565454;}
.goal-content img{
    width: 270px !important;
    height: 175px;
    border: 8px #fff solid;
    margin: 0 auto;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    display: block !important;
}
.owl-theme .owl-nav{ display: block !important;}
.owl-prev i, .owl-next i {
    font-size: 30px;
	color: #646464;
}
.owl-theme .owl-dots .owl-dot span{ background: #8a8a8a; width:12px; height:12px;}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{ background: #98cb66;}
.owl-prev {
	left: -45px;
	position: absolute;
	top: 35%;
	margin: auto !important;
	background: transparent !important;
}
.owl-next {
    right: -45px;
	position: absolute;
	top: 35%;
	margin: auto !important;
	background: transparent !important;
}



.about-bottom ul li{ position:relative; list-style:none}
.about-bottom ul li::before{ position: absolute; content:''; width: 10px;
height: 1px;
background: #000;
left: -22px;
top: 12px;}


#media .owl-theme .owl-dots .owl-dot span{ display:none;}
#media h3{font-size: 14px;font-weight: bold;line-height: 20px;text-transform: uppercase;color: #8e0f1c;}
.about-bottom h5{ color:#8e0f1c; font-size:14px; font-weight:600;}
.about-bottom p{ color:#444; font-size:14px; font-weight:600;}
.about-bottom a{ color:#444;}

.map{ padding-bottom: 40px;}
.map p {
    font-size: 30px;
    margin-bottom: 20px;
    padding: 20px 0 0;
}

.dashboard figure{ width: 100px; height:100px; border-radius: 50%; background:#fff; overflow:hidden;}
.board-list li{ list-style:none; padding-top:12px;}
.board-list li:first-child{ padding-top:0;}
.board-list li::before{ display:none;}
.board-list li span{ padding-left:60px;}

.socialLinks {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 40px;
  height: 152px;
  overflow: hidden;
  display: none;
  z-index: 1000000;
  border-radius: 0px 10px 10px 0px;
}
.DontAccount {
  float: right;
  text-align: right;
  padding: 13px 0px 0px 0px;
  font-size: 14px;
}
.DontAccount span {
  font-weight: bold;
}
.DontAccount1 {
  background: #dadada;
  font-size: 15px;
  margin-top: 16px;
  transition: 0.4s;
}
.DontAccount1:hover {
padding-left: 30px;
}
.DontAccount1 span {
  font-weight: bold;
}
.socialLinks .sharesLink, .socialLinks .facebookLink, .socialLinks .twitterLink, .socialLinks .linkedinLink {
  height: 38px;
  padding: 6px 12px !important;
  color: #fff !important;
}
.socialLinks .sharesLink:hover, .socialLinks .facebookLink:hover, .socialLinks .twitterLink:hover, .socialLinks .linkedinLink:hover {
  box-shadow: inset 0px 0px 15px rgba(8, 8, 8, 0.83);
}
.socialLinks .sharesLink {
  background: #007bff;
}
.socialLinks .facebookLink {
  background: #004086;
}
.socialLinks .twitterLink {
  background: #ff143f;
}
.socialLinks .linkedinLink {
  background: #0078b5;
}

#signup_form .card{
	text-align: left;
}
#signup_form .card label{
	font-weight: 300;
	padding-bottom: 8px;
	width: 29%;
	font-size: 14px;
	vertical-align: top;
	text-transform: capitalize;
	justify-content: left;
	align-items: flex-start;
	
}

::placholder{ color: #fff; opacity:1;}
:-ms-input-placeholder{ color: #fff;}
::-ms-input-placeholder { color: #fff;}

.location_input {
    width: 100%;
    display: inline-block !important;
	position: relative;
}

/* .location_input img {
    position: absolute;
    right: 10px;
    top: 5px;
} */

.location_input label{
	text-transform: capitalize;
	
}

.login_form textarea.form-control{
	margin: 0 0 15px; 
	border-radius: 0;
	width: 70%;
	display: inline-block;
	margin-bottom: 35px;
	border: 1px solid #ccc;
}
.login_form {
	padding: 30px 20px;
	width: 100%;
	border: none;
	/*margin: 0 auto;
	background: #00aae5;*/
	border: 1px #00aae5 solid;
	border-radius: 0;
}
.login_form input {
	margin: 0 0 30px;
	border: 1px solid #ccc;
	height: 40px;
	border-radius: 0;
	font-weight: 300;
	width: 70%;
	display: inline-block;
	/*-background: transparent;-*/
}
.login_form input[type="file"]{
	padding: 0;
	overflow: hidden;
}

.login_form textarea:hover{
	border: 1px solid #00aae5;
}

.login_form input:hover {
  border: 1px solid #00aae5;
}
.login_form input:focus {
  border: 1px solid #1545b3;
  outline: none !important;
}
.login_form .loginBtnAncor {
	width: 160px;
	color: #fff;
	/*background-color: #00e64d;*/
	border-color: transparent;
	transition: 0.4s;
	padding: 10px 0;
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 auto;
	border-radius: 0;
	background: rgba(71,104,148,1);
    background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
    background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}

.btn.focus, .btn:focus{
    box-shadow: none;
}
.login_form .loginBtnAncor:hover {
  /*-padding-left: 30px;
  background: #00aae5;
  border-color: #00aae5;
  color: #fff;-*/
}
.login_form h1 {
  text-align: center;
  font-size: 26px;
margin-bottom: 25px;
text-transform: uppercase;
/*-color: #fff;-*/
}

#signup_form .login_form input{
	/* margin-bottom: 30px; */
}

.login_input_btn {
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  position: relative;
  top: 15px;
  border: 2px solid #8a8a8a;
    border-right: none !important;
}


.intro-info {
    /*padding-top: 100px;*/
}

.send_button{ text-align: center;}

.contact {
    padding-top: 50px;
}
.login_form input{ }

.login_form input[type="file"] {
    display: none;
    height: auto;
    border-radius: 0;
}

.login_form input[type="file"] + label.fileUpload::before {
    font-family: 'FontAwesome';
    content: "\f093";
    font-weight: 900;
	margin-right: 15px;
}

.login_form input[type="file"] + label.fileUpload {
    line-height: 50px;
    color: #00aae5;
    text-align: center;
    cursor: pointer;
}
.login_form input[type="file"] + label.fileUpload {
    display: block;
    height: 50px;
    width: 100%;
    line-height: 50px;
    color: #00aae5;
    text-align: center;
    padding: 0 30px;
    margin-top: .5rem;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 100px;
    cursor: pointer;
    transition-duration: .3s;
}

.login_form input[type="file"] + label.fileUpload {
    line-height: 50px;
    color: #00aae5;
    text-align: center;
    cursor: pointer;
	width: 100% !important;
	float: right;
}



/* Custom dropdown */
.custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  margin-bottom: 30px;
 /* margin: 10px;  demo only */
}

/*.custom-dropdown select {*/
/*	width: 100%;*/
/*  background-color: #fff;*/
/*  border: 1px solid #ccc;*/
/*  color: #333;*/
/*  font-size: inherit;*/
/*  padding: .5em;*/
/*  padding-right: 1.5em;*/
/*  margin: 0;*/
/*  text-indent: 0.01px;*/
/*  text-overflow: '';*/
  /*Hiding the select arrow for firefox*/
/*  -moz-appearance: none;*/
  /*Hiding the select arrow for chrome*/
/*  -webkit-appearance:none;*/
  /*Hiding the select arrow default implementation*/
/*  appearance: none;*/
/*  text-transform: capitalize;*/
/*  font-weight: 300;*/
/*  font-size: 14px;*/
/*}*/
/*Hiding the select arrow for IE10*/
.custom-dropdown select::-ms-expand {
    display: none;
}

.custom-dropdown::before,
.custom-dropdown::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-dropdown::after { /*  Custom dropdown arrow */
  content: "\25BC";
  height: 1em;
  font-size: .625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -.5em;
}

.custom-dropdown::before { /*  Custom dropdown arrow cover */
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0,0,0,.2);
}

.custom-dropdown::after {
  color: rgba(0,0,0,.6);
}

.custom-dropdown select[disabled] {
  color: rgba(0,0,0,.25);
}

.main-search-input-item {
    position: relative;
}

#ui-datepicker-div{
	background: rgb(255, 255, 255) none repeat scroll 0% 0%;
	-webkit-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
	width: 25% !important;
}

.ui-datepicker .ui-datepicker-header {
	background-color: transparent !important;
	box-shadow: none !important;
}
.ui-widget-header a {
    top: 10px !important;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year{
	border: 1px #ccc solid;
}

.ui-datepicker td {
    border: 0 !important;
    background-color: transparent !important;
}
.ui-datepicker td span, .ui-datepicker td a{ 
	color: #333 !important;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 32px;
}

.ui-datepicker td.ui-state-disabled {
    background-color: #fff !important;
}
.ui-datepicker th{ color:#333 !important;}
.ui-datepicker table thead{ background: none !important;}

.ui-datepicker td span, .ui-datepicker td a:hover{ background: #00aae5; color: #fff !important;}


.goal h2{
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 40px;
}

.count{
	width: 60px;
	height: 60px;
	background: #00aae5;
	color: #fff;
	line-height: 60px;
	text-align: center;
	font-size: 24px;
	position: absolute;
	top: 10px;
}

.inner-text {
    padding-left: 90px;
}

.easy-to-use{
	font-size: 16px;
	position: relative;
}

.inner-text h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
	font-weight: 600;
}

.inner-text p {
    font-size: 14px;
}


[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #00AAE5;
    position: absolute;
    top: 7px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.radio-buttons label{
	width: auto;
}
	
.radio-buttons{
	display: inherit;
}
.radio-buttons span {
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 300;
    margin: 0px 15px 30px;
}

.form-inline.radio-buttons {
    align-items: start;
}

.custom-drop {
    width: 22%;
}
.form-inline{
	align-items: start;
}
.form-inline span {
    font-size: 18px;
    font-weight: 300;
}

.ui-datepicker .ui-datepicker-header {
    color: #333 !important;
}

.ui-datepicker .ui-datepicker-title {
    margin: 10px 2.3em 20px !important;
}

    .drop-down { 
     position: relative;  
     display: inline-block;    
     width: auto;       
     margin-top: 0;   
     font-family: verdana;    
     }      
     .drop-down select {   
     display: none;    
     }      
     .drop-down .select-list {   
     position: absolute;     
     top: 0;      
     left: 0;     
     z-index: 1;    
     margin-top: 40px;    
     padding: 0;         
     background-color: #595959;      
     }      
     .drop-down .select-list li {   
     display: none;      
     }    
     .drop-down .select-list li span {  
     display: inline-block;      
     min-height: 40px;        
     min-width: 280px;      
     width: 100%;        
     padding: 5px 15px 5px 35px;     
     background-color: #595959;     
     background-position: left 10px center;   
     background-repeat: no-repeat;       
     font-size: 16px;       
     text-align: left;       
     color: #FFF;        
     opacity: 0.7;      
     box-sizing: border-box;     
     }     
     .drop-down .select-list li span:hover,  
     .drop-down .select-list li span:focus {     
     opacity: 1;     
     }
	 

	 
div.mm-dropdown {
  
	width: 70%;
	border-radius: 0;
	font-weight:300;
	margin-bottom: 30px;
}

div.mm-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
}

div.mm-dropdown ul li,
div.mm-dropdown div.textfirst {
  padding: 0;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 14px;
}

div.mm-dropdown div.textfirst img.down {
  float: right;
  margin-top: 5px
}

div.mm-dropdown ul li:last-child {

}

div.mm-dropdown ul li {
  display: none;
  padding-left: 25px;
}

div.mm-dropdown ul li.main {
  display: block;
}

div.mm-dropdown ul li img {
	width: 50px;
	height: 30px;
}

.form_input {
    display: inline-block !important;
}

.gj-datepicker-md {
    width: 70%;
	display: inline-block !important;
}

.gj-datepicker input {
    width: 100%;
}

.gj-datepicker-md [role="right-icon"] {
	position: absolute !Important;
	right: 10px !important;
	top: 8px !important;
}

.gj-timepicker-md [role="right-icon"] {
	position: absolute !Important;
	right: 10px !important;
	top: 8px !important;
}

.gj-timepicker-md {
    width: 70%;
    display: inline-block;
    font-weight: 300;
}

.gj-timepicker input {
    width: 100%;
    padding-left: 13px;
    font-size: 18px;
    font-weight: 300;
}


.partners-wrapper figure{
    padding-left: 10px;
    margin: 0 0;
}

.partners-wrapper figure img {
    max-width: 85px;
}

#resarve_banner {
    padding: 40px 0;
    background: rgba(71,104,148,1);
    background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
    background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}

ul.left_side li.before-img {
    /*-width: 460px;-*/
    text-align: right;
    padding-right: 120px;
}

ul.uniqe_right_section li.before-img {
    /*-width: 460px;-*/
	text-align: left;
	padding-left: 120px;
}

.login_form_section{
  padding: 30px 20px;
  width: 100%;
  border: 1px #00aae5 solid;
  border-radius: 0;
  margin: 50px 0;
}

.login_form_section h1{
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

a.forgot {
  color: #333;
  text-transform: capitalize;
  font-size: 14px;
  display: block;
  text-align: left;
}

.login_btn.loginBtnAncor {
  width: 160px;
  color: #fff;
  border-color: transparent;
  transition: 0.4s;
  padding: 10px 0;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 auto;
  border-radius: 0;
  background: rgba(71,104,148,1);
  background: -moz-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(71,104,148,1)), color-stop(51%, rgba(179,162,199,1)), color-stop(100%, rgba(38,143,192,1)));
  background: -webkit-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
  background: -o-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
  background: -ms-linear-gradient(top, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
  background: linear-gradient(to bottom, rgba(71,104,148,1) 0%, rgba(179,162,199,1) 51%, rgba(38,143,192,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#476894', endColorstr='#268fc0', GradientType=0 );
}


nav > .nav.nav-tabs{
  border: none;
    color:#333;
    /* background:#272e38; */
    border-radius:0;

}
nav > div a.nav-item.nav-link,
nav > div a.nav-item.nav-link.active
{
  border: none;
    padding: 18px 25px;
    color:#333;
    /* background:#272e38; */
    border-radius:0;
}

/* nav > div a.nav-item.nav-link.active:after
 {
  content: "";
  position: relative;
  bottom: -60px;
  left: -10%;
  border: 15px solid transparent;
  border-top-color: #e74c3c ;
} */
nav .tab-content{
  background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top:5px solid #e74c3c;
    border-bottom:5px solid #e74c3c;
    padding:30px 25px;
}

.nav-tabs .nav-link, .nav-tabs{
  border: 0;
}

/* nav > div a.nav-item.nav-link:hover,
nav > div a.nav-item.nav-link:focus
{
  border: none;
    background: #e74c3c;
    color:#333;
    border-radius:0;
    transition:background 0.20s linear;
} */

.trips_tabs {
  padding: 80px 30px;
  /* border: 1px #00aae5 solid; */
  margin: 50px 0;
}

.trips_tabs .nav-tabs .nav-item.show .nav-link, .trips_tabs .nav-tabs .nav-link.active{
  border-bottom: 2px #007bff solid;
}


.inner_table p {
  text-transform: capitalize;
  padding-top: 12px;
  margin: 0;
}

.table_detail p:first-child{
  padding-top: 0;
}

.table_detail{
  padding: 30px;
  -webkit-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.76);
  -moz-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.76);
  box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.76);
}

.inner_tb_bg {
  background-color: #d6feff;
}

.code_input {
  width: 71%;
  float: right;
  display: flex;
}

.code_input input.form-control {
  width: 75%;
  margin-left: 20px;
}

.code_input .intl-tel-input {
  height: 40px;
}

.code_input .intl-tel-input .flag-dropdown.f16 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intl-tel-input{
  height: 38px;
}

.intl-tel-input input#mobile-number {
  height: 100%;
  border-radius: 5px;
}

/* #signup_form span.help-inline.error {
  width: 100%;
} */


button.btn.btn-info.btn-lg.add_pickup_drop_location {
  background: transparent;
  border: 0;
  color: #333;
  max-width: 300px;
  font-size: 14px;
  margin: 0 auto;
  font-weight: 500;
	color: #00aae5;
	font-weight: bold;
	vertical-align: middle;
	text-align: center;
}

.intro-info label {
  width: 27%;
  margin: 0;
  vertical-align: top;
}

.append_location {
  width: 200px;
  position: relative;
  padding: 10px 10px 25px;
  display: inline-block;
  margin: 0 auto 0 20px;
}

a.remove_location {
  float: right;
}

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show>.btn-info.dropdown-toggle:focus{
  box-shadow: none;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 1400px) {
  .homeMainImg img {
    width: 79%;
  }
}
@media (max-width: 1199px) {
  .homeMainImg img {
    width: 91%;
  }
}



@media (max-width:1024px){

.inner_uni {
    max-width: 70px;
}

.inner_uni2{
    max-width: 50px;
}

.inner_uni3 {
    max-width: 60px;
}


.uniqe-sec1 {
    max-width: 50px;
}

.uniqe-sec2{
    max-width: 50px;
}

.uniqe-sec3 {
    max-width: 60px;
}


}


@media (max-width: 992px) {
.homeMainImg img {
width: 89%;
margin-top: 43px;
}

.login_form textarea.form-control{
    width: 100%;
}

#header .logo img {
    max-height: 110px;   
}

.login_form input {
    width: 100%;
}

.custom-dropdown {
    width: 100%;
    margin-bottom: 20px;
}

#signup_form .card label{
    width: 100%;
}

.location_input img {
    top: 41px;
}

div.mm-dropdown{
    width: 100%;
    margin-right: 0;
}

.radio-buttons {
    display: block;
}

.radio-buttons span {
    margin: 0 0 20px;
    display: inline-block;
}

section h2{
    font-size: 22px;
}

.section-wrapper h3 {
    font-size: 18px;
}

section p {
    font-size: 14px;
}

.fc-row.fc-widget-header th {
    font-size: 9px;
    width: 20px;
}

ul.left_side li.before-img {
    /*-width: 460px;-*/
    text-align: center;
    padding-right: 0;
}

ul.uniqe_right_section li.before-img {
    /*-width: 460px;-*/
	text-align: center;
	padding-left: 0;
}


}


@media (max-width: 768px) {
  .homeMainImg img {
    width: 89%;
    margin-top: 39px;
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}
/*.login_form {*/
/*  border-radius: 18px;*/
/*}*/

@media(max-width: 991px){
.before_arrow, .inner_uni, .inner_uni2, .inner_uni3, .uniqe-sec1, .uniqe-sec2, .uniqe-sec3{
	display: none;
}

.code_input{
  width: 100%;
}

.code_input input.form-control {
  width: 70%;
}

}
@media (max-width: 700px) {
  #header {
    height: 60px;
    padding: 10px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }
  .four_img_radis .col-lg-3 {
    width:25% !important;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767px) {
  #intro .intro-info {
    width: 100%;
  }
  
  .loginFormimg {
    display: none;
  }

  #intro .intro-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
.meysra-border::before{
	display: none;
}

.center-sec {
    padding-top: 20px;
}

.uniqe-sec span{
    display: block;
    margin: 20px auto 10px;    
}


.uniqe-sec ul li span{
    display: block;
    margin: 20px auto 10px;
}

div.mm-dropdown ul li{
    padding-left: 10px;
    font-size: 12px;
}
div.mm-dropdown ul li img {
    height: 25px;
}


.fc-row.fc-widget-header th:first-child{
    width: auto !important;
}

span.help-inline.error{
  width: 100%;
}


.append_location{
  margin-top: 10px;
  margin-left: 0;
  width: 100%;
}

.intro-info label{
  width: 100%;
}

.location_input img {
  top: 29px;
}

}
@media (max-width: 700px) {
  .four_img_radis .col-lg-3 {
    width:50% !important;
    text-align: center;
  }
}

@media (max-width: 576px) {
#intro {
    padding: 100px 0 20px 0;
}

}
@media (max-width: 376px) {
  .four_img_radis .col-lg-3 {
    width:100% !important;
    text-align: center;
  }
}



/*.login_form input {*/
/*  margin: 15px 0px;*/
/*  border: 2px solid #8a8a8a;*/
/*}*/
/*.login_form input:hover {*/
/*  border: 2px solid #5e5e5e;*/
/*}*/
/*.login_form input:focus {*/
/*  border: 2px solid #1545b3;*/
/*  outline: none !important;*/
/*}*/
/*.login_form .loginBtnAncor {*/
/*  color: #fff;*/
/*  background-color: #1545b3 !important;*/
/*  border-color: #153888 !important;*/
/*  transition: 0.4s;*/
/*}*/
/*.login_form .loginBtnAncor:hover {*/
/*  padding-left: 30px;*/
/*}*/
/*.login_form h1 {*/
/*  text-align: center;*/
/*  font-size: 26px;*/
/*  margin-bottom: 0px !important;*/
/*}*/


/*.login_input_btn {*/
/*  height: calc(2.25rem + 2px);*/
/*  padding: .375rem .75rem;*/
/*  font-size: 1rem;*/
/*  font-weight: 400;*/
/*  background-color: #fff;*/
/*  background-clip: padding-box;*/
/*  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;*/
/*  position: relative;*/
/*  top: 15px;*/
/*  border: 2px solid #8a8a8a;*/
/*    border-right: none !important;*/
/*}*/

@media(max-width: 767px){
.content-wrapper::before{
	height: 100%;
	top: 0;
}
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after{
    background-image:url('');
}
.custom-checkbox .custom-control-label::before{
    border-radius:0;
}