/*====================================
 global area - start
====================================*/

*{
  padding: 0;
  margin: 0;  
  outline: 0px;
  scroll-behavior: smooth;
}
html {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Microsoft YaHei, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5rem;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: #848fa8;
}
html, body, .wrapper {
  height: 100%;
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  color: #232323;
  font-weight: normal;
  line-height: 1.7rem;
  letter-spacing: 0;
  margin: 0;
}
img {
  border: none;
  outline: none;
  max-width: 100%;
}
label {
  display: inline-block;
  font-weight: normal;
  margin-bottom: 5px;
  max-width: 100%;
}
a img,
button,
iframe {
  border: none;
  text-decoration: none !important;
}
p {
  color: #232323;
  line-height: 1.5rem;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 0px;
  font-size: 14px;
}
input:focus, textarea:focus, 
select:focus {
  outline: none;
  box-shadow: inherit;
  -webkit-box-shadow: inherit;
  -moz-box-shadow: inherit;
  -ms-box-shadow: inherit;
  -o-box-shadow: inherit;
}
ul,li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
a, a:active, a:focus, a:hover {
  outline: none;
  text-decoration: none;
  color: #232323;
}
b, strong {
  font-weight: 900;
}
.btn.focus, 
.btn:active:focus, 
.btn:active:hover, 
.btn:focus, 
.btn:hover {
  outline: 0;
}
input {
  border: 1px solid #e7e7e7;
  border-radius: inherit;
  box-shadow: inherit;
  -webkit-box-shadow: inherit;
  -moz-box-shadow: inherit;
  -ms-box-shadow: inherit;
  -o-box-shadow: inherit;
  min-height: 50px;
}
button{
  cursor: pointer;
}
span{
  font-size: 13px;
}
::selection {
  background: #2D3954;
  color: #ffffff;
}

/*====================================
 global area - end
====================================*/


/*common css start*/

section{
  padding: 100px 0px;
}
.common{
  margin-bottom: 60px;
}
.common h2{
  font-size: 31px;
  font-weight: 600;
  margin-bottom: 30px;
}
.common span{
  font-size: 31px;
  font-weight: 600;
  color: #5045fb;
}
.common p{
  padding: 0px 180px;
  font-size: 16px;
  font-weight: 400;
  color: #848fa8;
}

/*common css end*/

/*start preloader css*/

#preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  position: fixed;
  overflow: visible;
  background: #fff url('../img/preloder.gif') no-repeat center center;
  animation: loader 5s infinite ease;
}

/*end preloader css*/

/*header css start*/

.header-section{
  position: fixed;
  z-index: 9999;
  width: 100%;
  border-bottom: 1px solid gray;
}
.sticky-header:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: '';
  position: absolute;
  border-bottom: 1px solid #3e7e8061;
  background-color: transparent;

}
.sticky-header.stuck:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  position: absolute;
  box-shadow: 0 2px 6px 1px rgba(48, 48, 48, 0.1);
  -webkit-box-shadow: 0 2px 6px 1px rgba(48, 48, 48, 0.1);
  -moz-box-shadow: 0 2px 6px 1px rgba(48, 48, 48, 0.1);
  -ms-box-shadow: 0 2px 6px 1px rgba(48, 48, 48, 0.1);
  -o-box-shadow: 0 2px 6px 1px rgba(48, 48, 48, 0.1);
  background-color: #0a2038;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.sticky-header.stuck
.menu-sticky .navbar-collapse .navbar-nav li a{
  color: #49546d;
}

.display-none{
  display: none;
  transition: opacity 1s ease-out;
  -webkit-transition: opacity 1s ease-out;
  -moz-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  opacity: 0;
}

