/*
Theme Name: HillSix
Theme URI: https://hillsix.com
Author: Pablo Revetria
Author URI: http://pablorevetria.com/
Description: HillSix WP Theme
Version: 2019.1
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: hillsix

hillsix WordPress Theme © 2020 PR
hillsix is distributed under the terms of the GNU GPL
*/

@import url("general.css");

/*///////////////////*/
/*/////////// Header */
/*///////////////////*/

header {
  z-index: 1;
}

/*//// Navbar */

.navbar {
  padding: 0 15px;
  background: transparent;
}

@media (min-width: 768px) {
  .navbar {
    padding: 15px;
  }
}

@media (min-width: 1200px) {
  .navbar {
    padding: 12px 0;
  }
}

header.scrolled {
  transition: all 0.5s ease-in-out;
  -moz-transition: none;
  -webkit-transition: all 0.5s ease-in-out;
}

header.scrolled .navbar {
  background: #ffffff;
  box-shadow: 0 12px 24px 0 rgba(0, 57, 82, 0.21);
}

.navbar.navbar-light {
  background: #ffffff;
}

header.scrolled .navbar .logo-w {
  display: none;
}

header .navbar .logo {
  display: none;
}

header.scrolled .navbar .logo,
.navbar.navbar-light .logo {
  display: block;
}

.navbar-brand img {
  width: 100px;
  height: 60px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .navbar-brand img {
    width: 129px;
    height: 78px;
  }
}

.navbar-nav {
  margin: 20px 0 10px;
  /*opacity: 0;
  transition: all 0.5s ease-in-out;
  -moz-transition: none;
  -webkit-transition: all 0.5s ease-in-out;*/
}

@media (min-width: 768px) {
  .navbar-nav {
    /*opacity: 1;*/
  }
}

@media (min-width: 992px) {
  .navbar-nav li {
    margin: 0 10px;
  }
}

.navbar-nav a {
  font-family: 'Proxima Nova Rg', Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-stretch: normal;
  line-height: 18px;
  letter-spacing: 0.02px;
  color: #ffffff;
  display: block;
  /*margin-left: 20px;*/
}

@media (min-width: 1100px) {
  .navbar-nav a {
    /*margin-left: 30px;*/
  }
}

header.scrolled .navbar-nav a,
.navbar.navbar-light .navbar-nav .nav-link {
  color: #003952;
}

.navbar-nav a:hover,
.navbar-nav a:focus,
.navbar-nav a.active,
header.scrolled .navbar-nav a.active {
  color: #00E682;
  text-decoration: none;
}

@media (min-width: 992px) {
  .navbar-nav a:after {
    display: block;
    content: '';
    border-top: solid 2px #00E682;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    margin: 5px 0 0;
  }

  .navbar-nav a:hover:after {
    transform: scaleX(1);
  }
}

.navbar-nav .btn-header {
  margin: -5px 0 10px 10px;
}

.navbar-nav .btn-header a {
  padding: 15px 20px;
  font-family: 'Proxima Nova Rg', Arial, sans-serif;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 13px !important;
  letter-spacing: 0.04px;
  border-radius: 8px;
  outline: none;
  background: rgb(0,230,130);
  background: linear-gradient(300deg, rgba(0,245,184,1) 0%, rgba(0,230,130,1) 50%);
  color: #003952;
  min-width: 130px;
  text-align: center;
}

@media (min-width: 992px) {
  .navbar-nav .btn-header a {
    padding: 15px 20px 11px;
  }
}

.navbar-nav .btn-header a:hover,
.navbar-nav .btn-header a:focus,
.navbar-nav .btn-header a.active {
  color: #003952;
  background: #F8FAFB;
  text-decoration: none;
}

.navbar-nav .btn-header a:after,
.navbar-nav .btn-header a:hover:after {
  margin: 0;
  transform: scaleX(0);
}

/*//// Default Navbar */

.default-nav .navbar,
header.scrolled.default-nav .navbar {
  background: #ffffff;
  box-shadow: 0 12px 24px 0 rgba(0, 57, 82, 0.21);
}

header.scrolled.default-nav .navbar .logo,
.default-nav .logo {
  display: block !important;
}

.default-nav .navbar-nav a,
.default-nav .navbar-nav .nav-link {
  color: #003952;
}

/* Collapse */

