@charset "UTF-8";
/*   
Theme Name: Top Insurers
Theme URI: https://www.topinsurers.co.za/
Description: A custom resposive theme
Author: BarePress
Author URI: https://www.topinsurers.co.za/
Version: 1.0
*/
/*  VARIABLES */
/*  COLORS */
/*  MEDIA QUERIES */
/*  MIXINS */
/*  SITE CSS */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px !important;
}

nav.breadcrumbs {
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}
nav.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
nav.breadcrumbs ol li {
  display: flex;
  align-items: center;
}
nav.breadcrumbs ol li a {
  text-decoration: none;
}
nav.breadcrumbs ol li a span {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
nav.breadcrumbs ol li a span:hover {
  color: #005bb5;
}
nav.breadcrumbs ol li.active span {
  color: #0065FF;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  nav.breadcrumbs ol li.active span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 115px;
  }
}
nav.breadcrumbs ol li + li::before {
  content: "›";
  margin: 0 8px;
  color: #555;
}

/*  HEADER  */
.glass-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Glass effect */
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  /* ----------- BRAND ----------- */
  /* ----------- NAV ----------- */
  /* Underline with gradient */
  /* ----------- BUTTON ----------- */
  /* ----------- HAMBURGER ----------- */
  /* ----------- MOBILE MENU ----------- */
}
.glass-topbar .container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.glass-topbar .brand {
  max-width: 30%;
}
@media screen and (max-width: 1024px) {
  .glass-topbar .brand {
    max-width: 50%;
  }
}
.glass-topbar .brand img {
  max-width: 60%;
}
@media screen and (max-width: 1024px) {
  .glass-topbar .brand img {
    max-width: 100%;
  }
}
.glass-topbar .nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.glass-topbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.glass-topbar .nav-links a {
  text-decoration: none;
  padding: 6px 0;
  font-size: 15px;
  color: #333;
  position: relative;
  transition: 0.2s;
}
.glass-topbar .nav-links a:hover {
  color: #111;
}
.glass-topbar .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #0065FF, #f9a538);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.glass-topbar .nav-links a:hover::after {
  width: 100%;
}
.glass-topbar .btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
  transition: 0.15s ease;
}
.glass-topbar .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}
.glass-topbar .toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(180, 180, 180, 0.4);
  background: rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  z-index: 50;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.glass-topbar .toggle span {
  width: 18px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  display: block;
  transition: 0.25s;
}
.glass-topbar .toggle span + span {
  margin-top: 3px;
}
.glass-topbar .mobile-btn {
  display: none;
}
@media (max-width: 768px) {
  .glass-topbar {
    /* Hamburger => X */
  }
  .glass-topbar .toggle {
    display: flex;
  }
  .glass-topbar .desktop-btn {
    display: none;
  }
  .glass-topbar .nav-links {
    flex-direction: column;
    position: fixed;
    inset: 0 0 0 40%;
    height: 100vh;
    padding: 80px 24px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
    transform: translateX(100%);
    transition: 0.3s ease;
  }
  .glass-topbar .nav.is-open .nav-links {
    transform: translateX(0);
  }
  .glass-topbar .nav.is-open .toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .glass-topbar .nav.is-open .toggle span:nth-child(2) {
    opacity: 0;
  }
  .glass-topbar .nav.is-open .toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .glass-topbar .mobile-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
  }
  .glass-topbar .mobile-btn .btn {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .glass-topbar {
    padding: 20px;
  }
}

main form h3 {
  font-size: 20px;
  margin: 0;
  padding: 0;
}
main form p {
  display: none;
}
main form .form-control-lg, main form .form-select-lg {
  font-size: 15px !important;
}
main form .btn-primary {
  font-size: 18px !important;
}
@media screen and (max-width: 1024px) {
  main form .btn-primary {
    font-size: 16px !important;
    padding: 15px;
  }
}
main form .form-content .alert {
  font-size: 18px;
}
main.blog-single-page .container {
  padding: 0 80px;
}
@media screen and (max-width: 1024px) {
  main.blog-single-page .container {
    padding: 20px;
  }
}
main.blog-single-page .container article {
  padding: 30px 0px 50px 0px;
}
@media screen and (max-width: 1024px) {
  main.blog-single-page .container article {
    padding: 0px 0px 50px 0px;
  }
}
main.blog-single-page .container article .post-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1d3759;
  padding: 40px;
  color: #FFF;
  border-radius: 12px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.blog-single-page .container article .post-header {
    padding: 20px;
  }
}
main.blog-single-page .container article h1 {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  main.blog-single-page .container article h1 {
    font-size: 20px;
    text-align: center;
  }
}
main.blog-single-page .container article h2, main.blog-single-page .container article h5 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  main.blog-single-page .container article h2, main.blog-single-page .container article h5 {
    font-size: 18px;
  }
}
main.blog-single-page .container article h2:first-child {
  margin-top: 30px;
}
main.blog-single-page .container article .post-meta .wrap {
  display: inline-block;
  font-size: 12px;
}
main.blog-single-page .container article .post-meta .wrap span strong {
  color: #f9a538;
}
main.blog-single-page .container article .post-share {
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding: 10px 20px;
  background-color: #efefef;
}
main.blog-single-page .container article .post-share h5 {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  main.blog-single-page .container article .post-share h5 {
    margin: 0 10px 0 0;
  }
}
main.blog-single-page .container article .post-share img {
  margin: 0 10px 0 0;
  width: 40px;
}
main .elementor-widget-hfe-basic-posts .hfe-post-title a {
  font-weight: 700;
  font-size: 18px;
}
main .elementor-widget-hfe-basic-posts .hfe-read-more {
  display: inline-block;
  padding: 10px;
  background-color: #1d3759;
  color: #ffffff !important;
}
main .elementor-widget-hfe-basic-posts .hfe-read-more:hover {
  color: #1d3759 !important;
  background-color: #f9a538;
}
main .elementor-widget-hfe-basic-posts .hfe-post-meta {
  display: inline-block;
  margin-top: 10px;
  background-color: #efefef;
  padding: 5px 10px;
}
main .elementor-widget-hfe-basic-posts .hfe-post-meta .hfe-post-author {
  font-weight: 700;
}

/*  BUTTONS */
.btn-primary {
  min-width: 100%;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

/*  OVERRDIES */
.form-control:focus,
.form-control:active,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
  border-color: #a3b99a;
}

.card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}/*# sourceMappingURL=style.css.map */