body {
  font-family: var(--primary-font), sans-serif;
  color: var(--text-dark);
  font-size: 16px;
}

a {
  color: var(--color-2);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: var(--color-2-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--secondary-font), sans-serif;
  font-weight: 600;
}
h2 {
  color: var(--color-1);
}

h6, .h6 {
  font-weight: 600;
  text-transform: uppercase;
}

#hero blockquote{
  background-color: var(--color-2);
  border-left: 5px solid var(--color-2-light);
  color: var(--text-light);
}

#hero-interior blockquote {
  background-color: var(--color-2-light);
  border-left: 5px solid var(--color-2);
  color: var(--text-dark);
}

.subhead {
  font-size: 24px;
  line-height: 1.2;
}

:root {
  --text-light: #f8f8f8;
  --text-dark: #232323;

  --green-0: #fdffeb;
  --green-10: #f5febe;
  --green-20: #e7fd93;
  --green-30: #d6fb6c;
  --green-40: #c3f74c;
  --green-50: #b1f233;
  --green-60: #9fe920;
  --green-70: #8bd711;
  --green-80: #6aad07;
  --green-90: #406b02;
  --green-100: #1e3300;


  --turquoise-0: #ebfff7;
  --turquoise-10: #befee7;
  --turquoise-20: #93fdde;
  --turquoise-30: #6cfbd9;
  --turquoise-40: #4cf7d6;
  --turquoise-50: #33f2d4;
  --turquoise-60: #20e9cf;
  --turquoise-70: #11d7c1;
  --turquoise-80: #07ad9d;
  --turquoise-90: #026b62;
  --turquoise-100: #00332f;

  --purple-0: #ecebff;
  --purple-10: #c7befe;
  --purple-20: #a993fd;
  --purple-30: #916cfb;
  --purple-40: #804cf7;
  --purple-50: #7433f2;
  --purple-60: #6a20e9;
  --purple-70: #5e11d7;
  --purple-80: #4a07ad;
  --purple-90: #2d026b;
  --purple-100: #150033;

  --pink-0: #ffebf3;
  --pink-10: #febed5;
  --pink-20: #fd93b2;
  --pink-30: #fb6c8e;
  --pink-40: #f74c6e;
  --pink-50: #f23351;
  --pink-60: #e9203a;
  --pink-70: #d71128;
  --pink-80: #ad0717;
  --pink-90: #6b020b;
  --pink-100: #330004;

  --color-1: #232323;
  --color-1-hover: #353535;
  --color-1-light: #f2f2f2;
  --color-1-overlay: #232323cc;
  --color-2: var(--turquoise-90);
  --color-2-hover: var(--turquoise-80);
  --color-2-light: var(--turquoise-10);
  --color-2-overlay: #026b62cc;
  --color-3: #232323;
  --color-3-hover: #353535;
  --color-3-light: #f2f2f2;
  --color-3-overlay: #232323cc;
  --color-4: #232323;
  --color-4-light: #f2f2f2;
  --color-dark: var(--text-light);
  --color-light: var(--text-dark);
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 16px;
  --spacing-4: 32px;
  --spacing-5: 48px;
  --spacing-6: 64px;

  --gradient-angle: 135deg;

  --primary-font: 'Source Sans 3';
  --secondary-font: 'Source Serif 4';


}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-bottom: 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: var(--spacing-2) var(--spacing-3);
  font-size: 16px;
  font-family: var(--primary-font), sans-serif;
  color: var(--color-2);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: var(--spacing-1);
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--color-2-hover);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: var(--spacing-3);
  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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-2);
}

.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-3);
}

.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: var(--color-2);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--color-2);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-2);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--color-2-light);
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--color-2-light);
}

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

.navbar-mobile>li {
    position: absolute;
    top: 0;
    right: 40px;
}

.nav-link .btn-primary, .nav-link .btn-primary:hover {
  color: #ffffff;
}

.utility-nav {
  background-color: var(--color-2);
}
.utility-nav .container {
  justify-content: end;
}


