/**
* Template Name: Nova - v1.3.0
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
  --color-default: #2b180d;
  --color-primary: #85c324;
  --color-secondary: #1b2f45;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #82cbed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.7);
  background-color: #1b2f45;
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(86, 184, 230, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 24px 0;
}

@media (max-width: 1200px) {
  .header {
    padding: 12px 0;
  }
}

.header.sticked {
  background: #1c4467;
  padding: 12px 0;
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 30px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    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: #fff;
  }

  .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.2s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-secondary);
  }

  .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: var(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(27, 47, 69, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    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: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: rgba(20, 35, 51, 0.6);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(27, 47, 69, 0.7);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  /* background: url("../img/sample.png") top center;
  background: url("../img/hero-bg-6.webp") top center; */
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
  background-position: 300px -30px;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 40%;
    background: var(--color-secondary);
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.6);
  inset: 0;
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
  .index2 .hero:after {
    position: absolute;
    content: "";
    width: 40%;
    background: transparent;
    top: 0;
    bottom: 0;
  }
}

.add-ons h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}

.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid var(--color-primary);
  margin: 40px 0;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
  cursor: pointer;
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
  color: var(--color-secondary);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

i.bi.bi-arrow-down-short {
  padding-top: 1px;
}

.bi-arrow-down-short::before {
  font-size: 23px;
}

#start-here-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

#start-here-btn:hover {
  background-color: #fff !important;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #fff;
}

.hero .btn-watch-video:hover i {
  color: #82cbed;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us {
  padding-bottom: 0;
}

.why-us .img-bg {
  min-height: 500px;
  background-size: cover;
}

.why-us .slides {
  background-color: #f7f9fc;
}

.why-us h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

.why-us h4 {
  font-size: 14px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.why-us .swiper {
  margin: 140px 140px 120px 140px;
  overflow: hidden;
}

.why-us .swiper-button-prev:after,
.why-us .swiper-button-next:after {
  font-size: 24px;
  color: var(--color-secondary);
}

.why-us .swiper-button-prev {
  left: 80px;
}

.why-us .swiper-button-next {
  right: 80px;
}

.why-us .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.why-us .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color-secondary);
}

.why-us .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}

@media (max-width: 1200px) {
  .why-us .swiper {
    margin: 60px 60px 40px 60px;
  }

  .why-us .swiper-button-prev,
  .why-us .swiper-button-next {
    display: none;
  }
}

@media (max-width: 575px) {
  .why-us .swiper {
    margin: 40px 40px 20px 40px;
  }
}

.page-about .why-us {
  padding: 0 0 80px 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
}

.about .content p {
  margin: 30px 0;
  color: #29486a;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 15px 26px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Services List Section
--------------------------------------------------------------*/
.services-list .service-item {
  position: relative;
}

.services-list .service-item .icon i {
  font-size: 32px;
  line-height: 0;
  margin-right: 20px;
  color: #38618e;
}

.services-list .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-list .service-item .title a {
  color: var(--color-secondary);
}

.services-list .service-item .title a:hover {
  color: #38618e;
}

.services-list .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(rgba(27, 47, 69, 0.8), rgba(27, 47, 69, 0.8)), url("../img/cta-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .call-to-action {
    background-attachment: fixed;
  }
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 25px;
}

.call-to-action .cta-btn {
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: var(--color-primary);
}

.call-to-action .cta-btn:hover {
  background: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-bottom: 0;
}

.features h3 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.features .icon-list i {
  margin-right: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.features .icon-list span {
  font-size: 18px;
  color: #29486a;
}

.features .phone-wrap {
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .features .phone-wrap {
    position: relative;
  }
}

.features .phone-wrap img {
  width: 100%;
}

@media (max-width: 992px) {
  .features .phone-wrap img {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .features .phone-wrap img {
    width: 100%;
  }
}

.features .details {
  margin-top: 80px;
  padding: 120px 0;
  background-color: #f7f9fc;
}

.features .details h4 {
  color: var(--color-secondary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.features .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.features .details .btn-get-started {
  font-family: var(--font-primary);
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--color-primary);
  color: #fff;
}

.features .details .btn-get-started:hover {
  background: #2aa5df;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

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

.recent-posts .post-box .meta {
  margin-top: 15px;
}

.recent-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-primary);
}

.recent-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-secondary);
}

