@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=BenchNine);
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #4154f1;
  text-transform: uppercase;
}
.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol a {
  color: #fff;
  transition: 0.3s;
}
.breadcrumbs ol a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #8894f6;
  content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  /*transition: all 0.5s;*/
  z-index: 997;
  padding: 20px 0;
}
.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  z-index: 999;
}
.header .logo {
  line-height: 0;
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.header .logo span {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #012970;
  font-family: "BenchNine", sans-serif;
  margin-top: 3px;
}
@media (max-width: 768px) {
.header {
  /*transition: all 0.5s;*/
  z-index: 997;
  padding: 10px 0;
}
.header .logo img {
  max-height: 30px;
  margin-right: 6px;
}
.header .logo span {
  font-size: 28px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #013289;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #4154f1;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #4154f1;
  padding: 8px 10px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #4154f1;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #4154f1;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: url(../images/hero-bg.png) top center no-repeat;
  background-size: cover;
}
.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}
.hero h2.duplicate {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #012970;
}
.hero h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}
.hero .btn-get-started {
  margin-top: 30px;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}
.hero .btn-get-started span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.hero .btn-get-started:hover i {
  transform: translateX(5px);
}
.hero .hero-img {
  text-align: right;
}
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}
@media (max-width: 768px) {

  .hero {
    text-align: center;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  background-color: #f6f9ff;
  padding: 40px;
}
.about h3 {
  font-size: 40px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}
.about .headline {
  font-size: 28px;
  font-weight: 700;
  color: #012970;
  margin: 15px 0 30px 0;
}
.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}
.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}
.about .btn-read-more span {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}
.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Values
--------------------------------------------------------------*/
.values .box {
  padding: 20px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}
.values .box img {
width:60%;
  padding: 20px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}
.values .box h3 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
}
.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.values .box:hover img {
  transform: scale(1);
}
.values .box p {
  font-size: 22px;
  color: #012970;
  font-weight: 400;
  margin-bottom: 18px;
}

.values .box h1, .values .box p {
    display: inline;
}
.values .box h2 {
    font-size: 22px;
  color: #012970;
  font-weight: 400;
  margin-bottom: 0px;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 50px 0 40px;
}
.counts .count-box {
  display: flex;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: #4154f1;
  padding-top:30px;
}
.counts .count-box span {
  font-size: 36px;
  display: inline-block;
  font-weight: 600;
  color: #0b198f;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

.why-choose-us1{padding:60px 60px 60px 290px;margin-top:-230px}@media screen and (max-width: 1399px){.why-choose-us1{padding:60px 60px 60px 200px;margin-top:-160px}}@media screen and (max-width: 1199px){.why-choose-us1{padding:60px 60px 60px 170px}}@media screen and (max-width: 991px){.why-choose-us1{padding:30px;margin-top:30px}}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .feature-box {
  padding: 14px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}
.features .feature-box h3 {
  font-size: 14px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}
.features .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 14px;
  margin-right: 10px;
  font-size: 16px;
  border-radius: 3px;
  transition: 0.3s;
}
.features .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}
.features .feture-tabs {
  margin-top: 120px;
}
.features .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}
.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}
.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #012970;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}
.features .feture-tabs .nav-link.active {
  color: #4154f1;
  border-bottom: 3px solid #4154f1;
}
.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #012970;
}
.features .feture-tabs .tab-content i {
  font-size: 24px;
  line-height: 0;
  margin-right: 8px;
  color: #4154f1;
}
.features .feature-icons {
  margin-top: 120px;
}
.features .feature-icons h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }
}
.features .feature-icons .content .icon-box {
  display: flex;
}
.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #012970;
}
.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}
.features .feature-icons .content .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .service-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}
.services .service-box .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}
.services .service-box h3 {
  color: #444444;
  font-weight: 700;
}
.services .service-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}
.services .service-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}
.services .service-box.blue {
  border-bottom: 3px solid #2db6fa;
}
.services .service-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}
.services .service-box.blue .read-more {
  color: #2db6fa;
}
.services .service-box.blue:hover {
  background: #2db6fa;
}
.services .service-box.orange {
  border-bottom: 3px solid #f68c09;
}
.services .service-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}
.services .service-box.orange .read-more {
  color: #f68c09;
}
.services .service-box.orange:hover {
  background: #f68c09;
}
.services .service-box.green {
  border-bottom: 3px solid #08da4e;
}
.services .service-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}
.services .service-box.green .read-more {
  color: #08da4e;
}
.services .service-box.green:hover {
  background: #08da4e;
}
.services .service-box.red {
  border-bottom: 3px solid #e9222c;
}
.services .service-box.red .icon {
  color: #e9222c;
  background: #fef7f8;
}
.services .service-box.red .read-more {
  color: #e9222c;
}
.services .service-box.red:hover {
  background: #e9222c;
}
.services .service-box.purple {
  border-bottom: 3px solid #b50edf;
}
.services .service-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}
.services .service-box.purple .read-more {
  color: #b50edf;
}
.services .service-box.purple:hover {
  background: #b50edf;
}
.services .service-box.pink {
  border-bottom: 3px solid #f51f9c;
}
.services .service-box.pink .icon {
  color: #f51f9c;
  background: #feecf7;
}
.services .service-box.pink .read-more {
  color: #f51f9c;
}
.services .service-box.pink:hover {
  background: #f51f9c;
}
.services .service-box:hover h3, .services .service-box:hover p, .services .service-box:hover .read-more {
  color: #fff;
}
.services .service-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.pricing .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.pricing h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}
.pricing .price {
  font-size: 36px;
  color: #444444;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}
.pricing .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
.pricing img {
  padding: 30px 40px;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}
.pricing ul li {
  padding-bottom: 10px;
}
.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}
.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #4154f1;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #4154f1;
}
.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}
.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #4154f1;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .accordion-collapse {
  border: 0;
}
.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #4154f1;
  border-bottom: 0;
}
.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid #fff;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #4154f1;
  border-color: #4154f1;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap img {
  transition: 1s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #012970;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  background: #4154f1;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 24px;
  line-height: 0;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #5969f3;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}
.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
  font-size:30px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}
.testimonials .swiper-slide {
  opacity: 0.3;
}
@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0;
}
.team .member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}
.team .member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.team .member .social a {
  transition: color 0.3s;
  color: rgba(1, 41, 112, 0.5);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}