/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-primary, #nav-btn {
  background-color: var(--color-2);
  border-color: var(--color-2);
  color: #ffffff;
}
.btn-primary:hover, #nav-btn:hover {
  background-color: var(--color-2-hover);
  border-color: var(--color-2-hover);
  color: var(--color-light);
}
.btn-inverse {
    background-color: white;
    color: var(--color-2);
}

.btn-link {
  color: var(--color-2);
}

.btn-link .btn-copy::after {
  position: relative;
  content: ' \2192';
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  text-decoration: none;
}

.btn-link:hover .btn-copy::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.btn-link:focus, .btn-link:hover {
  color: var(--color-2);
  text-decoration: none;
}

.btn-link > .btn-copy {
  margin-right: 0;
  margin-left: 0;
  transition: .25s;
  font-weight: 600;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none;
}

.btn-utility {
  border-radius: 0;
}
.btn-utility:hover {
  background-color: var(--color-2);
  color: white;
}

.btn-primary {
  position: relative;
  border: none;
  overflow: hidden;
  z-index: 1;
}
.btn-primary:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500%;
  height: 1000%;
  background: var(--color-2-light);
  z-index: -1;
  transform-origin: 0% 0%;
  transform: translateX(calc(20%)) translateY(10%) rotate(-45deg);
  transition: transform .3s;
}
.btn-primary:hover::after {
  transform: translateY(10%) translateX(-50px) rotate(-45deg);
}

/*--------------------------------------------------------------
# Containers
--------------------------------------------------------------*/
.container-fluid{max-width:1600px;}

.contain-left {
  margin-right: 0;
}
.contain-right {
  margin-left: 0;
}
.container-split {
  width: 585px;
}
#split-callout .image-callout {
  background: linear-gradient(45deg,var(--color-2-overlay), var(--color-2-overlay)), url('https://images.unsplash.com/photo-1600132806608-231446b2e7af?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1374&q=80') center center;background-size: cover;color: white;
}

#split-callout .image-callout h2{
  color: white;
}

@media screen and (min-width:800px) {
    .container-fluid {
        padding-left:64px;
        padding-right:64px;
    }
}

@media screen and (max-width:1140px) {
    section#split-callout {display:inline!important}
    .contain-left, .contain-right {
        margin:inherit;
    }
    .container-split {
      width: initial;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: var(--spacing-3);
  bottom: var(--spacing-3);
  z-index: 996;
  background: var(--color-2);
  width: var(--spacing-5);
  height: var(--spacing-5);
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-2-light);
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 16px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: var(--secondary-font), sans-serif;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #576971;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 0 0 var(--spacing-4);
}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 var(--spacing-3) 0 0;
  }
}

.header-social-links a {
  color: #7b909a;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: var(--spacing-2);
}

.header-social-links a:hover {
  color: var(--color-2-hover));
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero, #hero-interior {
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
  margin-top: 75px;
  padding: 60px 0;
  background: rgb(190,254,231);
  background: linear-gradient(135deg, rgba(190,254,231,1) 0%, rgba(190,254,231,1) 55%, rgba(235,255,247,1) 55%, rgba(235,255,247,1) 100%);
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  line-height: 56px;
  color: var(--color-3-light);
}

#hero h1, #hero-interior h1 {
    font-size: 72px;
    line-height: 1.1;
    padding-bottom: var(--spacing-2);
}

#hero h2 {
  color: var(--color-3-light);
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-3-light);
}

#hero .btn-get-started:hover {
  background: var(--color-2-light);
}

#hero .hero-img {
  text-align: center;
}

#hero .hero-img img {
  width: 100%;
}

#hero {
  min-height: calc(100vh - 75px);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero, #hero-interior {
    background: var(--color-2-light);
  }
}

