/**
* Template Name: Techie - v2.1.0
* Template URL: https://bootstrapmade.com/techie-free-skin-bootstrap-3/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/

- Blue darker - rgba(30,74,187) #1e4abb #1e4abb;
- Blue ligther - rgba(75,115,220) #4b74dc #007bfb;
- Yellow - rgba(246,194,62) #f6c23e
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


:root {
  --red: #C02323;
  --orange-dark: #DE542C;
  --orange: #EF7E32;
  --yellow-dark: #EE9A3A;
  --yellow: #EABD38;
  --yellow-light: #E7E34E;


  --gray-dark: #5a5a5a;
  --gray: #7f7f7f;


  --blue-dark: #176BA0;
  --blue: #19aade;
  --cyan: #1AC9E6;

  --green: #1DE4BD;


  --green-dark: #517238;
  --green-dark2: #568036;
  --green-light: #75B346;



  --violet: #7D3AC1;
  --magenta: #AF4BCE;
  --pink: #DB4CB2;
  --pink-light: #EB548C;
  --red-soft: #EA7369;
  --red-verysoft: #F0A58F;

  --text: #5a5a5a;


  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}





body {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--text);
}

a {
  color: #007bfb;
}

a:hover {
  color: #007bfb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}


/* Solid border */
hr.solid {
  border-top: 1px solid #dfe4e8;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 998;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--green-dark);
  color: #fff;
  transition: all 0.4s;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--green-dark);
  border-top-color: #e7e4fe;
  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: 10px 0;
  background: transparent;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(255,255,255, 1);
  padding: 0px 0;
  border-bottom: 1px solid #dfe4e8;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 60px;
}


/*
@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
  #header .logo {
    font-size: 28px;
  }
}*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--white);
  transition: 0.3s;
  font-size: 12px;
  font-weight: 600;
  padding: 0 3px;
  font-family: "SF Pro Text", sans-serif;
  text-transform: uppercase;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: var(--text);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--text);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: rgba(255,255,255, 1);
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}


.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 12px;
  text-transform: none;
  color: var(--text);
  text-transform: uppercase;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: var(--text);
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.get-started-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* login Button */
.login-btn {
  margin-left: 25px;
  color: #fff;
  border-radius: 5px;
  padding: 6px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: #f6c23e;
}

.login-btn:hover {
  border-color: #fff;
  color: #1e4abb;
  background: #fff;
}

@media (max-width: 992px) {
  .login-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}



/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 24px;
  z-index: 998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--text);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(255, 255, 255, 1);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: var(--text);
  text-transform: uppercase;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  border-bottom: 1px solid #E5E5E5;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--text);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

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

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}


/* 
.mobile-nav-active .mobile-nav-toggle i {
  color: var(--text);
}
*/




/* Default (transparent header) */
#header:not(.header-scrolled):not(.header-inner-pages) .logo a { color: #fff; }
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu a { color: #fff; font-size: 14px;}
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu > ul > li > a:before { background-color: #fff; }
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu a:hover,
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu .active > a,
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu li:hover > a { color: #fff; }


/* Only needed to beat the transparent-header rule */
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu .drop-down ul a { color: var(--text); }
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu .drop-down ul a:hover,
#header:not(.header-scrolled):not(.header-inner-pages) .nav-menu .drop-down ul .active > a { color: var(--text); }



/* Scrolled / inner pages (light header) */
#header.header-scrolled .logo a,
#header.header-inner-pages .logo a { color: var(--text); }

#header.header-scrolled .nav-menu a,
#header.header-inner-pages .nav-menu a { color: var(--text); }

#header.header-scrolled .nav-menu > ul > li > a:before,
#header.header-inner-pages .nav-menu > ul > li > a:before { background-color: var(--text); }



/* Logo box */
#header .logo{
  position: relative;
  display: inline-block;
  width: 300px;          /* default width */
  height: 60px;          /* match header height */
  line-height: 0;
  transition: width .25s ease;
}

/* Stack both images and center vertically */
#header .logo img{
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;           /* fill the box width */
  height: auto;
  max-height: 100%;
  transition: opacity .25s ease;
}


/* Hide scrolled logo by default */
#header .logo .logo-scrolled{ opacity: 0; }

/* On scroll / inner pages: shrink box and swap logos */
#header.header-scrolled .logo,
#header.header-inner-pages .logo{
  width: 170px;          /* requested scrolled width */
}

