/* ---- Global ----*/
a.text-light:focus, a.text-light:hover {
    color: #000 !important;
}

.btn-secondary:hover, .btn-secondary:target {
    color: #000 !important;
}

.btn-primary:hover, .btn-secondary:target {
    color: #000 !important;
}

.form .btn-primary:hover, .form .btn-primary:target {
    color: #000 !important;
}

/*-- Header --*/

header {
    box-shadow: 0px 2px 8px #B99657;
    position: relative;
    z-index: 10;
}

.header .navbar:before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    background: #B99657;
}

.header .navbar-nav .nav-link {
    text-transform: uppercase;
    line-height: 34px;
    font-size: .825rem
}

.header .header-info-logo-img img {
    width: 227px;
}

.cw-header-contact {
    padding: .5rem 0;
    background-image: linear-gradient(45deg, black, rgba(0,0,0,.8), rgba(0,0,0,.8), black), url(https://apihoard.webit.com/api/v1/Image/AB4240338C519910B30D7A8CAD8D7E32/AB4240338C519910B30D7A8CAD8D7E32.jpg?size=1920x1440);
    background-size: cover;
}

.cw-phone:before {
    font-family: FontAwesome;
    content: "\f2a0";
    background: var(--color-theme-secondary);
    border-radius: 50%;
    margin-right: .5rem;
    padding: 10px 12px;
    color: #fff
}

@media(min-width: 992px) {
    div#header-navbar-collapse {
        position: relative;
        left: 25%;
    }

    .cw-header-contact {
        max-width: 1140px;
        height: 115px;
        padding-top: 2.5rem;
        padding-right: 1rem
    }

    .header .header-info-logo-img {
        position: absolute;
        z-index: 100000;
        left: 0em;
        padding: 7px 38px;
    }

    .cw-header-contact {
        font-size: 1.1rem
    }

    .cw-phone:before {
        padding: 12px 14px
    }
}

@media(min-width: 1440px) {
    .header .container,.cw-header-contact {
        max-width: 1400px
    }
}

.title {
    padding-top: 1.8em;
    padding-bottom: 0.8em;
    text-align: center;
    background-image: linear-gradient(45deg,#000,transparent),url('https://apihoard.webit.com/api/v1/Image/436132BE26E80A898D30AF52EBC1B0E7/436132BE26E80A898D30AF52EBC1B0E7.jpg?size=1920x1440');
    background-position: center;
    background-size: cover;
    color: #fff;
    text-shadow: 1px 2px 2px var(--color-theme-highlight);
    font-size: 2em;
    margin-bottom: 1em;
    border-bottom: 6px solid var(--color-theme-highlight);
}

@media(max-width: 568px){
    .title {
        font-size: 1em;
    }
}

/*----- Hero ------*/

.cw-hero {
    background: #010101;
    background-image: linear-gradient(109deg, black, rgba(0,0,0,.8), transparent), url(https://apihoard.webit.com/api/v1/Image/436132BE26E80A898D30AF52EBC1B0E7/436132BE26E80A898D30AF52EBC1B0E7.jpg?size=1920x1440);
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    height: 700px;
}

.hero-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 1000px;
}

.hero-text p {
    text-shadow: 1px 1px 5px #000
}

.cw-hero svg {
    position: absolute;
    bottom: -1px;
}
.cw-heroBlink {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 2;
}

.cw-heroBlink h3 {
  font-size: 1rem;            /* adjust if needed */
  font-weight: 700;
  color: #F1E796;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  animation: cwBlink 1.2s steps(2, jump-start) infinite;
}

@keyframes cwBlink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cw-heroBlink h3 {
    animation: none;
    opacity: 1;
  }
}

@media(max-width: 568px){
    .cw-hero h1 {
        font-size: 1.5rem;
    }
}

/* ---- Slider -----*/
.cw-portfolio {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden
}

.cw-description {
    padding: 1.75rem 1rem 2.5rem
}

.cw-portfolio .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover
}