.navbar-toggler {
  border: 0 !important;
  outline: none;
  position: relative;
  z-index: 2;
  padding: 5px;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  background-color: #fff;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  margin-bottom: 6px;
}

header.scrolled .navbar-toggler .icon-bar,
.navbar.navbar-light .navbar-toggler .icon-bar {
  background-color: #003952;
}

/*///////////////////*/
/*///////////// Hero */
/*///////////////////*/

.hero {
  background: #F8FAFB url('img/content/hero-bg.jpg') no-repeat center top;
  background-attachment: fixed;
  background-size: cover;
  height: 95vh;
  padding-top: 30vh;
}

@media (min-width: 768px) {
  .hero {
    background: #F8FAFB url('img/content/hero-bg-full.png') no-repeat center top;
    background-attachment: fixed;
    background-size: 200% auto;
    min-height: 700px;
    height: 95vh;
    padding-top: calc(50vh - 100px);
  }
}

@media (min-width: 992px) {
  .hero {
    background: #F8FAFB url('img/content/hero-bg-full.png') no-repeat center top;
    background-attachment: fixed;
    background-size: 140% auto;
    min-height: 700px;
    height: 95vh;
    padding-top: calc(50vh - 100px);
  }
}

@media (min-width: 1200px) {
  .hero {
    background-size: 100% auto;
  }
}

.hero h1,
.hero p {
  color: #ffffff;
}

.hero h1 {
  margin-bottom: 35px;
}

@media (min-width: 340px) {
  .hero h1 {
    margin-bottom: 46px;
  }
}

.hero h1 span {
  color: #003952;
  padding: 5px 20px;
  background: rgb(0,230,130);
  background: linear-gradient(300deg, rgba(0,245,184,1) 0%, rgba(0,230,130,1) 50%);
}

.hero p {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0.4px;
}

@media (min-width: 340px) {
  .hero p {
    font-size: 26px;
    line-height: 40px;
  }
}

@media (min-width: 576px) {
  .hero p {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 0.5px;
  }
}

@media (min-width: 768px) {
  .hero p {
    font-size: 30px;
    line-height: 45px;
    letter-spacing: 0.5px;
  }
}

/*///////////////////*/
/*////////////// WWD */
/*///////////////////*/

#what-we-do {
  background-color: #F8FAFB;
  position: relative;
  overflow: hidden;
}

#what-we-do .container {
  position: relative;
  z-index: 4;
}

#what-we-do .wwd-floating-img {
  display: none;
}

#what-we-do .wwd-floating-shape-1 {
  position: absolute;
  left: 0;
  bottom: 1%;
  width: 118px;
  height: 182px;
  z-index: 2;
}

#what-we-do .wwd-floating-shape-2 {
  position: absolute;
  left: 0;
  bottom: -30%;
  width: 218px;
  height: 503px;
  z-index: 1;
}

@media (min-width: 992px) {
  #what-we-do .wwd-floating-img {
    position: absolute;
    display: block;
    top: 120px;
    left: 0;
    max-height: 681px;
    max-width: 1007px;
    z-index: 0;
  }

  #what-we-do .wwd-floating-shape-1 {
    top: 225px;
    bottom: auto;
  }

  #what-we-do .wwd-floating-shape-2 {
    top: 285px;
    bottom: auto;
  }
}

/*///////////////////*/
/*////////////// HWA */
/*///////////////////*/

#who-we-are {
  background: #FFF url('img/content/map.jpg') no-repeat -200px top;
  background-attachment: fixed;
  background-size: auto 90%;
  position: relative;
}

@media (min-width: 576px) {
  #who-we-are {
    background: #FFF url('img/content/map.jpg') no-repeat center top;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
  }
}

/*///////////////////*/
/*///// OUR SERVICES */
/*///////////////////*/

#our-services {
  background: #f7fafb;
}

@media (min-width: 992px) {
  #our-services {
    background: #F8FAFB url('img/content/our-services.png') no-repeat center right;
    background-size: auto 100% ;
  }
}

#our-services p {
  margin-bottom: 40px;
}

#our-services p:last-child {
  margin-bottom: 0;
}

/*///////////////////*/
/*///// TECHNOLOGIES */
/*///////////////////*/

#technologies {
  position: relative;
}

#technologies p {
  margin-bottom: 40px;
}

#technologies .logos {
}

#technologies .logos img {
  margin: 0 10%;
  mix-blend-mode: darken;
}