.recent-posts .post-box .post-title {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-posts .post-box p {
  margin: 15px 0 0 0;
  color: rgba(27, 47, 69, 0.7);
}

.recent-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

.recent-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  overflow: hidden;
  background: #fff;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #31547c;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--color-primary);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 25px 15px 0 15px;
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

.team-image {
  border-radius: 100px;
}

/*--------------------------------------------------------------
# Services Cards Section
--------------------------------------------------------------*/
.services-cards {
  background: #f7f9fc;
}

.services-cards .card-item {
  border: 1px solid rgba(27, 47, 69, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.services-cards .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.services-cards .card-item .card-body {
  padding: 30px;
}

.services-cards .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.services-cards .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(27, 47, 69, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e8eff6;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: var(--color-secondary);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--color-primary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(27, 47, 69, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d6e2ef;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: url("../img/contact-bg.png") left top no-repeat;
  background-size: contain;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
  }
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1c88ba;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #1f98d1;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-primary);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog Stylings
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Blog Home Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  height: 100%;
  border-bottom: 1px solid #d6e2ef;
  padding-bottom: 30px;
}

.blog .posts-list article+article {
  margin-top: 60px;
}

.blog .posts-list .post-img {
  max-height: 240px;
  overflow: hidden;
}

.blog .posts-list .title {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0 0 0;
}

.blog .posts-list .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .meta-top {
  margin-top: 20px;
  color: #467ab3;
}

.blog .posts-list .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .posts-list .meta-top ul li+li {
  padding-left: 20px;
}

.blog .posts-list .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .posts-list .meta-top a {
  color: #467ab3;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .posts-list .content {
  margin-top: 20px;
}

.blog .posts-list .read-more a {
  display: inline-block;
  color: #1f98d1;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}

.blog .posts-list .read-more a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Blog Details Page
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(27, 47, 69, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: var(--color-gray);
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(86, 184, 230, 0.8);
}

.blog .blog-details .meta-top a {
  color: var(--color-gray);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(27, 47, 69, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #38618e;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(27, 47, 69, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(27, 47, 69, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(var(--color-gray-rgb), 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar .sidebar-title {
  font-size: 22px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(27, 47, 69, 0.2);
  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 input[type=text]:focus {
  outline: none;
}

.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: var(--color-primary);
  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: rgba(86, 184, 230, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  font-size: 15px;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(var(--color-default-rgb), 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 18px;
  font-weight: 400;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.4);
}

.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: #38618e;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(27, 47, 69, 0.15);
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(27, 47, 69, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(27, 47, 69, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(86, 184, 230, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(27, 47, 69, 0.8);
}

/*--------------------------------------------------------------
# Blog Home Pagination
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #38618e;
}

.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: #2aa5df;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #dbf0fa;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  background: var(--color-primary);
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer .footer-content {
  background-color: #f7f9fc;
  background-size: contain;
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  margin-top: 3px;
}

.footer .footer-content .footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-secondary);
  color: #999;
  font-family: 'Raleway';
  font-weight: 300;
}

.footer .footer-content .social-links a {
  font-size: 14px;
  line-height: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  color: rgba(27, 47, 69, 0.5);
  margin-right: 10px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
  background-color: #38618e;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: bold;
  color: #29486a;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  margin-right: 2px;
  color: var(--color-primary);
  font-size: 16px;
  line-height: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Raleway';
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: #31547c;
  color: #999;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-content .footer-contact p {
  line-height: 26px;
  color: #999;
  transition: 0.3s;
  display: inline-block;
  font-family: 'Raleway';
  font-weight: 300;
  font-size: 16px;
}

.footer .footer-legal {
  background: #fff;
  padding: 30px 0;
}

.footer .footer-legal .copyright {
  text-align: center;
  color: var(--color-secondary);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
  color: var(--color-secondary);
}


/*--------------------------------------------------------------
# Add-Ons
--------------------------------------------------------------*/

#add-ons {
  padding: 20px;
}

.add-on-h1 {
  padding: 0;
  text-align: center;
}

.add-on-details-h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-secondary);
}

.add-ons-items .add-ons-img {
  max-width: 60px;
  margin: 0 auto;
  display: block;
}

.add-ons-items .card {
  border: 2px solid #eee;
}

.add-ons-items .card-body {
  padding: 50px 30px !important;
  min-height: 420px;
}

.add-ons-items .card:hover {
  border-color: #000;
}

.add-ons-items .card-title {
  font-family: 'Raleway';
  font-size: 32px;
  font-weight: 700;
  color: var(--color-secondary);
}

.add-ons-items .card-text {
  font-weight: 300;
  color: var(--color-secondary);
}

.add-ons-items .tag {
  background: #86c02e;
  /* background: #1c4467; */
  max-width: 150px;
  text-align: center;
  color: #fff;
  border-radius: 200px;
  font-size: 13px;
  position: absolute;
  width: 100%;
  padding: 3px;
  left: 20px;
  top: -13px;
  font-family: 'Raleway';
  font-weight: 700;
}

.page-portfolio .breadcrumbs:before {
  background: linear-gradient(rgba(27, 47, 69, 0.85), rgba(27, 47, 69, 0.85)), url(../img/add-ons-banner-2.jpg) center center;
  /* background: linear-gradient(rgba(0, 0, 0, 0.83), rgba(0, 0, 0, 0.83)), url(../img/add-ons-banner-2.jpg) center center; */
  background-size: cover !important;
}

.add-on-subheading {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 100%;
  margin-bottom: 80px !important;
  font-family: 'Raleway';
  font-weight: 300;
  /* color: var(--color-secondary); */
}

.add-ons-overview {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

.add-ons-details p {
  font-weight: 300;
}

.portfolio-description h2.add-on-title {
  font-size: 32px !important;
}

.add-ons-details .trial {
  max-width: 48%;
  width: 100%;
  background: #86c02e;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 300px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-family: 'Raleway';
  border: 2px solid #86c02e;
  margin-right: 10px;
  text-transform: uppercase;
}

.add-ons-details .buy-now {
  max-width: 48%;
  width: 100%;
  background: #ddd;
  color: var(--color-secondary);
  border: none;
  padding: 15px;
  border-radius: 300px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-family: 'Raleway';
  border: 2px solid #ddd;
  text-transform: uppercase;
}

.add-ons-details .contact-us {
  max-width: 97%;
  width: 100%;
  background: #ddd;
  color: var(--color-secondary);
  border: none;
  padding: 15px;
  border-radius: 300px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-family: 'Raleway';
  border: 2px solid #ddd;
  text-transform: uppercase;
}

.why-icon {
  margin-right: 10px;
  color: #86c02e;
  font-size: 20px;
}

.portfolio-description .list-group-item {
  padding-left: 0;
}

.why-heading {
  font-family: 'Raleway';
  margin-bottom: 0 !important;
  font-size: 25px !important;
  font-weight: 300 !important;
}

.portfolio-description h2.add-on-details-title {
  font-size: 48px !important;
}

.add-ons-details {
  padding-top: 50px !important;
}

.portfolio-description h2.add-on-details-title {
  margin-bottom: 0px !important;
}

.sisense-logo-nav {
  max-width: 135px;
  width: 100%;
}

.sisense-logo {
  max-width: 180px;
  width: 100%;
}

.add-on-main-img {
  width: 100%;
  border-radius: 20px;
}

.trial:hover {
  background: transparent !important;
  color: #86c02e;
  border: 2px solid #86c02e;
}

.buy-now:hover {
  background: transparent !important;
  color: #86c02e;
  border: 2px solid #86c02e;
}

.contact-us:hover {
  background: transparent !important;
  color: #86c02e;
  border: 2px solid #86c02e;
}

.add-on-details-subheading {
  font-weight: 700 !important;
  margin-bottom: 30px !important;
  color: var(--color-secondary);;
}

.text-right {
  text-align: right;
}

.post-boxed {
  background: #eee;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}

.post-boxed-img-wrap img {
  width: 100%;
}

.post-boxed-title {
  text-align: left;
  margin-top: 20px;
}

.post-boxed-caption .post-boxed-title a {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: 'Raleway';
}

.post-boxed-caption ul {
  text-align: left;
  font-family: 'Raleway';
}

.post-boxed-caption ul li {
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  text-transform: none;
}

.add-on-tag {
  background-color: #86c02e !important;
}

.add-on-tag-service {
  background-color: #1c4467 !important;
}
  
.add-on-tag-standout {
  background-color: #d90769 !important;
}

.mr-1 {
  margin-right: 10px;
}

.pr-7 {
  padding-right: 70px;
}

.pl-7 {
  padding-left: 70px;
}

.bullet {
  color: #1c4467;
}

.accordion-button {
  padding: 0;
}

.accordion-flush .accordion-item {
  border: none;
}

button.accordion-button {
  font-weight: 300;
}

.accordion-header {
  margin-bottom: 25px !important;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: #86c02e;
}

.buy-now-single {
  background-color: #86c02e !important;
  color: #fff !important;
}

.buy-now-single:hover {
  color: #86c02e !important;
}

.services-section .card {
  border: none;
  text-align: center;
}

.services-section img.add-ons-img {
  max-width: 70px;
  width: 100%;
}

.services-section p {
  color: var(--color-secondary);
  font-weight: 500;
}

.services-section .card {
  max-width: 350px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.services-section .card {
  max-width: 350px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.services-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.single-contact {
  width: 100% !important;
  max-width: 97% !important;
}


/* would you like section */

.would-you-like {
  background-color: var(--color-secondary);
  background-color: #fff;
}

.would-heading {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 44px;
  font-size: 35px;
  color: #fff;
  color: var(--color-secondary);
  max-width: 450px;
}

.would-right {
  text-align: right;
  max-width: 100%;
}


.would-you-like .description {
  color: #fff;
}

u {
  text-decoration-color: #85c324;
}

.max-450 {
  max-width: 450px;
}

.max-400 {
  max-width: 400px;
}

.max-650 {
  max-width: 650px;
}

.max-550 {
  max-width: 550px;
}

.max-500 {
  max-width: 500px;
}

.ml-auto {
  margin-left: auto;
}

.ml-2 {
  margin-left: 20px;
}

.ml-3 {
  margin-left: 30px;
}

.mr-auto {
  margin-right: auto;
}

.mt-100 {
  margin-top: 100px !important;
}

.flex-align-center {
  align-items: center;
  justify-content: center;
}

.max-1000 {
  max-width: 1000px;
}

.max-1200 {
  max-width: 1200px;
}

.m-auto {
  margin: auto;
}

.description {
  line-height: 24px;
  font-size: 15px !important;
  font-weight: 300;
  margin-top: 20px;
}

.services-list .title, .services-list .title  a {
  font-size: 19px;
  font-family: 'Raleway';
}

.sisense-partner-wrapper span {
  color: #fff;
  font-weight: 600;
  font-size: 11px;
}

.tooltip-inner {
  white-space: pre-line;
  text-align: left;
  padding: 30px;
  max-width: 350px;
  width: 100%;
  /* background: var(--color-primary);
  opacity: 1; */
  font-family: 'Open Sans';
}

.hero p, .hero a {
  color: #bbb;
}

.hero a:hover {
  color: var(--color-primary);
}

span.counter.d-block {
  color: #fff;
  /* color: var(--color-primary); */
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 60px;
}

.counter-wrapper .sub {
  color: #fff;
}

.counter-wrapper {
  margin: 50px;
}

.counter-main-heading {
  font-size: 35px;
  font-weight: 700;
}


a[data-toggle="tooltip"] {
  background: #86c02e;
  color: #fff;
  padding: 7px 17px;
  border-radius: 100px;
  font-size: 13px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Raleway';
}


.index2 .hero {
  background: linear-gradient(45deg, rgba(28,68,103,1) 55%, rgba(133,195,36,1) 100%);
  background: linear-gradient(45deg, rgba(28,68,103,1) 53%, rgba(133,195,36,1) 100%);
  /* background: linear-gradient(45deg, rgba(28,68,103,1) 25%, rgba(0, 0, 0) 100%); */
}

.index2 .sub-heading {
  font-weight: 300;
  color: #fff;
  font-size: 22px;
  letter-spacing: -.5px;
}

.bottom-nav ul {
  text-align: center;
  font-size: 12px;
}

.bottom-nav ul  .list-group-item {
  border: none;
  color: #ccc;
}

.bottom-nav ul a {
  color: #ccc;
}

.section-active {
  color: var(--color-primary) !important;
}

.section-item:hover {
  color: var(--color-primary) !important;
}

.section-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 0.5em;
  border-top: 2px solid var(--color-primary);
  z-index: 1;
  max-width: 70px;
  margin: 0 auto;
}

.heading-quote {
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 300 !important;
  font-size: 20px;
  font-style: italic;
  color: #999 !important;
  letter-spacing: -.5px;
}

.section-navbar {
  transition: all 0.4s;
}

.section-hide {
  visibility: hidden;
  opacity:0;
  transition: all 0.4s;
}

.section-show {
  visibility: visible;
  display: flex !important;
  opacity:1;
  transition: all 0.4s;
}


.call-to-action-2 {
  background: linear-gradient(rgba(27, 47, 69, 0.9), rgba(27, 47, 69, 0.9)), url(../img/hero-bg.jpg) center center;
  background-size: cover;
  padding: 100px 0;
  background-attachment: fixed !important;
}

.clients .item {
  padding: 30px;
}

.clients .swiper-button-prev, .clients .swiper-button-next {
  display: none;
}

.clients .team-image {
  max-height: 40px;
  min-height: 40px;
  border-radius: 0;
}

.mirus {
  background: #013766;
  padding: 5px;
}

.clients .comment {
  font-size: 15px;
  font-style: italic;
  color: #999;
  font-weight: 300;
}

.employee-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);;
}

.employee-description {
  font-size: 16px;
  font-weight: 300;
}

#awards {
background: #f7f9fc;
}

#awards img {
  max-width: 170px;
}

.our-team {
  background-color: #f7f9fc;
  background-image: url('../img/texture.webp');
  position: relative;
}

.our-team .slides {
  background-color: transparent;
}

.our-team .swiper {
  margin-top: 0;
  margin-bottom: 30px;
}

.our-team .swiper .item {
  background-color: #fff;
  padding: 30px;
  margin: 0 30px;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

/* CERTIFICATION */

.certifications {
  background-color: #f7f9fc;
  background-image: url('../img/texture.webp');
  position: relative;
}

.certifications .slides {
  background-color: transparent;
}

.certifications .swiper {
  margin-top: 0;
  margin-bottom: 30px;
}

.certifications .swiper .item {
  background-color: #fff;
  padding: 30px;
  margin: 0 30px;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.tooltipclass{
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  color: var(--color-secondary)var(--color-secondary) !important;
  font-family: 'Montserrat';
  font-weight: 400;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border: none;
}


.certifications h3 {
  font-size: 17px;
  font-weight: 700;
}

.certifications h2 {
  color: #fff;
}

.certifications:before {
  /* background: rgba(247, 249, 252, .6); */
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.83);
  inset: 0;
}

.certifications  h4 {
  font-size: 14px;
  font-weight: 400;
  color: #29486a;
  font-family: var(--font-secondary);
}

.our-team h3 {
  font-size: 17px;
}

.our-team:before {
  background: rgba(247, 249, 252, .6);
  position: absolute;
  content: "";
  /* background: rgba(27, 47, 69, 0.6); */
  inset: 0;
}

.certifications img {
  border-radius: 0;
  max-width: 150px;
}

.hero .btn-get-started {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.1px;
  padding: 12px 40px;
  font-family: 'Raleway';
  background-color: #86c02e !important;
}

.recent-posts .post-box .meta .post-date, .recent-posts .post-box .meta .post-author {
  color: #ccc;
  font-size: 13px;
  font-style: italic;
}

/* .recent-posts .post-box .post-title {
  min-height: 44px;
} */

.recent-posts .post-box p {
  color: #aaa;
}

.recent-posts .post-box {
  padding: 30px;
}

.recent-posts .post-box .post-img {
  border-radius: 10px;
}

.certifications {
  padding-bottom: 70px;
}

.certifications .swiper-button-next, .certifications .swiper-button-prev {
  display: none;
}


span.swiper-pagination-bullet {
  background: transparent !important;
  border: 1px solid var(--color-primary);
  opacity: 1;
}

span.swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}

.hero .btn-walk {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 40px;
  margin-left: 15px;
  font-family: 'Raleway';
  background-color: transparent !important;
  border: 2px solid #86c02e;
  border-radius: 100px;
  color: #fff;
  text-align: center;
}

.hero blockquote {
  border-left: 0;
  padding-left: 0;
}

.hero blockquote ul {
  padding-left: 15px;
  font-family: 'Raleway';
  font-family: 'Montserrat';
  list-style-type: disc;
}

.hero blockquote ul li::marker {
  color: #bbb;
}

.hero  ul {
  list-style: none; /* Remove default bullets */
}

.hero ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #aaa; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1.5em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
  display: none;
}

.certifications .swiper {
  margin: 0;
}

.fade:not(.show) {
  opacity: 0;
  display: none;
}

.fade.active {
  opacity: 1;
  display: block;
}

.points-tabs {
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
  padding: 10px;
  padding-bottom: 0;
  display: flex;
  list-style: none;
}

.points-tabs li {
  text-align: center;
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 400;
  padding: 20px 35px;
  text-transform: capitalize;
}

.points-tabs li a {
  color: var(--color-secondary);
}

.points-tabs li.active {
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--color-primary);
}

.tabs-content {
  padding-top: 0;
  margin-bottom: 50px;
  position: relative;
  min-height: 600px;
}

.points-tabs-wrapper {
  padding-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* .tab-content {
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  transition: all 0.1s ease-in;
  position: absolute;
  left: 0;
  top: -150px;
} */

.tab-content {
  /* opacity:0;
  height: 0; */
  display: none;
  /* padding: 0 8px;
  transition: all .3s ease; */
}

.tab-content.active {
  /* visibility: visible; */
  /* opacity: 1; */
  display: flex;
  transition: all .3s ease;
}

.tabs-content p {
  color: #666 !important;
  font-family: 'Montserrat';
  font-weight: 400;
  margin-top: 20px !important;
}

.tabs-content ul {
  color: #666 !important;
  font-family: 'Montserrat';
  font-weight: 400;
  padding-left: 15px;
}

#heading-quote {
  color: #999 !important;
}

#heading-quote {
	font-weight: 100;
	max-width: 600px;
	position: relative;
	margin: 0;
	padding: .2rem;
}

#heading-quote:before,
#heading-quote:after {
	position: absolute;
	color: #f1efe6;
	font-size: 5rem;
	width: 4rem;
	height: 4rem;
}