.cw-portfolio .cw-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    outline: none;
    margin: 0;
    transition: all .2s;
    background: 0 0;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none
}

.cw-portfolio .cw-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 360px;
    background: var(--color-theme-highlight);
    cursor: pointer
}

.cw-portfolio .cw-slider::-moz-range-thumb {
    width: 6px;
    height: 360px;
    background: #fff;
    cursor: pointer
}

.cw-portfolio .cw-slider-button {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-theme-secondary);
    left: calc(50% - 18px);
    top: calc(50% - 18px)
}

.cw-portfolio .cw-slider-button:after {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(-45deg)
}

.cw-portfolio .cw-slider-button:before {
    content: '';
    padding: 3px;
    display: inline-block;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(135deg)
}

.cw-portfolio .background-img {
    background-image: url(https://apihoard.webit.com/api/v1/Image/FF016D9713F4A21F4AD41F590A8356F7/FF016D9713F4A21F4AD41F590A8356F7.jpg?size=1920x1440);
    background-position: center
}

.cw-portfolio .foreground-img {
    background-image: url(https://apihoard.webit.com/api/v1/Image/F7160B2E70225131A4D1FB8430C1A1B3/F7160B2E70225131A4D1FB8430C1A1B3.jpg?size=1920x1440);
    width: 50%
}



@media(min-width: 430px) {
    .cw-portfolio {
        height: 430px
    }

    .cw-portfolio .cw-slider::-webkit-slider-thumb {
        height: 460px
    }

    .cw-portfolio .cw-slider::-moz-range-thumb {
        height: 460px
    }
}

@media(min-width: 768px) {
    .cw-portfolio {
        height: 400px
    }

    .cw-portfolio .cw-slider::-webkit-slider-thumb {
        height: 460px
    }

    .cw-portfolio .cw-slider::-moz-range-thumb {
        height: 460px
    }
}

.cw-faq {
    background-image: linear-gradient(180deg, #222, transparent), url(https://s3.amazonaws.com/fcwebmanager/Abstract/SmartSites/HeroImages/0/abstract_05.jpg);
}

.cw-faq button:hover i {
    transform: rotate(90deg);
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
}

 .cw-faq .card {
    border: none;
    background: transparent;
}

 .cw-faq .card-header {
    background: #000;
    border-bottom: none;
    margin-bottom: 6px !important;
    border-radius: 2rem !important;
    padding: .35rem 2rem;
}

 .cw-faq .btn-link {
    color: #B99657;
}

.page-home .form {
    padding-top: 3.5em;
    padding-bottom: 4.5em;
    background-image: linear-gradient(0deg, #222, #222, transparent), url(https://s3.amazonaws.com/fcwebmanager/Abstract/SmartSites/HeroImages/0/abstract_05.jpg);
}

/* ----- Testimonials -----*/
.testimonial {
    margin: 0 20px 40px;
  }

  .testimonial .testimonial-content {
    padding: 35px 25px 35px 50px;
    margin-bottom: 1.5em;
    background: #000;
    border: 1px solid #000;
    position: relative;
  }

  .testimonial .testimonial-content:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #000;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
  }

  .testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: var(--color-theme-secondary);
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
  }

  .testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #4b3111;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
  }

  .testimonial .description {
    font-size: 15px;
    font-style: italic;
    color: #fff;
    line-height: 23px;
    margin: 0;
  }

  .testimonial-title {
    display: block;
    font-size: 1.05em;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
  }
  
  i.fa.fa-star {
    color: var(--color-theme-highlight);
    padding: 2px;
}
/* ----- Foooter -----*/
.footer {
    padding-top: 3em;
    padding-bottom: 0;
    background-image: linear-gradient(45deg, black, rgba(0, 0, 0, .8), rgba(0, 0, 0, .8), black), url(https://apihoard.webit.com/api/v1/Image/AB4240338C519910B30D7A8CAD8D7E32/AB4240338C519910B30D7A8CAD8D7E32.jpg?size=1920x1440);
    background-size: cover;
}

.footer .footer-bottom-section {
    background: #916022;
}