#header.header-scrolled .logo .logo-default,
#header.header-inner-pages .logo .logo-default{ opacity: 0; }

#header.header-scrolled .logo .logo-scrolled,
#header.header-inner-pages .logo .logo-scrolled{ opacity: 1; }


/* Mobile: logo always 170px (pre/post scroll) */
@media (max-width: 992px){
  #header .logo{
    width: 170px;          /* initial on mobile */
    height: 60px;          /* adjust to your mobile header height */
    transition: none;      /* avoid width animation on mobile */
  }

  /* still 170px when scrolled / inner pages */
  #header.header-scrolled .logo,
  #header.header-inner-pages .logo{
    width: 170px;
  }

  /* images already centered by your existing rules; just ensure they fill the box */
  #header .logo img{
    width: 100%;
    height: auto;
  }
}


/* Mobile header height variable */
@media (max-width: 992px){
  :root { --header-h-mobile: 60px; }                    /* default compact height */
  .is-home:not(.header-scrolled) { --header-h-mobile: 100px; } /* if home is taller at top */
  body.header-scrolled, body:not(.is-home) { --header-h-mobile: 60px; }

  /* Center the fixed toggle within the header height */
  .mobile-nav-toggle{
    position: fixed;
    right: 10px;
    top: calc(env(safe-area-inset-top, 0px) + (var(--header-h-mobile) - 44px) / 2);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    transform: none !important;
    z-index: 1000;
  }
}

/* Drive color from the button; the <i> inherits it */
.mobile-nav-toggle { color: #fff; }          /* white on load */
.mobile-nav-toggle i { color: currentColor; transition: color .2s ease; }

/* When scrolled: use your text color */
body.header-scrolled .mobile-nav-toggle { color: var(--text); }

/* Keep color when the menu is open (don’t flip to black) */
/* HOME at top: keep white when menu open */
body.is-home.mobile-nav-active:not(.header-scrolled) .mobile-nav-toggle { color: #fff !important; }

/* NON-HOME pages: keep text color when menu open */
body.mobile-nav-active:not(.is-home) .mobile-nav-toggle { color: var(--text) !important; }

/* Icon always inherits from the button */
.mobile-nav-toggle i { color: currentColor; }


/* HOME (index.html): white at top, text color when scrolled */
.is-home .mobile-nav-toggle { color: #fff; }
.is-home.header-scrolled .mobile-nav-toggle { color: var(--text); }

/* NON-HOME pages: always text color (at load and on scroll) */
body:not(.is-home) .mobile-nav-toggle { color: var(--text); }

/* When menu is open, do NOT override color */
body.mobile-nav-active .mobile-nav-toggle { color: inherit !important; }



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Base (fallback if image-set not supported) */
#hero{
  padding: 0;
  width: 100%;
  height: 100vh; /* consider 100dvh on mobile */
  background-image:
    linear-gradient(45deg, rgba(81,114,56,0) 0%, rgba(117,179,70,0) 100%),
    url("../img/hero-bg-1280.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Modern: use image-set with WebP only */
@supports (background-image: image-set(url("x.webp") 1x)) {

  /* Small / mobile */
  #hero{
    background-image:
      linear-gradient(45deg, rgba(81,114,56,0) 0%, rgba(117,179,70,0) 100%),
      image-set(
        url("../img/hero-bg-768.webp") 1x,
        url("../img/hero-bg-1280.webp") 2x
      );
  }

  /* ≥ 1200px */
  @media (min-width: 1200px){
    #hero{
      background-image:
        linear-gradient(45deg, rgba(81,114,56,0) 0%, rgba(117,179,70,0) 100%),
        image-set(
          url("../img/hero-bg-1280.webp") 1x,
          url("../img/hero-bg-1920.webp") 2x
        );
    }
  }

  /* ≥ 1600px */
  @media (min-width: 1600px){
    #hero{
      background-image:
        linear-gradient(45deg, rgba(81,114,56,0) 0%, rgba(117,179,70,0) 100%),
        image-set(
          url("../img/hero-bg-1920.webp") 1x,
          url("../img/hero-bg-2560.webp") 2x
        );
    }
  }

  /* ≥ 2200px */
  @media (min-width: 2200px){
    #hero{
      background-image:
        linear-gradient(45deg, rgba(81,114,56,0) 0%, rgba(117,179,70,0) 100%),
        image-set(
          url("../img/hero-bg-2560.webp") 1x,
          url("../img/hero-bg-3840.webp") 2x
        );
    }
  }
}

