/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  color-scheme: dark;
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  outline: none;
  text-decoration: none;
}

.container {
  width: 80%;
}

h3 {
  color: #C4C4C4;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 40px;
}

h1 {
  color: #000000;
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

@media (max-width: 576px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 130px;
  transition: all 0.5s;
  z-index: 997;
  background-color: rgba(0, 0, 0, 0);
}

#header.header-scrolled {
  height: 100px;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.15);
  background-color: rgb(0, 0, 0);
}



#header #logo img {
  padding: 0;
  height: 50px;
}

@media (max-width: 768px) {
  #header {
    height: 130px;
  }

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

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

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

.navbar a p {
  font-weight: 200;
  margin-bottom: -6px;
}

.navbar a button {
  align-items: center;
  background-color: #4CB2AE;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  text-transform: uppercase;
  justify-content: center;
  max-width: 480px;
  min-height: 38px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: 15px;
  text-align: center;
  font-weight: bold;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.navbar a button:hover,
.navbar a button:focus { 
  background-color: #008397;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: rgb(255, 255, 255);
}

@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(60, 56, 56, 0.9);
  transition: 0.4s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  text-align: center;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: rgb(0, 0, 0);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a button {
  margin-top: 15px;
  margin-left: 0px;
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  padding: 0;
}

#about .about-content {
  position: absolute;
  margin-top: 290px;
  width: 550px;
}

#about .about-content img {
  height: 90px;
}

#about .about-content h1 {
  color: #ffffff;
  font-weight: bold;
  font-size: 70px;
}

#about .about-content p {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
  display: block;
}

#particles-js{
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#about .about-content button {
  align-items: center;
  background-color: #4CB2AE;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  justify-content: center;
  max-height: 50px;
  min-height: 50px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

#about .about-content button:hover,
#about .about-content button:focus { 
  background-color: #008397;
}

@media (max-width: 767px) {
  #about .about-content {
    margin-top: 50%;
    width: 55%;
  }

  #about .about-content img {
    height: 50px;
  }

  #about .about-content p {
    font-size: 16px;
    line-height: 35px;
    width: 80%;
  }

  #about .about-content button {
    font-size: 14px;
    min-height: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }
  #about .about-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 420px) {
  #about .about-content p {
    width: 100%;
  }
  #about .about-content h1 {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Strategy Section
--------------------------------------------------------------*/
#strategy {
  padding: 100px 0 180px 0;
  background-color: #F8F8F8;
}

#strategy .content img {
  width: auto;
  height: 12px;
}

#strategy .content h2 {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  padding-top: 5px;
}

#strategy .content .row1 {
  color: #4CB2AE
}

#strategy .content .row2 {
  color:#2B969F
}

#strategy .content .row3 {
  color: #008397
}

#strategy .content p {
  line-height: 26px;
  color: black;
  width: 90%;
}

@media (max-width: 992px) {
  #strategy .content p {
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  #strategy {
    padding-bottom: 20px;
  }
  #strategy .row {
    padding-top: 10px;
  }

  #strategy .content p {
    padding-bottom: 50px;
    font-size: 14px;
  }
  #strategy .content h2 {
    font-size: 23px;
  }
}

/*--------------------------------------------------------------
# Processes Section
--------------------------------------------------------------*/
#processes {
  padding: 100px 0 100px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

#processes:after {
  z-index: -1;
  position: absolute;
  top: 64%;
  height: 1px;
  background:#C4C4C4;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 21%, #C4C4C4 21%, #C4C4C4 100%);
  content: "";
  width: 100%;
}

#processes h1 {
  padding-bottom: 100px;
}

#processes p {
  text-align: center;
  margin: 0px 35% 0px 0px;
  font-size: 22px;
  font-weight: bold;
}

#processes .row1 {
  color:#4CB2AE;
}

#processes .row2 {
  color:#2B969F;
}

#processes .row3 {
  color:#218890;
}

#processes .row4 {
  color:#008397;
}

#processes .box {
  z-index: 999;
  margin: 0 auto;
  background: #fff;
  width: 150px;
  padding-bottom: 7%;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0px 13px 16px rgba(0, 0, 0, 0.1);
  border-radius: 40px 0px;
  transition: 0.5s;
}

#processes .box:hover {
  box-shadow: 0px 20px 26px rgba(0, 0, 0, 0.264);
  transition: 0.5s;
}

.box #static, .box:hover #animated {
  display: inline;
}

.box #animated, .box:hover #static {
  display: none;
}

#processes .item {
  padding-bottom: 60px;
}

#processes .box img {
  margin: 0 auto;
  width: 40%;
  padding-top: 20%;
  padding-bottom: 10px;
}

