/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
   General
   ========================================================================== */
  html {
    height: 100%;
    max-height: 100%;
	  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    background-color:#fff;
    min-height: 100%;
    margin: 0;
  }

  img {
    max-width: 100%;
  }

  iframe {
    border: none;
    width: 100%; /* Make it responsive */
    display: block; /* Remove potential extra spacing */
  }

  ::-moz-selection {
    background: #ffff99;
  }

  ::selection {
    background: #ffff99;
  }

  .header-nav {
    position: sticky;
    top: 0;
    background-color: #fff;
    border-bottom: .1rem solid rgba(18,18,18,.08);
    z-index: 999;
  }

  .btn i {
    margin-left: 10px;
  }

  .btn-light,
  .btn-warning,
  .btn-dark {
    font-size: 0.8125rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #000000;
    background: #000000;
    color: #ffffff;
    border-radius: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .btn-warning {
    border: 2px solid #c49b66;
    background: #c49b66;
  }

  .btn-light {
    border: 2px solid #ffffff;
    background: #ffffff;
  }

  .btn-light,
  .btn-warning:visited,
  .btn-dark:visited {
    color: #ffffff;
  }

  .btn-light:hover,
  .btn-warning:hover,
  .btn-dark:hover {
    background: transparent;
    color: #000000;
    -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  .btn-light:hover {
    color: #ffffff;
  }

  .btn-warning:hover {
    color: #c49b66;
  }

  @media (max-width: 767px) {
    .btn-light,
    .btn-warning,
    .btn-dark {
      font-size: 0.625rem;
    }
  }

  .light-bg {
    background-color: #f8f0e7;
  }

/* ==========================================================================
   Typography
   ========================================================================== */

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  -webkit-font-feature-settings: 'kern' 1;
  -moz-font-feature-settings: 'kern' 1;
  -o-font-feature-settings: 'kern' 1;
  text-rendering: geometricPrecision;
}

h1,h2,h3,h4,h5,h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Josefin Sans', sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1;
  -moz-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1;
  -o-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1;
}

p, ul, ol, dl {
  -webkit-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
  -moz-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
  -o-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
  margin: 0 0 1em 0;
  text-rendering: geometricPrecision;
}