/* iOS/Safari smoother scrolling */
@media (max-width: 992px){
  #hero{ background-attachment: scroll; }
}


#hero .container, #hero .container-fluid {  
  padding-top: 84px;
}



#hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 80px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
}

#hero h2 {
  color: var(--white);
  font-size: 50px;
  line-height: 50px;
  font-weight: 500;
  margin-bottom: 32px;
}

#hero .btn-get-started {
  font-family: "SF Pro Text";
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--text);
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
}

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

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero .container, #hero .container-fluid {
    padding-top: 68px;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 100%;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
 #hero h1 {
    font-size: 39px;
    line-height: 54px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 100%;
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 100%;
    margin-top: 50px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}




/*--------------------------------------------------------------
# Tabs Navigation
--------------------------------------------------------------*/


.nav-tabs {
  border-bottom: 1px solid var(--green-light);
}

.nav-tabs a {
  color: var(--text);
}



.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: var(--green-light) var(--green-light) var(--green-light);
}


.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--green-light);
  background-color: transparent;
  border-color: var(--green-light) var(--green-light) #F4F4F4;
}

.tab-content p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
}

.tab-content ul {
  padding: 10px 0px 10px 20px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
}



.styled {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgba(220, 0, 0, 1);
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

.styled:hover {
    background-color: rgba(255, 0, 0, 1);
}

.styled:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
                inset 2px 2px 3px rgba(0, 0, 0, .6);
}


/*--------------------------------------------------------------
# Timeline    Roobert,sans-serif, Poppins
--------------------------------------------------------------*/




.timeline-item p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--text);

}

.timeline h2 {
  color: var(--text);

}

.footer-top h4 {
  color: var(--text);
}

.footer-top p {
  color: var(--text);
  font-weight: 400;
}

.timeline-item h5 {
  font-family: "Pacifico", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--green-light);

}

.timeline-item span {
  font-family: "Pacifico", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--green-dark);

}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

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

.section-bg1 {
  background-color: #F4F4F4;
}

.section-bg2 {
  background: linear-gradient(45deg, rgba(30,74,187, 0.9) 0%, rgba(75,115,220, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
}





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

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

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


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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green-dark);
  bottom: 0;
  left: calc(0% - 0px);
}

.section-titlec h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-titlec h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-titler h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-titler h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green);
  bottom: 0;
  right: calc(00% - 0px);
}

.section-titleb h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 5px;
  padding-bottom: 5px;
  position: relative;
}

.section-titleb h2::after {

}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

.section-titlec p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

.section-titler p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
}

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

.section-title-w h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #fff;
}

.section-title-w h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title-w p {
  margin-bottom: 0;
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 120px 0;
}


.about .content h3 {
  font-weight: 600;
  font-size: 32px;
  color: #2c4964;
}

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

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

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

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

