
/*----------------------------------------*/
/*  PRELOADER CSS START
/*----------------------------------------*/
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader__bar {
  width: 270px;
  height: 4px;
  background-color: #E2E2E8;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.preloader__bar-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-image: -webkit-linear-gradient(90deg, #4260ff 0%, #4260ff 100%);
  background-image: -moz-linear-gradient(90deg, #4260ff 0%, #4260ff 100%);
  background-image: -ms-linear-gradient(90deg, #4260ff 0%, #4260ff 100%);
  background-image: -o-linear-gradient(90deg, #4260ff 0%, #4260ff 100%);
  background-image: linear-gradient(90deg, #4260ff 0%, #4260ff 100%);
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -ms-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}
.preloader__logo {
  margin-bottom: 40px;
}
.preloader__logo img {
  max-width: 45%;
}
.preloader__logo img.logo-blink {
  animation: tp-blink 0.7s ease-in-out 0.1s infinite;
}
@-webkit-keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tp-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.preloader__title {
  font-size: 170px;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  color: #4260ff;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .preloader__title {
    font-size: 140px;
  }
}
@media (max-width: 575px) {
  .preloader__title {
    font-size: 70px;
  }
}
.preloader__title-2 {
  font-size: 170px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  color: #4260ff;
}
.preloader__title-2::before {
  position: absolute;
  content: attr(data-text-preloader);
  top: 22px;
  left: 0;
  color: #4260ff;
  opacity: 0;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-animation: letters-loading 3s infinite;
  animation: letters-loading 3s infinite;
}
.preloader__title-2:nth-child(2)::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.preloader__title-2:nth-child(3)::before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.preloader__title-2:nth-child(4)::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.preloader__title-2:nth-child(5)::before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.preloader__title-2:nth-child(6)::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.preloader__loading {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.9em;
  text-transform: uppercase;
  color: #4260ff;
}
.preloader__with-text {
  display: none;
}

@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-moz-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@-ms-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    -moz-transform: rotateY(-90deg);
    -ms-transform: rotateY(-90deg);
    -o-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Header-menu-area */
.header-logo a img {
  width: 95px;
}
.Header-main-menu-area {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 9;
  padding-top: 20px;
}
.header-menu ul {
  display: inline-block;
}
.header-menu ul li {
  list-style: none;
  display: inline;
  position: relative;
  padding-bottom: 35px;
}
.header-menu ul li .sub-menu {
  text-align: left;
  position: absolute;
  visibility: hidden;
  display: block;
  opacity: 0;
  width: 260px;
  left: 0;
  top: 53px;
  padding: 10px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  z-index: 9;
  transition: .5s;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.header-menu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}
.header-menu ul li .sub-menu li a {
  display: block;
  color: #0a2c3d;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 0px;
  transition: .5s;
  margin: 0px 20px;
  position: relative;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.header-menu ul li .sub-menu li a:hover{
  color: #007cf5;
}
.header-menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: #544d64;
  font-size: 16px;
  font-weight: 500;
  margin-right: 29px;
  transition: .6s;
}
.header-menu ul li a i {
  display: inline-block;
  position: relative;
  top: 3px;
  left: 2px;
  font-size: 16px;
}
.header-menu ul li a:hover{
  color: #4260ff;
}
.header-right {
  display: inline-block;
  float: right;
}
.header-right a i {
  display: inline-block;
  font-size: 20px;
  color: #322845;
}
.header-btn {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: #4260ff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  transition: .7s;
  margin-left: 22px;
}
.header-btn:hover{
  background: #000;
  color: #fff;
}
.menu-white .is-sticky .header-right a i{
  color: inherit;
}
.menu-white .is-sticky .header-menu ul li a{
  color: inherit;
}
.menu-white .header-right a i{
  color: #fff;
}
.menu-white .header-menu ul li a{
  color: #fff;
}
.Header-main-menu-area.menu-white .header-logo .normal-logo {
  display: none;
}
.Header-main-menu-area.menu-white .is-sticky .header-logo .normal-logo {
  display: block;
}
.Header-main-menu-area.menu-white .is-sticky .header-logo .ts-logo {
  display: none;
}
/* Slider-area */
.slider-area {
  height: 900px;
  position: relative;
}
.slider-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #4260ff;
  background: #e6eaf9;
  display: inline-block;
  padding: 5px 10px 5px;
  border-radius: 5px;
}
.slider-content h1 {
  font-size: 100px;
  font-weight: 700;
  color: #e149b1;
  margin: 14px 0 35px 0px;
}
.slider-content p {
  font-size: 16px;
  font-weight: 500;
  color: #767880;
  margin-top: 45px;
}
.slider-btn a {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  background: #4260ff;
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  margin-top: 20px;
  transition: .6s;
}
.slider-btn a:hover{
  background: #000;
  color: #fff;
}
.slider-shape-1 {
  position: absolute;
  bottom: 8%;
  left: 11%;
}
.slider-shape-2 {
  position: absolute;
  bottom: 9%;
  left: 4%;
}
.slider-shape-3 {
  position: absolute;
  right: 0;
  bottom: 16%;
}
.slider-shape-4 {
  position: absolute;
  top: 16%;
  left: 8%;
}
.slider-shape-5 {
  position: absolute;
  right: 8%;
  bottom: 4%;
}
/* Slider Animation */
.bounce-animate4 {
  animation-name: float-bob4;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob4;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob4;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob4;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.bounce-animate3 {
  animation-name: float-bob3;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob3;
  -moz-animation-duration: 4s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob3;
  -ms-animation-duration: 4s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob3;
  -o-animation-duration: 4s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); } }
@-webkit-keyframes float-bob2 {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px); }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px); } }
@-webkit-keyframes float-bob3 {
  0% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  50% {
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px); }
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes float-bob4 {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px); }
  100% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); } }