#heading-quote:before {
	content: '“';
	left: -3rem;
	top: -2rem;
}
#heading-quote:after {
	content: '”';
	right: -.2em;
	bottom: -0rem;
}

.hero h2 {
  margin-bottom: 30px;
}

.hero p {
  font-family: 'Montserrat';
}

/* OVERLAY */

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in;
  z-index: 4;
}
.nav {
  width: 350px;
  /* height: 100vh; */
  background-color: #eee;
  left: -350px;
  top: 200px;
  position: fixed;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.6);
  transition: all 200ms ease-in-out;
  z-index: 99;
  padding: 40px;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.toggle {
  position: absolute;
  left: 100%;
  background-color: #86c02e;
  width: 40px;
  height: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  cursor: default;
}
.toggle span {
  display: block;
  margin-top: -5px;
}
.logo {
  text-align: center;
}
.logo  a{
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 30px;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  font-family: 'Montserrat';
}
.nav ul li {
  display: block;
  list-style: none;
}
.nav ul li a {
  padding: 10px 20px;
  display: block;
  color: var(--color-secondary);
  font-family: 'Montserrat';
  font-size: 15px;
  text-decoration: none;
  transition: all 200ms ease;
}
.nav ul li a:hover {
  font-weight: 700;
}

.nav ul {
  padding: 0;
}