.navbar-expand-lg{
  border-bottom: 30px;
  padding: 5px 10px;
}
.navbar .navbar-nav .nav-item {
  padding: 0px 15px;
}
.navbar .navbar-nav .nav-item .nav-link{
  color: #ffff;
  padding: 0px 0px;
}
.navbar .navbar-nav .nav-item:hover  .nav-link,
.navbar .navbar-nav .nav-item.active  .nav-link{
  color: #5045fb;
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0px; 
  padding-left: 0px; 
}
.dropdown:hover .dropdown-menu{
  display: block;
}
.dropdown-menu{
  padding: 0px 0px;
  top: 20px;
  border-radius: 0px;
}
.dropdown-menu .dropdown-item{
  padding: 5px 10px;
  transition: all 0.5s ease-in-out;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active{
  background-color: #5045fb;
  color: #ffffff !important;
}
.mobile-menu{
  display: none;
}
.side-menu-nav{
  display: none;
}

/*header css end*/

/*banner start*/

.overlay-sliderimg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(19,42,72,0.6166841736694677) 100%, rgba(255,255,255,0.7679446778711485) 100%);
}
.carousel-item img {
  position: relative;
  height: 100vh;
}
.slider-content{
  position: absolute;
  top: 55%;
  text-align: center;
  left: 50%;
  transform: translate(-50%,-50%);
}
.slider-content .slider-title h1{
  color: #fff;
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 40px;
}
.slider-content .slider-pera p{
  color: #ffff;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
}
.slider-btn .btn1{
  color: #ffff;
  background-color: #5045fb;
  padding: 10px 20px;
  cursor: pointer;
  margin: 5px;
  border-radius:  25px;
  transition: 0.7s;
}
.slider-btn .btn2{
  color: #ffff;
  border: 2px solid #ffff;
  padding: 5px 20px;
  cursor: pointer;
  background: transparent;
  margin: 5px;
  border-radius:  25px;
  transition: 0.7s;
}
.slider-btn{
  justify-content: center;
}
.slider-btn .btn1:hover{
  color: #ffff;
}
.slider-btn .btn2:hover{
  background-color: #5045fb;
  color: #ffff;
}

/*banner end*/


/*service start*/

.service-content{
  transition: all 0.5s ease-in-out;
}
.badge-secondary{
  color: #fff;
  background-color: #0090ec;
}
.service-content{
  padding: 60px 30px;
  text-align: center;
  background-color: #f3f3f3;
  box-shadow: 0px 10px 20px -14px #8b8b8b;
  transition: all .4s ease-in-out;
}
.service-content .icon{
  margin-bottom: 30px;
  border: 1px solid #5045fb;
  padding: 7px;
  width: 60px;
  height: 60px;
  display: inline-block;
  transition: all .4s ease-in-out;
}
.service-content:hover .icon{
  border: 1px solid #ffffff;
}
.service-content:hover .icon i{
  color: #ffffff;
}
.service-content .section-heading h4{
  font-size: 22px;
  color: #5045fb;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all .4s ease-in-out;
}
.service-content:hover .section-heading h4{
  color: #ffffff;
}
.service-content .section-heading p{
  font-size: 14px;
  font-weight: 500;
  color: #848fa8;
  transition: all .4s ease-in-out;
}
.service-content:hover .section-heading p{
  color: #ffffff;
}
.col-service{
  margin-bottom: 30px;
}
.service-content .icon i{
  color: #5045fb;

  transition: all 0.5s ease-in-out;
}
.service-content:hover .icon i{
  color: #fff;
}
.service-hover:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, .05);
  cursor: pointer;
  background-color: #5045fb;
}

/*service end*/


/*Project start*/

.section-title {
  text-align: center;
  font-size: 16px;
  position: relative;
  margin-bottom: 10px;
  margin-top: -180px;
}
.one-third a figure img{
  border-style: none;
  width: 100%;
  height: 100%;
}
.img-caption img {
  position: initial;
}
a.img-caption {
  margin: 0 0 40px;
  display: block;
}
.img-caption img {
  position: relative
}
.img-caption figure {
  box-sizing: content-box;
  overflow: hidden;
  position: relative;
}
.img-caption:hover .project-content {
  background: #5045fb;
}
.img-caption .project-content {
  background: rgba(0, 0, 0, .4);
  position: absolute;
  padding: 20px;
  bottom: 0;
  display: block;
  width: 100%;
  -webkit-transition: background-color .2s ease-in-out;
  -moz-transition: background-color .2s ease-in-out;
  -ms-transition: background-color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}
