/* INDEX OF CONTENTS CSS
=================================================
  XX. GOOGLE FONTS & FONTS FAMILY
  01. TYPOGRAPHY
  02. GENERAL
  03. PRELOADER
  04. NAVIGATION
  05. HOME
  06. ABOUT
  07. THINGS I'M PROUD OF
  08. SKILLS
  09. PROJECTS
  10. CONTACT
  11. FOOTER
*/

/* XX. GOOGLE FONTS & FONTS FAMILY
=================================================*/

/*
font-family: 'Hind', sans-serif;
font-family: 'Lato', sans-serif;
*/

/* 01. TYPOGRAPHY
=================================================*/

h1,
h2 {
  font-family: "Hind", sans-serif;
  margin: 0;
  padding: 0;
}

h3,
h4,
h5,
h6,
p,
a {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 2.7em;
  margin-bottom: 20px;
  color: #131313;
}

h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #131313;
}

p {
  color: #181a1b;
  font-size: 16px;
}

a {
  color: rgb(52, 148, 42);
}

a:hover,
a:focus,
a:active {
  color: rgb(17, 70, 11);
}

/* 02. GENERAL
=================================================*/

body {
  font-family: "Lato", sans-serif;
  line-height: 26px;
  margin: 0;
  padding: 0;
}

.btn {
  padding: 8px 25px;
  text-transform: capitalize;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  margin-right: 4px;
  margin-bottom: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}

.btn:hover,
.btn:active,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-lg {
  padding: 20px 50px;
  font-size: 18px;
}

.btn-light {
  background: hsla(114, 62%, 21%, 0.78);
  color: #fff;
  border: none;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  background: #616161 !important;
  color: #fff;
  visibility: visible;
  opacity: 1;
}

.btn-dark {
  background: #131313;
  color: #fff;
  border: none;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  background: hsla(114, 62%, 21%, 0.78) !important;
  visibility: visible;
  color: #fff;
}

.btn.with-arrow {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.btn.with-arrow:hover {
  padding-right: 50px;
}

.btn.with-arrow i {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn.with-arrow:hover i {
  color: #fff;
  right: 18px;
  visibility: visible;
  opacity: 1;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

/* 03. PRELOADER
=================================================*/

#preloader {
  position: fixed;
  background: #131313;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  z-index: 10000;
}

#status {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
}

.loader-revolve {
  height: 32px;
  width: 32px;
}

.loader-revolve::after {
  position: absolute;
  display: block;
  background: #fff;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  -webkit-animation: loader-revolve-1 2s cubic-bezier(0.77, 0, 0.175, 1)
    infinite;
  animation: loader-revolve-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes loader-revolve-1 {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}

@keyframes loader-revolve-1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.loader-revolve span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  -webkit-animation: loader-revolve-2 2s cubic-bezier(0.77, 0, 0.175, 1)
    infinite;
  animation: loader-revolve-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes loader-revolve-2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes loader-revolve-2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-revolve span::before,
.loader-revolve span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 12px;
  width: 12px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: loader-revolve-3 2s cubic-bezier(0.77, 0, 0.175, 1)
    infinite;
  animation: loader-revolve-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes loader-revolve-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(-16px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loader-revolve-3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-16px, 0, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.loader-revolve span::after {
  -webkit-animation: loader-revolve-4 2s cubic-bezier(0.77, 0, 0.175, 1)
    infinite;
  animation: loader-revolve-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes loader-revolve-4 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    -webkit-transform: translate3d(16px, 0, 0) scale(0.5);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loader-revolve-4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(16px, 0, 0) scale(0.5);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* 04. NAVIGATION
=================================================*/

#navigation {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.logo {
  padding-top: 28px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.logo a {
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}

.navigation-menu .navbar-nav li a {
  color: rgba(255, 255, 255, 0.71);
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 18.15px;
  padding: 30px 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navigation-menu .navbar-nav .active {
  color: #fff;
}

.navigation-menu .navbar-nav li a:hover {
  color: #fff;
  background: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
  color: rgba(255, 255, 255, 0.8);
  background: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  margin: 0;
}

.nav-bg {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.nav-bg .logo {
  padding-top: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.nav-bg .logo a {
  color: #131313;
}

.nav-bg .logo a:hover {
  color: hsla(114, 62%, 21%, 0.78);
}

.nav-bg .navigation-menu .navbar-nav li a {
  color: #131313;
  padding: 20px 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-bg .navigation-menu .navbar-nav li a:hover {
  color: hsla(114, 62%, 21%, 0.78);
}

.nav-bg .navbar-nav > .active > a,
.nav-bg .navbar-nav > .active > a:hover,
.nav-bg .navbar-nav > .active > a:focus {
  color: hsla(114, 62%, 21%, 0.78) !important;
  background-color: transparent;
}

/* 05. HOME
=================================================*/

#home {
  height: 100vh;
}

.home-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  background-repeat: no-repeat;
  /* object-fit: cover; */
  background-color: #00230b;
}

.overlay:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
}

.home-text {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 100;
}

.profile-pic img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin: 0 auto;
  transform: scale(1.2);
}

.home-text h1 {
  color: #fff;
  font-size: 4em;
  line-height: 80px;
  margin-top: 30px;
}

.home-text h3 {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 2px;
}

.arrow {
  color: #fff;
  font-size: 3em;
  white-space: nowrap;
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 750ms ease-in-out;
  -ms-transition: all 750ms ease-in-out;
  -o-transition: all 750ms ease-in-out;
  transition: all 750ms ease-in-out;
  z-index: 100;
}

.lift {
  bottom: 64px;
}

.display-table {
  display: table;
  width: 100%;
  height: 100%;
}

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
}

/* 06. ABOUT
=================================================*/

#about {
  padding: 90px 0 75px;
  background: #fff;
}

#about h2 {
  margin-top: 0;
}

.description {
  max-width: 100%;
  width: 30em;
}

.description p {
  margin-bottom: 20px;
}

.social-icons {
  padding-left: 0px;
}

.social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
}