.about .content .read-more {
  font-family: "SF Pro Text", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: linear-gradient(45deg, #f6c23e 0%, #f6c23e 100%);
  position: relative;
}

.about .content .read-more:hover {
  background: linear-gradient(180deg, #1e4abb 0%, #1e4abb 100%);
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}


/*--------------------------------------------------------------
# Divider
--------------------------------------------------------------*/
.linediv {
  padding: 0px 0px 0px 0px;
}




/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-family: "SF Pro Text", sans-serif;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 20px;
  font-family: "SF Pro Text", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/



.services .card{
   border:0px solid red;
 }



 .services .card-img-top {
 	opacity: 1;
 	-webkit-transition: .3s ease-in-out;
 	transition: .3s ease-in-out;
  border-radius: 1%;


 }


 .services .card-img-top:hover{
 opacity: 0.6;
  }


  .services .img-fluid {
  border-radius: 1%;
}

.services .card-footer {
  border-radius: 1%;
}









.services .icon-box {
  text-align: center;
  padding: 20px 20px 30px 20px;
  transition: all ease-in-out 0.3s;
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;

}

.services .icon-box2 {
  text-align: center;
  background-color: var(--green-dark);
  padding: 20px 20px 30px 20px;
  transition: all ease-in-out 0.3s;
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;

}


.services .tab-content p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
}

.services .icon-box2 p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
  color: #f5f5f5;
}

.services .icon-box .icon {
  margin: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 50px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box2 .icon i {
  font-size: 50px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  text-align: left;
}

.services .icon-box2 h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: #fff;
  text-align: left;
}

.services .icon-box h4 a {
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
}

.services .icon-box ul {
  padding: 10px 0px 0px 20px;

  color: var(--text);
  font-weight: 300;
  text-align: left;
  line-height: 24px;
  font-size: 30px;
  list-style-type: disc !important;

}

.services .icon-box ul li {
  display: list-item;

}

.services ul {
  padding: 10px 0px 0px 20px;

  color: var(--text);
  font-weight: 300;
  text-align: left;
  line-height: 26px;
  font-size: 18px;
  list-style-type: disc !important;

}

.services ul li {
  display: list-item;

}



.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}


.services .iconbox-neutral i {
  color: var(--green-light);
}

.services .iconbox-neutral:hover .icon i {
  color: #f5f5f5;
}


.services .iconbox-green i {
  color: var(--green-dark);
}

.services .iconbox-green:hover .icon i {
  color: var(--green-light);
}




.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}


/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal-header h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0px 0px 0px 0px;
  color: var(--text);
}

.modal-header a {
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  margin: 0px 0px 0px 0px;
}


/*--------------------------------------------------------------
# blog
--------------------------------------------------------------*/
.blog h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 50px 0 5px 0px;
}

.blog i {
  font-size: 48px;
  float: left;
  color: #1e4abb;
}


.blog ul {
  font-size: 16px;
  color: rgb(52,56,59);
  font-weight: 300;
  margin-left: 0px;
}


.blog p {
  font-size: 16px;
  color: rgb(52,56,59);
  font-weight: 300;
  margin-left: 0px;
}