.img-caption:hover .project-content {
  background: #5045fb;
}
.project-content p{
  display: none;
}
.project-contet .icon{
  display: none;
}
.img-caption .project-content h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
}
.mega .img-caption .project-content h3 {
  font-size: 14px;
  line-height: 20px;
}
.mega .img-caption .project-content p {
  font-size: 14px;
  line-height: 14px;
}
.mega .img-caption .project-content {
  padding: 10px 20px;
}
.img-caption .project-content p {
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  display: block;
  opacity: 0;
  max-height: 0;
  padding: 0;
  margin-bottom: 10px;
  -webkit-transition: max-height .2s ease-in-out, opacity .2s ease-in-out, padding .2s ease-in-out;
  -moz-transition: max-height .2s ease-in-out, opacity .2s ease-in-out, padding .2s ease-in-out;
  -ms-transition: max-height .2s ease-in-out, opacity .2s ease-in-out, padding .2s ease-in-out;
  -o-transition: max-height .2s ease-in-out, opacity .2s ease-in-out, padding .2s ease-in-out;
  transition: max-height .2s ease-in-out, opacity .2s ease-in-out, padding .2s ease-in-out;
}
.img-caption:hover .project-content p {
  max-height: 50px;
  opacity: 1;
  padding: 5px 0 4px;
  line-height: 1.3em;
  word-spacing: 1px;
  margin-bottom: 20px;
}
.icon i{
  font-size: 26px;
  padding: 5px;
  margin-right: 5px;
  margin-left: 2px;
  color: #fff;
}

/*Project end*/

/*Pricing start*/