.nav ul li a {
  padding-left: 0;
}

/* Show Nav */
.show-nav .nav {
  left: 0;
}
.show-nav .overlay {
  opacity: 1;
  visibility: visible;
}

nav.nav.drawer {
  opacity: 0;
}

nav.nav.drawer.active {
  opacity: 1;
}

.points-tabs-2-wrapper {
  position: fixed;
  top: 10px;
  margin: 0 auto;
  display: block;
  width: 100%;
  background: #fff;
  padding-bottom: 0;
  z-index: 2;
  opacity: 0;
  /* display: none; */
  transition: all 700ms ease;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  visibility: hidden;
}

.points-tabs-2-wrapper .points-tabs {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

.show-sticky {
  visibility: visible;
  opacity: 1;
  transition: all 700ms ease;
}

.toggler-2 {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-left: 10px;
}

.toggle-2 {
  position: fixed;
  left: 0;
  z-index: 999;
  background-color: #86c02e;
  width: 40px;
  height: 40px;
  top: 250px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  cursor: pointer;
  transition: all 700ms ease;
}

.toggle-2 {
  opacity: 0;
  transition: all 700ms ease;
}

.show-drawer {
  opacity: 1;
  transition: all 700ms ease;
}

#why-us .swiper-pagination {
  bottom: -5px !important;
}