.summary-split:first-child {
  border-right: 1px solid var(--color-1);
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 32px;
    line-height: 40px;
  }
  #hero h2 {
    font-size: 20px;
  }
  .summary-split:first-child {
    border-bottom: 1px solid var(--color-1);
    border-right: 0;
  }
}
.hero-short {
  padding: var(--spacing-3) 0!important;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f8f9;
}

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

.section-title h2 {
  margin-bottom: 20px;
  padding-bottom: 0;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 0;
  margin-top: 40px;
}

.about .container {
  background-color: #f7f8f9;
  padding: 60px 50px;
}

@media (max-width: 992px) {
  .about .container {
    padding: 30px;
  }
}

.about .content h3 {
  font-size: 32px;
  color: var(--color-2);
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #28a745;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-bottom: 40px;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 20px;
  transition: 0.3s;
  color: #364146;
  transition: 0.3s ease-in-out;
  border-radius: 0;
  border-left: 4px solid #fafbfb;
}

.features .nav-link h4 {
  font-size: 18px;
  transition: 0.3s ease-in-out;
  color: #576971;
}

.features .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.features .nav-link:hover {
  background: #fafbfb;
}

.features .nav-link:hover h4 {
  color: #364146;
}

.features .nav-link.active {
  border-radius: 0;
  border: 0;
  border-left: 4px solid var(--color-2);
  background: var(--color-2-light);
}

.features .nav-link.active h4 {
  color: var(--color-3);
}

.features .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.features .tab-content {
  text-align: right;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
  border-bottom: 3px solid #fff;
  width: 100%;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  width: 40px;
  margin: 0 auto;
}

.services .title {
  margin-bottom: 15px;
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 600;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-1 .icon i {
  color: var(--color-1);
}

.services .icon-box-1:hover {
  border-color: var(--color-1);
}

.services .icon-box-2 .icon i {
  color: var(--color-2);
}

.services .icon-box-2:hover {
  border-color: var(--color-2);
}

.services .icon-box-3 .icon i {
  color: var(--color-3);
}

.services .icon-box-3:hover {
  border-color: var(--color-3);
}

.services .icon-box-4 .icon i {
  color: var(--color-4);
}

.services .icon-box-4:hover {
  border-color: var(--color-4);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

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

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding-left: 10px;
  padding-right: 10px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #364146;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #364146;
  font-size: 14px;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--color-3);
  margin: 0 2px;
  font-size: 24px;
  display: inline-block;
  transition: 0.3s;
  background: #eaf8ff;
  border-radius: 50px;
  line-height: 0;
  padding: 6px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
  background: var(--color-3);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: 40px;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 40px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.alert-primary {
  color: var(--color-2);
  background-color: var(--color-2-light);
}
.alert-primary svg {
  fill: var(--color-2);
  width: 100px;
  height: 100px;
}

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

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

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

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

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(54, 65, 70, 0.08);
}

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

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

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

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

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

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

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
}

.cta h3 {
  color: #364146;
  font-size: 28px;
  
}

.cta p {
  color: #576971;
}

.cta .cta-btn {
  font-family: var(--primary-font), sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: var(--color-4);
}

.cta .cta-btn:hover {
  background: var(--color-dark);
}

@media (min-width: 1024px) {
  .cta {
    background-attachment: fixed;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

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

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

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d8dee1;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: var(--spacing-2);
}

.testimonials .testimonial-item > div {
  font-style: italic;
  margin: 0 var(--spacing-3);
  padding: var(--spacing-3);
  background: var(--color-1-light);
  position: relative;
  border-radius: var(--spacing-2);
  position: relative;
  z-index: 1;
}

.testimonial-item svg {margin-bottom:var(--spacing-2);}


.testimonials .swiper-pagination {
  margin-top: var(--spacing-3);
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: url("../img/team-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.team::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 9;
}

.team .container {
  position: relative;
  z-index: 10;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #364146;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.team .member:hover .member-info {
  max-height: 300px;
}

.team .member h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #364146;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5c1c6;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #627680;
}

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

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

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #eceff0;
  border-left: 1px solid #eceff0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eceff0;
  border-bottom: 1px solid #eceff0;
  overflow: hidden;
  background: #fff;
  height: 120px;
  padding: 40px;
}

