/*------------- 
[Table of contents]

[ DEFULT INDEX NUMBER ]

1.  GENERAL CSS
2.  NAVBAR
4.  HOME
5.  SERVICE
6.  ABOUT
7.  TESTIMONIAL
8.  FAQ
9.  QUATE
10. SUBSCRIBE
11. PRICING
12. BLOG
13. FOOTER
14. COPYRIGHT


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[ Color codes ]
    
    [ Text and Background Color ]
        Main color 1:       #1c93e5     
        Main color 2:       #009688      
        Main color 3:       #9c27b0
        Main color 4:       #ff4081      
        Background 1:       #FFFFFF            
        Background 2:       #F6F6F6           
        Shadow color:       #000000;            

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

    [ There are using two different font typography ]
        Typography 1: Roboto font;
        Typography 2: Montserrat font;

    [ Other Typography style are same ]
    Body :
        font-style:     normal;
        font-size:      15px;

    h2:
        font-size: 48px;
        line-height: 55px;

    h3:
        font-size: 30px;
        line-height: 40px;

    h4:
        font-size: 20px;
        font-weight: 600;

    p:  
        font-size: 18px;
        line-height: 30px;


-------------------------------------------------------------------*/
/*
================
 VARIABLES
================
*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.shadow-1 {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }

/**
 * -------------------
 *  Defult CSS 
 * -------------------
 */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-style: none;
  line-height: 24px;
  font-weight: 500;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  color: #999999;
  opacity: 0.9; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif; }

p {
  opacity: 0.9; }

.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  padding: 0px;
  background-color: transparent;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .nav li a:hover {
    background-color: transparent; }
  .nav li a:focus {
    background-color: transparent;
    outline: 0 !important; }

a {
  text-decoration: none !important;
  cursor: pointer;
  padding: 0px;
  background-color: transparent;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #000;
  opacity: 0.9; }
  a:hover {
    background-color: transparent; }
  a:focus {
    background-color: transparent;
    outline: 0 !important; }

.center {
  float: none;
  margin: 0 auto;
  text-align: center; }

/**
 * ---------------------
 *  Defult Halping Class
 * ---------------------
 */
.overflow {
  overflow: hidden; }

.relative {
  position: relative; }

.display-table {
  display: table;
  width: 100%;
  height: 100%; }

.display-flex {
  display: flex;
  flex: 1; }

.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle; }

/**
 * ------------------------------------
 *  Every Section Headline Defult Class
 * ------------------------------------
 */
.section-heading {
  display: block;
  margin: 0; }

.section-header {
  margin-bottom: 100px;
  text-align: center; }
  .section-header .sub-heading {
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 10px 0; }
  .section-header.text-left,
  .section-header.text-left * {
    text-align: left; }
  .section-header.text-right,
  .section-header.text-right * {
    text-align: right; }

.section-header-separator {
  position: relative;
  width: 145px;
  margin: 5px auto;
  display: inline-block; }
  .section-header-separator .icon {
    font-size: 48px;
    text-align: center !important; }
  .section-header-separator::before, .section-header-separator::after {
    content: '';
    position: absolute;
    width: 57px;
    height: 2px;
    top: 25px; }
  .section-header-separator::before {
    left: 0; }
  .section-header-separator::after {
    right: 0; }

.v-middle {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
  -webkit-flex-direction: row; }

.mini-separator {
  padding: 20px 0; }
  
  /* section {
    //padding: 60px 0;
    //padding-bottom: 30px;
} */

/**
 * ---------------------
 *   Defult Button Style
 * ---------------------
 */