@-webkit-keyframes float-bob5 {
  0% {
    -webkit-transform: translateY(-75px);
    transform: translateY(-75px); }
  50% {
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px); }
  100% {
    -webkit-transform: translateY(-75px);
    transform: translateY(-75px); } }
@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/* analysis-area */
.analysis-area {
  position: relative;
}
.section-title h5 {
  font-size: 16px;
  font-weight: 600;
  color: #4260ff;
  background: #f4f6ff;
  display: inline-block;
  padding: 6px 13px;
  border-radius: 6px;
}
.section-title span {
  font-size: 54px;
  font-weight: 300;
}
.section-title h1 {
  font-size: 54px;
  font-weight: 700;
  margin-top: 15px;
}
.section-title h2 {
  font-size: 54px;
  font-weight: 700;
}
.section-title p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}
.analysis-single-counter-items {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.analysis-counter-box span {
  display: inline-block;
  color: #343842;
  font-size: 22px;
  font-weight: 700;
}
.analysis-counter-box h2 {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
}
.analysis-left-img img {
  max-width: 100%;
}
/* Process-area */
.process-content span {
  font-size: 20px;
  font-weight: 600;
  background: #3eb9ff;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 24px;
}
.process-content.two span{
  background: #abbf78;
}
.process-content.tree span{
  background: #ffb876;
}
.process-content.four span{
  background: #ffa0c9;
}
.process-content p {
  font-size: 18px;
  font-weight: 500;
}
/* Project-area */
.project-area {
  padding: 120px 0;
}
.project-single-box {
  position: relative;
}
.project-single-box:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(7, 10, 29, 0) 65.24%, rgba(7, 10, 29, 0.6) 100%);
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-single-box:hover:before{
  background: rgba(7, 10, 29, 0.7);
}
.project-content {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 0 17px 32px;
}
.project-thumb img {
  width: 100%;
  border-radius: 15px;
}
.project-content h2 {
  margin-top: 10px;
}
.project-content h2:hover{
  text-decoration: underline;
  color: #fff;
}
.project-content span {
  font-size: 14px;
  font-weight: 600;
  background: #7e736e;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
}
.project-content span {
  font-size: 14px;
  font-weight: 600;
  background: #7e736e;
  color: #fff;
  padding: 3px 6px;
  border-radius: 5px;
}
.project-content h2 a {
  font-size: 30px;
  font-weight: 700;
  margin-top: 8px;
  color: #fff;
  text-decoration: none;
}
/* Services-area */
.services-area {
  margin: 0 0 120px;
}
.services-single-thumb {
  text-align: center;
  margin-bottom: 29px;
}
.services-single-thumb img {
  width: 60px;
  transition: .5s;
}
.single-service-box:hover .services-single-thumb img{
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}
.services-single-thumb {
text-align: center;
margin-bottom: 29px;
display: inline-block;
width: 100px;
height: 100px;
line-height: 100px;
background: #eef1ff;
border-radius: 15%;
}
.services-content {
text-align: center;
}
.services-content span {
font-size: 18px;
font-weight: 500;
}
.services-content h4 a {
font-size: 22px;
font-weight: 600;
color: #111a4b;
text-decoration: none;
transition: .6s;
}
.services-content h4 a:hover{
color: #4260ff;
}
/* Why choose us */
.why-choose-up-thumb img {
  border-radius: 80px 66px  41px 52px;
  max-width: 100%;
}
.why-choose-up {
padding: 0 0 120px 0;
}
.why-choose-us-thumb {
margin-bottom: 25px;
}
.why-choose-us-single-box {
  border: 1px solid #ececef;
  display: inline-block;
  padding: 29px 40px;
  border-radius: 15px;
  text-align: center;
  transition: .6s;
  margin: 36px 10px 0;
}
.why-choose-us-single-box:hover{
box-shadow: 0px 20px 40px rgba(8, 10, 55, 0.12);
  border-radius: 14px;
}
.why-choose-us-single-box span {
font-size: 20px;
font-weight: 600;
color: #0f1123;
margin-bottom: 18px;
display: inline-block;
}
.why-choose-us-icon i {
font-size: 24px;
transition: .5s;
display: inline-block;
}
.why-choose-us-icon:hover i{
color: #4260ff;
width: 60px;
}
/* Pricing-area */
.pricing-area {
padding: 0 0 120px 0;
}
.pricing-wrap {
position: relative;
}
.pricing-shape img {
position: absolute;
right: 6px;
top: -70px;
}
.single-pricing-box {
position: relative;
z-index: 1;
}
.pricing-body h3 {
font-size: 30px;
font-weight: 600;
margin: 23px 0 45px;
}
.pricing-body ul li {
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.pricing-body ul li i {
color: #4260ff;
margin-right: 10px;
}
.pricing-body h4 {
font-size: 34px;
font-weight: 600;
margin-top: 48px;
}
.pricing-body span {
font-size: 18px;
font-weight: 400;
}
.section-title .pricing-btn a{
  margin-top: 0;
}
.pricing-btn a {
display: inline-block;
text-decoration: none;
color: #fff;
background: #4260ff;
padding: 11px 78px;
border-radius: 5px;
margin-top: 43px;
transition: .6s;
}
.pricing-btn a:hover{
background: #000;
color: #fff;
}
.single-pricing-box {
position: relative;
z-index: 1;
box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.08);
background: #fff;
padding: 54px 49px;
border-radius: 6px;
}
.pricing-bottom-shape {
position: absolute;
top: 2px;
right: -16.8%;
}
/* Testimonial-area */
.testimonial-box {
display: flex;
align-items: center;
background: #4260ff;
color: #fff;
padding: 0 45px 63px;
border-radius: 15px;
margin-top: 50px;
position: relative;
}
.testimonial-content {
margin-left: 37px;
}
.testimonial-area {
margin: 0 0 120px 0;
}
.testimonial-thumb {
margin-bottom: 22px;
}
.testimonial-img img {
border-radius: 50%;
}
.testimonial-content i {
display: inline-block;
color: rgba(66, 96, 255, 0.2);
font-size: 40px;
}
.testimonial-content p {
font-size: 24px;
font-weight: 500;
line-height: 35px;
margin-top: 19px;
}
.testimonial-content h5 {
font-size: 18px;
font-weight: 800;
margin-bottom: -3px;
color: #fff;
}
.testimonial-content span {
  font-size: 14px;
  font-weight: 500;
}
.owl-nav {
  position: absolute;
  right: 55px;
  top: -8%;
  display: flex;
}
.owl-nav i {
  font-size: 25px;
  border: 1px solid;
  padding: 7px 13px;
  margin-left: 11px;
  border-radius: 3px;
  transition: .7s;
}
.owl-nav i:hover{
  background: #4260ff;
  color: #fff;
  border-radius: 5px;
  font-size: 25px;
}
/* Blog-area */
.blog-btn {
  float: right;
}
.blog-btn a {
  display: inline-block;
  text-decoration: none;
  background: #4260ff;
  color: #fff;
  padding: 12px 32px;
  font-weight: 500;
  border-radius: 5px;
  transition: .6s;
  text-transform: capitalize;
}
.blog-btn a:hover{
  background: #000;
  color: #fff;
}
.blog-btn a i {
  font-size: 20px;
  margin-left: 3px;
}
.blog-box {
  transition: .5s;
  padding:25px 25px 35px 25px;
  border: 1px solid rgba(12, 19, 56, 0);
  border-radius: 15px;
}
.blog-box:hover{
 border: 1px solid rgba(12, 19, 56, 0.1);
}
.blog-thumb img {
  width: 100%;
  border-radius: 10px;
}
.blog-thumb a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(12, 19, 56, 0.1);
  margin: 20px 3px 0 0;
  padding: 0px 10px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  transition: .6s;
}
.blog-thumb a:hover{
  background: rgba(12, 19, 56, 0.1);;
}
.blog-content {
  display: flex;
}
.blog-title {
  margin: 10px 0 17px 0;
}
.blog-title h3 a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: .5s;
  margin-top: 7px;
  display: inline-block;
}
.blog-avatar-content h5 {
  margin-bottom: 0;
}
.blog-title h3 a:hover{
  color: hsl(230, 100%, 63%);
}
.blog-avatar-img img {
  border-radius: 50px;
  width: 55px;
}
.blog-avatar-content {
  margin-left: 9px;
}
.section-title h2 {
  font-size: 54px;
  font-weight: 700;
  color: #000;
  margin-top: 22px;
  margin-bottom: 40px;
}
.section-title span {
  margin-bottom: 10px;
  display: inline-block;
}
.blog-avatar-content {
  margin-left: 9px;
}
/* contact-us */
.contact-us {
  background: #4260ff;
  padding: 120px 0 120px 0;
}
.contact-title h5 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.contact-title h2 {
  font-weight: 700;
  color: #fff;
  font-size: 34px;
  margin-top: 17px;
}
.contact-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 40px 55px 40px;
  border-radius: 20px;
}
.contact-info ul li {
  list-style: none;
  margin-bottom: 10px;
}
.contact-info ul li a {
  color: #d1d0db;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.contact-info ul li i {
  margin-right: 7px;
}
.contact-social-icon {
  margin-top: 31px;
}
.contact-social-icon a {
  display: inline-block;
  color: #bab9c9;
}
.contact-social-icon a i {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 3px 9px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 4px;
  transition: .5s;
}
.contact-social-icon a i:hover{
  background: #fff;
  color: #3eb9ff;
}
/* Contact Form */
.contact-right-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 61px 61px 61px 62px;
  border-radius: 20px;
  margin-left: 105px;
}
.st__form {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  padding: 10px 26px 10px;
  color: #fff;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
}
.contact-right-box h2 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 47px;
}
.st__form::placeholder{
  font-size: 16px;
  color: #fff;
}
.st__form:focus{
border: none;
outline: 0;
box-shadow: none;
}
.st__form__btn {
  border: none;
  width: 100%;
  padding: 18px 0;
  border-radius: 15px;
}
button {
  border: none;
  width: 100%;
  padding: 18px 0;
  border-radius: 15px;
}
/* funfact-area */
.funfact-area {
  padding-bottom: 100px;
}
.row.funfact-bg {
  background: #4260ff;
  padding: 109px 0 225px 0;
  border-radius: 20px;
}
.funfact-area .section-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 0;
}
.funfact-area .section-title h5 {
  background: #5f78ff;
}
.funfact-box {
  background-color: #fff;
  margin-left: 15px;
  box-shadow: 0px 25px 70px rgba(8, 10, 55, 0.1);
  padding: 61px 68px;
  text-align: center;
  border-radius: 15px;
  margin-top: -178px;
}
.funfact-box span {
  font-weight: 500;
  font-size: 20px;
  display: block;
  margin-bottom: 15px;
  color: #909093;
}
.funfact-box h4 {
  font-weight: 600;
  font-size: 60px;
  display: inline-block;
}
.funfact-box h3 {
  font-size: 40px;
  display: inline-block;
}
.funfact-tag {
  margin-top: 16px;
}
.funfact-tag span {
  font-weight: 400;
  font-size: 18px;
  margin: 0 20px;
  display: inline;
}
.funfact-tag span img {
  margin-right: 10px;
}
.container.container-large {
  max-width: 1630px;
  padding: 100px 0 180px;
  background: #5f78ff;
  border-radius: 20px;
}
/* footer-area */
.footer-area {
  overflow: hidden;
}
.footer-logo a img {
  width: 90px;
}
.footer-content {
  margin-top: 16px;
}
.footer-content p {
  color: #565764;
  font-size: 22px;
  font-weight: 500;
}
.footer-content h3 {
  font-weight: 600;
}
.footer-social-icon ul li {
  list-style: none;
  display: inline;
}
.footer-title h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-title ul li {
  list-style: none;
}
.footer-social-icon ul li a i {
  display: inline-block;
  color: #000;
  font-size: 20px;
  transition: .7s;
  border: 1px solid rgba(12, 19, 56, 0.1);
  padding: 13px 14px;
  border-radius: 7px;
  margin-right: 4px;
  transition: .6s;
}
.footer-social-icon ul li a:hover i{
  color: #FFFFFF;
  background: #4260FF;
}
.footer-title ul li a {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #565764;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 9px;
  transition: .5s;
}
.footer-title ul li a:hover{
  color: #5a72f4;
}
.footer-title span {
  font-size: 17px;
  font-weight: 500;
}
.st-footer-form {
  position: relative;
  margin-top: 20px;
}
.st__formtwo {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(12, 19, 56, 0.14);
  border-radius: 10px;
  padding: 33px 23px 33px 58px;
  margin-bottom: 25px;
  font-size: 20px;
}
.st__formtwo::placeholder{
  font-size: 20px;
  color: #a4a6ae;
}
.st__formtwo:focus{
  border: 1px solid #a4a6ae;
}
.st-footer-form i {
  position: absolute;
  left: 27px;
  top: 19px;
  font-size: 20px;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6!important;
  padding-bottom: 103px;
}
.copyright__text {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Project-details */
.project-details-thumb img {
  max-width: 100%;
}
.details-box {
  position: relative;
  left: 0;
  bottom: 90px;
  z-index: 2;
  background: #fff;
  border-bottom: 2px solid #4260FF;
  padding: 45px 50px 36px 44px;
  display: inline-block;
}
.project-heading1 h2 {
  font-size: 35px;
  margin-bottom: 25px;
}
.portfolio-desc p {
  font-size: 15px;
}
.protfolio-thumb img {
  max-width: 100%;
}
.protfolio-thumb {
  margin-top: 26px;
  margin-bottom: 15%;
}
.portfolio-heading {
  margin-top: 26px;
}
.portfolio-heading h2 {
  font-size: 35px;
}
.portfolio-heading p {
  font-size: 15px;
}
.portfolio-list ul li {
  padding-bottom: 10px;
  list-style: none;
}
.portfolio-list ul li i {
  color: #4260ff;
  margin-right: 12px;
}

.project-details-area .footer-social-icon {
  border-top: 1px solid #dee2e6;
  padding-top: 50px;
}
/* Breadcumb-area */
.brpt h2 {
  color: #fff;
  font-size: 48px;
}
.breadcumb-inner ul li {
  display: inline;
  color: #fff;
  margin-left: 15px;
  font-size: 20px;
}
.breadcumb-inner ul li a {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.breadcumb-area {
  position: relative;
  z-index: 1;
}
.breadcumb-area::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: -1;
}
.breadcumb-inner {
  padding-top: 30px;
}
/* About-area */
.about-thumb img {
  max-width: 100%;
  border-radius: 25px;
}
.about-btn a {
  display: inline-block;
  text-decoration: none;
  background: #4260ff;
  color: #fff;
  padding: 11px 33px;
  font-size: 18px;
  border-radius: 7px;
  margin-top: 10px;
  transition: .7s;
}
.about-btn a:hover{
  background: #000;
}
/* mission-area */
.mission-content {
  background: #4260ff;
  padding: 89px 90px;
  color: #fff;
  border-radius: 15px;
  text-align: center;
}
.mission-content p {
  font-size: 20px;
}
.mission-content h2 {
  margin-bottom: 20px;
  font-size: 35px;
}
.mission-content2 {
  background: #b3f0d7;
  padding: 87px 85px;
  color: #000;
  border-radius: 15px;
  text-align: center;
  margin-top: 298px;
  margin-left: -150px;
  display: inline-block;
}
.mission-content2 h2 {
  margin-bottom: 20px;
  font-size: 35px;
}
.mission-content2 p {
  font-size: 20px;
}
/* Discover-area */
.discover-img img {
  margin-top: 44px;
  border-radius: 15px;
  max-width: 100%;
}
.discover-thumb img {
  border-radius: 15px;
  margin-left: 13px;
  max-width: 100%;
}
.discover-thumb2 img {
  border-radius: 15px;
  margin: 16px 18px;
  max-width: 100%;
}
/* Team-area */
.team-btn {
  margin-top: 56px;
}
.team-btn a {
  color: #FFFFFF;
  background: #4260FF;
  padding: 18px 52px 18px 52px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  transition: .7s;
} 
.team-btn a:hover{
  background: #000;
}
.team-thumb {
  background: #F5BCE3;
  border-radius: 200px 4px 200px 200px;
  text-align: center;
  padding-top: 54px;
  overflow: hidden;
}
.team-content a h2 {
  font-size: 30px;
  letter-spacing: 1.2px;
  transition: .6s;
}
.team-content a h2:hover{
  color:#4260FF; ;
}
.team-content span {
  font-size: 18px;
}
/* feature-area */
.feature-thumb {
  position: relative;
}
.feature-shape-one img{
  max-width: 100%;
  border-radius: 50%;
}
.feature-shape-two {
  position: absolute;
  top: 70px;
  right: 21px;
  border-radius: inherit;
}
.feature-shape-three {
  position: absolute;
  right: 114px;
  bottom: 5px;
  border-radius: inherit;
}
.feature-shape-four {
  position: absolute;
  bottom: 97px;
  left: -169px;
}
.feature-shape-five {
  position: absolute;
  top: 38px;
  left: -38px;
}
.feature-item p {
  font-size: 20px;
}
.feature-item h4 {
  font-size: 23px;
  letter-spacing: 0.3px;
}
.feature-item {
  display: flex;
}
.feature-icon i {
  font-size: 28px;
  color: #4260ff;
  display: inline-block;
  margin-right: 24px;
}
.feature-btn a {
  display: inline-block;
  background: #007cf5;
  color: #fff;
  padding: 12px 48px;
  border-radius: 7px;
  font-size: 18px;
  margin-top: 15px;
  transition: .7s;
}
.feature-btn a:hover{
  background-color: #000;
}
.feature-item {
  display: flex;
  margin-bottom: 20px;
}
/*------back-to-top------------*/
.prgoress_scrollup {
  position: fixed;
  right: 55px;
  bottom: 80px;
  height: 48px;
  width: 48px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px #f4f6ff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transform: translateY(15px) !important;
  transition: all 200ms linear !important;
}
.prgoress_scrollup.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}
.prgoress_scrollup::after {
  position: absolute;
  font-family: bootstrap-icons!important;
  content: "\f148";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #007cf5;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  font-weight: 900;
  z-index: 1;
  transition: all 200ms linear !important;
}
.prgoress_scrollup::before {
  position: absolute;
  font-family: bootstrap-icons!important;
  content: "\f148";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_scrollup:hover ::after {
  color: #007cf5;
}
.prgoress_scrollup:hover ::before {
  opacity: 1;
}
.prgoress_scrollup svg path {
  fill: none;
}
.prgoress_scrollup svg.progress-circle path {
  stroke: #007cf5;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}

/*** 
====================================================================
   Zory Search Popup
====================================================================
***/
.search-popup{
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0,0,0,0.90);
  -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
.search-popup{
  width: 100%;
}
.search-active .search-popup{
  transform: translateY(0%);
  margin-top: 0;
}
.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: #4260ff;
  width: 70px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-bottom: 3px solid #ffffff;
  -webkit-transition: all 500ms ease;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.search-active .search-popup .close-search{
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.search-popup form{
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin:-35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #111111;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-active .search-popup form{
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}
.search-popup .form-group{
  position:relative;
  margin:0px; 
  overflow: hidden;
}
.search-popup .form-group input[type="text"], .search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  outline: 0;
}
.search-popup .form-group input[type="submit"], .search-popup .form-group button {
  position: absolute;
  right: -45%;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #4260ff;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
  color: #000000;
}
.form-group input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  font-size: 16px;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder{
  color:#000000;
  font-size: 16px;
}
.search-popup .close-search.style-two{
  position: absolute;
  right: 25px;
  left: auto;
  color:#ffffff;
  width:auto;
  height:auto;
  top:25px;
  margin:0px;
  border:none;
  background:none !important;
  box-shadow:none !important;
  -webkit-transition:all 500ms ease;
  -moz-transition:all 500ms ease;
  -ms-transition:all 500ms ease;
  -o-transition:all 500ms ease;
  transition:all 500ms ease;
}
.flaticon-multiply:before {
  content: inherit;
}
button.close-search i {
  font-size: 40px;
  color: #fff;
  display: inline-block;
}
span.flaticon-multiply i {
  display: inline-block;
  color: #4260ff;
}
.header-search-btn {
  position: relative;
  display: inline-block;
  right: -30px;
}
.header-search-btn i {
  font-size: 18px;
  color: #4260ff;
  transition: .5s;
}
/* Sticky */
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 9;
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 25px 0 27px;
}

/* blog-details */
.style-2 .blog-meta-top2 {
  margin-bottom: 14px;
}
.blog-text2 p {
  margin: 29px 0 30px;
  width: 82%;
}
.blog-text3 p {
  width: 86%;
}
.blogs-section .style-2 .blog-meta-top2 span {
  font-size: 16px;
}
.blog-title-2 h2 {
  font-size: 28px;
  color: #0A2C3D;
  margin-top: 36px;
}
.blog-text4 p {
  width: 88%;
  margin-top: 21px;
  margin-bottom: 42px;
}
.blog-text5 {
  background: rgba(66,96,255,0.1);
  padding: 10px 21px 10px;
  border-left: 5px solid #4260ff;
  width: 96%;
}
.blog-text5 p {
  width: 80%;
  font-style: italic;
  font-size: 18px;
}
.blog-bullets h2 {
  font-size: 26px;
  margin: 50px 0 18px;
}
.blog-bullets ul {
  padding-left: 40px;
}
.blog-text6 p {
  margin: 30px 0 38px;
  width: 92%;
}
.blog-single-thumb img {
  margin-right: 23px;
}
.blog-social-icon.text-center {
  margin-left: -105px;
}

.blog-social-icon ul li {
  display: inline;
  list-style: none;
}
.blog-social-icon ul li a {
  display: inline-block;
  font-size: 12px;
  color: #1F3E4D;
  margin-right: 8px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  border-radius: 50%;
  margin-top: 30px;
  transition: .5s;
  text-align: center;
  position: relative;
}
.blog-social-icon ul li a:hover {
  background: #4260ff;
  color: #fff;
}
.blog-social-icon ul li a:before {
  position: absolute;
  content: "";
  background: #E5E9EA;
  width: 100px;
  height: 1px;
  left: -264px;
  bottom: 13px;
}
.blog-social-icon ul li a:after {
  position: absolute;
  content: "";
  background: #E5E9EA;
  width: 100px;
  height: 1px;
  right: -269px;
  bottom: 13px;
}
.blog-comment {
  margin-bottom: 46px;
  position: relative;
}
.blog-comment:before {
  position: absolute;
  content: "";
  bottom: -22px;
  left: 0;
  background: #E5E9EA;
  width: 95%;
  height: 1px;
}
.blog-comment h3 {
  font-size: 24px;
  color: #133344;
  margin-top: 50px;
  margin-bottom: 28px;
  position: relative;
}
.blog-comment h3:before {
  position: absolute;
  content: "";
  top: 7px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}
.blog-comment-title h2 {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #133344;
}
.blog-comment-title span {
  font-size: 10px;
  color: #FF5A3C;
}
.blog-comment-title h2 {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #133344;
  margin-right: 22px;
  margin-top: 0;
  margin-left: 15px;
}
.blog-date {
  margin-top: -10px;
}
.blog-date span {
  font-size: 12px;
  color: #151F48;
  margin-left: 16px;
}
.blog-comment-text p {
  font-size: 15px;
  width: 82%;
  margin-left: 15px;
}
.blog-checkbox {
  margin-top: 27px;
}
input.checkbox-control2 {
  width: 12px;
  margin-top: 0;
  cursor: pointer;
}
label.checkbox-control {
  color: #3B5664;
  margin-left: 0;
}
.style3.contact-form-msg-2 i {
  position: absolute;
  left: 9%;
  right: 0;
  margin-top: 29px;
  font-size: 12px;
  color: #5C727D;
  margin-left: 11px;
}
.style3 .blog-button {
  margin-top: 40px;
  width: 25%;
  float: left;
}
.style3.blog-drop-form h2:before {
  position: absolute;
  content: "";
  top: 4px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}

/* Single-Style */
.blogs-section {
  padding-top: 190px;
  padding-bottom: 100px;
position:relative;
}
.latest-blog {
  background: #fff;
  padding: 20px 0 44px;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 12%);
}
.single-blog-content {
  background: #fff;
  padding: 30px 0 30px 35px;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 15%);
  position: relative;
  margin: auto;
  z-index: 1;
} 
.blogs-section .blog-meta-top2 span {
  font-size: 13px;
  margin-right: 13px;
}
span.color i {
  color: #4260ff;
}
.blogs-section .blog-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: #0A2C3D;
}
.blogs-section .blog-text p {
  margin: 12px 0 13px;
  width: 63%;
}
.blog-btn-2 a {
  color: #4260ff;
  text-decoration: none;
  font-weight:500;
}
.pagination ul li {
  list-style: none;
  display: inline;
}
.pagination ul li a {
  display: inline-block;
  text-decoration: none;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  border-radius: 50%;
  text-align: center;
  margin-left: 15px;
}
.pagination ul li a:hover{
  background: #4260ff;
  color: #fff;
}
a.current-menu {
  background: #4260ff !important;
  color: #fff;
}
.pagination {
  margin-left: 260px;
  margin-top: -90px;
}
.about-me-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0A2C3D;
  margin-top: 0;
  margin-bottom: -6px;
} 
.about-me-content span {
  font-size: 12px;
  color: #5C727D;
}
.review span {
  color: #FF5A3C;
}
span.cor {
  color: #D4D0CA;
}
.review span i {
  font-size: 10px;
}
.about-me-content p {
  width: 78%;
  margin: 4px auto 0;
}
.about-me-soical a {
  display: inline-block;
  font-size: 12px;
  color: #1F3E4D;
  margin-left: 15px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  border-radius: 50%;
  margin-top: 30px;
  transition: .5s;
  text-align: center;
}
.about-me-soical a:hover{
  background: #4260ff;
  color: #fff;
}
.blog-src-bar {
  background: #fff;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  padding: 20px 30px 42px;
  margin-top: 28px;
  margin-bottom: 30px;
}
.blog-src-bar h2 {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-bottom: 14px;
  color: #133344;
}
.blog-src-bar h2:before {
  position: absolute;
  content: "";
  top: 7px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}