#hero blockquote a {
  color: #bbb;
  cursor: pointer;
}
#hero blockquote a:hover {
  color: #fff;
}

.info-button {
  display: block;
  background: transparent !important;
  padding: 0 !important;
  color: var(--color-primary) !important;
}

i.bi.bi-info-circle-fill {
  margin-right: 5px;
}

.swiper-button-next,
.swiper-button-prev{
    visibility: hidden;
  }

.mobile-tabs-wrapper {
  display: none;
}

.ui-tooltip {
  width: 100% !important;
  max-width: 500px !important;
  white-space: pre-line;
}


@media (min-width: 356px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
}

@media (max-width:820px) {
  .md-width-100 {
    width: 100%;
  }
  .md-width-50 {
    width: 50%;
  }
  .md-d-block {
    display: block;
  }
  .img-width-100 {
    width: 100%;
  }
}

@media (max-width:576px) {
  .sm-width-100 {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .points-tabs {
    border-bottom: 0;
  }
  .points-tabs-wrapper .points-tabs, .points-tabs-2-wrapper .points-tabs {
    display: block;
  }
  .points-tabs li.active {
    border-bottom: 0;
  }
  #would-you-like img {
    width: 100%;
  }
  .hero .btn-walk {
    margin-left: 0;
  }
  .footer-contact {
    text-align: left !important;
  }
  .points-tabs-2-wrapper {
    visibility: hidden;
  }
  .show-sticky {
    visibility: visible;
  }

  blockquote ul li {
    margin-bottom: 10px;
  }

  .points-tabs-2-wrapper {
    display: none;
  }
  
  .points-tabs-wrapper {
    display: none;
  }
  .select-tabs {
    border: 1px solid #DBDBDB;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 15px 20px;
    margin: 0 auto;
    display: block;
    color: var(--color-secondary);
    width: 100%;
    max-width: 300px;
	background-color: #fff !important;
	background: #fff !important;
	appearance: none;
	-webkit-appearance: none;
  }

  .mobile-tabs-wrapper {
	display: block;
    padding-bottom: 0;
	padding-top: 40px;
  }

  .mobile-tabs-wrapper-parent {
    position: relative;
  }

  .mobile-tabs-wrapper  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
  }

  .mobile-tabs-wrapper i.bi.bi-chevron-down {
    position: absolute;
    top: 17px;
    right: 55px;
    overflow: auto;
    pointer-events: none;
  }

  .select-tabs:focus {
    outline: none;
  }

  .select-tabs option {
    background-color: #000;
  }

 .hero blockquote {
    display: none;
  }
 
  .page-index .hero {
    padding-top: 140px !important;
  }
 
  .page-index .hero .sub-heading {
    margin-bottom: 40px;
  }
  
  .call-to-action-2 {
    padding: 40px 0;
  }
  .call-to-action-2 h4 {
    font-size: 22px;
  }
  
  main {
    scroll-margin-top: 80px;	
  }
  
  a, button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .add-ons-details .trial {
    width: 100% !important;
    display: block;
    max-width: 100%;
    margin-bottom: 10px;
  }
 
 .add-ons-details .buy-now {
    width: 100% !important;
    display: block;
    max-width: 100%;
  }  
  
}