.btn {
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  outline: 0;
  padding: 8px 30px;
  font-weight: bold;
  border-radius: 20px; }
  .btn:last-child {
    margin-right: 0px !important; }
  .btn .icon {
    position: relative;
    top: 2px; }
    .btn .icon img {
      position: relative;
      top: -3px;
      width: 14px; }
  .btn.btn-fill {
    background-color: #0bceaf;
    color: #fff; }
    .btn.btn-fill:focus {
      background-color: #14776a;
      color: #fff; }
  .btn.left-icon .icon {
    margin-right: 15px; }
  .btn.right-icon .icon {
    margin-left: 15px; }
  .btn.btn-border {
    background-color: transparent; }
  .btn.white-btn-border {
    background-color: transparent;
    border-color: #fff; }
  .btn.btn-round {
    padding: 15px;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 24px;
    text-align: center; }
    .btn.btn-round .icon {
      top: 7px; }
  .btn.apple, .btn.androad {
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
    padding: 9px 28px;
    height: 82px; }
    .btn.apple img, .btn.androad img {
      width: 35px;
      height: 100%;
      float: left; }
    .btn.apple .icon, .btn.androad .icon {
      font-size: 60px;
      float: left; }
    .btn.apple span, .btn.androad span {
      display: block;
      -moz-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
    .btn.apple .group, .btn.androad .group {
      float: right; }
    .btn.apple .big,
    .btn.apple .small, .btn.androad .big,
    .btn.androad .small {
      text-align: left;
      margin-left: 7px;
      line-height: 30px; }
    .btn.apple .big, .btn.androad .big {
      font-size: 24px;
      font-weight: 400; }
    .btn.apple .small, .btn.androad .small {
      font-size: 16px; }

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px; }

.btn-text-link {
  padding: 50px 0 0 0;
  text-align: center; }
  .btn-text-link a {
    margin-left: 10px; }

/** 
 * -----------------
 * Social Icon Style
 * -----------------
 */
.social-icon {
  display: inline-block; }
  .social-icon li {
    list-style: none;
    float: left;
    margin-bottom: 0px;
    margin-right: 8px; }
    .social-icon li a {
      text-align: center;
      width: 45px;
      height: 45px;
      padding: 10px;
      border-radius: 50%; }
    .social-icon li:last-child a {
      margin-right: 0px; }


/**
 * ------------------
 * list
 * ------------------
 */
ul {
  margin: 0;
  padding: 0; }
  ul li {
    list-style-type: none; }

/**
 * =================
 * CONTAINER HALF CONTENT
 * =================
 */
.content-half {
  position: relative; }

.container-half-left {
  left: 0;
  background-position: center right; }

.container-half-right {
  right: 0;
  background-position: center left; }

.vertical-middle-content {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
  -webkit-flex-direction: row; }

/**
 * ---------------------------------
 *  Section Background Size Property
 * ---------------------------------
 */
.bg-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: initial;
  background-repeat: no-repeat; }

.dark-bg {
  background-color: #202026; }

.section-separator {
  padding: 20px 0;
}
.col-sm-4{
  display: flex;
}

.home-section-separator {
  padding-top: 100px;
  padding-bottom: 200px; }

.bg-black {
  background-color: #000; }

.form-control {
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.16), 0 0px 2px 0 rgba(255, 255, 255, 0.12);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.16), 0 0px 2px 0 rgba(255, 255, 255, 0.12);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.16), 0 0px 2px 0 rgba(255, 255, 255, 0.12);
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 20px;
  height: 50px;
  line-height: 50px; }
  .form-control:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.16), 0 0px 2px 0 rgba(255, 255, 255, 0.12);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.16), 0 0px 2px 0 rgba(255, 255, 255, 0.12);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.16), 0 0px 2px 0 rgba(255, 255, 255, 0.12);
    background-color: transparent; }

.p-200 {
  padding: 0 200px; }

.img-overlay {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center; }

.image-bg {
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center; }

.home-2-img {
  background-image: url(../images/home-bg-img.jpg); }

.featured-img-one {
  background-image: url(../images/home-bg-img.jpg); }

.featured-img-two {
  background-image: url(../images/extra-feature-bg.jpg); }

/* .map-image {
  background-image: url(../images/map-color-overlay.png); } */

.mt-30 {
  margin-top: 30px; }