.social-icons li a {
  color: #131313;
  background: rgba(42, 41, 41, 0);
  display: inline-block;
  display: -moz-inline-stack;
  width: 50px;
  height: 40px;
  box-sizing: border-box;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.social-icons li a:hover {
  color: hsla(114, 62%, 21%, 0.78);
}

.facts {
  float: right;
  width: 50em;
}

.count-item {
  margin-right: 0;
  margin-bottom: 15px;
}

.numscroller {
  color: #131313;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 20px;
  font-family: "Lato", sans-serif;
}

.count-name-intro {
  color: #131313;
  font-size: 1em;
  font-weight: 300;
  font-family: "Lato", sans-serif;
}

/* 08. THINGS I'M PROUD OF
=================================================*/

#things-im-proud-of {
  padding: 95px 0px 70px;
  background: #f2f2f2;
}

#things-im-proud-of .container {
  width: 55em;
}

#things-im-proud-of .title {
  text-align: center;
}

/* 08. SKILLS
=================================================*/

#skills {
  padding: 95px 0 70px;
  background: #fff;
}

#skills h2 {
  margin-bottom: 40px;
}

.skill {
  font-size: 1.2em;
  margin-bottom: 35px;
}

.skills-right {
  float: right;
}

.progress-box {
  margin-bottom: 50px;
}

.progress-box p {
  font-weight: 600;
  margin-bottom: 10px;
}

.progress {
  background-color: rgba(26, 26, 26, 0.31);
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-box .progress {
  box-shadow: none;
  height: 3px;
}

.progress-box .progress-bar {
  transition-duration: 2000ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.bg-color-base {
  background: hsla(114, 62%, 21%, 0.78) !important;
}

.color-heading {
  color: #131313 !important;
}

/* 09. PROJECTS
=================================================*/

#projects {
  padding: 90px 0 80px;
  background: #f2f2f2;
}

#projects h2 {
  margin-bottom: 10px;
}

#port-image {
  max-width: 850px;
}

.port-title {
  margin-bottom: 40px;
}

.port-row {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}

.port-col {
  text-align: right;
}

.port-text {
  padding: 10px;
  background: #fff;
  text-align: justify;
}