@media (max-width: 575px) {
  #technologies .logos img {
    width: 80%;
  }
}

@media (min-width: 576px) {
  #technologies .logos img {
    margin: 0;
  }
}

#technologies .logos .row div {
  margin: 12px 0 30px;
}

.tech-floating-shape-1 {
  position: absolute;
  bottom: -68px;
  left: 0;
  width: 125px;
  height: 182px;
  z-index: 2;
}

.tech-floating-shape-2 {
  position: absolute;
  bottom: -295px;
  left: 0;
  width: 195px;
  height: 483px;
  z-index: 1;
}

/*///////////////////*/
/*////// OUR CLIENTS */
/*///////////////////*/

#our-clients {
  background: #FFF url('img/content/white-shape-3.png') no-repeat center left;
  background-size: auto 100%;
  position: relative;
}

#our-clients .row {
  position: relative;
  z-index: 3;
}

#our-clients .logos {
}

#our-clients .logos .row div {
  margin: 12px 0;
  background: #f7fafb;
}

@media (min-width: 576px) {
  #our-clients .logos .row div {
    background: transparent;
  }
}

#our-clients .logos img {
  width: 100%;
  mix-blend-mode: darken;
}

/*///////////////////*/
/*/////// CONTACT US */
/*///////////////////*/

#contact-us {
  padding: 90px 0;
  background: #003952 url('img/content/white-shape-5.png') no-repeat center right;
  background-size: auto 100% ;
  color: #fff;
}

@media (min-width: 992px) {
  #contact-us .contact-data {
    padding: /*130px*/ 0 0 45px;
  }
}

#contact-us h2 {
  color: #fff;
}

#contact-us ::placeholder {
  color: #343434;
}

#contact-us textarea {
  max-height: 160px;
}

@media (max-width: 991px) {
  #contact-us .contact-data {
    margin-top: 80px;
  }
}

#contact-us .contact-data .title {
  font-weight: bold;
  color: #fff;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.88px;
  margin-bottom: 40px;
}

#contact-us .contact-data hr {
  background-color: #00E682;
  height: 2px;
  width: 15%;
  margin: 68px 85% 45px 0;
}

#contact-us .contact-data span {
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  display: block;
  width: 100%;
}

#contact-us .contact-data ul {
  padding: 0;
  margin: 0;
}

#contact-us .contact-data ul li {
  font-size: 18px;
  margin: 0 0 32px;
  padding-left: 45px;
  width: 100%;
  overflow: hidden;
}

#contact-us .contact-data ul li:last-child {
  margin: 0;
}

#contact-us .contact-data ul li a {
  float: left;
}

#contact-us .contact-data ul li,
#contact-us .contact-data ul li a {
  color: #fff;
}

#contact-us .contact-data ul li a:after {
  display: block;
  content: '';
  border-top: solid 2px #00E682;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  margin: 5px 0 0;
}

#contact-us .contact-data ul li a:hover:after {
  transform: scaleX(1);
}

#contact-us .contact-data ul li a:hover,
#contact-us .contact-data ul li a:focus {
  color: #fff;
  text-decoration: none;
}

#contact-us .contact-data ul li.address {
  background: url('img/icons/location.svg') no-repeat center left;
  background-size: 30px 30px ;
}

#contact-us .contact-data ul li.email {
  background: url('img/icons/email.svg') no-repeat center left;
  background-size: 30px 30px ;
}

#contact-us .contact-data ul li.phone {
  background: url('img/icons/tel.svg') no-repeat center left;
  background-size: 30px 30px ;
}

#contact-us .contact-data ul li.linkedin {
  background: url('img/icons/linkedin.svg') no-repeat center left;
  background-size: 30px 30px ;
}

.footer-line {
  height: 8px;
  width: 100%;
  background: rgb(0,230,130);
  background: linear-gradient(300deg, rgba(0,245,184,1) 0%, rgba(0,230,130,1) 50%);
  display: block;
  overflow: hidden;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: ;
  margin: 2em 0 1em;
  padding: 0;
  border: 0;
  display: block !important;
}

div.wpcf7 .ajax-loader {
  background-image: url('img/loader.gif');
  width: 32px;
  height: 32px;
}

/*///////////////////*/
/*////////// DEFAULT */
/*///////////////////*/

.default {
  padding: 130px 15px 80px;
}

@media (min-width: 992px) {
  .default {
    padding: 200px 15px 100px;
  }
}