button {
  outline: 0; }
  button:hover {
    outline: 0; }
  button:focus {
    outline: 0; }

.btn {
  outline: 0; }
  .btn:hover {
    outline: 0; }
  .btn:focus {
    outline: 0; }

.round-image {
  border-radius: 50%; }

.form-control {
  padding: 20px;
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .form-control:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    border-color: transparent; }

.contact-message {
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 20px;
  width: 100%;
  padding: 20px;
  outline: 0; }
  .contact-message:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    border-color: transparent; }

/** 
 * -----------------
 * General CSS
 * -----------------
 */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }


.dark-vertion {
  opacity: 0.9; }
  .dark-vertion.black-bg {
    background-color: #100e17; }
  .dark-vertion .section-loader {
    background: #100e17; }
  .dark-vertion ::placeholder {
    color: #fff; }
  .dark-vertion a {
    color: #fff; }
  .dark-vertion h2 {
    color: #fff; }
  .dark-vertion h3 {
    color: #fff; }
  .dark-vertion h4 {
    color: #fff; }
  .dark-vertion h5 {
    color: #fff; }
  .dark-vertion h6 {
    color: #fff; }
  .dark-vertion p {
    color: #fff; }
  .dark-vertion address {
    color: #fff; }
  .dark-vertion span {
    color: #fff; }
  .dark-vertion div {
    color: #fff; }
  .dark-vertion ul li {
    color: #fff; }
  .dark-vertion .form-control {
    color: #fff; }
  .dark-vertion .contact-message {
    color: #fff; }
  .dark-vertion .nav-strict {
    background-color: #202026; }
  .dark-vertion .img-color-overlay {
    background-color: rgba(0, 0, 0, 0.9); }
  .dark-vertion .mh-home .mh-header-info .social-icon li .fa:hover {
    background-color: #fff; }
  .dark-vertion .page-item.active .page-link {
    background-color: #fff;
    border-color: #fff;
    color: #0bceaf; }
  .dark-vertion .navbar-toggler .icon,
  .dark-vertion .navbar-toggler .icon::after,
  .dark-vertion .navbar-toggler .icon::before {
    background-color: #fff; }
  .dark-vertion .mh-header .navbar-nav li.active a {
    border-color: #fff;
    padding-right: 0;
    padding-left: 0; }
  .dark-vertion .mh-header.nav-3 .navbar-nav li.active a {
    border-color: transparent; }
  .dark-vertion .mh-footer .form-control {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
    .dark-vertion .mh-footer .form-control:focus {
      -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .dark-vertion .mh-footer .contact-message {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
    .dark-vertion .mh-footer .contact-message:focus {
      -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .dark-vertion .mh-footer-2 .form-control {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
    .dark-vertion .mh-footer-2 .form-control:focus {
      -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .dark-vertion .mh-footer-2 .contact-message {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
    .dark-vertion .mh-footer-2 .contact-message:focus {
      -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
      box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .dark-vertion .mh-work .mh-experience-deatils .mh-work-item {
    -webkit-box-shadow: -1rem 0 3rem #000;
    box-shadow: -1rem 0 3rem #000; }
  .dark-vertion .mh-pricing .mh-pricing {
    -webkit-box-shadow: -1rem 0 3rem #000;
    box-shadow: -1rem 0 3rem #000; }
  .dark-vertion .mh-blog .mh-blog-item {
    -webkit-box-shadow: -1rem 0 3rem #000;
    box-shadow: -1rem 0 3rem #000; }
  .dark-vertion .mh-footer-address .mh-address-footer-item {
    -webkit-box-shadow: -1rem 0 3rem #000;
    box-shadow: -1rem 0 3rem #000; }
  .dark-vertion .mh-experince .mh-education-deatils .mh-education-item {
    -webkit-box-shadow: -1rem 0 3rem #000;
    box-shadow: -1rem 0 3rem #000; }
  .dark-vertion .mh-service .mh-service-item {
    -webkit-box-shadow: -1rem 0 3rem #000;
    box-shadow: -1rem 0 3rem #000; }
  .dark-vertion .mh-home .hero-img img {
    border: 20px solid rgba(0, 0, 0, 0.2); }
  .dark-vertion .mh-home .img-border {
    border: 20px solid rgba(0, 0, 0, 0.9); }
  .dark-vertion .candidatos .parcial .progressBar {
    background: rgba(199, 198, 198, 0.6); }
  .dark-vertion .mh-progress path:nth-child(1) {
    stroke: rgba(255, 255, 255, 0.5); }

.mh-rtl {
  text-align: right; }
  .mh-rtl .mh-work .mh-experience-deatils
  .mh-work-item .work-responsibility
  li .fa {
    margin-left: 10px; }
  .mh-rtl .mh-blog-post-info ul li strong {
    margin-left: 6px; }
  .mh-rtl .mh-footer .form-control {
    text-align: right; }
  .mh-rtl .mh-footer .contact-message {
    text-align: right; }
#form-submit:hover{
  background-color: #0bceaf;
}
body {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

/*
    ==============
    Navigation
    ==============
*/
/*---------------------------------------------------------------------*/
/* Loader 
/*---------------------------------------------------------------------*/
.section-loader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 9999999; }

.section-loader .loader {
  position: relative; }

.section-loader .loader div {
  box-sizing: content-box;
  position: absolute;
  border-width: 4px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite; }

.section-loader .loader div:nth-child(1) {
  border-color: #E91E63; }

.section-loader .loader div:nth-child(2) {
  border-color: #0dbda1;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s; }

.section-loader .loader {
  width: 200px !important;
  height: 200px !important;
  -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
  transform: translate(-100px, -100px) scale(1) translate(100px, 100px); }

@keyframes loader {
  0% {
    top: 94px;
    left: 94px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: 57px;
    left: 57px;
    width: 74px;
    height: 74px;
    opacity: 0; } }
@-webkit-keyframes loader {
  0% {
    top: 94px;
    left: 94px;
    width: 0;
    height: 0;
    opacity: 1; }
  100% {
    top: 57px;
    left: 57px;
    width: 74px;
    height: 74px;
    opacity: 0; } }
/*
    ==============
       Navigation
    ==============
*/
.mh-nav {
  width: 100%; }

.mh-header {
  padding: 20px 0;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .mh-header.nav-strict {
    padding: 15px 0;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .mh-header .navbar-nav li {
    margin: 0 20px; }
    .mh-header .navbar-nav li a {
      border-bottom: 1px solid transparent;
      font-weight: bold;
      font-family: "Montserrat", sans-serif;
      font-size: 18px;
      opacity: 1;
      line-height: 30px; }
      .mh-header .navbar-nav li a.nav-link {
        padding-left: 0;
        padding-right: 0; }
      .mh-header .navbar-nav li a:hover {
        color: #0bceaf; }

.nav-3 .navbar-dark .navbar-nav .nav-link a {
  color: rgba(255, 255, 255, 0.7); }
.nav-3 .navbar-dark .navbar-nav .nav-link.active a {
  color: rgba(255, 255, 255, 0.7); }
.nav-3 .navbar-nav {
  padding-top: 30px; }

.home-padding {
  padding: 180px 0; }

/*
    ==============
       Navigation
    ==============
*/
.mh-home-2 .mh-header-info {
  text-align: center;
  padding-top: 100px; }
  .mh-home-2 .mh-header-info .hero-img {
    margin-bottom: 30px; }
    .mh-home-2 .mh-header-info .hero-img img {
      border: 0px solid #fff;
      border-radius: 50%; }
  .mh-home-2 .mh-header-info h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    margin-top: 10px;
    margin-bottom: 0px;
    opacity: 0.9; }
  .mh-home-2 .mh-header-info h4 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    opacity: 0.9; }
  .mh-home-2 .mh-header-info p {
    padding: 0 120px;
    font-weight: 300; }
  .mh-home-2 .mh-header-info ul li {
    margin: 10px 6px; }
  .mh-home-2 .mh-header-info ul.mh-home-contact {
    margin-bottom: 15px; }
    .mh-home-2 .mh-header-info ul.mh-home-contact li {
      display: inline-block;
      margin: 10px 15px; }
      .mh-home-2 .mh-header-info ul.mh-home-contact li .fa {
        margin-right: 10px; }
      .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa {
        color: #0bceaf; }
  .mh-home-2 .mh-header-info .mh-about-tag {
    width: 60%;
    margin: 0 auto; }
    .mh-home-2 .mh-header-info .mh-about-tag ul li {
      margin: 6px; }

/*
    ==============
       HOME
    ==============
*/

.mh-rtl .mh-home .mh-header-info ul li .fa {
    margin: 0 10px;
}
.mh-home .mh-header-info {
  padding-top: 100px; }
  .mh-home .mh-header-info .mh-promo {
    margin-bottom: 30px; }
    .mh-home .mh-header-info .mh-promo span {
      background-color: #0bceaf;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 1px;
      font-weight: bold;
      padding: 10px 30px;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 0px; }
  .mh-home .mh-header-info h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 65px;
    margin-top: 10px;
    margin-bottom: 10px; }
  .mh-home .mh-header-info h4 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 30px; }
  .mh-home .mh-header-info ul {
    margin-top: 20px; }
    .mh-home .mh-header-info ul li {
      margin: 10px 0; }
      .mh-home .mh-header-info ul li .fa {
        margin-right: 15px;
        display: inline-block; }
      .mh-home .mh-header-info ul li address {
        display: inline-block; }
      .mh-home .mh-header-info ul li:hover .fa {
        color: #0bceaf; }
  .mh-home .mh-header-info .social-icon {
    margin-top: 0; }
    .mh-home .mh-header-info .social-icon li .fa {
      font-size: 18px;
      line-height: 30px;
      padding: 4px 14px;
      margin-right: 10px;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      border-radius: 3px; }
      .mh-home .mh-header-info .social-icon li .fa:hover {
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -webkit-transition: 0.3s;
        transition: 0.3s; }
    .mh-home .mh-header-info .social-icon li a {
      font-size: 25px;
      text-align: center;
      width: 30px;
      height: 30px;
      padding: 0;
      margin-right: 0;
      border-radius: 50%; }
.mh-home .hero-img {
  margin: 0 auto;
  float: none;
  margin-top: 30px;
  text-align: center; }
  .mh-home .hero-img img {
    margin: 0 auto;
    float: none;
    text-align: center;
    border: 20px solid rgba(0, 0, 0, 0.17);
    border-radius: 50%; }
.mh-home .img-border {
  height: 400px;
  width: 400px;
  border: 20px solid rgba(0, 0, 0, 0.07);
  margin: 0 auto;
  border-radius: 50%; }

.mh-featured-project-img img {
  width: inherit !important;
  margin: 0 auto; }

.mh-single-project-slide-by-side {
  margin: 0 auto; }

/*
    ==============
       ABOUT
    ==============
*/
.mh-about .mh-about-inner {
  padding-left: 50px; }
  .mh-about .mh-about-inner h2 {
    margin-bottom: 20px;
    margin-top: 20px; }
  .mh-about .mh-about-inner p {
    margin-bottom: 30px; }
  .mh-about .mh-about-inner .btn {
    margin-top: 20px; }
    .mh-about .mh-about-inner .btn .fa {
      margin-left: 10px; }

.mh-about-tag {
  word-break: break-all;
  margin-bottom: 10px;
  margin-top: 10px; }
  .mh-about-tag ul li {
    margin: 0px 6px;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 4px 0px;
    display: inline-block; }
    .mh-about-tag ul li span {
      border: 1px solid #0bceaf;
      padding: 4px 10px;
      border-radius: 4px; }
      .mh-about-tag ul li span:hover {
        background-color: transparent !important; }


.mh-footer ::placeholder {
  opacity: 0.9; }
.mh-footer .form-control {
  padding: 20px;
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .mh-footer .form-control:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    border-color: transparent; }
.mh-footer .contact-message {
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  background-color: transparent;
  border-color: transparent;
  border-radius: 4px;
  margin-bottom: 20px;
  width: 100%;
  padding: 20px;
  outline: 0; }
  .mh-footer .contact-message:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    border-color: transparent; }

/*
    ==============
       MAP
    ==============
*/
.mh-map {
  padding: 0px;
  margin-top: 10px; }
  .mh-map #mh-map {
    height: 400px;
    width: 100%; }

/*
    ============
    Footer Address
    ==============
*/
.mh-footer-address {
  margin-bottom: 60px; }
  .mh-footer-address .mh-address-footer-item {
    padding: 30px;
    text-align: center;
    margin-bottom: 30px; }
    .mh-footer-address .mh-address-footer-item h4 {
      margin-bottom: 20px; }
    .mh-footer-address .mh-address-footer-item address {
      margin-bottom: 0; }
    .mh-footer-address .mh-address-footer-item .each-icon {
      margin-bottom: 30px; }
      .mh-footer-address .mh-address-footer-item .each-icon .fa {
        text-align: center;
        width: 100px;
        height: 100px;
        border: 1px solid;
        border-radius: 50%;
        line-height: 100px;
        font-size: 20px;
        border-color: #0bceaf; }


/*
==================
    FOOTER 3
=================
*/
.mh-footer-3 .mh-footer-address .mh-address-footer-item {
  padding: 10px 30px;
  text-align: center;
  margin-bottom: 15px; }
  .mh-footer-3 .mh-footer-address .mh-address-footer-item h4 {
    margin-bottom: 10px;
    margin-top: 10px; }
  .mh-footer-3 .mh-footer-address .mh-address-footer-item .each-info {
    padding-left: 40px;
    text-align: left; }
.mh-footer-3 .form-control {
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  background-color: transparent;
  border-color: transparent;
  margin-bottom: 20px;
  height: 50px;
  line-height: 50px; }
  .mh-footer-3 .form-control:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    background-color: transparent; }
.mh-footer-3 .contact-message {
  -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8); }
  .mh-footer-3 .contact-message:focus {
    -webkit-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0px 2px 0 rgba(255, 255, 255, 0.8), 0 0px 1px 1px rgba(255, 255, 255, 0.8);
    background-color: transparent; }

/*
===============
    Mobile Nav
==============
*/
  /*==============
            Overlay            
  ================== */
  /*  Navigation Menu */ 
  .old .navbar-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 320px;
    left: 0;
    z-index: 990;
    margin-top: 0px;
    padding: 0;
    background-color: #0bceaf;
    transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: none; }
  .old .navbar-collapse.show {
    transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1); }
  .old .collapse {
    display: block; }
  .old .navbar-fixed-bottom .navbar-collapse,
  .old .navbar-fixed-top .navbar-collapse {
    max-height: inherit; }
  .old .navbar-header {
    position: fixed;
    z-index: 999;
    width: 100%;
    margin-top: 0px;
    left: 0; }
  .old .navbar-toggler .icon {
    transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1); }
  .old .navbar-toggler .icon,
  .old .navbar-toggler .icon::after,
  .old .navbar-toggler .icon::before {
    width: 22px;
    height: 2px;
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .old .navbar-toggler .icon::after,
  .old .navbar-toggler .icon::before {
    content: '';
    top: 0;
    right: 0;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .old .navbar-toggler .icon::after {
    transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1); }
  .old .navbar-toggler .icon::before {
    transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1); }
  .old .navbar-toggler.active .icon::after {
    transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1); }
  .old .navbar-toggler.active .icon::before {
    transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1); }
  .old .navbar-toggler.active .icon::after,
  .old .navbar-toggler.active .icon::before {
    background-color: #fff; }
  .old .navbar-toggler.active .icon {
    background-color: transparent; }
  .old .navbar-toggler:focus {
    outline: 0 !important; }
  .old .strict {
    background-color: rgba(0, 0, 0, 0.9);
    padding-bottom: 65px; }
  .old .navbar-toggler {
    padding: 15px;
    margin-right: 15px;
    margin-left: 20%;
    margin-top: 15px;
    z-index: 1000;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block; }
  .old .navbar-header .navbar-toggler .icon-bar {
    background-color: #0bceaf;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .old .navbar-header .navbar-toggler.active .icon-bar {
    background-color: #fff; }
  .old .overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3; }
  .old .overlay.active {
    display: block; }
  .old .navbar-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 320px;
    left: 0;
    z-index: 990;
    margin-top: 0px;
    padding: 0;
    background-color: #0bceaf;
    transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: none; }
  .old .navbar-collapse .nav {
    margin-top: 75px;
    border-top: 1px solid;
    border-top-color: rgba(255, 255, 255, 0.1);
    padding: 20px; }
  .old .navbar-collapse .nav li {
    text-align: center;
    margin-bottom: 0px;
    width: 100%;
    display: block;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate3d(-20px, -10px, 0); }
  .old .navbar-collapse .nav li a {
    background-color: transparent;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 26px; }
  .old .navbar-collapse .nav li a:hover {
    color: white !important;
    background: transparent; }
  .old .navbar-collapse .nav li a.active {
    color: #fff; }
  .old .navbar-collapse .nav li.active {
    color: #fff; }
  .old .navbar-collapse.active {
    transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1); }
  .old .collapse.in {
    background-color: rgba(0, 0, 0, 0.9); }
  .old .navbar-dark .navbar-toggler {
    border-color: transparent; }
  .old .navbar-dark .navbar-toggler-icon {
    background-image: inherit; }

.new {
  z-index: 99;
  /*-------------------------------*/
  /*            Overlay            */
  /*-------------------------------*/
  /*  Navigation Menu */ }
  .new .nav-btn .navbar-toggler.active {
    display: none; }
  .new .navbar-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 320px;
    left: 0;
    z-index: 990;
    margin-top: 0px;
    padding: 0;
    background-color: #0bceaf;
    transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: none; }
  .new .navbar-collapse.active {
    transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1); }
  .new .collapse {
    display: block; }
  .new .navbar-fixed-bottom .navbar-collapse,
  .new .navbar-fixed-top .navbar-collapse {
    max-height: inherit; }
  .new .navbar-header {
    position: fixed;
    z-index: 999;
    width: 100%;
    margin-top: 0px;
    left: 0; }
  .new .navbar-toggler .icon {
    transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0deg) scale(1); }
  .new .navbar-toggler .icon,
  .new .navbar-toggler .icon::after,
  .new .navbar-toggler .icon::before {
    width: 22px;
    height: 2px;
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .new .navbar-toggler .icon::after,
  .new .navbar-toggler .icon::before {
    content: '';
    top: 0;
    right: 0;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .new .navbar-toggler .icon::after {
    transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(6px) translateZ(0) rotate(0deg) scale(1); }
  .new .navbar-toggler .icon::before {
    transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(-6px) translateZ(0) rotate(0deg) scale(1); }
  .new .navbar-toggler.active .icon::after {
    transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(138deg) scale(1); }
  .new .navbar-toggler.active .icon::before {
    transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(-135deg) scale(1); }
  .new .navbar-toggler.active .icon::after,
  .new .navbar-toggler.active .icon::before {
    background-color: #fff; }
  .new .navbar-toggler.active .icon {
    background-color: transparent; }
  .new .navbar-toggler:focus {
    outline: 0 !important; }
  .new .strict {
    background-color: rgba(0, 0, 0, 0.9);
    padding-bottom: 65px; }
  .new .navbar-toggler {
    padding: 15px;
    margin-right: 15px;
    margin-left: 20%;
    margin-top: 15px;
    z-index: 1000;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block; }
  .new .navbar-header .navbar-toggler .icon-bar {
    background-color: #0bceaf;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .new .navbar-header .navbar-toggler.active .icon-bar {
    background-color: #fff; }
  .new .overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3; }
  .new .overlay.active {
    display: block; }
  .new .navbar-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 320px;
    left: 0;
    z-index: 990;
    margin-top: 0px;
    padding: 0;
    background-color: #0bceaf;
    transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(-100%) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: none; }
  .new .navbar-collapse .nav {
    margin-top: 75px;
    border-top: 1px solid;
    border-top-color: rgba(255, 255, 255, 0.1);
    padding: 20px; }
  .new .navbar-collapse .nav li {
    text-align: center;
    margin-bottom: 0px;
    width: 100%;
    display: block;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate3d(-20px, -10px, 0); }
  .new .navbar-collapse .nav li a {
    background-color: transparent;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 26px; }
  .new .navbar-collapse .nav li a:hover {
    color: white !important;
    background: transparent; }
  .new .navbar-collapse .nav li a.active {
    color: #fff; }
  .new .navbar-collapse .nav li.active {
    color: #fff; }
  .new .navbar-collapse.active {
    transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1);
    -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1); }
  .new .collapse.in {
    background-color: rgba(0, 0, 0, 0.9); }
  .new .navbar-dark .navbar-toggler {
    border-color: transparent; }
  .new .navbar-dark .navbar-toggler-icon {
    background-image: inherit; }

.teal{
  background-color: teal !important;
}

/*
    ==============
       SERVICES
    ==============
*/
.mh-service{
  margin-top: 30px;
  margin-bottom: 30px;
}

.mh-service .mh-service-item {
  padding: 20px;
  flex: 1;
}
  
  .mh-service .mh-service-item h3 {
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 34px; }
  .mh-service .mh-service-item a {
    color: #0bceaf; }
    .mh-service .mh-service-item a .fa {
      font-size: 16px;
      line-height: 27px;
      margin-left: 6px; }


/* OWN FOOTER */
.foo{
  background-color: #30336b;
  padding: 20px;
}
.footo{
  display: flex;
  align-items: center;
  justify-content: center; 
}
.social-buttons a{
  display: inline-flex;
  text-decoration: none;
  font-size: 18px;
  width: 60px;
  height: 60px;
  color: #fff;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 8px;
}

.social-buttons a::before{
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg,#22a6b3,#30336b);
  border-radius: 50%;
  z-index: -1;
  transition: 0.3s ease-in;
}

.social-buttons a:hover::before{
  transform: scale(0);
}

.social-buttons a i{
  transition: 0.3s ease-in;
}

.social-buttons a:hover i{
  background: linear-gradient(45deg,#22a6b3,#30336b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(2.2);
}

/* LINK DEcoration in PROJECTS */
.viewlink{
  border: 2px solid teal;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 5px;
  display: inline;
}
/* Head Name glow */
.hname {
	text-decoration: none;
  color: #c6e2ff;
  animation: neon 1s ease-in-out infinite alternate;

}
@keyframes neon {
  from {
    text-shadow:
    0 0 6px rgba(202,228,225,0.92),
    0 0 30px rgba(202,228,225,0.34),
    0 0 12px rgba(30,132,242,0.52),
    0 0 21px rgba(30,132,242,0.92),
    0 0 34px rgba(30,132,242,0.78),
    0 0 54px rgba(30,132,242,0.92);
  }
  to {
    text-shadow:
    0 0 6px rgba(202,228,225,0.98),
    0 0 30px rgba(202,228,225,0.42),
    0 0 12px rgba(30,132,242,0.58),
    0 0 22px rgba(30,132,242,0.84),
    0 0 38px rgba(30,132,242,0.88),
    0 0 60px rgba(30,132,242,1);
  }
}
