/*---------------------------------------------
# General
-----------------------------------------------*/
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #59b69d;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #2c5b4e;
  outline: none;
  text-decoration: none;
}

p {
  font-size: 18px;
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

::-moz-selection { /* Firefox */
  background: #7ac4b0;
}

::selection {
  background: #7ac4b0;
}

:root {
  scroll-behavior: smooth;
}

/*---------------------------------------------
# Back to top button
-----------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #59b69d;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.3s;
}

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

.back-to-top:hover {
  background: #2c5b4e;
  color: #fff;
}

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

/*---------------------------------------------
# Header
-----------------------------------------------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
  height: 60px;
}

#header .logo{
  display: flex;
  justify-items: center;
  justify-content: center;
}

#header .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
}

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

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


/*---------------------------------------------
# Navigation Menu
-----------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  text-align: center;
  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: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #59b69d;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #356d5e;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
}

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

.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: #283d50;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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: rgba(23, 35, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #004289;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #59b69d;
}

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

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

/*---------------------------------------------
# Hero Section
-----------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  background: url("../img/newHero.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 200px 0;
}

@media (max-width: 991px) {
  #hero {
    padding: 160px 0 60px 0;
  }
}

@media (max-width: 574px) {
  #hero {
    padding: 100px 0 20px 0;
  }
}

#hero .hero-img {
  width: 50%;
  float: right;
}

@media (max-width: 991px) {
  #hero .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}

#hero .hero-info {
  width: 50%;
  float: left;
}

@media (max-width: 991px) {
  #hero .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
}

#hero .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
}

#hero .hero-info h2 span {
  color: #74b5fc;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

#hero .hero-info .btn-get-started,
#hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero .hero-info .btn-get-started {
  background: #59b69d; 
  border: 2px solid #59b69d;
  color: #fff;
}

#hero .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero .hero-info .btn-services {
  border: 2px solid #fff;
}

#hero .hero-info .btn-services:hover {
  background: #59b69d;
  border-color: #59b69d;
  color: #fff;
}

/*---------------------------------------------
# Sections
-----------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/

.section-header .yourideas {
  margin-top: 60px;
  font-size: 36px;
  text-align: center;
  color: #283d50;
  font-weight: 500;
  position: relative;
}

.section-header  h3 span{
  font-size: 36px;
  text-align: center;
  color: #fc3735;
  font-weight: 500;
  position: relative;

  background: #159957;  /* fallback for old browsers */
  background: -webkit-linear-gradient(left, #59b69d, #155799, #59b69d);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(left, #59b69d, #155799, #59b69d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-duration: 7s;
  animation-name: animationgradienttitle;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}


/*---------------------------------------------
# Breadcrumbs
-----------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*---------------------------------------------
# About
-----------------------------------------------*/
.about .content {
  padding: 40px;
}

#about h2{
  font-size: 24px;
  font-weight: 700;
  color: #283d50;
}

.about h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

#about img{
  pointer-events: none;
}

@keyframes animationgradienttitle {
  0% {
      background-position: 0 1600px;
  }
  100% {
      background-position: 1600px 0;
  }
}
/*---------------------------------------------
# Services
-----------------------------------------------*/
.services{
  margin-bottom: 90px;
}

.services .services-intro{
  margin-top: 48px;
  margin-bottom: 48px;
}

.services .services-container{
  margin-left: 3%;
  margin-right: 3%;
}

.services .box {
  padding: 10px 52px;
  /* text-align: center; */
  height: 100%;
  /* border: solid #000; */
  /* background-color: #6c757d; */
}

.services .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.services h2{
  color: #444;
  text-align: center;
  font-size: 40px;
  margin: 64px auto;
}

.services .box h3 {
  font-size: 24px;
  color: #444;
  font-weight: 700;
  margin-bottom: 18px;
}

#services .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
  color:#444;
}

#services .icon{
  margin-bottom: 14px;
}

/*---------------------------------------------
# Products Section
-----------------------------------------------*/
#products {
  padding: 100px 0;

  background: #159957; 
  background: -webkit-linear-gradient(left, #59b69d, #3680ca, #59b69d); 
  background: linear-gradient(left, #59b69d, #3680ca, #59b69d);

  animation-duration: 10s;
  animation-name: animationgradienttitle;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;

  /* margin: 200px;
  border-radius: 20px; */
  
}

#products h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  position: relative;
}


#products .product-item {
  color: #444;
  padding: 32px;
  background: #fff;
  height: 100%;
  border-radius: 20px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */

  transition: all ease-in-out 0.3s;
}

#products .product-item:hover {
  transform: translateY(-20px);
}

#products .product-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

#products .product-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

#products .product-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

#products .product-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
}

#products .product-item p {
  color: #444;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
}

#products .product-item .readmore-products {
  margin-top: 15px;
  display: inline-block;
  color: #59b69d; 
}

#products .product-item .readmore-products:hover {
  color: #2C5B4E;
  transition: 0.3s;
}

#products .product-item:hover .icon:before {
  background: #59b69d /* #00b6a1;*/
}

#products .product-item:hover h3 {
  border-color: var(--color-primary);
}

#products .product-item-header {
  padding: 40px;
  color: #fff;
  height: 100%;
}

#products .product-item-header i {
  font-size: 32px;
}

/*---------------------------------------------
# Partners
-----------------------------------------------*/

#partners {
  padding: 50px 0;
}

#partners .section-header h2{
  color: #444;
  text-align: center;
  font-size: 36px;
  margin: 24px auto;
  font-weight: 600;
  padding-top: 10px;
}


#partners .swiper {
  padding: 24px 0;
/*  margin: 0 -84px 0 -84px;*/
}

#partners .swiper-slide img {
  transition: 0.3s;
  scale: 1.2;
}

#partners .swiper-slide img:hover {
  transform: scale(1.2);
}

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

#partners .swiper-pagination .swiper-pagination-bullet {
  width: 48px;
  height: 48px;
  opacity: 1;
}

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


/*---------------------------------------------
# Contact Section
-----------------------------------------------*/

.contact .gmaps iframe {
  border: 0;
  width: 100%;
  height: 400px;
}

.contact .section-title h2{
  margin-top: 50px;
  color: #444;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact .section-title{
  margin-bottom: 20px;
}

.contact .contact-container{
/*  justify-content: center;*/
}

.contact .info{
  padding-top: 40px;
  padding-left: 32px;
  padding-right: 32px;
  margin-bottom: 100px;
}

.contact .info i{
  font-size: 24px;
  color: #fff;
  color: #59b69d;
  float: left;
  width: 30px;
  height: 60px;
  display: flex;
  justify-content: center;
}

.contact .info h4 {
  padding: 0 0 0 48px;
  font-size: 22px;
  font-weight: 600;
/*  margin-bottom: 5px;*/
  color: #2a2c39;
}

.contact .info p {
  padding: 0 0 0 48px;
  margin-bottom: 0;
  font-weight: 100;
  font-size: 18px;
  color: #555974;

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #2C5B4E;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-img{
  max-width: 40%;
/*  position: absolute;*/
  position: relative;
}

#footer .footer-top {
  background: #59b69d;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#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 li {
  padding: 8px 0;
}

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

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

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

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
  font-size: 14px;
}

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

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}