
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  font-family: "Fira Sans", sans-serif;
  color: #444444;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", sans-serif;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top svg {
  width: 24px;
  fill: #fff;
  height: 24px;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255, 255, 255 );
  box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
	font-size: 36px;
	font-weight: bold;
	
	
}

#header .logo img {
  max-height:60px;
}
#header.header-scrolled .logo a {
  color: #0d6efd;
}

/*--------------------------------------------------------------
# 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;
  padding:0px 10px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  font-size: 16px;
  font-weight: 500;
  color:#000229;
  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: #004ce6;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.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: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.fa-times {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.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: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}




.tp-header-2__login {
    background-color: #03008f;
    color: #fff;
    margin-left: 15px;
    padding: 0px 20px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    border-radius: 4px;
    font-weight: 600;
}
.tp-btn-green-sm {
    display: inline-block;
    color: #fff;
    height: 42px;
    line-height: 42px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    letter-spacing:0.03em;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    transition: 0.5s;
    background: #004ce6;
    border-radius:4px;
	margin-left:5px;
}
.tp-hero__title-shape {
    position: relative;
}
.tp-hero__title-shape svg path.line1 {
    stroke-width: 2.7px;
    stroke: #6865ff;
    stroke-dasharray: 2300;
    stroke-dashoffset: 3200;
    animation: dash 2s linear both;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


.hero1-section-area {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0 ;
}
.hero1-section-area .elements1 {
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero1-section-area .header-main-content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1-section-area .header-main-content {
    margin-bottom: 60px;
  }
}

.hero1-section-area .hero_heading h1 {
    font-weight: 600;
    color: #101840;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: .96px;
}
.hero1-section-area .hero_heading > p {
    font-size: 20px;
    line-height: 36px;
}
.hero-btn-one {
    background-color: #004ce6;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    border: 1px rgba(0, 0, 0, 0);
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: border-color .4s, transform .4s, box-shadow .4s;
}
.hero-btn-two {
    border: solid 2px #004ce6;
    color: #004ce6;
    padding: 12px 15px;
    border-radius: 4px;
    margin: 15px;
}

.hero1-section-area .header-main-content .btn-area {
  display: inline-block;
}
.hero1-section-area .header-main-content .btn-area .header-btn1 {
  margin-top: 32px;
}
.hero1-section-area .header-main-content .btn-area .header-btn2 {
  margin-top: 20px;
  margin-left: 16px;
  color: var(--ztc-text-text-4);
  border: 1px solid var(--ztc-text-text-4);
}
@media (max-width: 767px) {
  .hero1-section-area .header-main-content .btn-area .header-btn2 {
    margin-left: 0;
  }
}
.hero1-section-area .header-main-content .btn-area .header-btn2 span {
  background: var(--ztc-text-text-4);
  color: var(--ztc-text-text-1);
}
.hero1-section-area .header-images-area {
  position: relative;
}
.hero1-section-area .header-images-area .main-images-area {
  position: relative;
  /*left: 100px;*/
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1-section-area .header-images-area .main-images-area {
    left: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .hero1-section-area .header-images-area .main-images-area {
    left: -20px;
  }
}
.hero1-section-area .header-images-area .main-images-area .img1 {
  position: relative;
  left: 30px;
  z-index: 1;
  top:20px;
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .img1 {
    left: 0;
  }
}
.hero1-section-area .header-images-area .main-images-area .img1 img {
  height:auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .img1 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero1-section-area .header-images-area .main-images-area .img2 {
  position: absolute;
  top: -60px;
  z-index: -1;
  left: 0;
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .img2 {
    top: 100px;
  }
}
.hero1-section-area .header-images-area .main-images-area .img2 img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.hero1-section-area .header-images-area .main-images-area .icons-area .sound-icons1 {
  position: absolute;
  top: 0;
  max-width:150px;
  z-index:9;
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .icons-area .sound-icons1 {
    left: -20px;
  }
}
.hero1-section-area .header-images-area .main-images-area .icons-area .lite-icons1 {
  position: absolute;
  top: 48%;
  right: -50px;
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .icons-area .lite-icons1 {
    top: 0;
    right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1-section-area .header-images-area .main-images-area .icons-area .lite-icons1 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .auhtor-icons {
    display: none;
  }
}
.hero1-section-area .header-images-area .main-images-area .auhtor-icons .elements2 {
  position: absolute;
  top: -50px;
  right: 110px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1-section-area .header-images-area .main-images-area .auhtor-icons .elements2 {
    right: 170px;
  }
}
.hero1-section-area .header-images-area .main-images-area .auhtor-icons .elements3 {
  position: absolute;
  bottom: 140px;
  left: -44px;
}
@media (max-width: 767px) {
  .hero1-section-area .header-images-area .main-images-area .auhtor-images {
    display: none;
  }
}
.hero1-section-area .header-images-area .main-images-area .auhtor-images .header-author-img1 {
  position: absolute;
  bottom: -60px;
  left: -180px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1-section-area .header-images-area .main-images-area .auhtor-images .header-author-img1 {
    left: -140px;
  }
}
.hero1-section-area .header-images-area .main-images-area .auhtor-images .header-author-img2 {
  position: absolute;
  top: -80px;
  right: -60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero1-section-area .header-images-area .main-images-area .auhtor-images .header-author-img2 {
    right: 50px;
  }
}

@keyframes animation-1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(30px);
  }
}
.aniamtion-key-1 {
  position: relative;
  animation-name: animation-1;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50px);
  }
}
.aniamtion-key-2 {
  position: relative;
  animation-name: animation-2;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}
