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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background: linear-gradient(to top, #09203f 20%, #4b6c86 80%);
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  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-primary-dark);
  color: #fff;
}

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

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

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

.header.sticked {
  background: rgba(27, 47, 69, 0.9);
  padding: 12px 0;
}

.header .logo img {
  max-height: 70px;
  margin-right: 10px;
}

@media (max-width: 1280px) {
  .header .logo img {
    max-height: 45px;
    margin-right: 3px;
  }
}

@media (max-width: 550px) {
  .header .logo img {
    max-height: 35px;
    margin-right: 3px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0px 20px 0px 80px;
    /* background: linear-gradient(90deg,rgba(255,255,255,0.0)  0%, rgba(255,255,255,0.15 ) 100%) */
  }

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

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 15px 45px;
    font-family: var(--font-default);
    font-size: 1.25em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: 0.3s;
    filter: drop-shadow(3px 3px 3px #666);
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: .95em;
    line-height: 0;
  }

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

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    color: #fff;
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

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

  .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: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.2s;
  }

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

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

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

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

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 1280px) {

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

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

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

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-default);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(63, 73, 83, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(30, 35, 40, 0.35);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: 6em;
  font-weight: 700;
  line-height: auto;
  padding: 0 25px;
}

#hero h2 em {
  font-style: normal;
  position: relative;
}

#hero h2 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 25px;
  background: rgba(var(--color-primary-rgb), 1);
  z-index: -1;
}

#hero h3 {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: 2.5em;
  font-weight: 300;
  margin: 2px 0px 0px 0px;
  padding: 0 30px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 25px;
  line-height: 0;
  width: auto;
  height: auto;
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  /* background: rgba(255, 255, 255, 0.3); */
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary-dark);
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  margin: 15px 0px 0px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: var(--color-primary-dark);
}

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

@media (max-width: 1400px) {
  #hero h2 {
    font-size: 4em;
  }

  #hero h2 em:after {
    bottom: 15px;
    height: 25px;
  }

  #hero h3 {
    font-size: 1.75em;
  }
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }

  #hero h2 {
    font-size: 3em;
  }

  #hero h2 em:after {
    bottom: 15px;
    height: 25px;
  }

  #hero h3 {
    font-size: 1.25em;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 95vh;
  }

  #hero .carousel-container {
    top: 0px;
  }

  #hero h2 {
    font-size: 2.2em;
    text-align: center;
  }

  #hero h2 em:after {
    bottom: 3px;
    height: 10px;
  }

  #hero h3 {
    font-size: 1.25em;
    font-weight: 400;
    text-align: center;
    margin: 4px 0px 0px 0px;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    display: none;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

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

.section-header {
  text-align: center;
  margin-bottom:25px;
}
.section-header h3 {
  color: var(--color-white);
  font-size: 3.25em;
  font-weight: 700;
}
.section-header h3 em {
  font-style: normal;
  position: relative;
}
.section-header h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.8);
  z-index: -1;
}
.section-header h4 {
  color: var(--color-white);
  font-size: 2.25em;
  font-weight: 500;
  margin: 35px 0px 0px 0px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: rgba(var(--color-white-rgb), 1);
}
.section-header p {
  margin: 0 auto;
  font-size: 1.15em;
  color: rgba(var(--color-white-rgb), 0.90);
}
@media (min-width: 1280px) {
  .section-header p {
    max-width: 82%;
  }
}
@media (max-width: 992px) {
  .section-header h3 {
    font-size: 2.75em;
    font-weight: 700;
  }
}

@media (max-width: 575px) {
  section {
    padding: 35px 0px;
  }

  .section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
    display: none;
  }
}

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

.breadcrumbs:before {
  content: "";
  background-color: rgba(27, 47, 69, 0.50);
  position: absolute;
  inset: 0;
  z-index:-50;
}

.breadcrumbs h2 {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: 5.25em;
  font-weight: 700;
  line-height: .95em;
}

.breadcrumbs h2 em {
  font-style: normal;
  position: relative;
}

