/* Generic
-------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,400;0,600;1,400&display=block');
body {
	font-family: "Libre Franklin", sans-serif /*{Body | body-font-family}*/;
	color: #2a2a2a;
}
a, a:hover, a:active, .btn-link, .btn-link:hover, .sidebar-menu a.nav-link:hover {
	color: rgba(255, 0, 0, 1) /*{Body | link-colour}*/;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "Libre Franklin", sans-serif /*{Body | header-font-family}*/;
}
/* Header 
-------------------------------*/
header {
	background-color: #101011 /*{Header | Header background colour}*/;
	border-bottom: 1px solid #F7F7F7;
}
header .btn-header,
header .btn-header:hover {
    color: #ffffff /*{Header | Phone, account and cart link colour}*/;
}
header .btn-header i {
    color: rgba(255, 0, 0, 1) /*{Header | Phone, account and cart icon colour}*/;
}
/* Sidebar Menu 
-------------------------------*/
nav .card-header {
	background-color: rgba(7, 52, 125, 1) /*{Sidebar Menu | Menu header background colour}*/;
	color: #ffffff /*{Sidebar Menu | Menu header text colour}*/;
}
nav .card .card-body ul .nav-wrapper {
	background-color: #f7f7f7 /*{Sidebar Menu | Menu top level background colour}*/;
}
/* Homepage 
-------------------------------*/
#homepage-content,
.carousel-caption {
    border-color: rgba(255, 255, 255, 1) /*{Homepage | Content border colour}*/;
}

/* Footer 
-------------------------------*/
.wrapper-footer {
	background-color: #101011 /*{Footer | Background color}*/;
}
.wrapper-footer h4 {
	color: rgba(255, 0, 0, 1) /*{Footer | Heading colour}*/;
}
.wrapper-footer a, 
.wrapper-footer a:hover, 
.wrapper-footer a:active,
.wrapper-footer * {
	color: #c1c1c1 /*{Footer | Text colour}*/;
}
footer .nav.list-social i {
    background-color: rgba(0, 0, 255, 1) /*{Footer | Social icon background colour}*/;
    color: #ffffff /*{Footer | Social icon colour}*/;
}
/* Buttons 
-------------------------------*/
/* Primary button */
.btn-primary {
	color: #ffffff /*{buttons | primary-btn-active-text-colour}*/;
	background-color: #2a2a2a /*{buttons | primary-btn-active-background-colour}*/;
	border-color: #2a2a2a /*{buttons | primary-btn-active-border-colour}*/;
}
.btn-primary:hover,
.btn-primary.disabled, .btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
	color: rgba(255, 0, 0, 1) /*{buttons | primary-btn-hover-text-colour}*/;
	background-color: #000000 /*{buttons | primary-btn-hover-background-colour}*/;
	border-color: #000000 /*{buttons | primary-btn-hover-border-colour}*/;
}
/* Success button */
.btn-success {
	color: #ffffff /*{buttons | success-btn-active-text-colour}*/;
	background-color: rgba(255, 0, 0, 1) /*{buttons | success-btn-active-background-colour}*/;
	border-color: rgba(255, 0, 0, 1) /*{buttons | success-btn-active-border-colour}*/;
}
.btn-success:hover,
.btn-success.disabled, .btn-success:disabled,
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
	color: rgba(255, 0, 0, 1) /*{buttons | success-btn-hover-text-colour}*/;
	background-color: rgba(255, 0, 0, 1) /*{buttons | success-btn-hover-background-colour}*/;
	border-color: rgba(255, 0, 0, 1) /*{buttons | success-btn-hover-border-colour}*/;
}
/* Secondary button */
.btn-outline-secondary, .btn-default {
	color: #666;
	background-color: #fff;
	border-color: #ccc;
}
.btn-outline-secondary:hover, .btn-default:hover,
.btn-outline-secondary.disabled, .btn-default:disabled,
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle, .btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle {
	color: #333;
	background-color: #e3e3e3;
	border-color: #e3e3e3;
}


/* ========================

Custom shit begins here

========================= */

/* ABRO image hover effects */
a img {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

a:hover img {
  opacity: 0.55;
  transform: scale(1.05);
}
/* Testing */
html {
  scroll-behavior: smooth;
}
/* Button Hover Lift */
button,
.btn,
input[type="submit"],
a.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

button:hover,
.btn:hover,
input[type="submit"]:hover,
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
/* Button transition */
a,
button,
.btn,
input,
svg,
i {
    transition: all 0.25s ease;
}

/* menu underline */
nav a,
.menu a {
  position: relative;
}

nav a::after,
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

nav a:hover::after,
.menu a:hover::after {
  width: 100%;
}


/* blog post cards */
.abro-blog-card h4 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 12px;
}

.abro-blog-card h4 a {
    color: #07347D;
    text-decoration: none;
    transition: color .25s ease;
}

.abro-blog-card:hover h4 a {
    color: #d71920;
}

.abro-blog-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.abro-blog-card:hover {
  transform: translateY(-3px);
  border-color: #d71920;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.abro-blog-layout {
  display: flex;
  gap: 30px;
  align-items: center;
}

.abro-blog-content {
  flex: 1;
}

.abro-blog-image {
  flex: 0 0 220px;
}

.abro-blog-image img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: #ffffff;
}

.abro-blog-image img {
  display: block;
  width: 80%;
 
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.abro-blog-card:hover .abro-blog-image img {
  transform: scale(1.05);
  opacity: 0.9;
}



.abro-blog-subtitle {
  font-weight: 600;
  color: #d71920;
  margin-bottom: 8px;
}

.abro-blog-excerpt {
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.abro-read-more {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: #d71920;
  text-decoration: none;
}

.abro-read-more:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .abro-blog-layout,
  .abro-blog-card:nth-child(even) .abro-blog-layout {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .abro-blog-image {
    flex: none;
    width: 100%;
  }
}

/* Abro blog mobile */
@media (max-width:768px){

.abro-blog-layout{
    flex-direction:column-reverse;
}

.abro-blog-image{
    width:100%;
}
}

/* =====================================================
   ABRO AUSTRALIA CUSTOMISATIONS
   ===================================================== */

html {
    background: #fff url("/assets/images/background-test-3.png") center top / cover no-repeat fixed !important;
}

body {
    background: transparent !important;
}

#main-content {
    background: #fff;
}


/* feature images */
.abro-home-intro{
    margin:50px 0;
}

.abro-home-intro h2{
    text-align:center;
    margin-bottom:20px;
}

.abro-home-intro p{
    text-align:justify;
    line-height:1.8;
}

.abro-home-banner{
    display:block;
    width:100%;
border-radius:12px;
margin:40px 0 20px;
    max-width:1400px;
    height:auto;

}

/* text headings */
/* Shared ABRO heading style */
.abro-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #07347D;
    margin: 0 0 30px;
    letter-spacing: 0.02em;
}

.abro-section-title::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #d71920;
    margin-right: 14px;
    vertical-align: middle;
    box-shadow: 2px 2px 6px rgba(0,0,0,.18);
}

/* Content pages */
.abro-heading-content {
    text-align: left;
}

/* Product sections */
.abro-heading-products {
    text-align: center;
}


/* ===============
Sidebar tweaks
=============== */
.abro-view-all {
    font-weight: 600;
    color: #07347D;
}

.abro-view-all::before {
    content: " →";
    color: #d71920;
}