/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 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: 'Poppins', sans-serif;
}
.roboto{
  font-family: 'Roboto', sans-serif;
}
.text-right{
  text-align: right;
}
.text-left{
  text-align: left;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 80px 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: 991px) {
  section {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  color: #000;
}

.breadcrumbs ol a {
  color: #000;
  transition: 0.3s;
  text-transform: uppercase;
}

.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: "\203A";
}

/*--------------------------------------------------------------
# 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;
  background: #586FF3;
  color: #fff;
  height: 95px;
}

.header.header-scrolled {
  background: #586FF3;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 106px;
  width: 130px;
  margin-right: 6px;
  box-shadow: 0px 0px 43px rgba(12, 12, 12, 0.16);
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: 'Poppins', sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 20px 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: 0px 0 10px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  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: #f6f9ff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: transparent;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid #fff;
  margin-top: -10px;
}

.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: #586FF3;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
  color: #fff;
}

.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: #d6d6d6;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}

.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: 1200px) {
  .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(../img/hero-bg.jpg) top center no-repeat;
  background-size: cover;
  padding-top: 120px;
}

.hero h1 {
  margin: 0;
  font-size: 57px;
  font-weight: 700;
  color: #fff;
}

.hero h3 {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
}

.hero .btn-get-started {
  margin-top: 50px;
  line-height: 0;
  padding: 29px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #586FF3;
  font-size: 15px;
}

.hero .btn-get-started span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0px;
}

.hero .btn-get-quote {
  margin-top: 50px;
  margin-left: 20px;
  line-height: 0;
  padding: 29px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  font-size: 15px;
  border: 1px solid #fff;
}

.hero .hero-top-txt{
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}

.hero .btn-get-quote span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0px;
}


.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 .hero-img img {
      width: 100%;
      margin-top: 90px;
    }
    }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero .hero-img img {
    width: 100%;
    margin-top: 50px;
  }
  .hero {
    height: auto;
    padding: 150px 0 0px 0;
  }
  .hero .hero-img {
    margin-top: 0px;
  }
}

@media (max-width: 768px) {
.hero .btn-get-quote {
  margin-top: 15px;
  margin-left: 2px;
}
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  text-align: center;
}
.about .wave-dotted-line{
  text-align: center;
}

.about .ab-content img{
  margin-top: -100px;
}
.wave-2{
  margin-top: 100px;
}
.about h2 {
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  padding-bottom: 35px;
}

.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: 'Poppins', 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);
}

.ab-sub-hd{
  font-size: 22px;
  color: #000;
  font-weight: 700;
  padding-bottom: 20px;
}
.about .about-cnt{
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* .ab-sub-hd:after{
  content: "";
    position: absolute;
    width: 30%;
    height: 2px;
    bottom: -6px;
    background-color: #000;
} */
@media (max-width: 600px) {
.about .wave-dotted-line{
  display: none;
}
.about .ab-content img{
  margin-top: 0px;
}
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
  background: url(../img/counter_bg.png) no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 80px;
}
.counts:before {
  content: "";
  /* background: rgba(57, 108, 204, 64.8%); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.counts .count-box {
  align-items: center;
  padding: 30px;
  width: 100%;
  text-align: center;
}

.counts .count-box span {
  font-size: 62px;
  display: block;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  text-align: center;
  color: #fff;
}
.vl-r {
  border-right: 1px solid #fff;
  height: 170px;
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.why_us .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
}

.why_us .feature-box h3 {
  font-size: 18px;
  color: #012970;
  font-weight: 700;
  margin: 0;
}
.why_us h2 {
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  margin-bottom: 30px;
}
.why_us .bi-check{
  color: #586FF3;
  font-size: 22px;
}

.why_us .feature-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.why_us .feature-box:hover i {
  background: #4154f1;
  color: #fff;
}

.why_us .feture-tabs {
  margin-top: 120px;
}

.why_us .feture-tabs h3 {
  color: #012970;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
.why_us img{
  width: 100%;
}
}


@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{
  text-align: center;
}

.services h2 {
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  margin-bottom: 30px;
}

.service-cnt{
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 24px;
  font-size: 16px;
}
.service-block-img{
  margin-bottom: 0px;
}
.service-block-img img{
  -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.service-block-img:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.services .service-box {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.services .service-box .service-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.services .service-box .service-info-content {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 20px;
  transition: bottom 0.4s;
  text-align: left;
}
.services .service-box .service-info-content span {
  display: block;
  font-size: 16px;
  color: #fff;
}
.services .service-box img{
  width: 100%;
  height: 290px;
  aspect-ratio: 1.4;
  object-fit: cover;
  border-radius: 4px;
}
.services .service-box {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.services .service-box .service-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.services .service-box .service-info h4{
  color: #fff;
  font-size: 23px;
  font-weight: 600;
}
.services .service-box .service-info h4:hover{
  font-size: 23px;
}
.services .service-box .service-info {
  background: linear-gradient(180deg, rgba(57, 108, 240, 0) 50%, #396CF0 100%);
  opacity: 1;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 4px;
}

.services .see-more{
  line-height: 0;
  padding: 21px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #586FF3;
  font-size: 16px;
  font-weight: 600;
}

.services .btn-top{
  margin-top: 70px;
}

.hl{
  border: 3px solid #fff;
  width: 50px;
  border-radius: 5px;
  margin-top: 20px;
}
@media (max-width: 991px) {
.service-block-img{
  margin-bottom: 10px;
}
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  background-color: #F8F8F8;
}

.pricing .box {
  padding: 40px 30px;
  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 .box-blue-2 {
  padding: 40px 30px;
  background: #586FF3;
  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-blue-2:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing h2 {
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  margin-bottom: 60px;
  text-align: center;
}

.pricing .box-white h5 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: #586FF3;
}


.pricing .price {
  font-size: 45px;
  color: #494C5F;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.pricing .line{
  border-top: 1px solid #D8D8D8;
}

.pricing .cont{
  color: #444444;
  padding: 10px 0;
  font-weight: 500;
}

.pricing .box-blue-2 .cont{
  color: #fff;
  padding: 10px 0;
  font-weight: 400;
}

.pricing strike{
  color: #444;
}

.pricing .box-blue-2 strike{
  color: #fff;
}

.pricing .price span {
  color: #494C5F;
  font-size: 16px;
  font-weight: 600;
}

.pricing .box-blue-2 .price span {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.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 .choose-plan {
  padding: 14px 35px 14px 35px;
  border-radius: 4px;
  color: #fff;
  background-color: #586FF3;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #396CF0;
}

.pricing .choose-plan-top{
  margin-top: 40px;
}

.pricing .box-blue-2 .choose-plan {
  padding: 14px 35px 14px 35px;
  border-radius: 4px;
  color: #fff;
  background-color: #586FF3;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #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;
}
@media (max-width: 991px) {
.pricing h2 {
  font-size: 26px;
}
}
/*--------------------------------------------------------------
# full-img-contact
--------------------------------------------------------------*/
.full-img-contact .img-block {
  position: relative;
  font-family: 'Roboto', sans-serif;
  margin-top: -80px;
  margin-bottom: 0;
}

.full-img-contact .text-block {
  position: absolute;
  bottom: 26%;
  left: 110px;
  background-color: #586FF3;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  align-self: center;
  justify-content: center;
  padding: 65px 50px;
}

.full-img-contact h2{
  font-size: 36px;
  font-weight: 500;
  padding-bottom: 10px;
}

.full-img-contact .phn{
  font-size: 24px;
  font-weight: 500;
}

.full-img-contact .cont{
  font-size: 18px;
  max-width: 330px;
}
@media (max-width: 991px) {
.full-img-contact .text-block{
  bottom: 0%;
  left: 0px;
}
}
@media (max-width: 500px) {
.full-img-contact .text-block {
  bottom: -63%;
  left: 0px;
}
}

/*--------------------------------------------------------------
# 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 h2{
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  margin-bottom: 30px;
  text-align: center;
}

.recent-blog-posts p{
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
  object-fit: cover;
  height: 250px;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 400;
  color: #586FF3;
  display: block;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.recent-blog-posts .post-box .post-title {
  font-size: 22px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  transition: 0.3s;
  line-height: 33px;
}

.recent-blog-posts .blog-txt{
  color: #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  text-align: left;
}

.recent-blog-posts .line{
  border-top: 1px solid #D8D8D8;
  margin: 20px 0;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: #444444;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
  color: #586FF3;
  font-weight: 700;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}
.rec-blog-btm{
  margin-bottom: 0px;
}
@media (max-width: 991px) {
.rec-blog-btm{
  margin-bottom: 20px;
}
}
@media (max-width: 500px) {
.recent-blog-posts h2 {
  font-size: 26px;
}
}
/*--------------------------------------------------------------
# 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 p {
  line-height: 24px;
}

.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: #586FF3;
  padding: 80px 0 0px 0;
  font-size: 14px;
  color: #fff;
}

.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 {
  width: 107px;
  max-height: 83px;
  margin-right: 6px;
  text-align: left;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}

.footer .footer-top .footer-info .footer-cnct{
  padding-bottom: 15px;
  font-size: 17px;
}

.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: #fff;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
  color: #012970;
}

.footer .footer-top h4 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  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: 2px;
  color: #d0d4fc;
  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 .line{
  border: 1px solid #fff;
}

.footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-bottom{
  padding: 30px 0 10px;
}

.footer .footer-bottom-links ul li{
  display: inline-block;
  list-style: none;
}

.footer .footer-bottom-links li a{
  color: #fff;
}

.footer .footer-bottom-links li a:hover{
  color: #d5d5d5;
}

.footer .footer-bottom-links  li{
  padding-left: 20px;
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.footer-links .line{
  border-top: 3px solid #fff;
  border-radius: 50px;
  width: 40px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
.footer-bottom ul{
    padding-left: 0rem;
}
}

/**********************************************************************************************
Inner Pages 
***********************************************************************************************/

/******* Inner About **********/

.inner-about h2{
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  margin-bottom: 30px;
  line-height: 51px;
}

.inner-about p{
  font-size: 16px;
  line-height: 27px;
  font-family: 'Roboto', sans-serif;
}

.about-banner {
  padding-top: 15%;
  background: url(../img/about_bnr.png) no-repeat;
  height: 505px;
  margin-top: 82px;
  color: #fff;
  background-size: cover;
}

@media (max-width: 768px) {
  .about-banner {
    padding-top: 12%;
    height: auto;
}
}
@media (max-width: 500px) {
.inner-about h2 {
  font-size: 26px;
  line-height: 35px;
  padding-top: 20px;
}
.text-left{
  text-align: center;
}
.text-right{
  text-align: center;
}
.about-banner {
  padding-top: 15%;
  background: #B7C1CC;
  height: auto;
}
}
/******* Inner services ********/

/******* Service Page **********/
.service-banner {
  padding-top: 15%;
  background: url(../img/inner_bnr_02.png) no-repeat;
  height: 505px;
  margin-top: 82px;
  color: #fff;
  background-size: cover;
}
@media (max-width: 768px) {
.service-banner {
  padding-top: 15%;
  height: auto;
}
}
@media (max-width: 500px) {
.service-banner {
  padding-top: 15%;
  background: #B7C1CC;
  height: auto;
  margin-top: 82px;
}
}
/******* /Service Page *********/

/******* Service Page **********/
.blog-banner {
  padding-top: 15%;
  background: url(../img/inner_bnr_03.png) no-repeat;
  height: 505px;
  margin-top: 82px;
  color: #fff;
  background-size: cover;
}
@media (max-width: 768px) {
  .blog-banner {
    padding-top: 15%;
    background: url(../img/inner_bnr_03.png) no-repeat;
    height: auto;
  }
  }
@media (max-width: 500px) {
.blog-banner {
  padding-top: 15%;
  background: #B7C1CC;
  height: auto;
}
}
/******* /Service Page *********/

/***** Blog Detail Page ********/
.blog_detail img{
  height: 505px;
  color: #fff;
  background-size: cover;
  position: relative;
  margin-top: 80px;
}

.blog-detail-content{
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.blog-detail-content h3{
  font-size: 26px;
  color: #000;
  font-weight: 700;
  padding-bottom: 20px;
}

.blog-detail-content .post-date {
  font-size: 16px;
  font-weight: 400;
  color: #586FF3;
  display: block;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.blog-social-btns ul li{
  display: inline-block;
}

.blog-social-btns .s-btn{
  border: 1px solid #444;
  color: #444;
  font-size: 17px;
  padding: 12px 35px;
  margin-right: 15px;
  border-radius: 3px;
  margin-top: 20px;
}

.blog-social-btns ul{
  padding-left: 0rem;
}

.blog-social-btns .s-btn img{
  margin-right: 5px;
}
@media (max-width: 768px) {
.blog-detail-content{
  width: 100%;
}
.blog_detail img {
  height: auto;
}
}
/***** Inner Contact *****/
.contact-banner{
  padding-top: 15%;
  background: url(../img/inner_contact_bnr.png) no-repeat;
  height: 505px;
  margin-top: 82px;
  color: #fff;
  background-size: cover;
}

.inner-contact-cont h2{
  font-size: 36px;
  font-weight: 700;
  color: #586FF3;
  margin-bottom: 30px;
}

.contact-box{
  width: 90%;
  background-color: #586FF3;
  color: #fff;
  font-size: 16px;
  padding: 30px 38px;
  margin-bottom: 20px;
}

.form-control {
  line-height: 2.5;
  border: 1px solid #8A8A8A;
  border-radius: 3px;
  color: #868E96;
}

.contact-form-left{
  padding-left: 5%;
}

.inner-cnt-btn{
  margin-top: 5%;
}

.contact-btn{
  line-height: 0;
  padding: 21px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #586FF3;
  font-size: 16px;
  font-weight: 600;
}

.contact-btn a:hover{
  color: #fff;
}
@media (max-width: 768px) {
.contact-banner{
  padding-top: 15%;
  background: #B7C1CC;
  height: auto;
}
.contact-form-left {
  padding-left: 2%;
  margin-top: 20px;
}
.inner-contact-cont h2 {
  font-size: 26px;
}
}
@media (max-width: 500px) {
.contact-btn{
  margin-top: 20px;
}
.contact-box {
  width: 100%;
}
}
/***** Appoinment Page *****/
.appoinment_bnr{
  padding-top: 15%;
  background: url(../img/appoinment_bnr.png) no-repeat;
  height: 505px;
  margin-top: 82px;
  color: #fff;
  background-size: cover;
}

.appointment .hd{
  font-size: 36px;
  color: #000;
  font-weight: 800;
  text-transform: capitalize;
}

.appointment .line{
  border-top: 4px solid #586FF3;
  margin: 20px 0;
  border-radius: 50px;
  width: 40px;
}

.appointment-img img{
  margin-top: 180px;
}

.appointment{
  margin-bottom: -80px;
}

.make-appointment-btn-btm{
  margin-bottom: 80px;
}
@media (max-width: 768px) {
.appoinment_bnr {
  padding-top: 15%;
  height: auto;
  background: #B7C1CC;;
}
.make-appointment-btn-btm {
  margin-bottom: 80px;
  margin-top: 40px;
}
.appointment-img img {
    margin-top: 0px;
}
}


/************** Service Detail ***************/
.service-detail .sub-hd{
  font-size: 24px;
  color: #000;
  font-weight: 600;
}

.service-detail .line{
  border-top: 4px solid #586FF3;
  margin: 20px 0;
  border-radius: 50px;
  width: 40px;
}

.service-detail .side-menu-main{
  padding: 30px 40px;
  box-shadow: 0px 1px 7px 2px rgba(103, 103, 103, 0.17);
}

.service-detail .side-menu-main ul li{
  list-style: none;
  color: #000;
}

.service-detail .side-menu-main ul{
    padding-left: 0rem;
}

.service-detail .side-menu-main .border-l{
  border-left: 1px solid #000000;
  height: 45px;
  padding-right: 20px;
}

.service-detail .side-menu-main .line-btm{
  border-bottom: 1px solid #D9D9D9;
  margin-top: 17px;
  margin-bottom: 17px;
}

.service-detail .side-menu-main ul li a{
  color: #000;
}

.service-detail .side-menu-main ul li a:hover{
  color: #586FF3;
}

.service-detail .side-menu-main .border-l{
  border-left: 1px solid #586FF3;
}

.service-detail .cnt-brdr-box{
  width:  100%;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  padding: 24px;
  margin-top: 30px;
}

.service-cnt-box-grid{
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 10px;
  color: #000;
}

/* .service-detail .open-hrs .line{
  border-bottom: 3px solid #586FF3;
  width: 50px;
  border-radius: 50px;
} */

.service-dtl-img img{
  width: 100%;
  margin-bottom: 30px;
}

.service-detail-sub-hd{
  color: #000;
  font-size: 26px;
  font-weight: 800;
  padding-bottom: 20px;
}

.service-detail-check-right .bi-check{
  padding-right: 5px;
  font-size: 24px;
  color: #586FF3;
}

.open-hrs .sub-hd{
  margin-top: 80px;
}

@media screen and (max-width:768px){
  .mobile-hidden{
    display: none;
  }
}