input.blog-control {
  width: 320px;
  height: 53px;
  outline: 0;
  border: 1px solid #DCE1E3;
  padding-left: 20px;
}
.blog-src-bar .blog-btn {
  right: 0;
  top: -53px;
  background: #4260ff;
  color: #fff;
  display: inline-block;
  padding: 12px 25px;
  position: relative;
  border: none;
  width: inherit;
  border-radius: 0;
}
.blog-drop-form h2 {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-bottom: 14px;
  color: #133344;
}
#contact_form3 {
  background: #F7F7F7;
  padding: 58px 44px 42px 30px;
  margin-bottom: 30px;
}
.contact-form_2 {
  position: relative;
}
.contact-form_2 i {
  position: absolute;
  left: 22px;
  right: 0;
  margin-top: 20px;
  font-size: 11px;
  color: #5C727D;
  top: -2px;
}
.contact-form-msg-2 i {
  position: absolute;
  left: 64%;
  right: 0;
  margin-top: 29px;
  font-size: 12px;
  color: #5C727D;
  margin-left: 15px;
}
.contact-style_2 {
  width: 100%;
  height: 45px;
  padding-left: 40px;
  background: #fff;
  border: none;
  outline: 0;
  margin-bottom: 20px;
}
.contact-style-msg2 {
  width: 100%;
  height: 185px;
  padding-left: 45px;
  background: #fff;
  border: none;
  outline: 0;
  padding-top: 20px;
}
.contact-style-msg2::placeholder{
  font-size: 12px; 
}
.contact-style_2::placeholder{
  font-size: 12px;
}
.contact-style-msg_2::placeholder{
  font-size: 12px;
}
.blog-drop-form h2 {
  margin-top: -20px;
  margin-bottom: 28px;
}
.blog-button {
  float: right;
  font-size: 16px;
  font-weight: 600;
  background: #4260ff;
  color: #fff;
  padding: 9px 38px 9px;
  border: none;
  text-transform: capitalize;
  margin-top: 23px;
  width: 100%;
}
.blog-latest {
  background: #fff;
  padding: 10px 30px 38px;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
}
.blog-latest-items {
  margin-bottom: -20px;
  margin-left: -24px;
}
.blog-latest h2 {
  font-size: 22px;
  color: #153546;
  position: relative;
}
.blog-latest h2:before {
  position: absolute;
  content: "";
  top: 7px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}
