﻿/**
* Template Name: MyResume - v4.8.1
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;600&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif; background: #111;
  color: #272829;
}

:root{--yellow:#cb9d50;}

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

a:hover {
  color: #222;
  text-decoration: none;
}

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

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

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

.back-to-top:hover {
  background: #000;
  color: #222;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--yellow);
  border-top-color: #000;
  border-bottom-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


section{min-height: 100vh;}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.logoArea {position: absolute; top: 0.5px; left: 0; right: 0; display: block; padding: 8px 15px; z-index: 9999; background:rgba(0,0,0,.5);
-webkit-box-shadow: 0px 25px 20px 0px rgba(0,0,0,0.5);
-moz-box-shadow: 0px 25px 20px 0px rgba(0,0,0,0.5);
box-shadow: 0px 25px 20px 0px rgba(0,0,0,0.5);
}
.logoArea img{height: 85px; transition:all .5s ease-in-out;}
.sticky{position: fixed; background: #000; top: 0;}
.sticky img{height: 50px;}


.headNav{display: block; width: 100%; text-align: right;}
.headNav ul{list-style-type: none; margin: 0; padding: 0;}
.headNav ul li{display: inline-block; margin: 0 5px; text-transform: uppercase; font-size: 12px;}
.headNav ul li a{ display: block; padding: 3px 18px; background: none; color: #fff; border-radius:50px;}
.headNav ul li a:hover, .headNav ul li.active a{background: var(--yellow); color: #000;}


#header {
  position: fixed;
  top: 45%;
  left: 0;
  bottom: 0;
  z-index: 9999;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 992px) {
  .logoArea{text-align:center; position:fixed;}
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px; top:0;
  }
  .headNav{text-align:center; padding:8px 0 0;}
  .headNav ul li{margin:0;}
  .headNav ul li:first-child{display:none;}
  .headNav ul li a{padding: 3px 5px;}
}

@media (min-width: 992px) {
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px 10px 10px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}
.nav-menu a img{height: 35px;}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}
.nav-menu a:hover img,
.nav-menu a.active img {
  filter: brightness(0) invert(1);
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: var(--yellow);
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top:25px;
  z-index: 99999;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
  color:#fff;
}

.mobile-nav-toggle i {
  color: #fff;
}

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

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: var(--yellow);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background:top right no-repeat fixed; background-color:#222; padding-left:160px;
  background-size: cover;
  position: relative;
}
#hero > small{position:absolute; bottom:20px; left:0; right:0; text-align:center; color:#fff; letter-spacing:10px; font-size:14px; font-family: "Cormorant SC", serif; text-transform:uppercase;}

@media (max-width: 992px) {
  #hero {
    padding: 120px 0 20px; background-blend-mode:soft-light;
    min-height:100vh; height:auto;
  }
}

/*#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}*/

#hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 300; letter-spacing:-1px;
  line-height: 56px;
  color: #fff;
}

#hero > div{border-left:2px #fff solid; padding:0px 0 10px 30px;}

#hero p {
  color: #fff;
  margin: 15px 0 0 0;
  font-size: 22px; font-weight:300;
}
#hero p + p{width: 50%; font-size:16px; margin-bottom: 20px;}
#hero a, .contentBox a, .infrastructure a{text-transform: uppercase; font-size: 14px; letter-spacing:1px; border-bottom: 2px var(--yellow) solid; font-weight: 300; padding: 5px 0; transition:all .5s ease-in-out;}
#hero a:hover, .contentBox a:hover, .infrastructure a:hover{color:#fff; letter-spacing:2px;}

#hero p span {
  color: var(--yellow);
  letter-spacing: 1px;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: var(--yellow);
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
  #hero > div{border-left:none; padding:0 20px;}

  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
  #hero p + p{width:100%;}
  #hero > small{letter-spacing:5px; font-size:10px;}
}

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

