/*////////////////////// PARTIALS //////////////////////*/
/*////////////////////// FONTS //////////////////////*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,800");
/*////////////////////// GENERAL //////////////////////*/
* {
  outline: none !important;
  margin: 0px auto;
  padding: 0px;
}

html {
  direction: ltr;
  height: 100%;
}

body {
  direction: ltr;
  font-family: "Poppins", Tahoma, sans-serif;
  overflow-x: hidden;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover, a:focus, a:visited {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

i {
  vertical-align: middle;
}

/*////////////////////// VARIABLES //////////////////////*/
/*////////////////////// MIXINS //////////////////////*/
/*////////////////////// COMPONENTS //////////////////////*/
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.btn-site {
  background: #5bd1d7;
  color: #ffffff !important;
  border-radius: 3px;
  padding: 15px 30px;
  -webkit-box-shadow: 0px 10px 30px -8px #5bd1d7;
  box-shadow: 0px 10px 30px -8px #5bd1d7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-site:hover {
  -webkit-box-shadow: 0px 10px 30px -8px #5bd1d7;
  box-shadow: 0px 5px 20px -8px #5bd1d7;
}

.title-site {
  text-align: center;
}

.title-site .title-main span {
  font-weight: bold;
  margin: 0 10px;
}

.title-site .title-subtitle {
  max-width: 500px;
}

/*////////////////////// NAVBAR //////////////////////*/
nav {
  color: #ffffff;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 992px) {
  nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    color: #000000;
    background: #ffffff;
  }
}

nav.in {
  color: #000000;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.07);
}

nav.in .navbar-nav {
  margin-right: 0;
}

nav.in .navbar-nav .nav-item .nav-link:after {
  background: #000000;
}

@media only screen and (max-width: 992px) {
  nav .navbar-brand {
    margin-right: auto;
    margin-left: 1rem;
  }
}

nav .navbar-toggler {
  color: #000000;
  font-size: 24px;
}

nav .navbar-nav {
  margin-right: 0;
}

nav .navbar-nav .nav-item .nav-link {
  position: relative;
  padding: 0;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 992px) {
  nav .navbar-nav .nav-item .nav-link {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

nav .navbar-nav .nav-item .nav-link:after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0%;
  height: 2px;
  background: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media only screen and (max-width: 992px) {
  nav .navbar-nav .nav-item .nav-link:after {
    background: #000000 !important;
  }
}

nav .navbar-nav .nav-item .nav-link:hover:after {
  width: 100%;
}

/*////////////////////// MAIN //////////////////////*/
.main {
  position: relative;
  background-image: url("../../assets/images/main-bg.jpg");
  position: relative;
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

.main .main-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.main .main-box {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
}

@media screen and (max-height: 500px) {
  .main .main-box {
    top: 55%;
  }
}

@media only screen and (max-width: 992px) {
  .main .main-box {
    width: 90%;
  }
}

.main .main-box .second-text {
  font-weight: bold;
  font-size: 54px;
  margin-top: 40px;
  margin-bottom: 40px;
  min-height: 65px;
}

@media only screen and (max-width: 1200px) {
  .main .main-box .second-text {
    font-size: 44px;
    min-height: auto;
  }
}

@media only screen and (max-width: 992px) {
  .main .main-box .second-text {
    font-size: 34px;
  }
}

@media screen and (max-height: 500px) {
  .main .main-box .second-text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.main .main-box .third-text {
  color: #ccc;
  font-size: 20px;
  max-width: 500px;
  font-family: "Raleway", Tahoma, sans-serif;
  font-weight: lighter;
  line-height: 30px;
}

@media only screen and (max-width: 1200px) {
  .main .main-box .third-text {
    font-size: 16px;
  }
}

.main .main-box .main-btn {
  margin-top: 20px;
  background: transparent;
  border-radius: 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 40px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main .main-box .main-btn:hover {
  background: #ffffff;
  color: #000000;
}

@media only screen and (max-width: 1200px) {
  .main .main-box .main-btn {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .main .main-box .main-btn {
    font-size: 12px;
  }
}

.main .scroll {
  position: absolute;
  top: 90%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  border-radius: 30px;
  width: 30px;
  height: 48px;
}

@media screen and (max-height: 500px) {
  .main .scroll {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .main .scroll {
    border-radius: 6px;
  }
}

.main .scroll:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background: #ffffff;
  -webkit-animation: animate 2s ease-in-out infinite;
  animation: animate 2s ease-in-out infinite;
}

@media only screen and (max-width: 768px) {
  .main .scroll:after {
    width: 6px;
    height: 6px;
    border-radius: 6px;
  }
}

@-webkit-keyframes animate {
  0% {
    top: 30%;
  }
  50% {
    top: 70%;
  }
  100% {
    top: 30%;
  }
}

@keyframes animate {
  0% {
    top: 30%;
  }
  50% {
    top: 70%;
  }
  100% {
    top: 30%;
  }
}

/*////////////////////// ABOUT //////////////////////*/
.about {
  background: #eee;
}

@media only screen and (max-width: 1200px) {
  .about .about-img {
    text-align: center;
    margin-bottom: 20px;
  }
}

.about .about-img img {
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
}

.about .about-img img:hover {
  margin-top: -5px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1200px) {
  .about .about-text {
    text-align: center;
  }
}

.about .about-text .about-heading h2 {
  margin: 0;
}

.about .about-text .about-heading span {
  color: #888888;
  margin-bottom: 30px !important;
  display: block;
  font-size: 18px;
}

.about .about-text .icons {
  margin: 45px 0;
}

@media only screen and (max-width: 1200px) {
  .about .about-text .icons {
    margin: 25px 0 35px 0;
  }
}

.about .about-text .icons i {
  font-size: 35px;
  margin-right: 15px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.about .about-text .icons i:hover {
  color: #5bd1d7;
}

/*////////////////////// SERVICES //////////////////////*/
.services .s-box {
  text-align: center;
  margin-top: 30px;
  padding: 25px 30px 20px 30px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .services .s-box {
    padding: 15px 30px 5px 30px;
  }
}

@media only screen and (max-width: 576px) {
  .services .s-box {
    margin-top: 15px;
  }
}

.services .s-box i {
  font-size: 55px;
  color: #5bd1d7;
  margin-bottom: 20px;
}

.services .s-box:hover {
  -webkit-box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
}

/*////////////////////// CUSTOMERS //////////////////////*/
.clients .clients-list {
  margin-top: 20px;
}

.clients .clients-list .client {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 10px;
}

.clients .clients-list .client:hover {
  margin-top: -7px;
}

.clients .clients-list .client img {
  max-width: 160px;
}

/*////////////////////// NEWS //////////////////////*/
.news {
  background: #f2f2f2;
}

.news .news-list {
  margin-top: 30px;
}

.news .news-list .news-item {
  margin-left: -15px;
  margin-right: -15px;
}

.news .news-list .news-item .inner {
  margin: 30px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.news .news-list .news-item .inner:hover {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.news .news-list .news-item .inner:hover .news-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.news .news-list .news-item .inner .news-img {
  position: relative;
  overflow: hidden;
}

.news .news-list .news-item .inner .news-img img {
  display: block;
  width: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.news .news-list .news-item .inner .news-content {
  padding: 30px 15px 15px;
  background: #ffffff;
}

.news .news-list .news-item .inner .news-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  min-height: 50px;
}

.news .news-list .news-item .inner .news-content p {
  padding-bottom: 20px;
  border-bottom: 1px solid #f7f7f7;
  margin-bottom: 0;
  color: #748182;
  min-height: 120px;
}

.news .news-list .news-item .inner .news-content .news-meta {
  padding-top: 15px;
}

.news .news-list .news-item .inner .news-content .news-meta .read-more {
  color: #222;
  border-bottom: 2px solid #5bd1d7;
  font-weight: 600;
}

.news .news-list .news-item .inner .news-content .news-meta .read-more:hover {
  color: #5bd1d7;
}

.news .news-list .news-item .inner .news-content .news-meta .date {
  float: right;
  font-size: 11px;
  padding-top: 7px;
}

.news .news-list .news-item .inner .news-content .news-meta span {
  font-size: 13px;
  color: #748182;
}

.news .more {
  text-align: center;
  padding: 40px 15px 0 15px;
}

/*////////////////////// WORKS //////////////////////*/
.works {
  background: #eee;
}

.works .tabs {
  padding: 5px;
  margin-top: 30px;
}

@media only screen and (max-width: 576px) {
  .works .tabs {
    padding: 5px 15px;
  }
}

.works .tabs ul {
  text-align: center;
}

.works .tabs ul li {
  display: inline-block;
  cursor: pointer;
  margin: 0 10px;
  margin-bottom: 30px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 10px 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

@media only screen and (max-width: 768px) {
  .works .tabs ul li {
    width: 45%;
  }
}

@media only screen and (max-width: 576px) {
  .works .tabs ul li {
    margin: 0;
    margin-bottom: 10px;
    width: 100%;
    display: block;
  }
}

.works .tabs ul li:hover {
  background: #bbbbbb;
  color: #ffffff;
}

.works .tabs ul li.is-checked {
  background: #5bd1d7;
  color: #ffffff;
  -webkit-box-shadow: 0px 10px 30px -8px #5bd1d7;
  box-shadow: 0px 10px 30px -8px #5bd1d7;
}

.works .more {
  text-align: center;
  padding: 50px 15px 0 15px;
}

.grid {
  position: relative;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  font-family: 'Raleway', Arial, sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.grid .grid-item {
  margin-top: 10px;
}

.grid .grid-item figure {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.grid .grid-item figure:hover {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.grid .grid-item figure img {
  position: relative;
  display: block;
  width: 100%;
  opacity: 0.8;
}

.grid .grid-item figure h4 {
  font-size: 24px;
  word-spacing: -0.15em;
  font-weight: 300;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .grid .grid-item figure h4 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 1200px) {
  .grid .grid-item figure h4 {
    font-size: 23px;
  }
}

.grid .grid-item figure h4 span {
  font-weight: 800;
  margin: 0 3px;
}

.grid .grid-item figure p {
  margin: 0;
  letter-spacing: 1px;
  font-size: 68.5%;
}

.grid .grid-item figure figcaption {
  padding: 2em;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid .grid-item figure figcaption:before, .grid .grid-item figure figcaption:after {
  pointer-events: none;
}

figure.grid-scale {
  background: #000;
}

figure.grid-scale img {
  opacity: 0.9;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}

figure.grid-scale figcaption {
  padding-top: 12%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: background-color 0.35s;
  transition: background-color 0.35s;
}

figure.grid-scale figcaption:before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border-radius: 4px;
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: scale(1.1);
  transform: scale(0.9);
}

figure.grid-scale h4 {
  margin: 20% 0 10px 0;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

@media only screen and (max-width: 1200px) {
  figure.grid-scale h4 {
    margin: 25% 0 10px 0;
  }
}

@media only screen and (max-width: 992px) {
  figure.grid-scale h4 {
    margin: 15% 0 10px 0;
  }
}

@media only screen and (max-width: 992px) {
  figure.grid-scale h4 {
    margin: 25% 0 10px 0;
  }
}

figure.grid-scale p {
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
  -webkit-transform: scale(1.1);
  transform: scale(0.9);
}

figure.grid-scale:hover img {
  opacity: 0.5;
}

figure.grid-scale:hover h4 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

figure.grid-scale:hover figcaption {
  background-color: rgba(0, 0, 0, 0.1);
}

figure.grid-scale:hover figcaption:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

figure.grid-scale:hover p {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*////////////////////// CONTACT //////////////////////*/
.contact .section-subtitle {
  max-width: 500px;
}

.contact .text-custom {
  color: #5bd1d7;
  font-size: 55px;
}

.contact .contact-title {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 18px;
}

@media only screen and (max-width: 992px) {
  .contact .contact-title {
    font-size: 15px;
  }
}

@media only screen and (max-width: 992px) {
  .contact .contact-text {
    font-size: 14px;
  }
}

.contact .contact-form .form-control {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  height: 50px;
  border: 2px solid #e0e0e0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.contact .contact-form .form-control:focus {
  border-color: #5bd1d7;
}

.contact .contact-form textarea {
  height: auto !important;
}

.contact .btn-holder {
  margin-top: 20px;
  text-align: right;
}

@media only screen and (max-width: 992px) {
  .contact .btn-holder {
    text-align: center;
  }
}

/*////////////////////// STATS //////////////////////*/
.stats {
  position: relative;
  background-image: url("../../assets/images/stats-bg.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.stats:before {
  background-color: rgba(0, 0, 0, 0.65);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.stats .stat {
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

.stats .stat span {
  display: block;
  position: relative;
  margin-bottom: 15px;
  line-height: 40px;
}

.stats .stat span i {
  font-size: 55px;
}

@media only screen and (max-width: 576px) {
  .stats .stat span i {
    font-size: 45px;
  }
}

.stats .stat .counter {
  color: inherit;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 2px;
  font-weight: 300;
}

@media only screen and (max-width: 576px) {
  .stats .stat .counter {
    font-size: 25px;
  }
}

.stats .stat p {
  font-size: 18px;
  text-transform: capitalize;
}

@media only screen and (max-width: 576px) {
  .stats .stat p {
    font-size: 14px;
  }
}

/*////////////////////// FOOTER //////////////////////*/
footer {
  text-align: center;
  background: #1e1e1e;
  color: #ffffff;
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-top: 20px;
  }
}

footer p {
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 450px;
}

@media only screen and (max-width: 768px) {
  footer p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 576px) {
  footer p {
    font-size: 12px;
  }
}

footer ul li {
  display: inline-block;
}

footer ul li a {
  position: relative;
  display: inline-block;
  background: #191919;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media only screen and (max-width: 576px) {
  footer ul li a {
    width: 35px;
    height: 35px;
    margin: 0 3px;
  }
}

footer ul li a:hover {
  background: #5bd1d7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

footer ul li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

footer .copyright {
  margin-top: 40px;
  background: #191919;
  color: #aaa;
}

@media only screen and (max-width: 768px) {
  footer .copyright {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 768px) {
  footer .copyright p {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
}