.b-content {
  margin-top: 13px;
}
.b-content span {
  font-size: 9px;
}
.b-content span i {
  color: #4260ff;
}
.b-content h3 {
  font-size: 15px;
}
.top-catagories {
  background: #fff;
  padding: 10px 30px 38px;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  margin-top: 30px;
}
.top-catagories h2 {
  font-size: 22px;
  position: relative;
}
.top-catagories h2:before {
  position: absolute;
  content: "";
  top: 4px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}
.top-catagories span {
  display: block;
  font-size: 15px;
  background: rgba(66,96,255,0.1);
  padding: 5px 22px;
  margin-bottom: 15px;
  color: #4260ff;
  margin-top: 20px;
}
.follow-us {
  background: #fff;
  padding: 10px 30px 30px;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  margin-top: 30px;
}
.follow-us h2 {
  font-size: 22px;
  position: relative;
  margin-bottom: -20px;
}
.follow-us h2:before {
  position: absolute;
  content: "";
  top: 4px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}
.follow-us .about-me-soical {
  margin-left: -29px;
}
.tags{
  background: #fff;
  padding: 10px 30px 30px;
  box-shadow: 6px 5px 16px 0px rgb(0 0 0 / 8%);
  margin-top: 30px;
}
.tags h2 {
  font-size: 22px;
  position: relative;
  margin-bottom: 20px;
}
.tags h2:before {
  position: absolute;
  content: "";
  top: 4px;
  left: -9px;
  background: #4260ff;
  height: 20px;
  width: 2px;
}
.tags span {
  font-size: 14px;
  border: 2px solid #4260ff;
  padding: 2px 20px 2px;
  text-align: center;
  display: inline-block;
  margin-bottom: 20px;
  margin-right: 15px;
  color: #4260ff;
  transition: .5s;
  cursor: pointer;
}
.tags span:hover{
  background: #4260ff;
  color: #fff;
}
#contact_form2 {
  position: relative;
}
.blog-thumb-single img {
  width: 100%;
}