.team .member .social a:hover {
  color: rgba(1, 41, 112, 0.8);
}
.team .member .social i {
  font-size: 18px;
}
.team .member .member-info {
  padding: 10px 15px 20px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #012970;
}
.team .member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #aaaaaa;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: #5e5e5e;
}
.team .member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.team .member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-slider .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}
.clients .clients-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}
.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}
.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}
.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}
.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}
.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}
.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}
.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  background: #fafbff;
  padding: 30px 20px;
}
.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
  border:1px dashed #ccc;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea, .contact .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #4154f1;
}
.contact .php-email-form input, .contact .php-email-form select  {
  padding: 10px 15px;
  margin-bottom:8px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=reset] {
  background: #333333;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}
.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}
.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}
.blog .entry .entry-title a {
  color: #012970;
  transition: 0.3s;
}
.blog .entry .entry-title a:hover {
  color: #4154f1;
}
.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
}
.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}
.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}
.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}
.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #4154f1;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog .entry .entry-content .read-more a:hover {
  background: #5969f3;
}
.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}
.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012970;
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}
.blog .entry .entry-footer i {
  color: #0d64fd;
  display: inline;
}
.blog .entry .entry-footer a {
  color: #013289;
  transition: 0.3s;
}
.blog .entry .entry-footer a:hover {
  color: #4154f1;
}
.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}
.blog .entry .entry-footer .cats li {
  display: inline-block;
}
.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}
.blog .entry .entry-footer .tags li {
  display: inline-block;
}
.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}
.blog .entry .entry-footer .share {
  font-size: 16px;
}
.blog .entry .entry-footer .share i {
  padding-left: 5px;
}
.blog .entry-single {
  margin-bottom: 30px;
}
.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}
.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #012970;
}
.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}
.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}
.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}
.blog .blog-comments {
  margin-bottom: 30px;
}
.blog .blog-comments .comments-count {
  font-weight: bold;
}
.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}
.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}
.blog .blog-comments .comment .comment-img img {
  width: 60px;
}
.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}
.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}
.blog .blog-comments .comment h5 a:hover {
  color: #4154f1;
}
.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #012970;
}
.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}
.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #013ca3;
  margin-bottom: 5px;
}
.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}
.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}
.blog .blog-comments .reply-form p {
  font-size: 14px;
}
.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}
.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}
.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a0aaf8;
}
.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}
.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #012970;
}
.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #013289;
}
.blog .blog-pagination {
  color: #024ed5;
}
.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}
.blog .blog-pagination li a {
  color: #012970;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #4154f1;
}
.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}
.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #012970;
  position: relative;
}
.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}
.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}
.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}
.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}
.blog .sidebar .search-form form button i {
  line-height: 0;
}
.blog .sidebar .search-form form button:hover {
  background: #5465f2;
}
.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}
.blog .sidebar .categories ul a {
  color: #012970;
  transition: 0.3s;
}
.blog .sidebar .categories ul a:hover {
  color: #4154f1;
}
.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}
.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}
.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}
.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}
.blog .sidebar .recent-posts h4 a {
  color: #012970;
  transition: 0.3s;
}
.blog .sidebar .recent-posts h4 a:hover {
  color: #4154f1;
}
.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}
.blog .sidebar .tags {
  margin-bottom: -10px;
}
.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}
.blog .sidebar .tags ul li {
  display: inline-block;
}
.blog .sidebar .tags ul a {
  color: #0257ee;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #d7e6ff;
  display: inline-block;
  transition: 0.3s;
}
.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #4154f1;
  background: #4154f1;
}
.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #a5c5fe;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0 0 30px 0;
  font-size: 14px;
}
.footer .footer-newsletter {
  padding: 40px 0;
  background:#003399;
  border-top: 1px solid #e1ecff;
}
.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  color: #012970;
}
.footer .footer-newsletter form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e1ecff;
}
.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}
.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #4154f1;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
}
.footer .footer-newsletter form input[type=submit]:hover {
  background: #5969f3;
}
.footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.footer .location-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .location-links ul i {
  padding-right: 4px;
  color: #4154f1;
  font-size: 10px;
  line-height: 0;
}
.footer .location-links ul li {
  padding: 5px 5px;
  display: block;
  align-items: center;
}
.footer .location-links ul li:first-child {
  padding-top: 0;
}
.footer .location-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size:12px;
}
.footer .location-links ul a:hover {
  color: #4154f1;
}