.port-text-justify {
  text-align: justify;
}

.grid {
  position: relative;
  margin: 0 auto;
  padding: 1em 0 1em;
  max-width: 1200px;
  list-style: none;
  text-align: center;
}

.grid figure {
  position: relative;
  overflow: hidden;
  margin: 2px 0;
  text-align: center;
  cursor: pointer;
}

.port-desc {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #131313;
  margin: 8px 5px;
  min-width: 230px;
  max-width: 375px;
  max-height: 210 px;
  width: 100%;
  line-height: 1.2em;
  text-align: center;
}

.port-desc *,
.port-desc *:before,
.port-desc *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.port-desc:before {
  position: absolute;
  background-color: #fff;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  content: "";
  opacity: 0;
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.port-desc img {
  width: 100%;
  vertical-align: top;
  height: 100%;
  object-fit: fill;
}

.port-desc figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  padding: 0 30px;
}

.port-desc h3 {
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: 2px;
}

.port-desc p {
  margin: 0 0 10px;
  opacity: 0.6;
}

.port-desc .icons {
  width: 100%;
}

.port-desc a {
  margin: 2px;
  display: inline-block;
}

.port-desc a i {
  background-color: #333333;
  color: #131313;
  text-align: center;
  border-radius: 3px;
  display: block;
  line-height: 34px;
  width: 34px;
}

.port-desc a i:before {
  color: #fff;
}

.port-desc:hover:before,
.port-desc.hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.port-desc:hover figcaption,
.port-desc.hover figcaption {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
}

/* 10. CONTACT
=================================================*/

#contact {
  padding: 95px 0 60px;
  background: #fff;
}

#contact h2 {
  margin-bottom: 45px;
}

#contact .address-icons p {
  color: #131313;
  margin-bottom: 30px;
}

#contact-form button {
  margin-top: 15px;
}

/* #contact i.fa {
  color: #131313;
  font-size: 2em;
  line-height: 45px;
  margin-bottom: 10px;
} */

#contact .text-danger {
  color: #636363;
  text-align: left;
}

label {
  float: left;
}

label.error {
  color: #515769;
  font-size: 13px;
  font-weight: 300;
  margin: 0 0 15px 0;
}

#contact .form-control {
  display: block;
  background-color: #fff;
  color: #131313;
  width: 100%;
  padding: 6px 12px;
  line-height: 1.42857143;
  background-image: none;
  border: 0;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#contact .form-control:focus {
  border-color: inherit;
  outline: 0;
  -webkit-box-shadow: transparent;
  box-shadow: transparent;
}

.form-control::-webkit-input-placeholder {
  color: #595959;
  font-size: 0.9em;
}

.form-control:-moz-placeholder {
  color: #595959;
  font-size: 0.9em;
}

.form-control::-moz-placeholder {
  color: #595959;
  font-size: 0.9em;
}

.form-control:-ms-input-placeholder {
  color: #595959;
  font-size: 0.9em;
}

textarea {
  resize: none;
}

fieldset {
  border: 0px;
  margin: 0;
  padding: 0;
}

.success {
  padding: 1em;
  color: #fff;
  background-color: hsla(114, 62%, 21%, 0.78);
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-top: 30px;
}

.error {
  padding: 1em;
  color: #fff;
  background-color: #616161;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-top: 30px;
}

/* 11. FOOTER
=================================================*/

#footer {
  padding: 20px 0 27px;
  background: #fff;
}

#footer-post {
  background: #f3f3f3;
  padding: 30px 0;
  margin-top: 100px;
}

#footer p {
  color: #131313;
}

.social-icons-footer {
  margin: 0 auto;
  padding: 0;
}

.social-icons-footer li {
  display: -moz-inline-stack;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons-footer li a {
  color: #131313;
  background: rgba(42, 41, 41, 0);
  font-size: 1.3em;
  display: -moz-inline-stack;
  display: inline-block;
  padding: 10px 10px 8px 10px;
  width: 50px;
  height: 40px;
  box-sizing: border-box;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  margin-bottom: 0;
}

.social-icons-footer li a:hover {
  color: hsla(114, 62%, 21%, 0.78);
}