.breadcrumbs h2 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 20px;
  background: rgba(var(--color-primary-rgb));
  z-index: -1;
}

.breadcrumbs h3 {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: 2.5em;
  font-weight: 300;
  margin: 30px 0px 0px 0px;
  z-index: 10;
}

@media (min-width: 1401px) {
  .breadcrumbs {
    height: 55vh;
  }
}

@media (max-width: 1400px) {
  .breadcrumbs {
    height: 75vh;
  }
  .breadcrumbs h2 {
    font-size: 3.8em;
    line-height: .85em;
  }
  .breadcrumbs h3 {
    font-size: 1.85em;
    margin: 30px 0px 0px 0px;
  }
}

@media (max-width: 992px) { 
  .breadcrumbs {
    height: 55vh;
  }
 .breadcrumbs h2 {
   padding-top:30px;
   font-size: 2.75em;
   line-height: .85em;
 }
 .breadcrumbs h3 {
   font-size: 1.45em;
   margin: 30px 0px 0px 0px;
 }
}

@media (max-width: 768px) { 
  .breadcrumbs {
    padding: 0 15px 0 0;
  }
   .breadcrumbs h2 {
     font-size: 1.75em;
     line-height: .95em;
   }
   .breadcrumbs h3 {
     font-size: 1em;
     margin: 30px 0px 0px 0px;
   }
  
}

@media (min-width: 1024px) {
  
}

@media (max-height: 500px) {
  
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {}

.about .text {
  margin-top: 15px;
}

.about-img {
  border: 2px solid rgba(var(--color-white-rgb), 0.25);
  box-shadow: 0 4px 16px rgba(var(--color-white-rgb), 0.1);
}

.about .about-img {
  position: relative;
  margin: 0px 0 0 0px;
}

.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}

.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