#processes .box h2 {
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991.5px) {
  #processes:after {
    visibility: hidden;
  }
  .item[data-aos="fade-right"] {
    transform: translateY(100px);
  }
  #processes .box img{
    padding-top: 30px;
  }
  #processes h1 {
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  #processes p {
    margin-left: 10%;
    font-size: 18px;
  }
  #processes .box {
    width: 130px;
    padding-bottom: 6%;
  }
}

/*--------------------------------------------------------------
# Areas Section
--------------------------------------------------------------*/
#areas {
  padding: 100px 0 150px 0;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 29%, #F8F8F8 29%, #F8F8F8 100%);
}

#areas .row h1 {
  padding-top: 60px;
  font-size: 50px;
}

#areas .row a button {
  position: absolute;
  align-items: center;
  background-color: #4CB2AE;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  text-transform: uppercase;
  justify-content: center;
  max-width: 480px;
  min-height: 60px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  font-weight: bold;
  touch-action: manipulation;
  margin-top: -100px;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

#areas .row a button:hover,
#areas .row a button:focus { 
  background-color: #008397;
}

#areas .row img {
  width: 100%;
  vertical-align: middle;
}

#areas .row span {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  vertical-align: middle;
  padding-left: 10px;
}

#areas .row1, #areas .row2 {
  padding-bottom: 20px;
}

#areas .row1 span {
  color: #4CB2AE
}

#areas .row2 span {
  color:#2B969F
}

#areas .row3 span {
  color: #008397
}

@media (max-width: 1400px) {
  #areas .row a button {
    margin-top: -30px;
  }
}

@media (max-width: 1140px) {
  #areas .row h1 {
    font-size: 40px;
    padding-top: 20px;
  }
  #areas .row a button {
    min-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
    margin-top: -50px;
  }
}

@media (max-width: 991.5px) {
  #areas {
    padding-bottom: 100px;
  }
  #areas h3 {
    padding-bottom: 10px;
  }
  #areas .row h1 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  #areas .row4 {
    padding-bottom: 100px;
  }
  #areas .row img {
    width: 70%;
    vertical-align: middle;
  }
  #areas .row a button {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  #areas .row {
    padding-top: 10px;
  }
  #areas .content p {
    padding-bottom: 50px;
  }
  #areas .row a button {
    margin-top: 50px;
  }
  #areas .row h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  #areas .row h1 {
    font-size: 28px;
  }
  #areas .row a button {
    min-height: 8vw;
    padding-left: 4vw;
    padding-right: 4vw;
    font-size: 2vw;
    margin-top: 60px;
  }
  #areas .row img {
    width: 80%;
    vertical-align: middle;
  }
}

@media (max-width: 450px) {
  #areas .row img {
    width: 90%;
    vertical-align: middle;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
#team {
  padding: 100px 0 100px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}

#team h1 {
  padding-bottom: 100px;
}

.icons-mobile {
  display: none;
}

.icons, .icons-mobile {
  text-align: right;
  margin-left: -7%;
}

#team .row .icons i, #team .row .icons-mobile i {
  background-color:#ffffff;
  color: #000000;
  box-shadow: -1px 3px 10px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}

#team .row .icons i:hover, #team .row .icons-mobile i:hover {
  cursor: pointer;
  color: #ffffff;
  background-color:#4CB2AE;
  box-shadow: -2px 4px 11px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}

.icons i.fa, .icons-mobile i.fa {
  font-size: 13px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  background: #666;
  color: #fff;
  border-radius: 15px;
}

.icons i.fa-angle-left, .icons-mobile i.fa-angle-left {
  margin-right: 10px;
}

#team .swiper {
  padding: 30px 0px 30px 0px;
}

#team .box {
  border-radius: 40px 0px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 7px 7px 15px 10px rgba(83, 83, 83, 0.15);
  border-radius: 40px 0px;
  width: 70%;
  height: 90%;
  margin: 0 auto;
  padding: 40px 20px 40px 60px;
}

#team .box a {
  color: #000;
}

#team .box a:hover {
  color: #0077B5;
}

#team .box .fab{
  position: absolute;
  margin-left: 25%;
  margin-top: -7%;
}

#team .box img{
  width: 20%;
  position: absolute;
  margin-left: -20%;
}

#team .box h4{
  text-align: left;
  font-size: 1.3vw;
  font-weight: bold;
}

#team .box h4 span{
  font-weight: normal;
  font-size: 0.8vw;
}

#team .box p {
  font-size: 0.9vw;
  text-align: left;
}

@media (max-width: 1150px) {
  #team .box img{
    width: 25%;
    margin-left: -24%;
  }
}

