/* ===================================
    Crafto - Branding agency
====================================== */
/* variable */
:root {
  --base-color: #efa300;
  --medium-gray: #021b4c;
  --dark-gray: #021b4c;
  --charcoal-blue: #021b4c;
  --alt-font: "Switzer", sans-serif;
  --primary-font: "Switzer", sans-serif;
}
.base-color {
  color: var(--base-color);
}
a:hover {
  color: var(--dark-gray);
}
h1,
.h1 {
  line-height: 4rem;
}
h3,
.h3 {
  line-height: 2.813rem;
}
h4 {
  line-height: 2.6rem;
}
/* header */
.navbar .navbar-nav .nav-link {
  font-size: 17px;
  font-weight: 600;
}
header .header-button .btn.btn-switch-text.btn-medium > span {
  padding: 12px 22px;
}
header .navbar-brand img {
  height: 50px;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray) !important;
  line-height: normal;
}
.navbar
  .navbar-nav
  .dropdown.dropdown-with-icon-style02
  .dropdown-menu
  li
  a:hover {
  background-color: #f6f4f3;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
  font-size: 30px;
  width: 35px;
}
/*margin*/
.ms-100px {
  margin-left: 100px;
}
.ms-80px {
  margin-left: 80px;
}
.mb-minus-50px {
  margin-bottom: -50px;
}
/* btn */
.btn {
  text-transform: none;
  letter-spacing: 0;
}
.btn.btn-extra-large {
  font-size: 16px;
  padding: 16px 32px;
}
.btn.btn-large {
  font-size: 15px;
  padding: 15px 30px;
}
.btn.btn-switch-text.btn-large > span {
  padding: 15px 30px;
}
.btn-gradient-fuel-yellow-blue {
  background-image: linear-gradient(to right, #d18215, #14387f, #d18215);
  background-size: 200% auto;
  color: var(--white);
}
/* left right top bottom */
.left-minus-45 {
  left: -45%;
}
.bottom-minus-200px {
  bottom: -200px;
}
.one-half-screen {
  height: 550px !important;
}
.swiper-pagination-progress .swiper-progress {
  background-color: var(--dark-gray);
}
.magic-drag-cursor #ball-cursor:before {
  font-weight: 500;
}
/* text gradient color */
.text-gradient-base-color {
  background-image: linear-gradient(to right, #efa300 0%, #14387f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-orange {
  color: #e97522;
}
.text-blue {
  color: #1ea3b1;
}
/* bg gradient color */
.bg-gradient-top-very-light-gray {
  background-image: linear-gradient(
    to right,
    #fbf3e9,
    #f9f4eb,
    #f4f4f0,
    #f2f4f2,
    #eff4f4
  );
}
.bg-linen {
  background: #f6f4f3;
}
.bg-gradient-orange-transparent {
  background: linear-gradient(
    to right,
    rgba(233, 117, 34, 1) 10%,
    rgba(255, 255, 255, 0) 95%
  );
}
.bg-gradient-blue-transparent {
  background: linear-gradient(
    to right,
    rgba(30, 163, 177, 1) 10%,
    rgba(255, 255, 255, 0) 95%
  );
}
/* blog only text */
.blog-only-text .card-body:after {
  display: none;
}
/* social icon style 06 */
.social-icon-style-06 li {
  position: relative;
}
.social-icon-style-06 li:before {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--medium-gray);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  opacity: 0.5;
}
.social-icon-style-06 li:last-child:before {
  display: none;
}
.google-maps-link a:hover {
  color: var(--white);
}
/* footer */
footer ul li {
  margin-bottom: 0;
  line-height: 28px;
}
footer a:hover {
  color: var(--white);
}
footer .footer-logo img {
  max-height: 34px;
}
/* z-index */
.z-index-99 {
  z-index: 99;
}
/* styled lists */
.styled-list-base,
.styled-list-base ul {
  list-style: none;
  padding-left: 0;
  margin: 25px;
}
.styled-list-base li,
.styled-list-base ul li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 15px;
  line-height: 28px;
  color: var(--medium-gray);
  font-size: 1.1rem;
}
.styled-list-base li:before,
.styled-list-base ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #e9e9e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #14387f;
  padding-bottom: 4px;
  padding-left: 1px;
}
.styled-list-base li:last-child,
.styled-list-base ul li:last-child {
  margin-bottom: 0;
}
.styled-list-base li strong,
.styled-list-base ul li strong {
  color: var(--dark-gray);
  font-weight: 600;
}
/* swiper pagination style like lists */
.swiper-pagination-stack .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  border: 1px solid #e9e9e9;
  background: transparent;
  opacity: 1;
  position: relative;
}
.swiper-pagination-stack .swiper-pagination-bullet::before {
  content: "•";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 600;
  color: white;
  line-height: 1;
  padding-bottom: 4px;
}
.swiper-pagination-stack .swiper-pagination-bullet-active {
  border-color: var(--dark-gray);
  background-color: var(--dark-gray);
}
.swiper-pagination-stack .swiper-pagination-bullet-active::before {
  color: var(--dark-gray);
}
@media (min-width: 992px) {
  .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    padding: 20px 30px;
  }
  .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 320px;
  }
}
@media (max-width: 1199px) {
  .left-minus-45 {
    left: -78%;
  }
  .lg-ms-70px {
    margin-left: 70px;
  }
  .lg-bg-transparent {
    background-color: transparent;
  }
  .one-half-screen {
    height: auto !important;
  }
}
@media (max-width: 991px) {
  [data-mobile-nav-style="modern"]
    .navbar-modern-inner
    .navbar-nav
    .nav-item
    .dropdown-menu
    a
    i {
    font-size: 19px;
    vertical-align: middle;
    color: var(--white);
  }
  .md-top-auto {
    top: auto;
  }
  .copy br {
    display: none;
  }
}
/* Custom column layout */
@media (min-width: 768px) {
  .text-two-columns {
    column-count: 2;
    column-gap: 5rem;
  }
}
.square-list li {
  list-style-type: square;
}
.organization h6 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .banner-col-left {
    padding-right: 40px;
  }
  .banner-col-right {
    padding-left: 40px;
  }
}
.swiper-pagination-bullet {border-radius: 0!important;}