.about .company h4 ul {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.about .company h4 ul li {
  padding: 0px 15px 15px 0px;
  font-size: .9em;
  color: rgba(var(--color-white-rgb), 0.75);
}

.about .company h4 ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.company h4 {
  color: rgba(var(--color-white-rgb), 0.95);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 1.25em;
  line-height: 1.4em;
}
@media (max-width: 992px) {
  .company h3 {
    padding:10px;
    margin: 20px 0px 0px 20px;
  }
  .company .subhead {
    margin: 30px 0px 0px 30px;
  }
  .company .project-btn {
    margin: 30px 0px 0px 30px;
  }
  .company h4 {
    font-size: 1.1em;
    padding:10px;
    margin: 20px 0px 0px 20px;
  }
}

@media (max-width: 1400px) {
  .company h4 {    
    font-size: 1em;
  }
}

@media (max-width: 992px) {
 
}

@media (max-width: 768px) {
  
}

@media (min-width: 1024px) {
  
}

@media (max-height: 500px) {
  
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/

.left {
  padding-right: 30px;
}

.right {
  padding-left: 30px;
}

.member {
  margin-bottom: 40px;
}

.member img {
  padding: 0px 0px 15px 0px;
  min-width: 100%;
}

.member .team-bio ul {
  padding: 0px;
  color: #fff;
  list-style: none;
}

.member-info h4 {
  font-family: 'Open Sans', sans-serif;
  color: rgba(var(--color-white-rgb), 1);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding: 0px;
  margin: 0px 0px 5px 0px;
}

.member-info h6 {
  font-family: 'Open Sans', sans-serif;
  color: rgba(var(--color-white-rgb), 0.75);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  padding: 0px;
  margin-bottom: 15px;
}

.member-info .member-btn {
  color: var(--color-white);
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.member-info .member-btn:hover {
  background: var(--color-primary);
}

.team-bio {
  text-align: center;
}

.team-bio p {
  margin-top: 25px;
  text-align: left;
  font-size: .88em;
  hyphens: auto;
}

.team .team-bio a {
  display: inline;
  color: #f5f5f5;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 24px;
  font-weight: 500;
  padding-right: 25px;
  text-align: center;
  outline: none;
  cursor: pointer;
}

.team-bio i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.team-bio .icon-show {
  display: none;
}

.team-bio a.collapsed {
  color: #A9C1E4;
}

.team-bio a.collapsed:hover {
  color: #f5f5f5;
}

.team-bio a.collapsed .icon-show {
  display: inline-block;
}

.team-bio a.collapsed .icon-close {
  display: none;
}

/** Mobile **/
@media (max-width: 991px) {
  .team {
    margin-top: 40px;
  }

  .left {
    padding-right: 0px;
  }

  .right {
    padding-left: 0px;
  }

  .modal-content {
    /* margin-top:60px;*/
  }
}

.modal-content {
  background-color: #5c4b51;
  border-radius: 0px;
}

.modal-content .modal-header .modal-title {
  color: #fff;
}

.modal-content .modal-body {
  color: #fff;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url(http://kylearthur.com/tidy/assets/img/cd-icon-close.svg) center/1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
  z-index: 19999;
}

.modal-dialog-slideout {
  min-height: 100%;
  margin: 0 0 0 auto;
  background: #fff;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
  -webkit-transform: translate(100%, 0)scale(1);
  transform: translate(100%, 0)scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  display: flex;
  align-items: stretch;
  -webkit-box-align: stretch;
  height: 100%;
}

.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body {
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-dialog-slideout .modal-content {
  border: 0;
}

.modal-dialog-slideout .modal-header,
.modal-dialog-slideout .modal-footer {
  height: 69px;
  display: block;
}

.modal-dialog-slideout .modal-header h5 {
  float: left;
}

.modal-dialog-slideout .btn-close {
  float: right;
  padding: 1em 1em;
}

/*--------------------------------------------------------------
# Energy Solutions
--------------------------------------------------------------*/
.solution .project-btn {
  color: var(--color-white);
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}
.solution .project-btn:hover {
  background: var(--color-primary);
}
.solution .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 15px;
  margin: 25px;
  transition: all ease-in-out 0.4s;
  background: rgba(var(--color-white-rgb), 0.8);
  width: 100%;
}

.solution .icon-box .icon {
  margin-bottom: 10px;
}

.solution .icon-box .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.solution .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 28px;
}

.solution .icon-box h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.solution .icon-box p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  color: #333;
}

.solution .icon-box a  {
  color: var(--color-primary-dark);
}

.solution .icon-box a:hover  {
  color: var(--color-primary-light);
}

.solution .icon-box:hover {
  transform: translateY(-10px);
}

.solution .icon-box:hover h4 a {
  color: var(--color-primary);
}
.solution .economic .about-img {
  position: relative;
  margin: 0px 0px 0px 0px;
}

@media (max-width: 1400px) {
}

@media (max-width: 992px) { 
}

@media (max-width: 768px) { 
  .solution .economic {
    margin:-25px 0 0 0;
  }
  .solution .economic h4 {
    margin-bottom:5px;
  }  
  .solution .economic .learn {
    margin-bottom: 35px;
  }
}

@media (min-width: 1024px) {
  
}

@media (max-height: 500px) {
  
}

/*--------------------------------------------------------------
# projects Section
--------------------------------------------------------------*/
.company .project-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}
.company .project-btn:hover {
  background: var(--color-primary);
}
.company h3 {
  color: var(--color-white);
  font-size: 2.75em;
  font-weight: 700;
}
.company .subhead  {
  color: var(--color-primary-light);
  font-size: 1.25em;
  font-weight: 400;
  margin-top:-10px;
  padding:0px;
}
.project .about-img {
  position: relative;
  margin: 0;
}
.project2 .about-img {
  position: relative;
  margin: 0;
}
.company h4 {
  color: rgba(var(--color-white-rgb), 0.95);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 1.25em;
  line-height: 1.4em;
}
@media (max-width: 992px) {
  .company h4 {
    font-size: 1.1em;
    padding:10px;
    margin: 20px 0px 0px 20px;
  }
}
.projects .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}
.projects .nav-pills li + li {
  margin-left: 40px;
}
.projects .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}
.projects .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}
@media (max-width: 575px) {
  .projects .nav-link {
    font-size: 16px;
  }
}
.projects .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}
.projects .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: var(--color-primary);
    color: #fff;
    border-color: #373b3e;
}
.table>:not(caption)>*>* {
    padding: .3rem .3rem;
    /* background-color: var(--bs-table-bg); */
    border-bottom-width: 1px;
    /* box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); */
}
@media (max-width: 992px) {
  .table tr {
    font-size: .7em;
  }
}