.trial-link {
  color: #86c02e !important;
  cursor: pointer !important;
  font-size: 20px !important;
  font-weight: 900;
  font-family: 'Montserrat';
}

.trial-link:hover {
  color: #fff !important;
  cursor: pointer !important;
}

#hero {
  background: #fff !important;
}

.hero:before {
  background: transparent !important;
}

.hero-title, h1 {
  font-size: 60px !important;
  font-weight: 700;
  /* font-family: 'Montserrat' !important; */
  font-family: 'Raleway';
  color: var(--color-secondary) !important;
}

.sub-heading {
  color: #666 !important;
}

#navbar ul li a {
  color: var(--color-secondary) !important;
  color: #fff !important;
  font-family: 'Raleway';
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
}

header, .header.sticked {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #fff;
}

#book-walkthrough {
  background-color: #86c02e !important;
  border-radius: 100px;
  margin-left: 20px;
}

#navbar #book-walkthrough a {
  color: #fff !important;
}
.hero .btn-walk {
  border: 2px solid #1b2f45;
  color: #1b2f45;
}

#clients-wrapper img {
  max-height: 40px !important;
  min-height: 40px !important;
  border-radius: 0 !important;
}




/* CENTERED HERO */

.hero-title {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
  font-family: 'Poppins' ,Sans-serif;
  font-size: 65px !important;
  font-weight: 700;
  line-height: 73px;
  letter-spacing: 0;
}