a {
  color: #c49b66;
  outline: none;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

a:visited,
a:hover, 
a:active,
a:focus {
  color: #000000;
  outline: none;
  text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */

.navbar {
  font-family: 'Josefin Sans', sans-serif;
}

.navbar-brand {
  font-size: 3rem;
  font-weight: 700;
  color: #c49b66;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-brand:visited,
.navbar-brand:hover,
.navbar-brand:focus {
  color: #c49b66;
  transform: scale(1.05);
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (max-width: 767px) { 
  .navbar-nav .nav-link {
    font-size: 16px;
    font-size: 1rem;
  }
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: #c49b66;
}

.btn-outline-info {
  color: #000000;
  border: 2px solid #c49b66;
  border-radius: 0;
  text-transform: capitalize;
  font-size: 20px;
  font-size: 1.25rem;
}

.hero .btn-outline-info {
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-color: #000000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.hero .btn-outline-info:hover {
  -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle,
.btn-outline-info:hover,
.btn-outline-info:active {
  border: 2px solid #c49b66;
  background-color: #c49b66;
  color: #ffffff;
}

.fixed-top.scrolled {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
  transition: background-color 200ms linear;
}

.animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.animated-icon span {
  background: #000000;
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.animated-icon span:nth-child(1) {
  top: 0px;
}

.animated-icon span:nth-child(2) {
  top: 10px;
}

.animated-icon span:nth-child(3) {
  top: 20px;
}

.animated-icon.open span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.animated-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon.open span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.navbar-toggler:focus {
  outline: none;
}

@media only screen and (max-width: 991px) { 
  .navbar-collapse {
    background-color: #ffffff;
    padding: 20px 20px 30px;
  }

  .navbar-nav .nav-item {
    margin: 0 10px;
    border-top: 1px solid #cccccc;
    padding-top: 10px;
  }

  .navbar-nav .nav-item:last-child {
    padding-top: 20px;
  }

  .navbar-nav .nav-item:first-child {
    border-top: none;
  }
}

@media only screen and (max-width: 767px) { 
  .navbar-brand {
    font-size: 2rem;
    line-height: 1;
  }

  .navbar-collapse {
    padding: 10px 10px 20px;
  }

  .navbar-nav .nav-item {
    margin: 0;
    padding-top: 5px;
  }

  .navbar-nav .nav-item:last-child {
    padding-top: 10px;
  }

  .navbar-nav .nav-item:first-child {
    border-top: none;
  }

  .navbar .btn-outline-info {
    font-size: 16px;
    font-size: 1rem;
  }
}


/* ==========================================================================
   Hero
   ========================================================================== */

.jumbotron {
  margin: 0;
  background-image: url(../img/hero-2025.jpg);
  height: calc(100vh - 84px);
  position: relative;
  overflow: hidden;
  overflow-x: hidden !important;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
}

@media (max-width: 768px) {
  .jumbotron {
    background-position: 50% 0%;
    background-attachment: scroll;
    height: calc(100vh - 64px);
  }
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.5);
  display: block;
  z-index: 1;
}

.hero-content {
  width: 50%;
  padding: 2rem;
  z-index: 2;
  background-color: #fff;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .hero-content {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    width: 100%;
  }
}

.hero-content h1 {
  margin-bottom: 2rem;
}

.hero-content p {
  margin-bottom: 2rem;
}

@media only screen and (min-width: 800px) and (max-width: 991px) {
  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }

  .hero-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 590px) and (max-width: 610px) {
  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

#typed {
  color: #c49b66;
  font-weight: 700;
}

.typed-cursor{
  opacity: 1;
  -webkit-animation: blink 1s infinite;
  -moz-animation: blink 1s infinite;
  animation: blink 1s infinite;
}
@keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}

.button-scroll {
  position: absolute;
  bottom: 5vh;
  left: calc(50% - 13px);
  width: 26px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid #fff;
  cursor: pointer;
  z-index: 3;
}

.button-scroll span {
  height: 10px;
  width: 2px;
  position: absolute;
  left: calc(50% - 1px);
  background: #fff;
  -webkit-animation: scroll 1s infinite;
  -moz-animation: scroll 1s infinite;
  animation: scroll 1s infinite;
}

@keyframes scroll{
  0% { top: 50%; }
  25% { top: 55%; }
  50% { top: 60%; }
  75% { top: 55%; }
  100% { top: 50%; }
}
@-webkit-keyframes scroll{
  0% { top: 50%; }
  25% { top: 55%; }
  50% { top: 60%; }
  75% { top: 55%; }
  100% { top: 50%; }
}
@-moz-keyframes scroll{
  0% { top: 50%; }
  25% { top: 55%; }
  50% { top: 60%; }
  75% { top: 55%; }
  100% { top: 50%; }
}

/* ==========================================================================
   Article
   ========================================================================== */


article section {
  padding: 100px 0;
}

@media (max-width: 991px) {
  article section {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  article section {
    padding: 40px 10px;
  }
}

.about-img {
  padding: 20px;
  text-align: center;
  box-shadow: 0px 2px 14.25px 0.75px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.about__text {
  padding: 24px 0;
}

@media (min-width: 767px) {
  .about__text {
    padding: 8px 0;
  }

  .about-section__img {
    top: 100px;
    position: sticky;
  }
}

article section .h1,
article section .h2 {
  font-weight: 700;
  font-size: 3.125rem;
  text-transform: capitalize;
}

/* Tab Style  */
.skillset ul.nav {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  border: 0 none;
  row-gap: 10px;
  column-gap: 20px;
}

.skillset ul.nav li a {
  border: 0 none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
  background: transparent;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  color: #1d1d24;
}

.skillset ul.nav li a::before {
  position: absolute;
  content: "";
  width: 30px;
  background: rgba(0, 0, 0, 0.2);
  height: 2px;
  bottom: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.skillset ul.nav li a.active {
  background: transparent;
  color: #c49b66;
}

.skillset ul.nav li a.active::before {
  width: 100%;
  background: currentColor;
}

/* Tab Content */

.single-tab-content {
  padding-top: 10px;
}

.single-tab-content p {
  font-weight: 300;
  color: #717173;
  font-size: 15px;
  line-height: 30px;
}

.single-tab-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-tab-content ul.list-style--1 li {
  margin-bottom: 10px;
}

.single-tab-content ul li {
  color: #333333;
  font-size: 15px;
  line-height: inherit;
  margin-bottom: 10px;
  font-weight: 300;
}

/* Card */

.card a,
.card a:visited {
  color: #000;
}

.card a:hover,
.card a:focus {
  color: #c49b66;
}

.card a:before {
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.card:not(.faq) {
  border: none;
  border-radius: 0;
  padding: 20px 10px 10px;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(52, 52, 52, 0.1);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.card.review {
  padding: 20px;
}

.card.portfolio {
  text-align: left;
}

.card:not(.review):not(.faq):hover,
.card:not(.review):not(.faq):focus {
  opacity: 0.9;
  transform: scale(0.95);
  cursor: cell;
}

.card-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.card-svg {
  width: auto;
  height: 50px;
  flex-shrink: 0;
  display: block;
  color: #c49b66;
  margin: auto;
}

#portfolio .card:hover,
#portfolio .card:focus {
  opacity: unset;
  transform: none;
  cursor: pointer;
}

#services .card-img-top {
  max-width: 75px;
  margin: auto;
}

.card-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
  font-weight: 700;
}

.card-link {
  text-decoration: underline;
}

.card-footer {
  background-color: #ffffff;
}

.card-footer .btn {
  border-width: 2px;
  margin: 0 5px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: capitalize;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -ms-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.card-footer .btn-outline-warning  {
  color: #c49b66;
  border-color: #c49b66;
}

.card-footer .btn-outline-warning:hover,
.card-footer .btn-outline-warning:focus {
  color: #ffffff;
  background-color: #c49b66;
}

.card-footer a.btn-outline-secondary {
  border-color: #000000;
}

.card-footer a.btn-outline-secondary:hover,
.card-footer a.btn-outline-secondary:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff !important;
}

.card-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 9 / 16 * 100 */
  height: 0;
}

.card-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Portfolio */

.landingScreen {
  background-image: url(../img/template-screen.png);
  background-repeat: no-repeat;
  height: 295px;
  width: 92%;
  position: relative;
  overflow: hidden;
  margin: 14px auto 0px;
  background-size: 100% 100%;
  padding: 20px;
}

.landingScreen__img {
  width: 100%;
  height: 210px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.landingScreen__img img {
  -webkit-transition: all 2s linear;
  -moz-transition: all 2s linear;
  -ms-transition: all 2s linear;
  -o-transition: all 2s linear;
  transition: all 2s linear;
}

.landingScreen__img:focus img,
.landingScreen__img:hover img {
  transform: translateY(-100%);
  margin-top: 210px;
}


/* Quotes */

.quote-wrap {
  padding: 1rem 4rem;
  position: relative;
  min-height: 55vh;
}

.quote-wrap .fas {
  font-size: 3rem;
  margin: 1.25rem 0;
  display: block;
  text-align: center;
  color: #c49b66;
}

.blockquote {
  margin-bottom: 2rem;
}

.blockquote-footer::before {
  content: "";
}

.blockquote-footer cite {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  color: #000;
  display: block;
  margin-top: 1.25rem;
} 

.carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
  position: relative;
}

.carousel-indicators li {
  background-color: #c49b66;
}

@media only screen and (max-width: 991px) {
  .quote-wrap {
    padding: 1rem 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .quote-wrap {
    padding: 1rem 2rem;
  }
}

@media only screen and (max-width: 540px) {
  .quote-wrap {
    padding: 1rem;
  }
}

/* ==========================================================================
   Work
   ========================================================================== */

.work .card {
  padding: 0;
}

.work .card a {
  color: #000;
}

.work .card .card-body .card-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.work .card .card-body .card-text {
  color: #717173;
}

.work-filter  {
  justify-content: center;
}

.list-group-item {
  cursor: pointer;
}

.list-group-item.active {
  background-color: #c49b66;
  border-color: #c49b66;
}

.list-group-item img {
  max-width: 1.3125rem;
  margin-right: 0.625rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 80px 0 0;
  background: #0e0e0e;
  color: #fff;
}

.site-footer .border-whity {
  border-color: rgba(255,255,255,.125) !important;
}

footer .h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #c49b66;
  margin-bottom: 0;
}

footer .btn-light {
  margin: 1rem 0 3rem;
}

@media only screen and (max-width: 991px) {
  .site-footer {
    padding: 60px 0 0;
  }

  footer .h1 {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 540px) {
  .site-footer {
    padding: 40px 0 0;
  }
  
  footer .h1 {
    font-size: 1.5rem;
  }

}

footer .footer-contact address {
  position: relative;
  margin-bottom: 1.25rem;
}

footer .footer-contact address i {
  margin-right: 0.625rem;
}

footer .footer-contact address a {
  color: #fff;
}

footer .footer-social {
  padding: 2rem 0 1rem;
}

footer .footer-social h5 {
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #c49b66;
}

footer .footer-social ul li {
  position: relative;
  padding-left: 1.25rem;
}

footer .footer-social ul li:first-child {
  padding-left: 0;
}

footer .footer-social a {
  position: relative;
  color: #fff;
  font-weight: 300;
  font-size: 0.825rem;
  padding-bottom: 0.825rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-bottom: 2px solid transparent;
}

footer .footer-social a:hover {
  color: #c49b66;
}

footer .footer-social ul li:before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "\2013";
}

footer .footer-social ul li:first-child::before {
  content: "";
}

footer .copyright {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  color: #ffffff;
  font-weight: 300;
  font-size: 0.825rem;
  padding: 1.25rem 0;
  background-color: #000000;
}

.network-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .network-img {
    margin-left: 0;
  }
}

.zoom-btn {
  color: #ffffff;
  margin-bottom: 2rem;
}

.zoom-btn:hover,
.zoom-btn:focus,
.zoom-btn:active,
.zoom-btn:visited {
  color: #ffffff;
}

@media (min-width: 767px) {
  .zoom-btn {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   Form
   ========================================================================== */
.custom-select,
.form-control {
  border-radius: 0;
  background-color: #ced4da;
}

.form-text {
  color: #FF0000;
}

.modal-body p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Preloader
   ========================================================================== */

   #overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,f8f0e7+100 */
    background: rgb(245,245,245); /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover,  rgba(245,245,245,1) 0%, rgba(248,240,231,1) 100%); /* FF3.6-15 */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(245,245,245,1) 0%,rgba(248,240,231,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: radial-gradient(ellipse at center,  rgba(245,245,245,1) 0%,rgba(248,240,231,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f8f0e7',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  }
  
  .loader {
    position: fixed;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 99999;
    color: #c49b66;
  }

  /* Review */

  .review-star {
    width: 1rem;
    height: auto;
    display: block;
    flex-shrink: 0;
    margin-right: 0.125rem;
  }