/********** Pickett Financial **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

body {
  font-family: "Nunito", sans-serif;
  color: #555;
}

.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

/*** Navbar ***/
.navbar-light {
  --navbar-height: 100px;
  --navbar-logo-height: 84px;
  background: #fff;
  min-height: var(--navbar-height);
  transition:
    min-height 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-light.navbar-shrink {
  --navbar-height: 68px;
  --navbar-logo-height: 56px;
}

.navbar-logo {
  height: var(--navbar-logo-height);
  width: auto;
  transition: height 0.35s ease;
  display: block;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark) !important;
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.navbar-light.navbar-shrink .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-link {
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-light .navbar-brand h1 {
  color: #ffffff;
  font-size: 1.75rem;
}

.sticky-top.navbar-light .navbar-brand h1 {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .navbar-light.navbar-shrink,
  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

/*** Topbar ***/
.topbar {
  background: var(--dark);
  font-size: 15px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--primary);
}

/*** Carousel / Hero ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.75);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 28px;
    font-weight: 600 !important;
  }
}

.carousel-item img {
  height: 100vh;
  min-height: 500px;
  object-fit: cover;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

@keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 70px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

/*** Value cards (facts bar) ***/
.value-card {
  background: var(--primary);
  color: #fff;
  border-radius: 2px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
}

.value-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.value-card h5 {
  color: #fff;
  margin-bottom: 8px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .values-overlap {
    position: relative;
    margin-top: -75px;
    z-index: 2;
  }
}

/*** About ***/
.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-right: 12px;
  margin-top: 4px;
}

/*** Why choose / mission ***/
.feature-box {
  padding: 30px;
  background: #fff;
  border-radius: 2px;
  height: 100%;
  transition: 0.5s;
}

.feature-box:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.feature-box .icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
  margin-bottom: 25px;
}

.feature-box .icon-wrap i {
  transform: rotate(45deg);
  color: #fff;
  font-size: 1.25rem;
}

/*** Services ***/
.service-item {
  position: relative;
  height: 100%;
  min-height: 320px;
  padding: 35px 30px;
  background: #fff;
  border-radius: 2px;
  transition: 0.5s;
}

.service-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.service-item .service-icon {
  margin-bottom: 25px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
  color: #fff;
  font-size: 1.25rem;
}

.service-item ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.service-item ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

.service-item ul li strong {
  color: var(--dark);
}

/*** Referral cards ***/
.referral-item {
  padding: 30px;
  background: #fff;
  border-radius: 2px;
  height: 100%;
  transition: 0.5s;
  border-left: 4px solid var(--primary);
}

.referral-item:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  border-left-color: var(--secondary);
}

.referral-item i {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 15px;
}

/*** CTA strip ***/
.cta-strip {
  background: var(--primary);
  color: #fff;
}

.cta-strip h2,
.cta-strip h3 {
  color: #fff;
}

/*** Contact ***/
.contact-form .form-control {
  border-radius: 2px;
  padding: 12px 15px;
}

/*** Footer ***/
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer h4,
.footer h5 {
  color: #fff;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-brand-image {
  background: #fff;
  padding: 8px 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-brand {
    margin-top: -75px;
    background: #193662;
    padding: 40px 30px;
    border-radius: 2px;
  }

  .footer-brand h2,
  .footer-brand p {
    color: #fff;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.story-highlight {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  font-style: italic;
  color: var(--dark);
}
