:root {
  --primary-color: #d2b356;
  --secondary-color: #e04343;
  --light-color: #fff;
  --light-contrast: #f6f6f6;
  --dark-color: #000;
  --dark-contrast: #111;
}

/* =============== GLOBAL CSS =============== */

body {
	color: var(--dark-color);
  background-color: var(--light-contrast);
  overflow-x: hidden;
	font-family: 'Raleway', sans-serif;
  font-style: normal;
	font-size: 14px;
	line-height: 22px;
  font-weight: 300;
	letter-spacing: 0.025em;
}

a,
a:hover,
a:focus,
a:active { 
	outline: none !important;
	text-decoration: none;
	color: var(--dark-color);
}

ul,
li { 
	list-style:none;
}

textarea,
input,
input:hover,
input:focus,
input:active,
input[type="text"], 
input[type="text"]:focus, 
input[type="text"]:hover, 
input[type="text"]:active, 
input[type="email"],
input[type="email"]:focus,
input[type="email"]:hover,
input[type="email"]:active,
button,
button[type="submit"]{
	box-shadow: none;
	outline: 0 !important;
  -webkit-box-shadow: none;
	-moz-box-shadow: none;
  -ms-box-shadow: none;
	-o-box-shadow: none;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
	margin: 0;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 5em;
	font-weight: 700;
  line-height: 1.05em;
  letter-spacing: -0.05em;
  margin: 0;
}

h3 {
    font-size: 1.4em;
    font-weight: 200;
    letter-spacing: 0.025em;
    line-height: 1.45em;
}

h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 3.4em;
  line-height: 1.35em;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin: 0;
}

h5 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 1.15em;
  line-height: 1.35em; 
	font-weight: 700;
}

.delay-05s {
  animation-delay: 0.5s !important;
}

.delay-1s {
  animation-delay: 1s !important;
}

.wp1,.wp2,.wp3,.wp4,.wp5,.wp6 {
	visibility:hidden;
}