/*--------------------------------------------------------------
#
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: var(--green-dark);
}

.features .icon-box p {
  font-size: 16px;
  font-weight: 300;
  margin-left: 60px;
}


.features .icon-box-w h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #f6c23e;;
}

.features .icon-box-w i {
  font-size: 48px;
  float: left;
  color: #fff;
}

.features .icon-box-w p {
  font-size: 15px;
  color: #f2f2f2;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
}

.features ul {
  color: var(--text);
  font-weight: 300;
  text-align: left;
  line-height: 1.5;
  font-size: 18px;
  margin-bottom:0px;
}

.features ul li {
  padding-bottom: 15px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
  background:##FBFCFD;
}

.testimonials .section-title h2, .faq .section-title p {
  color: ##FBFCFD;
}

.testimonials .section-title h2::after {
  background: var(--green-dark);
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 5%;
  margin: -40px 0 0 40px;
  position: relative;
  background: #FBFCFD;
  z-index: 2;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 -10px 45px;
  color: var(--text);
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0 0 0 45px;
}

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

.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: 10px;
}

.testimonials .testimonial-item p {
  font-style: "SF Pro Text";
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: ##FBFCFD;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #6b6b6b !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

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

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

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-family: "SF Pro Text", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #1e4abb;
}

.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(30,74,187, 0.8);
  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: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

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

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

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

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

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

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: calc(50% - 50px);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 30px;
  color: var(--text);
  font-weight: 600;
  font-family: "SF Pro Text", sans-serif;
  margin: 30px 0px 20px 0px;
}

.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: var(--text);
  font-weight: 300;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
}

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

.pricing ul i {
  color: #1e4abb;
  font-size: 18px;
  padding-right: 4px;
}

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

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

.pricing .btn-buy {
  font-family: "SF Pro Text";
  background: var(--green);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid var(--green);
  padding: 10px 24px;
  color: var(--text);
  transition: 0.4s;
  border-radius: 5px;
}

.pricing .btn-buy:hover {
  background: #fff;
}

.pricing .featured h3 {
  color: #fff;
  font-size: 20px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  font-weight: 500;
}

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

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: #FBFCFD;
}

.faq .section-title h2, .faq .section-title p {
  color: #5a5a5a;
}

.faq .section-title h2::after {
  background: var(--green-dark);
}

.faq .faq-list {
  padding: 0 10px;
}

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

.faq .faq-list li + li {
  margin-top: 0px;
}

.faq .faq-list li {
  padding: 30px;
  background: var(--green-dark);
  /*border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(255, 255, 255, 0.1);*/
  border: 0;
  border-bottom: 1px solid var(--green-dark2);
  position: relative;
}

.faq .faq-list-clean  ul {
  padding: 10px 0px 0px 20px;

  color: #F4F4F4;
  font-weight: 300;
  text-align: left;
  line-height: 24px;
  font-size: 16px;
  list-style-type: disc !important;

}

.faq .faq-list-clean li {
  display: list-item;

}



.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "SF Pro Text", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  padding: 0 30px;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--green-light);
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  color: var(--green-light);
  right: 0;
  top: 0;
}

.faq .faq-list p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin-bottom: 0;
  padding: 20px 0 0 0;
  color: #F4F4F4;

}

.faq .faq-list br {
  display: block; /* makes it have a width */
  content: ""; /* clears default height */
  margin-top: 10px; /* change this to whatever height you want it */
}

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

.faq .faq-list a {
  color: #F4F4F4;
}

.faq .faq-list i {
  color: var(--green-light);
}


.faq .faq-list a.collapsed:hover {
  color: #F4F4F4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 15px 15px 15px 15px;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: var(--green-dark);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.php-email-form {
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.no-shadow {
  box-shadow: 0 0 0 0;
  padding: 30px;
  background: #fff;
}

.php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

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

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

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

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

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

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

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

.php-email-form input {
  padding: 20px 15px;
}

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

.php-email-form button[type="submit"] {
  background: var(--green-dark);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid var(--green-dark);
  padding: 10px 24px;
  color: white;
  transition: 0.4s;
  border-radius: 5px;
}




.php-email-form button[type="submit"]:hover {
  background: #fff;
  color: var(--text);
}

@-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: #f2f6f9;
  min-height: 40px;
  margin-top: 68px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

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

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

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

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 30px 0 60px 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #1e4abb !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

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

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

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

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

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  border-top: 1px solid #dfe4e8;
  color: var(--text);
  font-size: 14px;
  background: linear-gradient(45deg, rgba(255,255,255, 0.9) 0%, rgba(255,255,255, 0.9) 100%);
  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "SF Pro Text", sans-serif;
}

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
}

#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: var(--text);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

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

#footer .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: #1e4abb;
  color: var(--text);
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#footer .copyright-wrap {
  border-top: 1px solid #dfe4e8;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--text);
}

#footer .credits a {
  color: var(--text);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-dark);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--green-light);
  text-decoration: none;
}