.contentBox{color:#fff; border-left:2px #fff solid; padding:0 0 10px 30px;}
.contentBox h2 {font-weight: 300; font-size: 42px; line-height:36px; margin-bottom:15px;}
.contentBox p{width:55%; font-size:16px; font-weight:300; margin-bottom:25px;}




/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{background:#444 top right no-repeat fixed;  background-size: cover; display: block; overflow: hidden; padding-left:160px;}


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume{background:#444 top right no-repeat fixed;  background-size: cover; display: block; overflow: hidden; padding-left:160px;}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.infrastructure{background:#444 top center no-repeat;  background-size: cover; display: block; overflow: hidden;}
.infrastructure > div{text-align:center; color:#fff;}
.infrastructure h3{font-weight:300; font-size:42px;}
.infrastructure p{width:700px; max-width:100%; margin:0 auto 25px; font-size:16px; font-weight:300;}


@media (max-width: 992px) {
  .contentBox{border:none; padding:0 20px; text-align:center;}
  .contentBox h2, .infrastructure h3{font-size:24px;}
  .contentBox p{width:100%;}
  
  .about, .resume, .infrastructure{padding-left:0; background-blend-mode:soft-light; padding:120px 0 30px;}
  #footer p a{display:block; clear:both; overflow:hidden; padding:5px 0;}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000 url('../img/stone.jpg') no-repeat center center fixed; background-size:cover;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 50px 0;
}

#footer img {
max-height:100px;
   margin: 0;
}

#footer p {
  font-size: 15px;
  padding: 0;
  margin: 20px 0;
}
#footer p a{margin:0 10px; color:#888!important;}
#footer p a i{position:relative; top:2px; margin-right:3px; color:var(--yellow)!important;}
#footer p a:hover{color:#fff!important;}

#footer .social-links {
  margin: 20px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--yellow);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: var(--yellow);
  text-decoration: none;
}

#footer .copyright {
  margin:0; font-size:12px; color:#666;
}



.innerArea{background: url("../img/innerbg.jpg") bottom right no-repeat fixed; padding:180px 0 70px; background-size:cover; display:block;overflow:hidden; color:#fff; min-height:100vh;}
.innerArea h1{display:block; text-align:center; padding-bottom:25px; margin-bottom:0; text-shadow: 0px 0px 8px #000; font-size:48px; position:relative;}
.innerArea .container h1:before{position:absolute; left:5%; right:5%; bottom:-10px; height:20px; border-radius:25px; content:''; display:block; background:var(--yellow);}
.innerArea .container > div{display:block; overflow:hidden; padding:40px 30px 20px; background:rgba(255,255,255,0.9);color:#222;}


.serviceBox [class^="col-"]{ margin-bottom: 30px;}
.serviceBox [class^="col-"] div{background:#fff; padding: 10px 15px; display: block;}
.serviceBox [class^="col-"] a{color: #222; text-align: center;}
.serviceBox [class^="col-"] a span{background: var(--yellow); padding: 5px 20px; display: inline-block; font-size: 12px; border-radius:15px;}
.serviceBox [class^="col-"] a span:hover{background: #000; color: #fff;}


.callus{display:block; oveflow:hidden; margin-top:25px; font-size:20px!important; background: var(--yellow); text-align: center; padding: 10px; border-radius:30px;}
.callus a{font-weight: 700; color: #222;}
.callus a:hover{color: #fff;}

div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form select.wpforms-field-medium, div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium{max-width:100%!important;}

div.wpforms-container-full .wpforms-form input[type="submit"], div.wpforms-container-full .wpforms-form button[type="submit"], div.wpforms-container-full .wpforms-form .wpforms-page-button{width: 100%!important;background: var(--yellow)!important; text-transform: uppercase; font-weight: 600;}
div.wpforms-container-full .wpforms-form input[type="submit"]:hover, div.wpforms-container-full .wpforms-form button[type="submit"]:hover, div.wpforms-container-full .wpforms-form .wpforms-page-button:hover{background: #000!important; color: #fff!important;}

.contactboxDetails > div{display:block; clear:both; border-bottom:1px rgba(0,0,0,0.1) solid; padding:12px 0 12px 50px; position:relative;}
.contactboxDetails > div:last-child{border:none;}
.contactboxDetails > div strong{display:block;}
.contactboxDetails > div a{color:#000; letter-spacing:1px;}
.contactboxDetails > div a:hover{color:var(--dark);}
.contactboxDetails > div i{position:absolute; font-size:36px; left:0; top:18px; color:var(--green);}
.contactboxDetails > div:hover i{color:var(--dark);}

div.wpforms-container-full .wpforms-form input.wpforms-field-medium, div.wpforms-container-full .wpforms-form select.wpforms-field-medium, div.wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium {
  max-width: 100%!important; width: 100%!important;
}

.goog-te-gadget .goog-te-combo{margin: 0!important; background:#222; color: #fff; border: 1px #ddd solid; padding: 8px; border-radius: 5px;}