.document-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  width:auto;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: -10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}
.document-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Documents
--------------------------------------------------------------*/
.documents {
  color: var(--color-white);
  font-size: 14px;
}
.documents .documents-content {
  padding: 60px 0 30px 0;
}
.documents .documents-content .documents-info {
  margin-bottom: 30px;
}
.documents .documents-content .documents-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.documents .documents-content .documents-info h3 span {
  color: var(--color-primary);
}
.documents .documents-content .documents-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}
.documents .documents-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.documents .documents-content h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 350px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}
.documents .documents-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-top:15px;
  margin-bottom: 3px;
}
.documents .documents-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}
.documents .documents-content .documents-links {
  margin-bottom: 30px;
}
.documents .documents-content .documents-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.documents .documents-content .documents-links ul i {
  padding-right: 10px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}
.documents .documents-content .documents-links ul li {
  padding: 10px 0px 5px 0px;
  display: flex;
  align-items: center;
}
.documents .documents-content .documents-links ul li:first-child {
  padding-top: 0;
}
.documents .documents-content .documents-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size:13px;
}
.documents .documents-content .documents-links ul a:hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news .posts-list article {
  background: rgba(var(--color-white-rgb), 0.9);
  box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius:15px;
}

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

.news .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.news .posts-list .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 0 0;
}

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

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

.news .posts-list .meta-top {
  margin-top: 20px;
  color: var(--color-secondary);
  font-size: 15px;
}

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

.news .posts-list .meta-top ul li {
  font-size: 14px;
}

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

.news .posts-list .meta-top i {
  font-size: 15px;
  margin-right: 6px;
  line-height: 0;
  color: rgba(var(--color-primary-rgb), 0.95);
}

.news .posts-list .content p {
  font-size: 15px;
  color: var(--color-secondary);
}

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

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

.news .posts-list .read-more a {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  margin-top: 10px;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.news .posts-list .read-more a:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

/*--------------------------------------------------------------
# Announcement
--------------------------------------------------------------*/
.announcement h3 {
  font-size: 2.75em;
  font-weight: 600;
  text-align: center;
  margin: 0 0 25px 0;
}
.announcement p {
  color: rgba(var(--color-white-rgb), 0.95);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 1.25em;
  line-height: 1.4em;
}
.announcement .text {
  padding-bottom: 5vh;
}

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

.contact {
  min-height: 41vh;
}
.contact .info {
  padding: 40px;
  border-radius:15px;
  background: rgba(var(--color-white-rgb), .8);
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}
.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}
.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}
.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}
.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-black);
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(var(--color-black-rgb), .75);
}
.contact .info-item .info-link {
  font-size: 14px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

/*--------------------------------------------------------------
# Specific Contact
--------------------------------------------------------------*/
.specific-contact {
}

.specific-contact .box {
  background: rgba(var(--color-white-rgb), .8);
  padding: 30px;
  margin: 0 0 25px 0;
  width: 100%;
  border-radius:15px;
  transition: all ease-in-out 0.4s;
}

.specific-contact .box:hover {
transform: translateY(-10px);
}

.specific-contact .box i {
  display: block;
  font-size: 30px;
  color: var(--color-primary);
  float: left;
}

.specific-contact .box p {
  padding: 50px 0 0 0;
  margin: 0;
  color: var(--color-default);
  font-size: 1.2em;
}

.specific-contact .box a {
  font-weight: 600;
  display: block;
  margin-top: 10px;
  font-size: 1em;
  transition: ease-in-out 0.3s;
}

@media (max-width: 768px) { 
  .specific-contact .box {
    padding: 30px;
    margin: 0 0 25px 0;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

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

.footer .copyright a{
  color: var(--color-white);
}

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