@media (max-width: 991.2px) {
  #team .box .fab{
    margin-top: -6%;
    margin-left: 30%;
  }
  .icons-mobile {
    display:block;
  }
  .icons {
    display: none;
  }
  #team .box img{
    width: 20%;
    margin-left: -20%;
    margin-top: -2%;
  }
  #team .box h4{
    font-size: 2vw;
    font-weight: bold;
  }
  #team h1{
    padding-bottom: 60px;
  }
  #team .box h4 span{
    font-weight: normal;
    font-size: 1vw;
  }
  
  #team .box p {
    font-size: 1.3vw;
  }
  #team .box {
    padding: 40px 80px;
  }
  .icons-mobile {
    margin-left: -15%;
  }
}

@media (max-width: 767px) {
  #team .box {
    padding-left: 80px;
  }
  #team .box img {
    margin-left: -20%;
  }
  #team .box h4{
    font-size: 2vw;
    font-weight: bold;
  }
  #team .box h4 span{
    font-weight: normal;
    font-size: 1.3vw;
  }
  #team .box p {
    font-size: 1.5vw;
  }
}

@media (max-width: 576px) {
  #team .box img{
    width: 25%;
    margin-left: -10%;
    margin-top: -12%;
  }
  #team .box {
    padding: 30px 0px;
  }
  #team .box h4{
    text-align: center;
    font-size: 3vw;
    font-weight: bold;
    padding: 10px 50px 10px;
  }
  #team .box h4 span{
    font-weight: normal;
    font-size: 1.7vw;
  }
  #team .box p {
    text-align: center;
    font-size: 2vw;
    padding: 0px 10px;
  }
}

@media (max-width: 510px) {
  #team .box img{
    width: 28%;
    margin-left: -7%;
    margin-top: -14%;
  }
  #team .box .fab{
    margin-top: -9%;
    margin-left: 25%;
  }
  .icons-mobile i.fa {
    font-size: 11px;
    width: 20px;
    line-height: 20px;
    background: #666;
    color: #fff;
    border-radius: 15px;
  }
  .icons-mobile i.fa-angle-left {
    margin-right: 5px;
  }
  #team .box h4{
    text-align: center;
    font-size: 3.5vw;
    font-weight: bold;
    padding: 10px 50px 0px;
  }
  #team .box h4 span{
    font-weight: normal;
    font-size: 2vw;
  }
  #team .box p {
    text-align: center;
    font-size: 2.5vw;
    padding: 0px 10px;
  }
}

/*--------------------------------------------------------------
# Info Section
--------------------------------------------------------------*/
#info {
  padding: 150px 0 150px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)), url("../img/info.jpg") center top;
  background-size: cover;
}

#info .content {
  width: 65%;
}

#info .content h1 {
  color: #FFFFFF;
  padding-bottom: 20px;
}

#info .content p {
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 45px;
  display: block;
}

#info .content button {
  align-items: center;
  background-color: #4CB2AE;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  justify-content: center;
  max-height: 50px;
  min-height: 50px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

#info .content button:hover,
#info .content button:focus { 
  background-color: #008397;
}

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

  #info .content p {
    font-size: 14px;
    line-height: 35px;
    width: 80%;
  }

  #info .content button {
    font-size: 14px;
    min-height: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  padding: 100px 0 100px 0;
  position: relative;
  z-index: 1;
  background: #000000;
  display: flex;
}

#contact h1 {
  color: #FFFFFF;
  font-weight: bold;
  padding-bottom: 40px;
}

#contact p a {
  color: #FFFFFF;
  font-weight: 200;
  font-size: 24px;
}

#contact .address {
  line-height: 10px;
  padding-top: 20px;
}

#contact p {
  color: #FFFFFF;
  font-weight: 200;
}

#contact .col2 {
  text-align: right;
  padding-bottom: 0px;
  display: inline-block;
  align-self: flex-end;
}

#contact .col2 img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

#contact .col2 p {
  margin-bottom: 7px;
}

#contact .col2 p a {
  font-size: 14px;
  transition: 0.5s;
}

#contact .copyright {
  color: #ffffff;
}

#contact .copyright span{
  padding-top: 15px;
  color: #2B969F;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  #contact .col2 {
    text-align: left;
    padding-top: 70px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #ffffff;
  padding: 0 0 25px 0;
  font-size: 14px;
  border-top: #C4C4C4 1px solid;
}

#footer .copyright {
  text-align: center;
  padding-top: 25px;
  color: #000000;
}

#footer .copyright span{
  text-align: center;
  padding-top: 15px;
  color: #2B969F;
  text-transform: uppercase;
}