.hero-sub {
  font-family: 'Poppins';
  font-weight: 200;
  text-align: center;
}

#book-walkthrough {
  background-color: #08e1ae;
  background-image: linear-gradient(315deg, #08e1ae 0%, #98de5b 74%);
}

#book-walkthrough:hover {
  background-color: #08e1ae;
  background-image: linear-gradient(315deg, #98de5b 0%, #08e1ae 74%) !important;
}

#start-here-btn {
  background-color: #08e1ae;
  background-image: linear-gradient(315deg, #08e1ae 0%, #98de5b 74%) !important;
  border: none !important;
  color: #fff !important;
}

.sub-head {
  color: #666 !important;
max-width: 450px;
/* font-family: 'Poppins' !important; */
font-weight: 400;
letter-spacing: -.5px;
}

.sub-head span {
  color: #1b2f45 !important;
  font-weight: 600;
}

.svg-wrapper {
  position: relative;
}

.svg-wrapper svg {
  position: absolute;
  width: 400px;
  height: auto;
  top: -20px !important;
  right: 50px;
}

/* #hero {
  padding-top: 130px;
background-image: url(../img/lines-2.png);
} */

.hero:before {
  background-image: url(../img/lines-2.png) !important;
  background-size: contain !important;
  opacity: .8;
}

.sub-head {
  background-color: #fff;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
padding: 30px;
border-radius: 10px;
margin-bottom: 30px;
/* margin-top: 80px !important; */
}


#header {
  background: #1c4467 !important;
  z-index: 99999;
}


.client-image {
  max-width: 115px;
  width: 100%;
  filter: grayscale(100);
  opacity: .5;
  cursor: pointer;
}

.client-image:hover {
  filter: grayscale(0);
  opacity: 1;
}

.sub-head {
  max-width: 450px;
  width: 100%;
}

.quote {
  font-style: italic;
font-family: 'Raleway' !important;
/* font-family: 'Poppins'; */
font-weight: 300;
text-align: center;
max-width: 570px;
}

.quote::before {
  content: "“";
  font-family: 'Georgia';
  font-size: 30px;
}

.quote::after {
  content: "”";
  font-family: 'Georgia';
  font-size: 30px;
}


.mirus {
  background: #013766;
  padding: 5px;
}








/** CASE STUDY **/

.sub-head {
  max-width: 450px;
  width: 100%;
}

.case-section-with-bg {
  background-color: #f7f9fc;
  /* background-color: rgba(27, 47, 69, 0.53); */
}

.case-section-with-bg p {
  line-height: 30px;
    color: #999;
    font-family: 'Montserrat';
}

.case-section-with-bg h3, .feels-like-family h3 {
    color: #1b2f45;
    font-family: 'Montserrat';
    text-align: center;
    margin-bottom: 30px;
    font-size: 25px;
    font-weight: 600;
    position: relative;
}


.case-study-wrapper p {
  line-height: 30px;
}

.case-study-wrapper .bullet-list {
  font-family: 'Montserrat';
      color: #1b2f45;
    font-weight: 600 !important;
}