.footer .footer-top {
  background: white url(../images/footer-bg.png) no-repeat right top;
  background-size: contain;
  border-top: 1px solid #e1ecff;
  border-bottom: 1px solid #e1ecff;
  padding: 60px 0 30px 0;
}
@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}
.footer .footer-top .footer-info .logo img {
  max-height: 20px;
  margin-right: 6px;
}
.footer .footer-top .footer-info .logo span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}
.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}
.footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #012970;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .footer-top .social-links a:hover {
  
  color: rgba(1, 41, 112, 0.5);
}
.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #012970;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.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 i {
  padding-right: 8px;
  color: #333;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-top .footer-links ul a {
  color: #013289;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-top .footer-links ul a:hover {
  color: #4154f1;
}
.footer .footer-top .footer-contact p {
  line-height: 26px;
}
.footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #012970;
}
.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.contact .info-box .social-links a {
  font-size: 10px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.contact .info-box .social-links a i {
  font-size: 20px;
  }
.contact .info-box .social-links a:hover {
  color: #012970;
}

.about-style2 {margin-top:40px;}
.about-style2 .about-inner{box-shadow:6px 5px 30px 0px rgba(0,0,0,0.12);z-index:9;background:#fff;position:relative}

.list-style1{list-style:none;padding:0}
.list-style1 li{position:relative;padding:0 0 0 40px;margin:0 0 24px 0}.list-style1 li span{position:absolute;top:3px;right:0}

.list-style1 li:last-child{margin-bottom:0}.list-style1 li:before{content:"\f00c";font-family:'FontAwesome';color:#4e86ff;font-size:12px;background:rgba(78,134,255,0.1);margin-right:12px;border-radius:30px;padding:6px;position:absolute;left:0;top:5px;line-height:12px}
.list-style1 li i{color:#4e86ff;font-size:12px;background:rgba(55,125,255,0.1);margin-right:12px;border-radius:30px;padding:6px;position:absolute;left:0;top:2px;line-height:12px}

.list-style3{list-style:none;padding:0;margin-bottom:0}
.list-style3 li{font-family: "Nunito", sans-serif;position:relative;padding:5px 0 5px 35px;margin:0 0 10px 0; font-size:20px; color:#fff; font-weight:700; border:1px dotted #ccc;}
.list-style3 li span{position:absolute;top:3px;right:0}.list-style3 li:last-child{margin-bottom:0;padding-bottom:0}
.list-style3 li:before{content:"\f111";font-family:FontAwesome;color:#fff;font-size:16px;margin-right:2px;border-radius:30px;padding:6px 0;position:absolute;left:10px;font-weight:800;top:10px;line-height:12px}
.list-style3 li i{color:#222;font-size:12px;margin-right:2px;border-radius:30px;padding:6px;position:absolute;left:0;top:10px;}

.service-style2 .service-icon{width:70px;height:70px;line-height:70px; font-style:normal;text-align:center;background:#DC3545;display:inline-block;border-radius:50%;color:#fff;transition:0.4s}
.service-style2:hover .service-icon{background:#222; font-style:normal;}
.service-style2 .service-butn{color:#33d687}
.service-style2:hover .service-butn{color:#4e86ff}
.service-style2 p {font-weight:700;}

.card-style3{position:relative;height:180px;border-radius:10px}


.card-style3 .card-body{position:relative;z-index:1;transition:0.7s;width:100%;height:100%;transform-style:preserve-3d;perspective:inherit;box-shadow:0px 8px 10px 0px rgba(0,0,0,0.22);}
.card-style3 .card-front,.card-style3 .card-back{padding:20px 22px 20px 22px;border-radius:5px 5px 5px 5px; color:#fff;}
.card-style3:hover .card-body{/*transform:rotateY(180deg);*/box-shadow:0px 3px 20px 0px rgba(0,0,0,0.22);}
.card-style3 .card-front i.text-secondary {color:#fff!important;}
.card-style3 .card-front{text-align:left;justify-content:center;background-color:#2A334E;z-index:2;display:flex;flex-direction:column;position:absolute;top:0;left:0;width:100%;height:100%;transition:0.7s; color:#333;}
.card-style3:hover .card-front{ background:#C7D5FF;transition:0.7s;}
.card-style3:hover .card-front p{ color:#333;transition:0.7s;}
.card-style3 .card-back{display:none;}
.card-style3:hover .card-front i,
.card-style3:hover .card-front h3 {color:#222!important;}


.card-style4{background:none;transition:all .5s ease-out 0s;box-shadow:6px 5px 30px 0px rgba(0,0,0,0.25);height:100%;border-radius:10px}
.card-style4 h1,.card-style4 h2,.card-style4 h3,.card-style4 h4,.card-style4 h5,.card-style4 h6{color:#fff!important;font-weight:600}
.card-style4 p{color:#fff; text-align:justify;}.card-style4 i{color:#33d687;opacity:0.80}.card-style4:hover i{opacity:1}

.card-style4:hover{background:#fff;color:#1e2022!important;}
.card-style4:hover p{color:#1e2022!important;font-weight:600}

.shadow-light{box-shadow:0px 0px 10px rgba(83,88,93,0.1)}

.we-offer{transition-duration:0.3s}.we-offer .offer-img{max-width:115px;max-height:115px;width:100%;height:100%;border:4px solid #33d687;border-radius:50%;transition-duration:0.3s;margin:0 auto}
.we-offer .offer-img img {max-width:105px;max-height:105px;}
.we-offer:hover .offer-img{border-color:#4e86ff}.we-offer .offer-butn{color:#33d687}.we-offer:hover .offer-butn{color:#4e86ff}

.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1;word-break:break-word}

.icon-box{transition:all 0.5s;height:100%}.icon-box .text-start{max-width:68%}
.icon-box .text-start h4 {color:#fff; font-weight:600;}
.icon-box i{max-width:50px;width:100%; color:#00CCCC;}.icon-box:hover{background:#4154F1}.icon-box:hover .text-secondary,.icon-box:hover p,.icon-box:hover h4{color:#fff !important}@media screen and (max-width: 1199px){.icon-box .text-start{max-width:64%}}

.headline h1, .headline p {
    display: inline;
}
.headline h1 {
    font-weight: bold;
	font-family:inherit;
	line-height:24px;
    font-size: inherit!important;
}
.headline h2, .headline p {
    display: inline;
}
.headline h2 {
    font-weight: bold;
	font-family:inherit;
	line-height:24px;
    font-size: inherit!important;
}
.card-style10 .card-heading{background:#4e86ff;padding:10px 15px;border-radius:2px;margin-right:20px;margin-left:20px;margin-top:-28px;overflow:hidden;z-index:9;transition:all .3s ease}
.card-style10 .card-heading i {padding-right:10px;}
.card-style10:hover .card-heading{background:#333}.card-style10 img{border-top-right-radius:10px;border-top-left-radius:10px}.card-style10.faq-info .card-heading{position:absolute;margin:0;width:92%;left:-15px;bottom:30px}@media screen and (max-width: 575px){.card-style10 .card-heading{padding:14px 20px;margin-right:15px;margin-left:-15px;margin-top:-28px}}

.primary-shadow{box-shadow:6px 5px 15px 0px rgba(0,0,0,0.08) !important}
.card-style1{position:relative;z-index:1;transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);border:none;word-break:break-word}
.card-style1:before{content:'';z-index:-1;position:absolute;left:0;right:0;bottom:0;height:0px;border-radius:3px;transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);background-color:#4154F1}
.card-style1.feel:before,.card-style1:hover:before{height:100%}
.card-style1 i{color:#4e86ff}
.card-style1:hover p,.card-style1:hover h4,.card-style1:hover h3,.card-style1:hover i,.card-style1:hover a{color:#fff;transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1)}
.contact-lg-icon{opacity:0}
.card-style1:hover .contact-lg-icon{opacity:0.4}

.card-style11{position:relative;z-index:1;transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);border:none;word-break:break-word; color:#fff;}
.card-style11:before{content:'';z-index:-1;position:absolute;left:0;right:0;bottom:0;height:0px;border-radius:3px;transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);background-color:#4154F1}
.card-style11:hover:before{height:100%}
.card-style11 p {color:#333;
}
.card-style11:hover p,.card-style11:hover h4,.card-style11:hover h3,.card-style11:hover i,.card-style11:hover a{color:#fff;transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1)}
.card-style11:hover .contact-lg-icon{opacity:0.4}

.img-top {
margin-top:20%;
}
@media screen and (max-width: 575px){
.img-top {
margin-top:0%;
border:1px solid red;
}
}

.box-front {
background:#C7D5FF;
transition:all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.box-front:hover {
background:#222;
color:#fff;
}

.title-style1{text-align:center;position:relative;margin-bottom:70px}.title-style1 h1,.title-style1 h2,.title-style1 h3,.title-style1 h4,.title-style1 h5,.title-style1 h6{padding-bottom:0}.title-style1 h1:after,.title-style1 h2:after,.title-style1 h3:after,.title-style1 h4:after,.title-style1 h5:after,.title-style1 h6:after{content:none}.title-style1 span{position:relative;font-size:15px;padding-bottom:10px;letter-spacing:2px;font-weight:600;color:#4e86ff;line-height:200%;margin-bottom:10px}.title-style1 span:before{content:'';display:block;width:75px;height:1px;background:#4e86ff;margin:0 auto;position:absolute;left:0;right:0;bottom:0}.title-style1 span:after{position:absolute;content:'';background:#4e86ff;width:75px;height:1px;bottom:-2px;left:0;right:0;margin:0 auto}.title-style1.white span{color:#fff}.title-style1.left span:before,.title-style1.left span:after{margin:0}.title-style1.white span:before,.title-style1.white span:after{background:#fff}@media screen and (max-width: 991px){.title-style1{margin-bottom:50px}}

.card-style9{background:#fff;transition:all .5s ease-out 0s;box-shadow:6px 5px 30px 0px rgba(0,0,0,0.25);height:100%;border-radius:10px; border:5px solid #FECE4E;}.card-style9 h1 a,.card-style9 h2 a,.card-style9 h3 a,.card-style9 h4 a,.card-style9 h5 a,.card-style9 h6 a,.card-style9 h1,.card-style9 h2,.card-style9 h3,.card-style9 h4,.card-style9 h5,.card-style9 h6{color:#1e2022;font-weight:600}.card-style9 p{color:#575a7b}.card-style9 i{color:#33d687;opacity:0.80}.card-style9:hover i{opacity:1}.card-style9 .read-more{color:#33d687;font-size:13px;font-weight:500;letter-spacing:1px;opacity:0.80}.card-style9 .read-more:hover{color:#4e86ff;opacity:1}.card-style9:hover{background:none;box-shadow:6px 5px 30px 0px rgba(0,0,0,0.25)}.card-style9:hover h1 a,.card-style9:hover h2 a,.card-style9:hover h3,.card-style9:hover h4 a,.card-style9:hover h5 a,.card-style9:hover h6 a,.card-style9:hover h1,.card-style9:hover h2{color:#fff;font-weight:600}
.card-style9 h3{color:#222;font-weight:600; min-height:60px;}.card-style9:hover h4,.card-style9:hover h5,.card-style9:hover h6{color:#fff;font-weight:600}.card-style9 h1 a:hover,.card-style9 h2 a:hover,.card-style9 h3 a:hover,.card-style9 h4 a:hover,.card-style9 h5 a:hover,.card-style9 h6 a:hover{color:#33d687}.card-style9:hover p{color:#fff}

.round-shape-one{position:absolute;width:225px;height:225px;border-radius:50%;border:1px dashed rgba(51,214,135,0.4);animation:rotated 10s infinite linear}.round-shape-one:before{content:"";width:10px;height:10px;position:absolute;top:50%;left:-5px;background:#33d687;border-radius:50%}@-webkit-keyframes rotated{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotated{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}

@media (min-width: 992px) {
  .col-md-1-5 { width: 20%; }
  .col-md-2-5 { width: 40%; }
  .col-md-3-5 { width: 60%; }
  .col-md-4-5 { width: 80%; }
  .col-md-5-5 { width: 100%; }
}

@media (min-width: 1200px) {
  .col-lg-1-5 { width: 20%; }
  .col-lg-2-5 { width: 40%; }
  .col-lg-3-5 { width: 60%; }
  .col-lg-4-5 { width: 80%; }
  .col-lg-5-5 { width: 100%; }
}

/* Demo only, no need for this */

.show-grid [class^=col-] span,
.container-fluid .show-grid [class^=col-] {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #eee;
  background-color: rgba(86,61,124,.15);
  text-align: center;
  border: 1px solid #ddd;
  border: 1px solid rgba(86,61,124,.2);
}

[class^=col-] {
  margin-bottom: 30px;
}

table.pricing {
  border-collapse: collapse;
}



/* TABLE STYLES
 */
.table-wrapper {
  background: #fff;
  overflow-x: auto;
}

table.pricing {
  position: relative;
  text-align: center;
  width: 100%;
  font-family:'Open Sans', sans-serif;
}

table.pricing thead {
  background: #fff;
  transition: box-shadow 0.2s;
  -webkit-box-shadow: -1px 5px 5px 0px rgba(74,74,74,0.44);
-moz-box-shadow: -1px 5px 5px 0px rgba(74,74,74,0.44);
box-shadow: -1px 5px 5px 0px rgba(74,74,74,0.44);
}

table.pricing tr {
  display: flex;
}

table.pricing th,
table.pricing td {
  width: 25%;
  min-width: 180px;
}
table.pricing tbody tr {
padding:0px 0px 5px;
}
table.pricing tbody td img{
padding:0px 0px 8px;
}
table.pricing th:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 0 10px;
}

table.pricing th:nth-child(1) .svg-wrapper {
  margin-top: 10px;
}



table.pricing th .heading {
  padding: 1rem;
  color: #fff;
  font-family:'BenchNine', sans-serif;
  font-size:30px;
  font-weight:normal;
}

table.pricing th:nth-child(2) .heading {
  background: #F73859;
}

table.pricing th:nth-child(3) .heading {
  background: #00AEEF;
}

table.pricing th:nth-child(4) .heading {
  background: #FF7F45;
}

table.pricing th .info {
  position: relative;
  padding: 1.5rem 0;
  border-left: 1px solid #ccc;
}

table.pricing th .popular {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 11px;
  background: var(--popular);
  padding: 4px 8px;
  border-radius: 2px;
}

table.pricing th .amount {
  font-size: 22px;
}

table.pricing th .amount span {
  display: block;
  transform: translateY(-8px);
}

table.pricing th:nth-child(2) .amount {
  color: #F73859;
}

table.pricing th:nth-child(3) .amount {
  color: #00AEEF;
}

table.pricing th:nth-child(4) .amount {
  color: #FF7F45;
}



table.pricing td button {
  display: inline-block;
  border-radius: 20px;
  padding: 8px 20px;
  margin-bottom: 10px;
  transition: all 0.2s;
  border:none;
  background:transparent;
}
table.pricing td button a {
color:#fff;
}
table.pricing td:nth-child(2) button {
  background: #F73859;
  color:#fff;
}

table.pricing td:nth-child(2) button:hover {
  background:#19376F;
  color:#fff;
}

table.pricing td:nth-child(3) button {
  background: #00AEEF;
  color:#fff;
}

table.pricing td:nth-child(3) button:hover {
  background:#19376F;
  color:#fff;
}

table.pricing td:nth-child(4) button {
  background: #FF7F45;
  color:#fff;
}

table.pricing td:nth-child(4) button:hover {
  background:#19376F;
  color:#fff;
}

table.pricing td button:hover {
  color: #fff;
}
 
table.pricing td {
  padding: 14px 10px 5px 10px!important;
  border-bottom:1px dashed #ccc;
}

table.pricing td:not(:first-child) {
  border-left: 1px dashed #ccc; 
}

table.pricing td:first-child {
  font-size: 14px;
  font-weight:bold;
  text-align: left;
}

table.pricing p {
margin:20px;
border:1px solid red;
}

.become-client-form{background:#fff;box-shadow:0px 0px 50px 0px rgba(0,0,0,0.05);}.become-client-img{margin-right:-100px}@media screen and (max-width: 991px){.become-client-img{display:none}.become-client-form{margin-left:0}}

.image-oval{position:relative;overflow:hidden}.image-oval:before{position:absolute;top:50%;left:50%;z-index:1;display:block;content:"";width:0px;height:0px;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%);opacity:0;background:rgba(255,255,255,0.2);border-radius:50%}.image-oval:hover:before{-webkit-animation-duration:0.95s;animation-duration:0.95s;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-delay:0s;animation-delay:0s;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-direction:normal;animation-direction:normal;-webkit-animation-fill-mode:none;animation-fill-mode:none;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-name:circle;animation-name:circle}

.contact-info {
color:#fff;
}
.contact-info .info-wrap {
  display: flex;
  border-bottom:1px dotted #f4f4f4;
  padding-bottom:10px;
}
.contact-info .info-wrap:nth-child(4),
.contact-info .info-wrap:nth-child(8) {
border-bottom:0px;

}

.contact-info .info-wrap .icon-part {
  margin-right: 20px;
}
.contact-info .info-wrap .icon-part i {
  font-size: 30px;
  color: #012970;
  margin-top:5px;
}

.contact-info .info-wrap .content-part {
text-align:left;
}
.contact-info .info-wrap .content-part h4 {
  margin-bottom: 0;
  color: #333;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
  font-weight:bold;
}
.contact-info .info-wrap .content-part p {
  margin: 0;
  color: #333;
  font-size:14px;
}
.contact-info .info-wrap .content-part a {
  color: #333;
}
.contact-info .info-wrap .content-part a:hover {
  opacity: 0.8;
}

h4.block-title__tag-line a {
color:#FFCC00;
}

.butn-style1{position:relative;display:inline-block;vertical-align:middle;-webkit-appearance:none;border:none;outline:none !important;background-color:#4e86ff;color:#fff;font-size:14px !important;text-align:center;font-weight:700;text-transform:uppercase;padding:12px 30px !important;border-radius:4px;transition:all 0.3s linear;overflow:hidden;letter-spacing:0.1em;z-index:1}.butn-style1:after{position:absolute;content:"";top:0;left:0;right:0;height:100%;background-color:#33d687;transition-delay:.1s;transition-timing-function:ease-in-out;transition-duration:.5s;transition-property:all;opacity:1;transform-origin:bottom;transform-style:preserve-3d;transform:scaleY(0);z-index:-1}.butn-style1:hover,.butn-style1:active,.butn-style1:focus,.butn-style1.white:hover{color:#fff}.butn-style1:hover:after,.butn-style1:active:after,.butn-style1:focus:after{opacity:1;transform:scaleY(1)}.butn-style1.white{background-color:#fff;color:#33d687}.butn-style1.white:after{background-color:#33d687}.butn-style1.secondary{background-color:#33d687}.butn-style1.secondary:after{background-color:#4e86ff}

.file-upload .file-upload-select {
  display: block;
  color: #dbdbdb;
  cursor: pointer;
  text-align: left;
  background: #1a242f;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.file-upload .file-upload-select .file-select-button {
  background: #161f27;
  padding: 10px;
  display: inline-block;
}
.file-upload .file-upload-select .file-select-name {
  display: inline-block;
  padding: 10px;
}
.file-upload .file-upload-select:hover .file-select-button {
  background: #324759;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.file-upload .file-upload-select input[type="file"] {
  display: none;
}

/* ============================================================== 
     # Contact 
=================================================================== */
.cab-contact-details-section .cab-contact-details-section-inner .cab-contact-details-content .brief-description {
    text-align: center;
    max-width: 64%;
    margin: auto;
    margin-bottom: 40px;
}

.cab-contact-details-section .cab-contact-details-section-inner .cab-contact-details-content .brief-description p {
    color: #687693;
}

.cab-contact-details-section .cab-contact-form-box {
    margin-top: 80px;
}

.contact-details-options > .row {
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
}

.contact-details-options > .row > div {
    padding: 0;
    min-height: 100%;
}

.contact-details-options .contact-option-box {
    text-align: center;
    padding: 25px 30px 4px 30px;
    min-height: 120px;
    border: 1px solid #ebebeb;
    transition: all 0.3s ease;
}

.contact-details-options .contact-option-box:hover {
    background: #ebebeb;
}

.contact-details-options .contact-option-box:hover .icon {
    transform: translateY(-6px);
}

.contact-details-options .contact-option-box .icon {
    transition: all 0.3s ease;
}

/*.contact-details-options .contact-option-box .icon i {
    font-size: 50px;
    color: #e9161c;
}*/

.contact-details-options .contact-option-box .icon img.icon-img {
    width: 44px;
    margin-bottom: 6px;
    margin-top: 4px;
}

.contact-details-options .contact-option-box .title {
    padding: 22px 0 14px;
    font-size: 18px;
    font-weight: 500;
    color: #233d62;
}

.contact-details-options .contact-option-box .detail {
    color: #687693;
    font-size: 15px;
}

.contact-details-options .contact-option-box .detail span {
    display: block;
}

.contact-details-options .contact-option-box .detail a {
    color: #687693;
}

.contact-details-options .contact-option-box .detail a:hover {
    color: #e9161c;
}

.cab-contact-map-section {
    width: 100%;
    height: 680px;
    background: #ebebeb;
}

/*
* 6. services style
*/
.service-one {
  padding-top: 25px;
  padding-bottom: 0px;
}
.service-one a {
color: #181E44;
}
.service-one a:hover {
  color: #EB4343;
}
.service-one__single {
  width: 100%;
  border-radius: 5px;
  background-color: transparent!important;
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;*/
  margin-bottom: 0px;
  min-height: 180px;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  padding-left:5px;
  padding-right:5px;
}

.service-one__single:hover {
  /*-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;*/
}

.service-one .column-5__row {
  margin-left: -10px;
  margin-right: -10px;
}

.service-one .column-5__col {
  padding-left: 10px;
  padding-right: 10px;
}

.service-one__icon {
  background-position: center center;
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-color: #e4edf4;
  background-blend-mode: multiply;
  opacity: 1;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-one__title {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  color:#fff;
  font-family: "Poppins", sans-serif;
}

.service-one__title a {
  color: #181E44;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-one__title a:hover {
  color: #EB4343;
}

.service-one__link {
  color: #181E44;
  font-size: 20px;
  border-bottom: 1px solid #181E44;
  font-family: "Poppins", sans-serif;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  display: inline-block;
  vertical-align: middle;
  margin-top: 20px;
}

.service-one__link:hover {
  color: #EB4343;
  border-color: #EB4343;
}

.service-one__single:hover .service-one__icon {
  background-color: #fff;
}

.service-two {
  padding-top: 90px;
  padding-bottom: 70px;
}

.service-two__single {
  border-radius: 5px;
  background-color: #e9f1f6;
  text-align: center;
  margin-bottom: 30px;
}

.service-two__image {
  position: relative;
  overflow: hidden;
}

.service-two__image > img {
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.service-two__image-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(9, 160, 186, 0.85);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.service-two__image-hover a {
  display: inline-block;
  vertical-align: middle;
  width: 47px;
  height: 47px;
  background-color: #fff;
  color: #181E44;
  font-size: 23px;
  line-height: 47px;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  border-radius: 50%;
}

.service-two__image-hover a:hover {
  background-color: #EB4343;
  color: #fff;
}

.service-two__content {
  padding: 0 30px;
  padding-top: 35px;
  padding-bottom: 40px;
}

.service-two__title {
  margin: 0;
  color: #181E44;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.service-two__title a {
  color: #181E44;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-two__title a:hover {
  color: #EB4343;
}

.service-two__text {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #797979;
  margin-top: 10px;
  margin-bottom: 5px;
}

.service-two__link {
  color: #EB4343;
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  vertical-align: middle;
  line-height: 1em;
  border-bottom: 1px solid #EB4343;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-two__link:hover {
  color: #1A3871;
  border-color: #1A3871;
}

.service-two__single:hover .service-two__image-hover {
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  opacity: 1;
}

.service-two__single:hover .service-two__image > img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}

.service-two__more-link {
  display: inline-block;
  vertical-align: middle;
  color: #181E44;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #181E44;
  line-height: 1em;
  padding-bottom: 3px;
  margin-top: 15px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.service-two__more-link:hover {
  color: #EB4343;
  border-color: #EB4343;
}

.service-two__carousel-block-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

[class*=service-two__carousel-btn-] {
  width: 44px;
  height: 44px;
  border: 2px solid #a8b3b9;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

[class*=service-two__carousel-btn-] i {
  color: #242424;
  font-size: 18px;
  line-height: 40px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

[class*=service-two__carousel-btn-]:hover {
  background-color: #EB4343;
  border-color: #EB4343;
}

[class*=service-two__carousel-btn-]:hover i {
  color: #fff;
}

.service-two__carousel-btn-right {
  margin-left: 18px;
}

.service-one__home-three {
  background: #1A3871;
}

.service-one__home-three .block-title__text {
  color: #b7bfcf;
}

.service-one__home-three .service-one__single {
  background-color: #d5eaf4;
  padding:20px 40px!important;
}

.service-one__home-three .service-one__single:hover {
  background-color: #FFFFFF;
}

.service-one__home-three .service-one__link {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.service-one__home-three .service-one__link:hover {
  color: #EB4343;
  border-color: #EB4343;
}

.service-two__home-four {
  background-color: #E9F1F6;
  padding-bottom: 100px;
}

.service-two__home-four .service-two__content {
  background-color: #fff;
}

.service-two__service-page__two .service-two__image {
  padding-top: 29px;
}

.service-two__service-page__two .service-two__content {
  padding-top: 20px;
}

.service-two__service-page__two .service-two__text {
  margin-top: 14px;
  margin-bottom: 0;
}

.service-details {
  padding: 50px 0;
}

.service-details img {
  max-width: 100%;
}

@media (min-width: 992px) {
  .service-details__content {
    padding-left: 30px;
  }
}

.service-details__title {
  margin: 0;
  color: #181E44;
  font-size: 32px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
  margin-bottom: 25px;
}

.service-details__sub-title {
  margin: 0;
  color: #181E44;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
}

.service-details__tag-line {
  margin: 0;
  color: #1A3871;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
}

.service-details__tag-line a {
  font-weight: 400;
  color: #1A3871;
  display: inline-block;
  vertical-align: middle;
  line-height: 1em;
  border-bottom: 1px solid #1A3871;
}

.service-details__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.service-details__list-item {
  position: relative;
  color: #797979;
  font-size: 16px;
  padding-left: 36px;
}

.service-details__list-item i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  border: 1px solid #77797C;
  color: #A6CDE7;
  font-size: 13px;
}

.service-details__list-item + .service-details__list-item {
  margin-top: 10px;
}

.service-details__text {
  margin: 0;
  color: #797979;
  font-size: 16px;
  line-height: 26px;
}

.service-details__text + .service-details__text {
  margin-top: 25px;
}

.service-details__image-content {
  margin-top: 65px;
  margin-bottom: 45px;
}

.service-details__image-content .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.service-details__image-content__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.service-details__pricing {
  border: 1px solid #ECECEC;
  border-top: 0;
  margin-top: 60px;
}

.service-details__pricing-title {
  margin: 0;
  background-color: #E3EEF4;
  font-size: 22px;
  color: #181E44;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 17px 0;
}

.service-details__pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-details__pricing-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 30px;
}

.service-details__pricing-list-item + .service-details__pricing-list-item {
  border-top: 1px solid #ECECEC;
}

.service-details .col-lg-8 .accrodion-grp {
  padding-right: 30px;
}

.service-details .accrodion-grp .accrodion {
  border: 1px solid #d4d4d4;
}

.service-details .accrodion-grp .accrodion + .accrodion {
  margin-top: 20px;
}

.service-details .accrodion-grp .accrodion-title {
  padding: 13.5px 0;
  padding-left: 20px;
  cursor: pointer;
}

.service-details .accrodion-grp .accrodion-title h4 {
  margin: 0;
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding-left: 35px;
}

.service-details .accrodion-grp .accrodion-title h4:before {
  content: '+';
  font-size: 22px;
  width: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service-details .accrodion-grp .accrodion-content {
  padding-left: 55px;
  padding-right: 55px;
  padding-bottom: 33px;
}

.service-details .accrodion-grp .accrodion-content p {
  margin: 0;
  color: #797979;
  font-size: 16px;
  line-height: 24px;
}

.service-details .accrodion-grp .accrodion.active {
  background-color: #F9F9F9;
}
.service-one__home-three .service-one__single {
  background-color: #d5eaf4;
  padding:20px 40px!important;
}

/*
* 9. feature style
*/
.feature-one {
  padding-top: 100px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 65px;
  padding-bottom: 50px;
  /*background-color: #D5EAF4;*/
}
.feature-one.bg-color {
  background-color: #f0f4f8;
  border-bottom: 1px solid #f3f3f3;
}
.feature-one__box {
  padding-right: 30px;
  z-index:2;
  position:relative;
}

@media (max-width: 1199px) {
  .feature-one__box {
    padding-right: 0;
  }
}

.feature-one__box-title {
  margin: 0;
  color: #181E44;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 57px;
  font-weight: 600;
}

.feature-one__box-tag-line {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: #181E44;
  font-weight: 300;
  margin-top: 20px;
}

.feature-one__box-text {
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: #6c7478;
  margin-top: 25px;
}

.feature-one__single {
  background-color: #fff;
  border: 1px solid #ededed;
  padding-top: 15px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 16px;
  margin-bottom: 30px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index:2;
  position:relative;
}

.feature-one__single:hover {
  -webkit-box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 0px 49px 0px rgba(0, 0, 0, 0.08);
}

.feature-one__icon, .feature-one__content {
  display: table-cell;
  vertical-align: top;
}

.feature-one__icon i {
  font-size: 50px;
  color: #28447A;
}

.feature-one__content {
  padding-left: 20px;
}
.feature-one__figure {
  margin: 0;
  font-size: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #fff;
  margin:0px 0px;
}
.feature-one__title {
  margin: 0;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #181E44;
  min-height:60px;
}

.feature-one__title a {
  color: #181E44;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.feature-one__title a:hover {
  color: #EB4343;
}

.feature-one__text {
  margin: 0;
  color: #898989;
  font-size: 15px;
  line-height: 24px;
  margin-top: 15px;
}

.feature-one__link {
  display: inline-block;
  vertical-align: middle;
  color: #181E44;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.feature-one__link:hover {
  color: #EB4343;
}

.feature-one__home-two {
  background-color: transparent;
  padding: 0;
  position: relative;
}

.feature-one__home-two .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

@media (min-width: 1200px) {
  .feature-one__home-two .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.feature-one__home-two .feature-one__single {
  border: none;
  padding: 35px 30px;
  background-color: #d8e2f4;
  margin-bottom: 0;
}

.feature-one__home-two .feature-one__icon i {
  color: #1A3871;
  font-size: 60px;
}

.feature-one__home-two .feature-one__text,
.feature-one__home-two .feature-one__title a {
  color: #242424;
}

.feature-one__home-two .feature-one__title a:hover {
  color: #EB4343;
}

.feature-one__home-two .feature-one__text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 5px;
}

.feature-one__home-two .feature-one__content {
  padding-left: 40px;
}

.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__single {
  background-color: #09A0BA;
}

.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__icon i,
.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__title a,
.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__link,
.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__text {
  color: #fff;
}

.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__title a:hover,
.feature-one__home-two [class*=col-]:nth-child(1) .feature-one__link:hover {
  color: #EB4343;
}

.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__single {
  background-color: #1A3871;
}

.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__icon i,
.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__title a,
.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__link,
.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__text {
  color: #fff;
}

.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__title a:hover,
.feature-one__home-two [class*=col-]:nth-child(2) .feature-one__link:hover {
  color: #EB4343;
}

/*
* 10. testimonials style
*/
.testimonials-one {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}

.testimonials-one .row {
  margin-left: -45px;
  margin-right: -45px;
}

.testimonials-one .row > [class*=col-] {
  padding-left: 45px;
  padding-right: 45px;
}

.testimonials-one__single {
  /*background-color: #eee;*/
  text-align: center;
  padding: 20px 34px 20px;
  margin-top: 5px;
  margin-bottom:40px;
  position: relative;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.testimonials-one__single:hover {
  /*-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;*/
}

.testimonials-one__qoute {
  position: relative;
  float:left;
  margin:0px 10px 0px 0px;
}

.testimonials-one__image {
 /*position: absolute;
   top: 0;
  left: 50%;*/
  border:1px solid #eee;
  background:#fff;
  width:175px;
  height:175px;
  margin:20px auto 0px auto;
  border-radius: 50%;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
 
}

.testimonials-one__image > img {  
  padding:20px;
}

.testimonials-one__single:hover .testimonials-one__image {
  -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;  
  border:1px solid #eee;
}

.testimonials-one__title {
  margin: 0;
  color: #09A0BA;
  font-size: 28px;
  font-weight: 500;
  line-height:40px;
  font-family: "Poppins", sans-serif;
  margin-top:20px;
}

.testimonials-one__designation {
  color: #fff;
  font-size: 18px;
  font-style: italic;
  display:block;
}

.testimonials-one__text {
  margin: 0;
  color: #333;
  font-size: 28px;
  line-height: 36px;
  margin-top: 10px;
}

.testimonials-one__carousel .owl-item img,
.testimonials-two__carousel .owl-item img {
  width: auto;
}

.testimonials-one__carousel .owl-dots,
.testimonials-two__carousel .owl-dots {
  margin-top: 40px;
}

.testimonials-one__carousel .owl-dots .owl-dot span,
.testimonials-two__carousel .owl-dots .owl-dot span {
  margin: 0 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #98a9ba;
}

.testimonials-one__carousel .owl-dots .owl-dot.active span,
.testimonials-one__carousel .owl-dots .owl-dot:hover span,
.testimonials-two__carousel .owl-dots .owl-dot.active span,
.testimonials-two__carousel .owl-dots .owl-dot:hover span {
  background-color: #fff;
  opacity: 1;
  border-color: #fff;
}

.testimonials-one__carousel .owl-nav,
.testimonials-two__carousel .owl-nav {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .testimonials-one__carousel .owl-nav,
  .testimonials-two__carousel .owl-nav {
    margin-top: 0;
  }
}

.testimonials-one__carousel .owl-nav [class*=owl-],
.testimonials-two__carousel .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #181E44;
  border-radius: 50%;
  padding: 0;
}

.testimonials-one__carousel .owl-nav [class*=owl-] i,
.testimonials-two__carousel .owl-nav [class*=owl-] i {
  line-height: 40px;
}

.testimonials-one__carousel .owl-nav [class*=owl-]:hover,
.testimonials-two__carousel .owl-nav [class*=owl-]:hover {
  background-color: #EB4343;
}

.testimonials-one__carousel .owl-nav [class*=owl-]:hover i,
.testimonials-two__carousel .owl-nav [class*=owl-]:hover i {
  color: #fff;
}

.testimonials-one__page {
  background-color: #fff;
  padding-bottom: 0px;
}

.testimonials-one__page .row.high-gutters {
  margin-left: -45px;
  margin-right: -45px;
}

.testimonials-one__page .row.high-gutters > [class*=col-] {
  padding-left: 45px;
  padding-right: 45px;
}

.testimonials-one__page .testimonials-one__single {
  /*background-color: #19528D;*/
  margin-bottom: 0px;
}

.testimonials-two {
  position: relative;
  background-color: #205081;
  padding-top: 145px;
  padding-bottom: 100px;
}

.testimonials-two:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #205081 url(../images/background/testi-bg-1-1.jpg) center center no-repeat fixed;
  background-blend-mode: multiply;
  opacity: .4;
}

.testimonials-two .container {
  position: relative;
}

.testimonials-two__qoute {
  display: block;
  border-radius: 0 !important;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.testimonials-two__image, .testimonials-two__content {
  display: table-cell;
  vertical-align: top;
}

.testimonials-two__image {
  width: 122px;
}

.testimonials-two__image > img {
  border-radius: 50%;
}

.testimonials-two__content {
  padding-left: 75px;
}

.testimonials-two__text {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 35px;
}

.testimonials-two__title {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-top: 40px;
}

.testimonials-two__designation {
  margin: 0;
  color: #849BB3;
  font-size: 18px;
  font-style: italic;
  margin-top: 5px;
}

.testimonials-two__carousel .owl-dots {
  margin: 0;
  position: absolute;
  top: -55px;
  left: 195px;
}

.testimonials-two__home-five {
  background-image: none;
  background-color: #fff;
  padding-top: 0;
}

.testimonials-two__home-five:before {
  display: none;
}

.testimonials-two__home-five .testimonials-two__text {
  color: #797979;
  font-size: 22px;
  line-height: 35px;
  font-family: 'Lora';
}

.testimonials-two__home-five .testimonials-two__title {
  color: #2c62bd;
}

.testimonials-two__home-five .testimonials-two__designation {
  color: #849BB3;
  font-family: 'Playfair Display';
}

.testimonials-two__home-five .testimonials-two__carousel {
  padding-left: 45px;
  padding-right: 45px;
}

.testimonials-two__home-five .testimonials-two__carousel .owl-dots .owl-dot span {
  background-color: #2C62BD;
}

.testimonials-two__home-five .testimonials-two__carousel .owl-dots .owl-dot.active span {
  background-color: #08AE8D;
}

.testimonials-two__home-five .testimonials-two__carousel .owl-dots {
  bottom: 0;
  top: auto;
  left: auto;
  right: 45px;
}

.bg1 {
  background-image: url(../images/horse.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.download-btn {
  box-shadow: -1px 3px 3px 0 rgba(80, 80, 80, .2);
  padding: 14px 17px 17px;
  border: 2px solid #021E74;
  margin: 0 10px 40px;
  color: #021E74;
  font-weight: bold;
  flex: 0 0 auto;
  font-size:22px;
}

.download-btn1 {
  background: #fff;
  transition: all 0.25s ease-out;
}
.download-btn1 a {
color: #021E74;
}
.download-btn1:hover {
  position: relative;
  top: -3px;
  box-shadow: -6px 14px 12px 2px rgba(90, 90, 90, .12);
}
.arrow-jump {
padding:180px 0px 100px 0px;
}

.applynow {
  background: #4154f1;
  padding: 8px 10px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: none;
}
@media (max-width:768px) {
.arrow-jump {
padding:50px 0px 50px 0px;
}
}

.overlap-column{margin-bottom:3rem}.overlap-column>[class*="col-"]:first-child{position:relative;left:2rem}.overlap-column>[class*="col-"]:last-child{position:relative;left:-2rem;top:3rem}@media screen and (max-width: 991px){.vw-lg-60{width:100%}.overlap-column{margin-bottom:0}.overlap-column>[class*="col-"]:last-child{left:0;top:0}}

.sec-pad {
  padding: 30px 0;
}
/************************** 
* 22. about styles 
***************************/
.about-style-one .about-content h5,
.about-style-one .about-content p,
.about-style-one .about-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-style-one .about-content h5 {
  font-size: 32px;
  color: #262626;
  font-weight: 600;
  font-family: 'Poppins';
}
.about-style-one .about-content h5 span {
  color: #FE5A0E;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  font-style: italic;
  background: -webkit-gradient(linear, left top, right top, from(#f80503), to(#ff7d09));
  background: linear-gradient(to right, #f80503 0%, #ff7d09 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-style-one .about-content p {
  font-size: 16px;
  line-height: 27px;
  color: #555555;
  margin-top: 35px;
  margin-bottom: 30px;
}
.about-style-one .about-content ul li {
  color: #555555;
  position: relative;
  padding-left: 30px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.about-style-one .about-content ul li i {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FE5A0E;
  font-size: 16px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.about-style-one .about-content ul li:hover {
  padding-left: 37px;
}
.about-style-one .about-content ul li:hover i {
  left: 7px;
}
.about-style-one .about-content a.about-btn {
  margin-top: 40px;
  display: inline-block;
  background: #FE5A0E;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  font-family: 'Poppins';
  line-height: 54px;
  width: 295px;
  color: #fff;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.about-style-one .about-content a.about-btn:before {
  background: #252525;
}
.about-style-one .about-img-box {
  position: relative;
  background: transparent url(../img/about-dots.png) 100% -120% no-repeat;
}
.about-style-one .about-img-box img {
  display: block;
}
.about-style-one .about-img-box .video-box {
  position: absolute;
  bottom: 0;
  right: 0;
}
.about-style-one .about-img-box .video-box > img {
  border-radius: 50%;
  border: 5px solid #FFFFFF;
}
.about-style-one .about-img-box .video-box a.video-popup {
  font-size: 42px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}