.section-title {
  margin-bottom: 0px;
}
.common_item2{
  z-index: 9;
}
.common_item2 h2{
  color: #5045fb;
}
.common_item2 h2 span{
  color: #fff;
}
.common_item2 p{
  color: #fff;
}
#pricing .block-pricing {
  background: transparent;
  border: 2px solid;
  border-radius: 20px;
}
#pricing .block-pricing .table {
  margin-bottom: 0;
  padding: 30px 0px;
  max-width: 100%;
  width: 100%;
}
#pricing .block-pricing .table h2 {
  padding-bottom: 30px;
  color: #5045fb;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
}
#pricing .block-pricing h4 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 31px;
  font-weight: 600;
  margin: 30px 0px;
}
#pricing .block-pricing ul {
  list-style: outside none none;
  padding: 0;
}
#pricing .block-pricing ul li {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  padding: 12px 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
#pricing .block-pricing .table .table_btn a {
  background: #5045fb;
  color: #fff;
  margin: 0;
  display: inline-block;
  font-size: 14px;
}
.padd-section{
  background-image: url('../img/pricing.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.table_btn{
  margin-top: 15px;
}

/*Pricing end*/

/* Team start */

.team {
  text-align: center
}
.section-title {
  text-align: center;
  font-size: 16px;
  position: relative;
  margin-bottom: 10px;
  margin-top:0px;
}
.team .team-item {
  text-align: left;
  margin-bottom: 30px;
}
.team .team-item figure {
  position: relative;
  overflow: hidden;
}
img {
  max-width: 100%;
}
.team .team-item figure figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(9, 9, 9, .6);
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.team .team-item figure figcaption .info {
  position: absolute;
  color: #fff;
  float: left;
  bottom: 10px;
  left: 20px;
  margin-left: -80px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.team .team-item figure:hover figcaption {
  opacity: 1;
}
.team .team-item figure:hover figcaption .info {
  margin-left: 0;
  margin-bottom: 10px;
}
.team .team-item figure figcaption .info h3 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
}
.team .team-item figure figcaption .info p {
  color: #dddddd;
  font-size: 14px;
}
.team .team-item figure:hover figcaption .social {
  margin-bottom: 0;
}
.team .team-item figure figcaption .social {
  position: absolute;
  float: right;
  bottom: 28px;
  margin-bottom: -80px;
  right: 20px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.team .team-item figure figcaption .social a {
  color: #fff;
  font-size: 15px;
  width: 36px;
  height: 36px;
  background: #5045fb;
  display: inline-block;
  text-align: center;
  line-height: 36px;
  border-radius: 2px;
}

/* Team end */


/* News start */

.news-active{
  display: inline-block;
}
.section-title{
  text-align: center;
  font-size: 15px;
  position: relative;
  margin-bottom: 100px;
  margin-top: -40px;
}
.latest-news-warp{
  box-shadow: 0px 10px 15px rgba(0,0,0,10%)
}
.news-img{
  position: relative;
}
.news-img:before{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000;
  content: '';
  opacity: 0;
  transform: scale(.8);
  transition: all 0.5s;
}
.latest-news-warp:hover .news-img:before{
  opacity: .5;
  transform: scale(1)
}
.latest-news-warp .news-img img{
  width: 100%;
}
.date{
  background: #5045fb none repeat scroll 0 0;
  left: 1%;
  position: absolute;
  text-align: center;
  top: 1%;
  padding: 10px;
  display: flex;
}
.date span{
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-right: 5px;
}
.news-content{
  padding: 15px;
}
.news-content i{
  font-size: 20px;
  display: inline-block;
}
.news-content .fa-thumbs-up{
  color: dodgerblue;
}
.news-content .fa-comment{
  color: black;
}
.news-content .fa-heart {
  color: red;
}
.news-content .fa-share-square{
  color: gray;
}
.news-content .fa{
  padding: 10px 15px;
  cursor: pointer;
}
.news-content p{
  padding: 20px 0px;
  color: #848fa8;
  font-weight: 400;
}
.read-button{
  background-color: #5045fb; 
  color: white;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.read-button
a, a:hover {
  text-decoration: none;
}

.read-button a{
  color: #ffffff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* News end */

/*partner start*/

.partner .owl-item img{
  padding: 0px 60px;
}

/*partner end*/


/* Contact start */

.contact_com h2{
  color: #ffffff;
}
.contact_com p{
  color: #ffffff;
  letter-spacing: 1px;
}
.map iframe{
  width: 100%;
}
#contat_section{
  padding: 100px 0px;
  letter-spacing: 2px;
}

.partner .owl-item img{
  padding: 0px 60px;
}
#contat_section .form-control{
  background-color: transparent;
  border: 1px solid #ffffff;
}
.contact-submit-btn{
  background-color: transparent;
  border: 1px solid #ced4da;
  color: #495057;
}
.blog-contact-btn2{
  background-color: transparent;
}

/* Contact end */


/* footer start */

.footer-section {
  background: #151414;
  position: relative;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #5045fb;
  font-size: 30px;
  float: left;
  margin-top: 8px;
  border-radius: 10px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #dddddd;
  font-size: 15px;
}
.footer-content {
   position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social-icon ul li{
  width: 40px;
  height: 40px;
  border: 1px solid #5045fb;
  border-radius: 500px;
  padding: 6px 11px;
  margin-right: 10px;
}
.footer-social-icon ul li a {
  color: #5045fb;
  font-size: 20px;
}
.footer-social-icon ul li a i {
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}
.footer-social-icon ul li:hover a i{
  color: #5045fb;
}
.facebook-bg{
  background: #007bff;
}
.twitter-bg{
  background: #007bff;
}
.google-bg{
  background: #007bff;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #5045fb;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
} 
.footer-widget ul li a:hover{
  color: #5045fb;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
  padding-left: 15px;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #5045fb;
  padding: 13px 20px;
  top: 0;
  color: #ffffff;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #202020;
  padding: 25px 0;
  position: relative;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
  text-align: center;
}
.copyright-text p a{
  color: #5045fb;
}
.copyright-text p img{
  margin-left: 5px;
  margin-right: 2px;
  margin-top: -3px;
  width: 18px;
  height: auto;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.top-to-bottom {
  padding: 6px 15px;
  position: fixed;
  bottom: 7%;
  right: 3%;
  background: #c9c9c9;
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
  -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: 999;
}
.top-to-bottom a i {
  color: #5045fb;
  font-size: 32px;
}

/* footer end */