/*! CSS Used from: https://landkit.goodthemes.co/assets/libs/flickity-fade/flickity-fade.css */
.flickity-enabled.is-fade .flickity-slider > *{pointer-events:none;z-index:0;}
.flickity-enabled.is-fade .flickity-slider > .is-selected{pointer-events:auto;z-index:1;}
/*! CSS Used from: https://landkit.goodthemes.co/assets/libs/flickity/dist/flickity.min.css */
.flickity-enabled{position:relative;}
.flickity-enabled:focus{outline:0;}
.flickity-viewport{overflow:hidden;position:relative;height:100%;}
.flickity-slider{position:absolute;width:100%;height:100%;}
.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab;}
.flickity-button{position:absolute;background:hsla(0,0%,100%,.75);border:none;color:#333;}
.flickity-button:hover{background:#fff;cursor:pointer;}
.flickity-button:focus{outline:0;box-shadow:0 0 0 5px #19f;}
.flickity-button:active{opacity:.6;}
.flickity-button:disabled{opacity:.3;cursor:auto;pointer-events:none;}
.flickity-button-icon{fill:currentColor;}
.flickity-prev-next-button{top:50%;width:44px;height:44px;border-radius:50%;transform:translateY(-50%);}
.flickity-prev-next-button.previous{left:10px;}
.flickity-prev-next-button.next{right:10px;}
.flickity-prev-next-button .flickity-button-icon{position:absolute;left:20%;top:20%;width:60%;height:60%;}
/*! CSS Used from: https://landkit.goodthemes.co/assets/css/theme.min.css */
*,::after,::before{box-sizing:border-box;}
footer{display:block;}
p{margin-top:0;margin-bottom:1rem;}
blockquote{margin:0 0 1rem;}
a{color:#335eea;text-decoration:none;background-color:transparent;}


/*--------------------------------------------------------------
# a:hover{color:#133bbd;text-decoration:underline;}
--------------------------------------------------------------*/




img{vertical-align:middle;border-style:none;}
svg{overflow:hidden;vertical-align:middle;}
button{border-radius:0;}
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color;}
button{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;}
button{overflow:visible;}
button{text-transform:none;}
[type=button],button{-webkit-appearance:button;}
[type=button]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none;}
.h6{margin-bottom:.5rem;font-weight:400;line-height:1;}
.h6{font-size:.75rem;}
.blockquote{margin-bottom:1rem;font-size:1.25rem;}
.blockquote-footer{display:block;font-size:.75rem;color:#869ab8;}
.blockquote-footer::before{content:"\2014\00A0";}
.img-fluid{max-width:100%;height:auto;}
.row{display:-webkit-box;display:flex;flex-wrap:wrap;margin-right:-20px;margin-left:-20px;}
.no-gutters{margin-right:0;margin-left:0;}
.no-gutters>[class*=col-]{padding-right:0;padding-left:0;}
.col-12,.col-6,.col-lg-5,.col-md-6,.col-md-7,.col-sm-4{position:relative;width:100%;padding-right:20px;padding-left:20px;}
.col-6{-webkit-box-flex:0;flex:0 0 50%;max-width:50%;}
.col-12{-webkit-box-flex:0;flex:0 0 100%;max-width:100%;}
@media (min-width:576px){
.col-sm-4{-webkit-box-flex:0;flex:0 0 33.33333%;max-width:33.33333%;}
}


@media (min-width:768px){
.col-md-6{-webkit-box-flex:0;flex:0 0 50%;max-width:50%;}
.col-md-7{-webkit-box-flex:0;flex:0 0 58.33333%;max-width:58.33333%;}
}
@media (min-width:992px){
.col-lg-5{-webkit-box-flex:0;flex:0 0 41.66667%;max-width:41.66667%;}




}
.card{position:relative;display:-webkit-box;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:0 solid #f1f4f8;border-radius:.375rem;}


/*--------------------------------------------------------------
# <.d-none{display:none!important;}>
--------------------------------------------------------------*/



@media (min-width:768px)


{
.d-md-none{display:none!important;}
.d-md-block{display:block!important;}
}
.justify-content-center{-webkit-box-pack:center!important;justify-content:center!important;}
.w-100{width:100%!important;}
.mb-0{margin-bottom:0!important;}
.mb-5{margin-bottom:1.5rem!important;}
.mb-6{margin-bottom:2rem!important;}
@media (min-width:768px){
.mb-md-7{margin-bottom:2.5rem!important;}
}
.text-center{text-align:center;!important;}
.text-uppercase{text-transform:uppercase!important;}
.text-white{color:#fff!important;}
.text-white{color:#fff!important;}
.invisible{visibility:hidden!important;}
@media print{
*,::after,::before{text-shadow:none!important;box-shadow:none!important;}
a:not(.btn){text-decoration:underline;}
blockquote{border:1px solid #abbcd5;page-break-inside:avoid;}
img{page-break-inside:avoid;}
p{orphans:3;widows:3;}
}
.card{position:relative;width:100%;}


.card-img-left{border-radius:.375rem .375rem 0 0;}
@media (min-width:768px){
.card-img-left{border-radius:.375rem 0 0 .375rem;}
}
@media (min-width:768px){
.card-img-slider{height:100%;width:100%;}
.card-img-slider *{height:inherit!important;width:inherit!important;}
}
.img-fluid>svg{max-width:inherit;height:inherit;}
.h6{line-height:1.55;}
.h6.text-uppercase{letter-spacing:.08em;}
.blockquote-footer::before{display:none;}
.bg-cover{background:no-repeat center center/cover;}
@media (min-width:768px){
.position-md-static{position:static!important;}
}
.shadow-light-lg{box-shadow:0 1.5rem 4rem rgba(22,28,45,.05)!important;}
.flickity-button{display:-webkit-box;display:flex;-webkit-box-align:center;align-items:center;-webkit-box-pack:center;justify-content:center;width:calc(1.6em + 1.625rem + 2px);height:calc(1.6em + 1.625rem + 2px);background-color:#335eea;box-shadow:0 .5rem 1.5rem rgba(22,28,45,.05);color:#fff;}
.flickity-button::after,.flickity-button::before{font-family:Feather;}
.flickity-button:focus,.flickity-button:hover{background-color:#335eea;box-shadow:0 .5rem 1.5rem rgba(22,28,45,.1);}
.flickity-button.previous{left:0;-webkit-transform:translate(calc(-50% + 10px),-50%);transform:translate(calc(-50% + 10px),-50%);}
@media (min-width:768px){
.flickity-button.previous{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);}
}
.flickity-button.previous::before{content:"\2770";}
.flickity-button.next{right:0;-webkit-transform:translate(calc(50% - 10px),-50%);transform:translate(calc(50% - 10px),-50%);}
@media (min-width:768px){
.flickity-button.next{-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);}
}
.flickity-button.next::before{content:"\2771";}
.flickity-button-icon{display:none;}
[data-flickity*='"adaptiveHeight": true'] .flickity-viewport{-webkit-transition:all .5s ease;transition:all .5s ease;}
.shape{position:absolute;pointer-events:none;}
.shape>*{display:block;}
.shape:not([class*=shape-blur]){overflow:hidden;}
.shape:not([class*=shape-blur])>*{-webkit-transform:scale(2);transform:scale(2);}
@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){
.shape>svg{display:none;}
}
.shape-right{top:0;right:0;bottom:0;left:0;}
.shape-right>*{position:inherit;top:inherit;bottom:inherit;right:inherit;-webkit-transform-origin:center left;transform-origin:center left;}
.shape-fluid-y>*{width:auto;height:100%;}
/*! CSS Used fontfaces */
@font-face{font-family:'Feather';src:url('https://landkit.goodthemes.co/assets/fonts/Feather/fonts/Feather.ttf?sdxovp') format('truetype'),     url('https://landkit.goodthemes.co/assets/fonts/Feather/fonts/Feather.woff?sdxovp') format('woff'),     url('https://landkit.goodthemes.co/assets/fonts/Feather/fonts/Feather.svg?sdxovp#Feather') format('svg');font-weight:normal;font-style:normal;}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: var(--green-dark);
  border: none;
  color: #fbfbfb;
}

.flickity-button:hover {
  background: var(--green-light);
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 0px; }
.flickity-prev-next-button.next { right: 0px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.bg-white {
    color: var(--almost-black);
}