.fadeInUp, .fadeInDown {
  visibility: visible;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-light {
  color: var(--light-color);
}

.text-dark {
  color: var(--dark-color);
}

.contrast-bg {
  background-color: var(--light-color);
}

.btn-theme-custom {
  border-width: 2px;
  outline: none;
  transition: all .3s ease;
  font-size: 1.4rem;
  padding: 0.8rem 1.5rem;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-theme-custom:hover {
  background-color: transparent;
  box-shadow: inset 0 -3.75rem 0 var(--secondary-color);
  color: var(--light-color);
}

/* =============== NAVIGATION BAR =============== */

.navbar {
  background-color: transparent;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.navbar ul.navbar-nav {
  flex-direction: row;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  display: inline-block;
  position: relative;
  background: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85em;
  border: 0;
  letter-spacing: 2px;
}

.navbar-nav .nav-link .line {
  display: block;
  background: var(--primary-color);
  height: 1.5px;
  width: 0px;
  margin-top: 1px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover .line {
  width: 100%;
}

.navbar-nav .nav-logo h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 33px;
  border: 2px solid rgba(210, 179, 86, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.navbar-nav .nav-logo h3:hover {
  border-color: var(--primary-color) !important;
}

.navbar-nav .nav-logo h3:hover .nav-link {
  color: var(--primary-color);
}

.nav-logo > h3 .nav-link {
  color: rgba(210, 179, 86, 0.5);
  height: 60px;
  width: 60px;
  text-align: center;
  transition: color 0.3s ease;
}

.light-nav .nav-item .nav-link {
  color: var(--light-color);
}

/* mobile */

.navbar-mobile {
  display: none;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-brand {
  display: none;
  visibility: hidden;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 33px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.mobile-brand:hover {
  color: var(--primary-color);
}

.mobile-toggler-checkbox,
.mobile-toggler-icon {
  display: none;
  visibility: hidden;
  position: fixed;
  width: 18px;
  right: 31px;
}

.mobile-toggler-checkbox {
  overflow: hidden;
  cursor: pointer;
  top: 22px;
  height: 18px;
  opacity: 0;
  z-index: 80;
}

.mobile-toggler-icon {
  background: var(--dark-color);
  top: 30px;
  height: 2px;
  z-index: 70;
  transform-origin: center;
  transition: all 0.3s ease;
}

.mobile-toggler-icon::before,
.mobile-toggler-icon::after {
  display: block;
  position: absolute;
  content: "";
  background: var(--dark-color);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.light-icon,
.light-icon::before,
.light-icon::after {
  background: var(--light-color);
}

.mobile-toggler-icon::before {
  top: -6px;
}

.mobile-toggler-icon::after {
  bottom: -6px;
}

/* Hamburger Menu on Checked */

.mobile-toggler-checkbox:checked ~ .mobile-toggler-icon {
  transform: rotate(45deg);
}

.mobile-toggler-checkbox:checked ~ .mobile-toggler-icon::before {
  transform: rotate(86deg);
  top: 0;
  width: 0;
}

.mobile-toggler-checkbox:checked ~ .mobile-toggler-icon::after {
  transform: rotate(90deg);
  bottom: 0;
}

.container .mobile-toggler-checkbox:checked ~ .navbar-mobile {
  display: block !important;
  visibility: visible !important;
}


/* =============== HOMEPAGE =============== */

.hero {
  background: url(../img/header-bg.png) right bottom no-repeat;
  background-size: contain;
  padding: 110px 0 100px 0;
  height: 100vh;
}

.hero .row .col-md-8 {
  padding-top: 138px;
}

.hero h1 {
  font-size: 120px;
  letter-spacing: -8px;
  margin: 0;
  line-height: 95px;
  text-transform: uppercase;
}

.hero h3 {
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
  padding: 0;
  opacity: 0.5;
  letter-spacing: 18px;
  line-height: 50px;
}

.hero .hero-footer {
  position: fixed;
  text-transform: uppercase;
  bottom: 10px;
  left: 22%;
}

/* =============== ABOUT SECTION =============== */

.about {
  background-color: var(--light-color);
  padding-top: 140px;
}

.about .col-md-offset-7 {
  margin-left: 58.33333%;
}

.about-skills .row h3,
.about-skills .row h4,
.about-services .row h3,
.about-services .row h4,
.about-work .row h3,
.about-work .row h4,
.contact h3,
.contact h4 {
  width: 100%;
}

.about-skills .row h4,
.about-services .row h4,
.about-work .row h4,
.contact h4 {
  margin-bottom: 30px;
}

.about-skills .row h3,
.about-services .row h3,
.about-work .row h3,
.contact h3 {
  margin: 0;
  text-align: center;
}

.about hr {
  margin: 30px 0;
}

/* Introduction */

.about .about-introduction-row-image {
  padding-bottom: 100px;
  background: url(../img/author_img_2.jpg) top left no-repeat;
  background-size: 55%;
  position: relative;
}

.about .about-introduction-content .btn-theme-custom {
  font-size: 1rem;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.about .about-introduction-content .btn-theme-custom:hover {
  color: var(--light-color);
  box-shadow: inset 0 -3.75rem 0 var(--primary-color);
}

.about .about-introduction-content ul {
  padding-inline-start: 0;
}

.about .about-introduction-content ul li {
  clear: both;
  position: relative;
}

.about .about-introduction-content ul li label {
  display: inline-block;
  background: var(--light-contrast);
  padding: 5px 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.about .about-introduction-content ul li span {
  padding: 5px 0;
  position: absolute;
  left: 115px;
}

/* Skills */

.about-skills {
  background: url(../img/skills-background.jpg);
  position: relative;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  padding: 105px 0;
}

.introduction-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.introduction-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 126px;
  transform: rotateY(180deg);
}

.introduction-divider .shape-fill {
  fill: var(--light-color);
}

.about-skills .skills {
  float: left;
  margin-bottom: 30px;
}

.about-skills h5 {
  margin-bottom: 20px;
}

.about-skills .skills-bar-graph {
  position: relative;
  margin-bottom: 25px;
}

.about-skills .skills-bar-graph .main-layer {
  background-color: #ddd;
  height: 3px;
  position: relative;
  z-index: 1;
}

.about-skills .skills-bar-graph .percent-layer {
  background-color: var(--primary-color);
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-skills .percent-99 {
  width: 99%;
}

.about-skills .percent-55 {
  width: 55%;
}

.about-skills .percent-85 {
  width: 85%;
}

.about-skills .percent-20 {
  width: 20%;
}

.about-skills .percent-89 {
  width: 89%;
}

.about-skills .percent-60 {
  width: 60%;
}

.about-skills .percent-75 {
  width: 75%;
}

.about-skills .percent-40 {
  width: 40%;
}

/* Services */

.about .about-services {
  padding-top: 35px;
}

.about-services .media {
  margin-bottom: 30px;
}

.about-services .media-left span {
  padding: 20px;
  margin-top: 0px;
  margin-right: 10px;
  font-size: 2em;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

/* Work / Gallery */

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.gallery-item {
  position: relative;
  margin: 0.6rem 10px;
  padding: 0;
  flex: 0 0 48%;
  max-width: 48%;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
  transition: opacity 0.3s ease;
}

.gallery-item-content:hover {
  opacity: 1;
}

.gallery-item-content a {
  border-radius: 0px;
    border: 0px;
    width: 100%;
    height: 100%;
    padding: 8px;
    background: rgba(0,0,0,0.5);
    display: inline-block;
    cursor: pointer;
}

.gallery-item-content a h4,
.gallery-item-content a p {
  color: var(--light-color);
}

.about-work .gallery-item-content a h4 {
  text-align: left;
  font-size: 2.6em;
  margin-bottom: 0;
}

/* =============== CONTACT =============== */

.contact {
  position: relative;
  overflow-x: hidden;
  background-color: var(--dark-contrast);
  color: var(--light-color);
  height: 100vh;
}

.contact .contact-footer {
  position: absolute;
  background-color: var(--dark-contrast);
  color: var(--light-color);
  bottom: 0;
}

.contact .contact-footer hr {
  background-color: var(--light-contrast);
  margin-bottom: 10px;
  padding: 0;
}

.contact .row {
  padding-top: 150px;
}

.contact input.form-control,
.contact textarea.form-control {
  background: none;
  box-shadow: none;
  resize: none;
  border: 0;
  border-bottom: 1px solid rgba(256,256,256,0.25);
  border-radius: 0px;
  color: rgba(256,256,256,0.75);
  padding: 20px 30px;
}

.contact .send {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.contact .send .btn-theme-custom {
  font-size: 1.2em;
  width: 140px;
  color: var(--light-color);
  border-color: var(--light-color);
}

.contact .send .btn-theme-custom:hover {
  color: var(--dark-color);
  box-shadow: inset 0 -3.75rem 0 var(--light-color);
}

/* =============== FOOTER =============== */

.footer {
  background-color: var(--light-color);
  width: 100%;
  padding-bottom: 25px;
}

.footer hr {
  padding: 10px 0;
  width: 70%;
  margin: 0 auto;
}

.footer p {
  text-align: center;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer .maple-leaf {
  color: var(--secondary-color);
  font-size: 1.5em;
  text-align: center;
  width: 100%;
}