.aniamtion-key-3 {
  position: relative;
  animation-name: animation-3;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-4 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.aniamtion-key-4 {
  position: relative;
  animation-name: animation-4;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-6 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}
.aniamtion-key-6 {
  position: relative;
  animation-name: animation-6;
  animation-duration: 1.9s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes animation-8 {
  0% {
    padding-left: 0px;
  }
  100% {
    padding-left: 50px;
  }
}







/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}





.tp-payment__bg-color-2 {
    background: linear-gradient(142.23deg, #FFF7F1 7.63%, #FAE9EF 99.01%), linear-gradient(142.23deg, #FFF7F1 7.63%, #FAE9EF 99.01%);
    border-radius: 40px;
    padding: 55px 70px;
    overflow: hidden;
    min-height: 440px;
}
.tp-payment__bg-color-3 {
    background: linear-gradient(142.23deg, #F3F8FF 7.63%, #CEDBFF 99.01%);
    border-radius: 40px;
    padding: 55px 70px;
    overflow: hidden;
    min-height: 440px;
	
}
.tp-payment__item {
    background: linear-gradient(284.05deg, #EBD1FF 8.66%, rgba(244, 233, 252, 0.54) 92.88%);
    border-radius: 40px;
    padding: 55px 70px;
    overflow: hidden;
    min-height: 440px;
}




.tp-about__area {
  background-color: #eef5ff;
  padding: 40px 0px;
}
.tp-section-title {
  font-weight: 700;
  font-size:30px;
  line-height: 1.2;
  color: #000229;
  margin: 15px 0px;
}
.tp-about__section-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.tp-about__list {
  padding-bottom: 45px;
}
.tp-about__list ul {
	margin:0px;
	padding:0px;
}
.tp-about__list ul li {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
  color: #000229;
  list-style-type: none;
}
.tp-about__list ul li:last-child {
  margin-bottom: 0;
}
.tp-about__list ul li svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 8px;
  color: #fff;
  background-color: #0d6efd;
  font-weight: 400;
}
.tp-btn-hover {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.tp-btn {
    display: inline-block;
    background-color: #336aea;
    color: #ffffff;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    padding: 0 35px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}
.tp-btn span {
    position: relative;
    z-index: 5;
    transition: 0.3s;
    transition-delay: 0.3s;
    color: #ffffff;
}
.tp-btn-hover.alt-color-black b {
    background-color: #000229;
}
.tp-btn-hover b {
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: #000229;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}


.tp-about__area.tp-about__outgoing {
  background-color: #f3eaff;
}
.tp-about__area.tp-about__noanswer {
	background-color: #fff5fe;
	
}

.tp-about__bg-shape img {
    max-width: 100%;
}
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

.tp-payment__title-box {
  padding: 30px 0px;
}
.tp-about__section-box > img {
    width: 56px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-section {
  background: rgb(11 14 31);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top:70px;
}

.footer-logo {
  max-width: 170px;
}

.footer-copyright-area {
  border-top: 1px solid #1b2040;
    padding-top: 5px;
    padding-bottom: 10px;
}

.copyright-text {
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
  .copyright-text {
    text-align: center;
  }
}

.copyright-text p {
  font-size: 14px;
  color: #c4c5c7;
}

.footer-section-02 {
  background: #000000;
} 

.footer-widget-wrap {
  padding-bottom: 15px;
}
a.footer-logo img {
    max-width: 90%;
}
.footer-widget {
  margin-top: 10px;
}

.widget-info {
  padding-top: 10px;
}

.widget-info ul li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.widget-info ul li .info-icon i {
  display: inline-block;
  color: #086ad8;
  font-size: 18px;
  margin-right: 10px;
  margin-top: 2px;
}

.widget-info ul li .info-text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #c4c5c7;
}
.widget-info ul li .info-text a {
    color:#fff;
}

.footer-widget-about {
  margin-top: 15px;
}

.footer-widget-about p {
  font-size: 14px;
  line-height: 30px;
  color: #ffffff;
  padding-right:20px;
  margin-top: 20px;
}

@media only screen and (max-width: 1399px) {
  .footer-widget-about p {
    padding-right: 0;
  }
}

.footer-social .social {
  margin-top: 25px;
  padding:0px;
}

.footer-social .social li {
  display: inline-block;
}

.footer-social .social li + li {
  margin-left: 5px;
}

.footer-social .social li a {
  width: 35px;
  height: 35px;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
  background: #ffffff;
  color: #086ad8;
  display:inline-block;
}

.footer-social .social li a:hover {
  color: #086ad8;
}

.footer-widget .footer-widget-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}
.widget-info ul {
    padding: 0;
}
.widget-link {
  padding-top: 12px;
}
.widget-link .link {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.widget-link .link li {
  margin-top: 7px;
}

.widget-link .link li a {
  font-size: 14px;
  color: #c4c5c7;
  transition: all 0.3s linear;
}

.widget-link .link li a:hover {
  color: #086ad8;
  padding-left: 10px;
}

.footer-cta {
    background-color: #004ce6;
    padding:4rem 0rem;
    text-align: center;
    border-bottom: solid 6px #fa958d;
    color: #fff;
    position:relative;
}
.footer_cta_content span {
    font-weight: 600;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.3;
    letter-spacing: .96px;
    max-width: 600px;
    display: inline-block;
}
.footer_cta_content p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}
.free_footer_cta {
    padding: 15px 32px;
    font-size: 18px;
    border-radius: 4px;
    background: #03008f;
    border: 1px solid #03008f;
    color: #fff;
    margin: 0px 5px;
}
.free_footer_cta:hover {
    background: #03008f47;
    border: 1px solid #534fff;
    color:#fff;
}
.demo_footer_cta {
    padding: 15px 32px;
    font-size: 18px;
    border-radius: 4px;
    background:transparent;
    border: 1px solid #fff;
    color: #fff;
    margin: 0px 5px;
}
.demo_footer_cta:hover {
    background: #03008f;
    border: 1px solid #03008f;
    color:#fff;
}
.footer-cta .footer-cta-b {
    max-width: 300px;
    position: absolute;
    right: 0px;
    bottom: 0px;
}
.footer-cta .footer-cta-t {
    max-width: 300px;
    position: absolute;
    left: 0px;
    top: 0px;
}




/******************* Dashboard *******************/

.dashboard-header .logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .dashboard-header .logo {
    width: 280px;
  }
}

.dashboard-header .logo img {
  max-height: 26px;
  margin-right: 6px;
}

.dashboard-header .logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.dashboard-header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.dashboard-header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.dashboard-header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .dashboard-header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .dashboard-header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.dashboard-header .search-form {
  width: 100%;
}

.dashboard-header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.dashboard-header .search-form input:focus,
.dashboard-header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.dashboard-header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.dashboard-header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    box-shadow: 0 8px 16px 0 rgba(162, 169, 204, 0.24);
    border: 1px solid #e9edf4;
    border-radius: 10px;
    border-radius: 0.25rem;
}
.card-body {
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem;
}
.mt-8 {
	margin-top: 80px;
}
.blf-tabs .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #2955bb;
    border-color: inherit;
    color: #fff;
    padding: 9px 30px;
}

.blf-tabs .nav-tabs {
    border-bottom: 2px solid #2955bb;
}
.blf-tabs  .nav-tabs .nav-link {
    border: inherit;
    padding: 9px 30px;
}

.blf-main-leftpanel .nav-tabs .nav-link {
    border: inherit;
    padding: 5px 20px;
	font-size: 18px;
}
.blf-main-leftpanel  .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #2955bb;
    border-color: inherit;
    color: #fff;
	padding: 5px 20px;
}
.blf-main-leftpanel .nav-tabs li {
    padding: 0px;
    font-size: 16px;
}

.blf-board-number {
    border: 1px solid #eff2f7;
    height: 100%;
}
.blf-board-number h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
    padding: 11px;
    border-bottom: 2px solid #eff2f7;
}
.blf-board-number ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}