.clients .client-logo img {
  max-width: 50%;
  filter: grayscale(100);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 2px solid #e9ecee;
}

.pricing h3 {
  padding: 20px 15px;
  font-size: 18px;
  font-weight: 300;
  color: #777777;
}

.pricing h4 {
  font-size: 36px;
  color: var(--color-3);
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: var(--color-3);
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--color-3);
  display: inline-block;
  padding: 8px 30px;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-family: var(--primary-font), sans-serif;
  text-transform: uppercase;
}

.pricing .featured {
  background: var(--color-3);
  border-color: var(--color-3);
}

.pricing .featured h3, .pricing .featured h4, .pricing .featured h4 span, .pricing .featured ul, .pricing .featured ul .na {
  color: #fff;
}

.pricing .featured .btn-buy {
  background: #fff;
  color: var(--color-3);
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--color-3);
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #e3e7e9;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: var(--color-3);
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  padding-left: 25px;
  cursor: pointer;
  color: #007ab7;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: var(--color-3);
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  border: 2px solid #e9ecee;
  border-radius: 4px;
}

.contact .info i {
  font-size: 20px;
  color: var(--color-3);
  float: left;
  width: 44px;
  height: 44px;
  background: #f2f4f5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  margin-bottom: 5px;
  color: #364146;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #627680;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--color-3);
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: var(--color-3);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  border: 2px solid #e9ecee;
  border-radius: 4px;
}

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type="submit"] {
  background: var(--color-3);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #1eb4ff;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f6f7;
  min-height: 40px;
  margin-top: 75px;
}

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

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: var(--color-1);
  font-size: 16px;
}

#footer .footer-top {
  padding-top: 60px;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--primary-font), sans-serif;
  color: #576971;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e9ecee;
  color: #8a9ca5;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer li {
  list-style-type: none;
}
#footer .btn-link {
  color: white;
}
#footer .btn-link .fa-circle {
  color: transparent;
}
#footer .btn-link:hover .fa-circle {
  color: #4d4d4d;
}


#footer .footer-top .social-links a:hover {
  background: var(--color-3);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  color: var(--color-2);
  position: relative;
  padding-bottom: var(--spacing-3);
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: var(--spacing-1);
  color: var(--color-3);
  font-size: 18px;
  line-height: 1;
  margin-left: -5px;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

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

#footer .footer-top .footer-links ul a:hover {
  color: var(--color-3);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #e3e7e9;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-3);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #007ab7;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  color: #364146;
}
#footer .btn-link:hover {
    color: var(--color-2-light);
}

.card{
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
  transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 0px 0px 0px 0px;
  cursor: pointer;
}

.card:hover{
  transform: scale(1.05);
  transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  background:var(--color-2-light);
  color: #232323;
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
.card-body p {
  font-weight: 300;
}

.blog-card > .row {
  margin-left: 0;
  margin-right: 0;
}

.project-card {
  height: 100%;
}
.project-card .card-img {
  max-height:200px;
  overflow:hidden;
}
.project-card img {
  width: 100%;
}

.accordion button {
  width: 100%;
  text-align: left;
}

.contact-card {padding: 8px 0;border-bottom: 1px solid var(--color-2);}
.contact-card:last-child {border-bottom:none;}

.background-2 {background-color: var(--color-2);}
.background-3 {background-color: var(--color-3);}

.project-section img {box-shadow: -8px -8px 0px var(--color-2);background-color: var(--color-4-light);}
.project-section blockquote {background-color: var(--turquoise-0);border-color: var(--color-2);margin-top: var(--spacing-4);}

.section-inverse {background-color:var(--color-2);color:white;}
.section-inverse a {color: var(--color-2-light);text-decoration: underline;}

html {scroll-behavior:smooth}

.blog-body img {width:100%;}