.case-study-wrapper .col-wrapper {
  height: 100px;
  width: 100px;
  background-color: rgba(24, 138, 236, 4%);
  border-radius: 100px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.case-study-wrapper .col-wrapper svg {
  max-width: 30px;
  width: 100%;
}

p.icon-title-heading {
    font-weight: 600;
    font-family: 'Montserrat';
    margin-top: 20px;
}

.icon-sub-heading {
    color: #666;
    font-family: 'Montserrat';
    text-align: left;
}

.col-parent {
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    min-height: 729px;
    background: #fff;
}

p.icon-title-heading-side {
    font-weight: 600;
    font-family: 'Montserrat';
    color: #1b2f45;
}

.measurable-impact-item {
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    /* margin: 20px; */
    /* min-height: 848px !important; */
}

.col-wrapper-left-align {
  background-color: rgba(24, 138, 236, 4%);
  border-radius: 100px;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  border: 2px dotted rgb(96 139 168);
}

.col-wrapper-left-align svg {
  margin: 0 auto;
  max-width: 40px;
}

.with-overlay {
  background-image: url('https://www.rapidbi.com.au/assets/img/texture.webp');
  position: relative;
  z-index: 9999;
}

.with-overlay::before {
  background: rgba(247, 249, 252, .6);
  position: absolute;
  content: "";
  inset: 0;
}

 .case-study-sub, .feels-like-family p {
  font-family: 'Montserrat';
  color: #666;
  line-height: 30px;
  padding: 40px;
}


.col-parent .icon-title-heading {
  color: #1b2f45;
}


.achs-logo-float {
  float: right;
  margin-top: 120px;
}

.case-main-heading {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
}

.shifting-focus {
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    background: #fff;
    max-width: 450px;
    margin: 0 auto;
}

.predictive {
  margin: 0 auto;
  max-width: 900px;
      background: rgb(246, 247, 248, 0.9);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    position: relative;
}

.predictive .svg-quote{
    position: absolute;
    left: 0;
    top: -30px;
}

.title-big {
    font-family: 'Montserrat';
    padding: 20px;
    position: absolute;
    top: -35px;
    font-weight: 700;
    font-size: 21px;
    background: #188AEC;
    color: #fff;
    border-radius: 10px;
    /* transform: translateX(40%); */
}

.position-center1 {
  transform: translateX(20%);
}

.position-center2 {
  transform: translateX(13%);
}

.position-center3 {
  left: 50%;
  transform: translateX(-50%)
}

.m-0-auto {
  margin: 0 auto;
}

.min-490 {
  min-height: 490px;
}

.max-w-590 {
  max-width: 590px;
  width: 100%;
}

.pattern-section {
  background-color: rgb(24, 138, 236, 0.9);
    background-image: url(https://www.achs.org.au/images/footer-pattern.png);
    background-position: bottom;
    background-repeat: repeat-x;
}

.arrow-80 {
  width: 80px;
  height: 80px;
}

.title-big-2 {
    font-family: 'Montserrat';
    padding: 20px;
    /* position: absolute; */
    top: -35px;
    font-weight: 700;
    font-size: 40px;
    /* background: #188AEC; */

    color: #fff;
    background-color: rgb(24, 138, 236, 0.9);

    /* color: ;
    background-color: rgb(24, 138, 236, 0.9); */


    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-width: 450px;
    text-align: center;
    /* transform: translateX(40%); */
}

.subheading-white {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 300;
}

.simon-img {
  max-width: 100px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hr-bottom {
border-bottom: 1px solid #eee;
}

.simon-title {
  font-family: 'Montserrat';
  font-weight: 700;
}

.feels-like-family {
  position: relative;
  color: #fff;
}

.feels-like-family-bg {
  background-image: url('https://prd-achs.imgix.net/getmedia/b58c7e2d-fe4c-4eea-a7b5-38a63d65756a/HERO-home.jpg');
  background-size: cover;
}

.feels-like-family-bg::after {
  content: "";
    background-color: rgb(24, 138, 236, 0.7);
    /* mix-blend-mode: color; */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.white-bg-heading {
    padding: 30px;
    z-index: 999;
    position: relative;
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 10px;
}

.max-500 {
  max-width: 500px;
}

.white-font {
  position: relative;
  color: #fff !important;
  z-index: 9999;
}

section.portfolio-details.add-ons-details.case-section-with-bg.with-overlay {
    padding-bottom: 0;
}

.col-parent {
  padding: 50px;
}

.view-testimonials {
  cursor: pointer;
}

.view-testimonials:hover {
  color: #666 !important;
}

.btn-get-started:hover {
  border-color: #85c324;
  box-shadow: rgba(149, 157, 165, 0.65) 0px 8px 24px !important;
  background-color: #fff !important;
}

#start-here-btn:hover {
  /* background-color: transparent !important;
  background-image: none !important; */
  box-shadow: rgba(149, 157, 165, 0.65) 0px 8px 24px !important;
  background-image: linear-gradient(315deg, #98de5b 0%, #08e1ae 74%) !important;
}

#navbar .dropdown > ul > li > a {
    color: #1b2f45 !important;
}

.hero:after {
  position: relative !important;
}

#hero {
  display: block !important;
}

.hero-cta a:first-child {
  margin-left: 0 !important;
}

@media (max-width: 1200px) { 
 #hero img, #hero .sub-head {
  float: none !important;
  margin: 0 auto !important;
 }
  .hero-cta {
  justify-content: center !important;
 }
 .hero-cta > a {
  margin-left: 0 !important;
  margin: 8px !important;
  margin-top: 20px !important;
 }
 #hero .swiper-button-prev, #hero .swiper-button-next {
  visibility: hidden;
 }
 .hero-cta a:nth-child(2) {
  margin-left: 0 !important;
  }
}