#main{
   background-color:#FFFFFF;
   float: left;
   right: 0;
   width: 100%;
   box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
    
}
#sidebar{
   background-color: #fff;
   width:100%;
   float: left;
   overflow-y: scroll;
	box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
	border: solid 1px #eee;
}

#dragbar{
   background-color:#f8f8fb;
   height:5px;
   float: left;
   width: 100%;
   cursor: row-resize;
}
#ghostbar{
    width:3px;
    background-color:#000;
    opacity:0.5;
    position:absolute;
    cursor: col-resize;
    z-index:999
}
.blf_setting {
  background: #FFF;
  width: 38px;
  height: 36px;
  border-radius: 4px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
  text-align: center;
  line-height: 36px;
  margin: 10px 0px;
}
.blf_setting svg {
	width:24px;
	height: 24px;
	fill:#336aea;
}
.blf_view { margin:10px;} 
.blf_view label {
  float: left;
  padding: 5px 10px 5px 0px;
}
.blf_view select {
  display: inherit;
  width: 150px;
}
.blf_table .table > :not(:first-child) {
  border-top: 2px solid #eff2f7;
} 
.blf_table .table thead tr th {
  padding: 10px 5px;
  font-size: 14px;
}

.blf_table .table thead tr th:nth-child(1) {
  width: 20px;
}

.blf_table .table thead tr th:nth-child(2) {
  width: 250px;
}

.blf_table .table thead tr th:nth-child(3) {
  width: 150px;
}

.blf_table .table thead tr th:nth-child(4) {
  width:150px;
}




.blf_table thead {
  border: 1px solid #eff2f7;
}

.blf_table tbody tr td {
  border: solid 1px #fff;
  padding: 5px;
  font-size: 14px;
}
.blf_table tbody tr td:nth-child(1) {
  padding: 0 5px;
}
.blf_table tbody tr td span svg {
  width: 14px;
  height: 14px;
  position: relative;
  top: 4px;
}

.blf-main-leftpanel {
  width: 350px;
  border: 1px solid #e6e6e6;
  overflow-y: scroll;
  float: left;

}
.blf-main-leftpanel ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.blf-main-leftpanel ul li {
  font-size: 14px;
  position: relative;
  padding: 3px 5px;
}
.blf-main-leftpanel ul li:hover {
	background-color: #f8f9fa;
}
.blf-main-leftpanel ul li span svg {
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
.text-blf-orange {
	color: de8600;
}
.blf-number-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.blf-number-list li {
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
  color: #a4a4a4;
}
.blf-number-list li strong {
  padding-left: 5px;
  letter-spacing: 1px;
  color: #484848;
}
.blf-right-list table tbody tr th {
  padding: 5px;
  background-color:#336aea;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  width: 150px;
  white-space: nowrap;
}
.blf-right-list table tbody tr td {
  padding: 5px;
  font-size: 14px;
	width: 150px;
	white-space: nowrap;
}
.blf-right-list table tbody tr td svg {
	margin-right: 5px;
	width: 12px;
	height: 12px;
}



/**************** 22***************/
.blf-board-number ul li {
    font-size: 14px;
    padding: 10px 12px 10px 30px;
    display: flex;
    justify-content: space-between;
	margin: 10px 15px;
	position: relative;
	cursor: pointer;
}
.blf-board-number ul li::before {
  content: "";
  position: absolute;
  border: solid 2px #a3aebf;
  left: 12px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 20px;
}

.call_details_pop .table {
  font-size: 14px;
}
.call_details_pop .table th {
	color: #484848;
}
.tt_activity {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px 10px 30px 10px;
  color: #000;
  letter-spacing: 1px;
}
.tt_activity span {
  background-color: #336aea;
  padding: 2px 10px;
  color: #fff;
  border-radius: 4px;
}
.call_incoming {
  background-color: #d5e4fa;
  color: #17428d;
  font-size: 18px !important;
  border-radius: 15px;
}
.call_incoming span {
    background-color: #e6effc;
  position: relative;
  padding: 1px 10px;
  border-radius: 60px;
  margin-left: 7px;
}
.out_outgoing {
  background-color: #e5d6fb;
  color: #3e1275;
  font-size:18px !important;
  border-radius: 15px;
}
.out_outgoing span {
    background-color: #efe6fd;
  position: relative;
  padding: 1px 10px;
  border-radius: 60px;
  margin-left: 7px;
}
.no_answer {
  background-color: #fbd4f5;
  color: #6a146e;
  font-size: 18px !important;
  border-radius: 15px;
}
.no_answer span {
    background-color: #fde5f9;
  position: relative;
  padding: 1px 10px;
  border-radius: 60px;
  margin-left: 7px;
}
.actine_call {
	background-color: #fffdc7;
  color: #6c5e27;
  font-size: 18px !important;
  border-radius: 15px;
}
.actine_call span {
    background-color: #fffedb;
  position: relative;
  padding: 1px 10px;
  border-radius: 60px;
  margin-left: 7px;
}

.user-tabs_list li {
  display: flex;
  justify-content: space-between;
	padding: 6px 5px !important;
}
.in-call {
  background-color:#d5e4fa;
  color: #17428d;
  font-size: 12px;
  border-radius: 4px;
  padding: 3px 5px;
  font-weight: 500;
}
.out-call {
	background-color: #e5d6fb;
  color:#3e1275;
	font-size: 12px;
  border-radius: 4px;
  padding: 3px 5px;
  font-weight: 500;
}
.tt-call {
	background-color: #ddfff3;
  color: #02774c;
	font-size: 12px;
  border-radius: 4px;
  padding: 3px 5px;
  font-weight: 500;
}

.users_l {
 	 display: inline-block;
    width: 150px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
.header-nav .profile .dropdown-item svg {
  width: 16px;
  margin-right: 5px;
  fill: #012970;
}


.feature_tabs {
    background: linear-gradient(0deg, rgb(183 207 255), rgb(255, 255, 255)) 0% 0% / auto repeat scroll padding-box border-box rgb(0 76 230 / 74%);
    padding:60px 0px;
}
.feature_title {
    font-size: 36px;
    text-align: center;
    color: #000229;
    font-weight: bold;
}
.feature_subtitle {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.feature_tabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: rgb(255, 255, 255);
    color: rgb(9, 30, 66);
    box-shadow: rgba(9, 30, 66, 0.15) 0px 0.5rem 1rem 0px;
    border-radius: 0.3rem;
    border: 0px;
    height: 100%;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
    position: relative;
    text-align: left;
}
.feature_tabs .nav button {
    margin-bottom: 20px;
    padding:0.5rem 1rem 0.5rem 1.5rem;
}
.feature_tabs .nav-pills .nav-link.active::after {
    background-color: rgb(0 76 230);
    border-radius: 0.3rem 0px 0px 0.3rem;
    bottom: 0px;
    content: "";
    left: 0px;
    position: absolute;
    top: 0px;
    width: 0.5rem;
}
.feature_tabs .nav-link h3 {
    text-align: left;
    font-size: 20px;
    color: #000;
}
.feature_tabs .nav-link p {
    text-align: left;
    font-size: 16px;
    color: #000;
        margin: 0px;
}

.feature_img img {
    width: 100%;
    border-radius: 4px;
    transition: margin-left 0.3s ease 0s;
    position: relative;
	align-items: center;
	display: flex;
	z-index: 500;		
	gap: 20px;
	transition: position 0.7s, left 0.7s;
}

.workflow_sec {
    padding: 60px 0px;
}
.workflow_sec .small_heading {
    text-align: center;
    display: inherit;
}


.swiper {
      width: 100%;
      height: 100%;
      padding: 10px 13px;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.swiper {
  height: 100%;
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
}
.swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: -5px;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  margin-top: 0px;
   background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
     z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}
.swiper-button-next:after {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    padding: 10px;
    border-radius: 4px;
}
.swiper-button-prev:after {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
    padding: 10px;
    border-radius: 4px;
}





.workflow_box {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 0.1rem .6rem 0px;
    margin: 10px;
    padding: 20px;
    text-align: left;
    border-radius: 6px;
    min-height: 250px;
}
.bg-gradient-start-1 {
    background: linear-gradient(to right, #E6F9FF, #FEFFFF);
    border: solid 1px #d3f4ff;
}
.bg-gradient-start-1 svg, .bg-gradient-start-2 svg, .bg-gradient-start-3 svg, .bg-gradient-start-4 svg, .bg-gradient-start-5 svg, .bg-gradient-start-6 svg {
    stroke: #fff;
    width: 60px;
    height: 60px;
    background-color: #00b8f2;
    border-radius: 100px;
    padding: 12px;
    margin-bottom: 15px;
}
.workflow_box p {
    font-size: 15px;
}
.workflow_box h3 {
    font-size: 22px;
    font-weight: bold;
    padding: 8px 0px 5px 0px;
}
.bg-gradient-start-2 {
    background: linear-gradient(to right, #F7E9FF, #FFFEFD);
    border: solid 1px #eed5fd;
}
.workflow_box.bg-gradient-start-2 svg {
    background-color: #8252e9;
}



.bg-gradient-start-3 {
    background: linear-gradient(to right, #E6EBFF, #FFFFFF);
    border: solid 1px #e8edff;
}
.workflow_box.bg-gradient-start-3 svg {
    background-color: rgb(111 141 255);
}
.bg-gradient-start-4 {
    background: linear-gradient(to right, #E8FFF5, #FFFFFF);
    border: solid 1px #e8edff;
}
.workflow_box.bg-gradient-start-4 svg {
    background-color: #45b369;
}

.bg-gradient-start-5 {
    background: linear-gradient(to right, #FFEEEE, #FFFCFC);
    border: solid 1px #e8edff;
}
.workflow_box.bg-gradient-start-5 svg {
    background-color: #e30a0a;
}

.bg-gradient-start-6 {
    background: linear-gradient(to right, #fffcee, #FFFCFC);
    border: solid 1px #fffcee;
}
.workflow_box.bg-gradient-start-6 svg {
    background-color: #ebbf00;
}


.cta_sec {
    background: linear-gradient(117deg, rgb(11 83 231 / 26%) 19.42%, rgba(128, 145, 234, 0.06) 61.43%);
    position: relative;
    overflow: inherit;
    padding:30px 0px;
}
.cta_heading > h3 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    letter-spacing: normal;
}

.cta_img {
    position:relative;
}

.cta_img img {
    position: relative;
    max-width: 100%;
}
.cta_heading  p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.97;
    color: #000;
    max-width: 600px;
}

.cta-anim-btn span {
    text-decoration: none;
    text-align: left;
    display: inline;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #000;
    padding: 8px 0;
}

.cta-anim-btn {
    width: 100%;
    height: 48px;
    line-height: 48px;
    color: #000;
    border-radius: 0
}

.cta-anim-btn:hover {
    color: #f5c366
}

.cta-anim-btn span:hover {
    color: #004ce6;
     border-bottom: 1px solid #004ce6;
}


.cta-anim-btn:hover .anim-hover {
    background: 0 0;
    color: #f5c366!important
}


.zoom-pricing .nav-pills{
    background-color: #fff;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.09);
    border:1px solid #E7E7E7;
}

.zoom-pricing .nav-pills .nav-link{
    color:var(--body-color);
    font-weight: 600;
    padding-top:11px;
    padding-bottom:11px;
}

.zoom-pricing .nav-pills .nav-link.active{
    color: #fff;
    border:none !important;
    background: #004ce6;
}

.pricing-card .price span{
  font-size: 14px;
  font-weight: 400;
}
.zoom-pricing .pricing-card ul {
    list-style:none;
    margin:0px;
    padding:0px;
}
.zoom-pricing .pricing-card ul li{
  margin-bottom: 1rem;
}

.zoom-pricing .pricing-card ul li i{
  color: #36376F;
    padding-right: 5px;
    font-size: 16px;
}
  
.zoom-pricing .pricing-card ul li span{
  font-size: 16px;
  color: #36376F;
  font-weight: 400;
}

.zoom-pricing .pricing-card .button a{
  border: 1px solid #5F30E2;
  color:#5F30E2;
  padding: 12px 26px;
  display: block;
  font-weight: 600;
}

.zoom-pricing .pricing-card{
  border: 1px solid transparent;
  transition: all 400ms;
  border-radius: 0.875rem;
  box-shadow: 1px 1px 20px 5px rgba(0, 0, 0, .04);
  padding: 20px;
}

.zoom-pricing .pricing-card:hover{
  box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.09);
  border:1px solid #E7E7E7;
}

.zoom-pricing .pricing-card:hover .button a{
  background: #5F30E2;
  color: #fff;
}

.zoom-pricing .pricing-card.active{
  background:#004ce6;
}

.zoom-pricing .pricing-card.active h5,
.zoom-pricing .pricing-card.active h2,.zoom-pricing .pricing-card.active h2 span
{
  color: #fff;
}

.zoom-pricing .pricing-card.active .description p{
  color:#A88CFC ;
}

.zoom-pricing .pricing-card.active li i{
  color:#B197FF ;
}

.zoom-pricing .pricing-card.active li span{
  color:#D7CBF8;
}

.zoom-pricing .pricing-card.active .button a{
  background: #FCD3C7;
  color:#5F30E2;
}

.zoom-pricing .pricing-card .title {
    text-align: center;
    color:#51d8d6;
    margin-bottom: 18px;
    font-size: 22px;
    text-transform:uppercase;
}

.zoom-pricing .pricing-card .pricing_heading {
    color: #00135e;
    font-size: 46px;
    font-weight: 400;
    text-align:center;
}
.basic_plan .button a {
    background-color: #52d8d6;
    color: #fff !important;
    border: none !important;
}
.business_plan .button a {
     background-color: #fa958d;
    color: #fff !important;
    border: none !important;
}
.pricing-card.business_plan .title {
    color: #fa958d;
}
.zoom-pricing .pricing-card.enterprice_plan .pricing_heading {
    color: #fff;
}

.zoom-pricing .pricing-card.enterprice_plan p {
    color: #fff;
}
.enterprice_plan .button a {
     background-color: #fff;
    color: #fff !important;
    border: none !important;
}
.zoom-pricing .pricing-card.active .button a {
    background: #ffffff;
    color: #5F30E2 !important;
}


.pricing-card.corporate_plan .title {
    color: #6bc1e9;
}

.pricing-card.corporate_plan .button a {
    background: #6bc1e9;
    color: #fff !important;
    border: none !important;
}



.zoom-blog-section {
  padding:60px 0px;
  position:relative;
}

.zoom-blog-wrap {
  padding-top: 20px;
}

.zoom-blog .blog-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.zoom-blog .blog-image a {
  display: block;
}

.zoom-blog .blog-image a img {
  transition: all 0.3s linear;
}

.zoom-blog .blog-image .top-meta {
  position: absolute;
  top: 35px;
  left: 30px;
}

.zoom-blog .blog-image .top-meta .date {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background:#004ce6;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  border-radius: 5px;
  font-family: "Barlow", sans-serif;
  display: inline-block;
  text-align: center;
  line-height: 12px;
  padding: 10px;
}

.zoom-blog .blog-image .top-meta .date span {
  font-size: 28px;
  line-height: 18px;
  font-weight: 500;
  line-height: 30px;
  display: block;
}

.zoom-blog .blog-content {
  padding: 25px 30px 40px;
  background: #ffffff;
  width: 90%;
  position: relative;
  left: 50%;
  bottom: 10px;
  transform: translateX(-48%);
  margin-top: -40px;
}

@media only screen and (max-width: 1199px) {
  .zoom-blog .blog-content {
    padding: 25px 20px 40px;
    width: 95%;
  }
}

.zoom-blog .blog-content .blog-meta span {
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  color: #999999;
  margin-right: 15px;
}

@media only screen and (max-width: 575px) {
  .zoom-blog .blog-content .blog-meta span {
    margin-right: 12px;
  }
}

.zoom-blog .blog-content .blog-meta span a {
    color: #999999;
}
.zoom-blog .blog-content .blog-meta span i {
  color: #004ce6;
  margin-right: 5px;
}

.zoom-blog .blog-content .title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #0e0e0e;
  padding-right: 15px;
  margin-top: 15px;
}
.zoom-blog .blog-content .title a {
    color: #0e0e0e;
}

@media only screen and (max-width: 1199px) {
  .zoom-blog .blog-content .title {
    padding-right: 0;
  }
}

.zoom-blog .blog-btn .blog-btn-link {
  font-size: 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: #086ad8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  transition: all 0.3s linear;
}

.zoom-blog .blog-btn .blog-btn-link i {
  transition: all 0.3s linear;
}

.zoom-blog .blog-btn .blog-btn-link:hover i {
  margin-left: 5px;
}

.zoom-blog:hover .blog-image a img {
  transform: scale(1.1);
}

.zoom-blog-grid-wrap {
  margin-top: -30px;
}

@media screen and (max-width:767px) {
  .dashboard-bg { padding:0px;}
  .tp-about__area {
    padding: 20px 0px;
  }
  .tp-about__bg-shape img {
    margin-bottom: 30px;
  }
  .dashboard-bg img {
    max-width: 100%;
  }
  #footer .footer-top .footer-contact {
    padding: 15px;
  }
  #footer .footer-top .footer-links {
    padding: 15px;
  }

}




/**************Contact Us page css ***************/


.page-header {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0px 70px 0px;
}

.page-contact {
    padding: 100px 0 20px;
}
.contact-info-item {
    border: 2px solid #004ce621;
    border-radius: 30px;
    padding: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.contact-info-item .icon-box {
    background: #cfdfff;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-info-item .icon-box img {
    width: 30px;
}
.contact-info-item .contact-info-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.contact-info-content > p {
    margin: 0px;
}

.contact-us-form {
    padding: 50px 0 100px;
}
.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
figure {
    margin: 0;
}
.contact-us-img img {
    border-radius: 30px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
.google-map .container-fluid {
    padding: 0;
}
.google-map-iframe, .google-map-iframe iframe {
    width: 100%;
    height: 730px;
}

.contact-us-section-title h3 {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background-color: #cfdfff;
    color: #004ce6;
    border-radius: 99px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.contact-us-section-title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0;
}

.contact-form .form-control {
    padding: 15px 20px;
    background-color: transparent;
    border: 2px solid #153c331a;
    border-radius: 10px;
    color: #153c33;
    box-shadow: none;
}
.btn-default {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1em;
    color: #ffffff;
    background: #004ce6;
    text-transform: capitalize;
    padding: 18px 55px 18px 20px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color:#03008f;
    background-image: url(/assets/img/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    transform: translate(-10px, -50%);
    transition: all 0.4s ease-in-out;
}
.btn-default::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    height: 102%;
    border-radius: 4px;
    background:#03008f;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.btn-default:hover:before {
    background-color: #004ce6;
}
.btn-default:hover::after {
    width: 106%;
}


/*==========================================================================
* Blog With Sidebar Style
==========================================================================*/
.blog__sidebar {
    padding: 100px 0px;
} 

.blog__sidebar-single-blog {
  position: relative;
  margin-bottom: 60px;
}
.blog__sidebar-single-blog:last-child {
  margin-bottom: 0;
}
.blog__sidebar-single-blog-image {
  border-radius: 10px 10px 0 10px;
  overflow: hidden;
}
.blog__sidebar-single-blog-image img {
  width: 100%;
  height: 552px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__sidebar-single-blog-date {
  position: absolute;
  top: 0;
  right: 0;
  background-color:#004ce6;
  text-align: center;
  padding: 8px 15px;
  border-radius: 0 5px 0 5px;
  color:#fff;
}
.blog__sidebar-single-blog-date span {
  display: block;
  font-size: 12px;
  color: var(--color-2);
}
.blog__sidebar-single-blog-content {
  position: relative;
  width: 90%;
  background-color: #fff;
  padding: 30px 41px;
  border-radius: 0 10px 10px 10px;
  margin-top: -80px;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.blog__sidebar-single-blog-content-top {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.blog__sidebar-single-blog-content-top span {
  font-size: 14px;
  margin-right: 27px;
}
.blog__sidebar-single-blog-content-top span i {
  color: #004ce6;
  margin-right: 3px;
}
.blog__sidebar-single-blog-content p {
  text-transform: none;
  font-size: 17px;
}
.blog__sidebar-single-blog-content .blog-heading {
  font-size:26px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
  text-transform: none;
  transition: 0.4s;
  display: block;
  color:#231f20;
}
.blog__sidebar-single-blog-content .blog-heading:hover {
  color: #004ce6;
}
.blog__sidebar-single-blog-content .btn-one {
  display: table;
  text-align: left;
  border-radius: 5px;
}
.blog__sidebar.no-sidebar .blog__sidebar-single-blog-content {
  border-radius: 10px;
  margin-left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .blog__sidebar-single-blog-content {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .blog__sidebar-single-blog-content {
    padding: 18px 15px;
  }
  .blog__sidebar-single-blog-content .blog-heading {
    font-size: 24px;
  }
}
/*==========================================================================
* Blog Sidebar Style
==========================================================================*/
.sidebar-item {
  margin-left: 8px;
}
.sidebar-item-single {
  background-color:#f4f7fb;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 35px;
}
.sidebar-item-single:last-child {
  margin-bottom: 0;
}
.sidebar-item-single h3 {
  margin-bottom: 15px;
}
.sidebar-item-single.sidebar-search form {
  display: flex;
  margin-top: 28px;
}
.sidebar-item-single.sidebar-search form input {
  border: 0;
  height: 58px;
  padding: 10px 20px;
  border-radius: 10px 0 0 10px;
  width:100%;
}
.sidebar-item-single.sidebar-search form input::-moz-placeholder {
  font-size: 18px;
}
.sidebar-item-single.sidebar-search form input::placeholder {
  font-size: 18px;
}
.sidebar-item-single.sidebar-search form button {
  padding: 10px 21px;
  border-radius: 0 10px 10px 0;
  background-color: #0e59f2;
    border: none;
    color: #fff;
}
.sidebar-item-single.sidebar-category .single-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 9px 23px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.sidebar-item-single.sidebar-category .single-category:last-child {
  margin-bottom: 0;
}
.sidebar-item-single.sidebar-category .single-category-name {
  display: flex;
  align-items: center;
}
.sidebar-item-single.sidebar-category .single-category-name i {
  color: var(--primary-color-1);
  margin-right: 15px;
}
.sidebar-item-single.sidebar-category .single-category .category-count {
  font-size: 12px;
  color: var(--color-2);
}
.sidebar-item-single.sidebar-item-single .blog-post-single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sidebar-item-single.sidebar-item-single .blog-post-single:last-child {
  margin: 0;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-img {
  width: 60%;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-content {
  background-color: var(--bg-white);
  padding: 10px 13px;
  border-radius: 0 5px 5px 0;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-content-top {
  margin-bottom: 8px;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-content-top span {
  font-size: 12px;
  color: var(--color-2);
  margin-right: 20px;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-content-top span i {
  color: #004ce6;
  margin-right: 5px;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-content a {
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
  text-transform: none;
  color:#231f20;
}
.sidebar-item-single.sidebar-item-single .blog-post-single-content a:hover {
  color: #004ce6;
}


@media (max-width: 575px) {
  .sidebar-item-single {
    padding: 20px 22px;
  }
}

.blog__details-thumb {
    position: relative;
}
.blog__details-thumb .date {
    position: absolute;
    color: #ffffff;
    background-color: #0e59f2;
    font-size: 18px;
    right: 0;
    padding: 10px 20px;
    border-radius: 0 5px 0 5px;
}
.blog__details-thumb img {
    width: 100%;
    border-radius:4px;
}

.blog__details-content-top {
    margin-top: 32px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog__details-content-top span {
    font-size: 14px;
    color: #737373;
    margin-right: 27px;
}
.blog__details-content h2 {
    font-size:26px;
}
.post-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}
.post-pagination ul li a, .post-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background-color: #cfdfff;
    color: #004ce6;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}
.post-pagination ul li.active a, .post-pagination ul li a:hover {
    background: #004ce6;
    color: #ffffff;
}

.tp-section-title-lg {
    font-size: 36px;
    text-align: center;
    color: #000229;
    font-weight: bold;
}
.MsoListParagraph {
    font-size: 24px;
    font-family: "Fira Sans", sans-serif !important;
    text-indent: 0pt !important;
}
.MsoListParagraph span {
    font-family: "Fira Sans", sans-serif !important;
}
.MsoNormal span {
    font-family: "Fira Sans", sans-serif !important;
}



@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 66px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    transform: translateX(-100%);
  }
}

.nav-scroller .nav {
  color: rgba(255, 255, 255, .75);
}

.nav-scroller .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
  color: #6c757d;
}

.nav-scroller .nav-link:hover {
  color: #007bff;
}

.nav-scroller .active {
  font-weight: 500;
  color: #343a40;
}

@media (max-width:767px) {
    
    
    
    .navbar a, .navbar a:focus { padding:0px; }
    
    .navbar .offcanvas-collapse ul {
            align-items: start;
            padding: 10px 0px;
        }
        .navbar .offcanvas-collapse ul li {
            padding: 10px;
        }
        .navbar .offcanvas-collapse ul li a {
            color:#fff;
        } 
    #header .logo img { max-height: 40px;}
    .tp-header-2__login { padding:0px 6px;}
    .tp-btn-green-sm { padding:0px 6px; }
    .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
    color: #ffffff;
}

}



























