/*

Theme Name: Scrapmycaruk

Theme URI: 

Author: Scrapmycaruk

Author URI: 

Description: Simple and Responsive Wordpress theme.

*/

@font-face {
  font-family: "Inter-SemiBold";
  src: url("fonts/Inter-SemiBold.ttf");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("fonts/Inter-Bold.ttf");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: "Inter-Light";
  src: url("fonts/Inter-Light.ttf");
}
@font-face {
  font-family: "Inter-MediumItalic";
  src: url("fonts/Inter-MediumItalic.ttf");
}
/* -- style for common -- */
:root{
  --navy: #0b1e3d;
  --navy-2: #10295a;
  --green: #2e8b3d;
  --green-dark: #1e642d;
  --green-light: #e9f6ea;
  --grey-text: #5a6270;
  --border: #e7e9ec;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(11,30,61,0.08);
}

body {
  font-family: "Inter-Regular";
  overflow-x: hidden;
  font-size: 16px;
  color: var(--grey-text);
  line-height: 26px;
  background-color: #fff;
}

a,
input,
textarea,
button,
select {
  outline: none;
}

a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
  text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: none;
  -webkit-text-fill-color: var(--primary-color);
}

input:-webkit-autofill {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--primary-color);
}

a {
  color: var(--primary-color);
}

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

p {
  font-size: 16px;
  color: var(--grey-text);
  line-height: 26px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type="password"],
select {
  width: 100%;
  padding: 11px 23px !important;
  border-radius: 0px;
  color: var(--grey-text);
  height: 45px;
  font-size: 16px !important;
  border-radius: 5px !important;
  border: 0.5px solid #808080 !important;
  box-shadow: none !important;
  background-color: #fff !important;
}

select {
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(./images/down-arrow.svg);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 54%;
  background-size: 20px;
  cursor: pointer;
  padding-right: 36px;
}

input:focus,
select:focus {
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  box-shadow: none !important;
}

textarea {
  padding: 11px 23px !important;
  width: 100%;
  border-radius: 0px;
  color: var(--primary-color);
  border-radius: 0px !important;
  height: 157px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 16px !important;
}

textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
  box-shadow: none !important;
}

header,
section,
footer {
  float: left;
  width: 100%;
}

.container {
 width: 1694px;
  max-width: 100%;
  padding: 0px 70px;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter-Bold";
  color: var(--navy);
  font-weight: initial;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 36px;
  line-height: 46px;
}

h2 {
  font-size: 32px;
  line-height: 42px;
}

h3 {
  font-size: 28px;
  line-height: 38px;
}

h4 {
  font-size: 26px;
  line-height: 36px;
}

h5 {
  font-size: 24px;
  line-height: 34px;
}

h6 {
  font-size: 22px;
  line-height: 30px;
}

.full-width {
  width: 100%;
}

input,
textarea,
button,
select,
label,
a,
span,
img {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

:focus {
  box-shadow: none !important;
}

.common-btn {
 min-width: 165px !important;
  min-height: 52px !important;
  border-radius: 6px;
  background: var(--green) !important;
  color: #fff !important;
  font-family: "Inter-SemiBold" !important;
  font-size: 16px !important;
  padding: 10px 25px !important;
  text-transform: capitalize !important;
  transition: all 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--green) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* .common-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: #fff;
  transition: all 0.4s ease-out;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
}

.common-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
} 
.common-btn:hover {
  color: var(--primary-color);
} */


.common-padding {
  padding: 80px 0px;
}
.topbar{
  background: var(--navy);
  color:#cfd7e6;
  font-size: 13px;
  padding: 7px 0px;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.topbar-features{
  display:flex;
  gap: 28px;
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
.topbar-rating, .quote-rating{
  display:flex;
  align-items:center;
  gap:6px;
  color:#fff;
}
.topbar-rating .stars, .quote-rating .stars
{
   font-size:12px; 
background-color: #13a555;
  width: 18px;
  height: 18px;
  line-height: 12px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.topbar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}
#main-menu {
  padding: 0px;
  list-style-type: none;
  display: flex;
  gap: 23px;
  margin: 0px;
}
.phone-icon img {
  width: 30px;
}
.header-sub-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 15px;
}
.phone-section {
  display: flex;
  flex-direction: column;
  color: var(--navy);
}
.phone-section a, .phone-section span {
   color: var(--navy);
}
#main-menu li a {
  color: var(--navy);
  font-family: "Inter-SemiBold";
}

#main-menu li {
  position: relative;
}
#main-menu li  > .drop-ico-main
{
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  vertical-align: middle;
  background: url("images/down.png") center / 14px auto no-repeat;
  cursor: pointer;
}
#main-menu li .drop_menu_list > .drop-ico-main {
   background: url("images/down-white.png") center / 14px auto no-repeat;
   width: 24px;
  height: 14px;
  display: inline-block;
}

#main-menu li  > .drop-ico-main i,
#main-menu li .drop_menu_list > .drop-ico-main i {
  display: none;
}
#main-menu li > .dropdown-menu {
  position: absolute;
  top: calc(100% + 38px);
  left: 50%;
  z-index: 1001;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  /* width: min(1375px, calc(100vw - 48px)); */
  padding: 24px;
  margin: 0;
  transform: translate(-50%, -12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  background: var(--navy);
  border: 0;
  border-radius: 0;
border: 1px solid #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.dropdown-toggle::after {
  display: none;
}
#main-menu li > .dropdown-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
#main-menu li > .dropdown-toggle {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  vertical-align: middle;
  background: url("images/down.png") center / 14px auto no-repeat;
  cursor: pointer;
}
#main-menu li > .dropdown-toggle i {
  display: none;
}
#main-menu li > .dropdown-toggle.is-open {
  background-image: url("images/down.png");
}
#main-menu li > .dropdown-menu.is-open,
#main-menu li > .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  display: block;
  min-width: 290px;
  padding: 18px 24px;
  background: var(--navy);
  border: 0;
  border-radius: 0;
  border: 1px solid #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
#menu-item-251 > .dropdown-menu.is-open {
  display: grid;
}
#main-menu li > .dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
#main-menu li > .dropdown-menu li:last-child {
  border-bottom: 0;
}
#main-menu li > .dropdown-menu li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
#main-menu li > .dropdown-menu li a:hover {
  color: var(--green);
}
#main-menu li .drop_menu_list {
  min-width: 0;
  padding: 0 18px;
  padding-right: 28px;
}
#main-menu li .drop_menu_top_title {
  display: inline-block;
  padding: 12px 0;
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  text-transform: uppercase;
}
#main-menu li .drop_menu_list > .drop-ico-main {
  margin-left: 8px;
}
#main-menu > li.active > a,
#main-menu li.drop_menu_list.active > .drop_menu_top_title {
  color: var(--green) !important;
}
  #main-menu li  .head_menu_list {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 28px;
  padding: 22px 15px;
  margin: 0 -18px 10px;
  list-style: none;
  margin: 0px;
  border-radius: 12px;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}
#main-menu li .drop_menu_list.is-open > .head_menu_list,
#main-menu li .drop_menu_list.active > .head_menu_list {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}
#main-menu li .smc_list_items {
  display: block;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
}
#main-menu li .smc_list_items:hover,
#main-menu li .smc_list_items.active,
#main-menu li .drop_menu_top_title:hover,
#main-menu li .drop_menu_top_title.active {
  color: var(--green);
}
.drop-ico-main.btm_drop_menu {
  position: absolute;
  right: 11px;
top: 15px;
}
.phone-icon {
  border: 1px solid #d4d9df;
  border-radius: 6px;
  padding: 4px;
}
.phone-section span {
  font-size: 14px;
  line-height: 22px;
}
.phone-section a {
  font-family: "Inter-Bold";
  font-size: 18px;
  line-height: 18px;
}
.site-header {
  width: 100%;
  padding: 20px 0px;
}
.badge-pill{
  background: var(--green);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  display: inline-flex;
  align-content: center;
  gap: 5px;
}

.hero-content h1{
  font-size: 42px;
  color:#fff;
  line-height:1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-content h1 span {
  color: var(--green);
}

.hero-content p{
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 20px;
  color:#e7ecf5;
}

.hero-checklist{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 26px;
  font-size: 14px;
  padding: 0px;
  margin: 0px;
}
.hero-checklist li::marker{ content:''; }

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-badges img{
  height: auto;
  width: auto;
  background: #fff;
}
p:last-child {
  margin: 0px;
}
/* Quote card */
.quote-card{
  background:#fff;
  color:#1b2430;
  border-radius: var(--radius);
 padding: 35px 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.quote-card h3{
 font-size: 20px;
  margin-bottom: 18px;
  color: var(--navy);
  text-align: center;
  line-height: 30px;
}
.quote-card h3 span{ color: var(--green); }
.quote-card label{
  display: block;
  font-size: 16px;
  letter-spacing: 0.4px;
  color: var(--navy);
  margin-bottom: 2px;
  font-family: "Inter-Bold";
}
.chk-green {
  color: var(--green);
}
.quote-card .hint{
  font-size:14px;
  color: var(--grey-text);
  margin-bottom:8px;
}
.reg-input{
  display:flex;
  align-items:center;
  border-radius: 6px;
  overflow:hidden;
  margin-bottom: 16px;
}
.reg-input input {
  border-left: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 0px !important;
}
.reg-flag{
  background: #0b3f8c;
  color: #fff;
  padding: 4px 6px;
  font-size: 14px;
}
.reg-flag img {
  width: 34px;
}
.reg-input input{
  border:none;
  flex:1;
  padding: 10px 10px;
  font-weight:800;
  letter-spacing:1px;
  font-size:14px;
  outline:none;
}
.postcode-input{
  width:100%;
  border:1px solid var(--border);
  border-radius:6px;
  padding:12px 12px;
  margin-bottom:18px;
  font-size:14px;
  outline:none;
}
.postcode-input:focus, .reg-input input:focus{ outline: 2px solid var(--green); }

.quote-trust{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  color: var(--grey-text);
  margin-top:14px;
  flex-wrap:wrap;
  gap:6px;
  font-family: "Inter-SemiBold";
}
.quote-rating{
 margin-top: 17px;
  line-height: 26px;
  font-size: 16px;
  font-family: "Inter-Bold";
  color: var(--navy);
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
}
footer {
  background: var(--navy);
  color: #fff;
}
footer .container {
  padding-top: 28px;
  padding-bottom: 0;
}
.footer-top-sec {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.25fr 0.85fr 1.2fr;
  gap: 34px;
  padding-bottom: 24px;
}
.footer-brand {
  display: inline-block;
}
.footer-logo-img {
  display: block;
  width: 150px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.footer-about p {
  max-width: 220px;
  margin: 10px 0 12px;
  color: #d2dbe8;
}
.footer-social-icons {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Inter-Bold";
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}
.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-column li,
.footer-column a {
  color: #d2dbe8;
 
}
.footer-column a:hover {
  color: #fff;
}
.footer-area-links {
  display: grid;
  gap: 22px;
}
.footer-contact-column li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.footer-contact-column li img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-contact-icon {
  display: inline-flex;
  width: 15px;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  line-height: 15px;
}
.footer-bottom-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-copy {
  margin: 0;
  color: #d2dbe8;
  font-size: 12px;
  line-height: 18px;
}
.footer-certifications {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.footer-certifications span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d2dbe8;
  font-size: 12px;
  white-space: nowrap;
}
.footer-certifications img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.quote-card .btn-primary {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  background: var(--green);
  color: #fff;
  font-family: "Inter-Bold";
  font-size: 13px;
  cursor: pointer;
}
.quote-card .btn-primary:hover,
.quote-card .btn-primary:focus, 
.footer-quote-button:hover, .footer-quote-button:focus, 
.licensed-sec-btn-sec .outline-button:hover, .common-btn:hover {
  background: var(--green-dark);
  color: #fff;
}
.banner-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  min-height: 410px;
  padding: 50px 0px;
  align-items: center;
  position: relative;
  min-height: calc(100vh - 134px);
}
.home-banner-sec {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 42px;
}
.banner-rgt-sec {
 width: 30%;
  max-width: 100%;
}
.banner-lft-sec {
  flex: 1;
  display: flex;
  align-items: center;
}
.banner-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
 background-color: rgba(0, 0, 0, 0.6);
  left: 0px;
  top: 0px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
}
.check-icon {
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Inter-Bold";
  font-size: 12px;
  line-height: 1;
}
.hero-content {
  width: 560px;
  max-width: 100%;
}
.banner-lft-sec {
  width: 70%;
}
.quote-trust span {
  display: flex;
  gap: 5px;
}
.quote-stars {
  color: #13a555;
}
.hero-badges-list {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 10px;
}
.hero-badges-list li {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 15px;
}
.badges-rgt h4 {
  font-size: 16px;
  margin: 0px;
  line-height: 26px;
  word-break: break-word;
}
.stats-bar{
  background: var(--navy);
  color:#fff;
  padding: 22px 0;
}
.stats-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}
.stat{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
  min-width:180px;
}
.stat-icon{ font-size:26px; }

.stat small{ color:#b9c3d6; }
.stat-icon img {
  width: 46px;
}
.stat h6 {
  margin: 0px !important;
}
.badge-pill img {
  width: 18px;
}
.steps{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap: 20px;
  flex-wrap: wrap;
}
.step{
  text-align:center;
  max-width: 240px;
}
.step-icon{
  position:relative;
  width:76px; height:76px;
  border-radius:50%;
  background: var(--green-light);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin: 0 auto 16px;
}
.step-num{
  background: var(--green);
  color:#fff;
  flex: 0 0 25px;
  width:25px; height:25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height: 25px;
}
.step h4{ font-size:14px; margin-bottom:8px; letter-spacing:0.4px; }
.step-copy h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-arrow{
  font-size:24px;
  color:#c7cddb;
  align-self:center;
  margin-top: 30px;
}
.step-icon img {
  width: 32px;
}
.how-it-works .container {
  width: 1255px;
}
.common-heading {
  text-align: center;
  font-size: 32px;
  line-height: 42px;
  margin: 0 0 30px;
  color: var(--navy);
  text-transform: uppercase;
}
.green-text {
  color: var(--green);
}
.how-it-works .steps {
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
}
.how-it-works .step {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 14px;
  max-width: none;
  min-width: 0;
  text-align: left;
}
.how-it-works .step-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin: 0;
  background: #f3f5fa;
}
.how-it-works .step-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.how-it-works .step-copy {
  flex: 1;
  min-width: 0;
}

.how-it-works .step h4 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 26px;
  color: var(--navy);
  white-space: nowrap;
}
.how-it-works .step p {
  margin: 0;
  color: #6c7482;
}
.how-it-works .step-arrow {
  flex: 0 0 auto;
  margin: 0;
  font-size: 25px;
  color: #b8c1d2;
}
.recently-collected-vehicle {
  background: #fff;
  text-align: center;
}

.customer-say-sec {
  background: #fff;
  text-align: center;
}
.customer-say-inner-sec {
  margin: 0 -7px;
}
.customer-say-inner-sec .owl-item {
  box-sizing: border-box;
  padding: 0 7px;
}
.testimonial-card {
  min-height: 205px;
  padding: 16px 18px;
  box-sizing: border-box;
  text-align: left;
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(11, 30, 61, 0.08);
}
.testimonial-rating {
  margin-bottom: 8px;
  color: #f5a800;
  font-size: 17px;
  line-height: 20px;
}
.testimonial-text {
  min-height: 92px;
  color: var(--navy);
  font-size: 14px;
  line-height: 17px;
  font-family: "Inter-MediumItalic";
}
.testimonial-author {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.testimonial-author h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Inter-SemiBold";
  font-size: 14px;
  line-height: 20px;
}
.testimonial-author p {
  margin: 0;
  color: #687386;
  font-size: 14px;
  line-height: 18px;
}
.testimonial-google-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.recently-collected-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.recently-collected-sec {
  flex: 1;
  min-width: 0;
  margin: 0 8px;
}
.recently-collected-sec .owl-item {
  box-sizing: border-box;
  padding: 0 10px;
}
.testimonial-text p {
  line-height: 24px;
}
.vehicle-card {
  overflow: hidden;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(11, 30, 61, 0.16);
}
.vehicle-card-image {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
}
.vehicle-card-content {
  padding: 15px;
}
.vehicle-card h3 {
  overflow: hidden;
  margin: 0 0 4px;
 font-size: 18px;
  line-height: 28px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vehicle-card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
}
.vehicle-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border-radius: 50%;
  color: var(--green);
  font-size: 8px;
  line-height: 1;
}
.vehicle-card strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-family: "Inter-Bold";
  font-size: 15px;
  line-height: 20px;
}
.vehicle-carousel-prev,
.vehicle-carousel-next {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid #dce2eb;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 29px;
  line-height: 30px;
  cursor: pointer;
}
.vehicle-carousel-prev:hover,
.vehicle-carousel-next:hover {
  border-color: var(--green);
  color: var(--green);
}
.vehicle-more-button {
  display: inline-block;
  margin-top: 24px;
  padding: 7px 22px;
  border: 2px solid #9bc89f;
  border-radius: 5px;
  background: #fff;
  color: var(--green-dark);
  font-family: "Inter-Bold";
  font-size: 12px;
  cursor: pointer;
}
.vehicle-more-button:hover {
  color: var(--green-dark);
}
.brand-we-buy {
  text-align: center;
}
.brand-we-buy-sec {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 30px;
}
.brand-card {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid #e0e4ea;
  border-radius: 12px;
  background: #fff;
  text-align: left;
}
.brand-card-image {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  box-sizing: border-box;
  object-fit: contain;
}
.brand-card-content {
  min-width: 0;
}
.stat-content h6, .stat-content p {
  color: #fff;
}
.brand-card h3 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 16px;
  line-height: 26px;
}
.brand-card p {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 20px;
}
.brand-card a {
  color: var(--green);
  font-family: "Inter-Bold";
  font-size: 16px;
  line-height: 18px;
}
.brand-card a:hover {
  color: var(--green-dark);
}
.outline-button {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 28px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-family: "Inter-SemiBold";
  font-size: 16px;
}
.outline-button:hover {
  color: #fff;
  background: var(--navy);
}
.vehicle-meta-icon img {
  width: 16px !important;
}
.vehicle-card-content p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.recently-collected-wrap .owl-stage-outer {
  padding: 30px 0;
}
.areas-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 0.75fr;
  align-items: center;
  gap: 28px;
  padding: 0 32px;
  background: linear-gradient(110deg, #f4f7fb, #fbfcfd);
  border: 1px solid #eef1f5;
  border-radius: 12px;
}

.areas-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.areas-columns ul,
.postcode-coverage ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.areas-columns li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  white-space: nowrap;
  font-size: 14px;
  font-family: "Inter-SemiBold";
}
.areas-columns li img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  font-size: 14px;
}
.areas-columns .outline-button {
  grid-column: 1 / -1;
}
.areas-map {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
}
.areas-map img {
  display: block;
  width: 100%;
  max-width: 510px;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: top;
}
.areas-list {
  padding: 24px 0;
}
.postcode-coverage {
  padding: 20px 24px;
  padding: 20px 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(11, 30, 61, 0.12);
}
.postcode-coverage h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 24px;
}
.postcode-coverage p {
  margin: 0 0 12px;
  color: #53627a;
  font-size: 14px;
  line-height: 21px;
}
.postcode-coverage li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  line-height: 28px;
}
.postcode-coverage .chk-green {
  color: var(--green);
  font-family: "Inter-Bold";
  font-size: 18px;
}
.areas-list h2 {
  text-align: left;
  margin-bottom: 10px !important;
}

.why-choose{
  background: var(--navy);
  color:#fff;
}
.why-choose h2{ color:#fff; }
.why-choose h2 span{ color: var(--green); }
.why-grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.why-card{
  background:#fff;
  color: var(--navy);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align:center;
}
.why-card h4 {
  font-size: 18px;
  line-height: 28px;
  min-height: 56px;
}
.why-icon img {
  width: 50px;
}
.why-icon {
  margin-bottom: 10px;
}
.home-faq-sec {
  background: #fff;
  text-align: center;
}
.faq-home-inner-sec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px 28px;
  margin-top: 24px;
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
}
.faq-home-column {
  display: grid;
  align-content: start;
  gap: 8px;
}
.faq-home-item {
  overflow: hidden;
  border: 1px solid #e4e8ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(11, 30, 61, 0.07);
}
.faq-home-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 18px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font-family: "Inter-SemiBold";
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  cursor: pointer;
}
.faq-home-question strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-family: "Inter-Bold";
  font-size: 23px;
  line-height: 20px;
}
.faq-home-question[aria-expanded="true"] {
  border-bottom: 1px solid #e4e8ef;
}
.faq-home-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: #53627a;
  transition: max-height 0.35s ease, padding 0.35s ease;
  overflow-y: auto;
}
.faq-home-answer.is-open {
  max-height: 320px;
  padding: 10px 18px;
}
.faq-home-answer p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.footer-form-lft-sec h2 {
  text-align: left;
  margin-bottom: 4px;
}
.footer-column.footer-contact-column li:last-child {
  align-items: start;
}
.footer-column.footer-contact-column li:last-child img {
  margin-top: 7px;
}
.inner-page-banner {
  background-color: var(--navy);
  width: 100%;
  float: left;
  min-height: 250px;
  padding: 50px 0px;
  display: flex;
  align-items: center;
}
.common-heading.color-white {
  color: #fff;
}
#breadcrumbs {
  text-align: center;
  color: #fff;
}
#breadcrumbs a {
  color: var(--green);
}
.full-width {
  width: 100%;
  float: left;
}
.about-sub-sec.full-width {
  display: flex;
  gap: 30px;
}
.about-rgt-sec {
  width: 40%;
  text-align: right;
}
.about-lft-sec {
  width: 60%;
}
.about-sec .container {
  width: 1300px;
}
.inner-page-heading.color-white {
  text-align: center;
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-lft-sec h2 {
  text-align: left;
}
.licensed-sec {
  background-color: var(--navy);
  color: #fff;
  text-align: center;
}
.common-heading.white-color {
  color: #fff;
}
.licensed-sec-btn-sec .outline-button {
  background-color: var(--green);
  color: #fff;
  gap: 10px;
  display: inline-flex;
}
.licensed-sec p {
  color: #fff;
  font-size: 20px;
  width: 700px;
  margin: 0 auto;
  max-width: 100%;
}
.contact-lft-sec {
  width: 50%;
  display: flex;
}
.contact-rgt-sec {
  width: 50%;
}
.contact-sub-sec.full-width {
  display: flex;
  gap: 70px;
}
.contact-content {
  margin-bottom: 50px;
}
.contact-lft-sub-sec {
  background-color: var(--navy);
  border-radius: 15px;
  padding: 50px;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.icon-circle{
    width:42px; height:42px;
    border-radius:50%;
    background: rgba(31,170,72,0.16);
    border: 1px solid rgba(31,170,72,0.4);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-item {
  margin-bottom: 20px;
}
.contact-item:last-child {
  margin-bottom: 0px;
}
.contact-lft-sub-sec h3 {
  color: #fff;
  margin-bottom: 30px;
}
fieldset {
  padding: 0px !important;
}
#frm_field_6_container {
  margin-bottom: 0px;
}
.frm_button_submit.common-btn {
  margin-bottom: 0px !important;
}
.faq-home-inner-sec.Faq-section {
  margin-bottom: 0px;
}
.inner-page-padding {
  padding: 80px 0px;
}
.with_frm_style textarea {
  vertical-align: top;
  height: auto;
  border-radius: 5px !important;
  border: 0.5px solid #808080 !important;
  box-shadow: none !important;
  max-height: 100px !important;
}
.testimonial-author img {
  width: 24px !important;
}
.testimonial-author-info {
  width: calc(100% - 24px);
  padding-right: 10px;
}
.home-faq-sec.common-padding {
  padding-top: 0px;
}
.brand-we-buy.common-padding {
  padding-top: 0px;
}
.drop_menu_list.is-open {
  background-color: #345da06e;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.head_menu_list {
  padding-top: 0px !important;
  padding-bottom: 5px !important;
}
#main-menu li .drop_menu_list.is-open > .head_menu_list,
#main-menu li .drop_menu_list.active > .head_menu_list {
  padding-top: 0px !important;
  padding-bottom: 15px !important;
}

/* Services page layout */
.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 48px;
}
.service-hero-content,
.service-content-copy,
.service-intro-content {
  min-width: 0;
}
.service-hero-image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.service-card img {
 display: block;
  width: auto;
  height: 100px;
  object-fit: contain;
}
.service-card h3 {
  font-size: 20px;
  line-height: 25px;
}
.service-card h3 {
  margin: 0;
  padding: 16px;
  text-align: center;
}
.service-intro-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.service-content-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
}
.service-content-full-sec .service-content-row {
  display: block;
}
.service-content-full-sec .service-content-copy {
  width: 100%;
}
.service-content-sec:nth-of-type(even) .service-content-row {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
}
.service-content-sec:nth-of-type(even) .service-content-image {
  order: 2;
}
.service-content-image img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
}
.service-intro-sec {
 background-color: var(--navy);
  text-align: center;
}
.serivice-sec h2 {
  text-align: left;
}
.service-intro-sec h2, .service-intro-sec p {
  text-align: center;
  color: #fff;
}
.service-cards-sec h2 {
  text-align: center;
}
.service-content-full-sec {
  background-color: #f7f7fb;
}
.serivice-sec .container {
  width: 1400px;
}

.inner-page-banner-sub-sec {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  width: 100%;
}
.service-banner-copy {
  min-width: 0;
  width: 100%;
}

.service-banner-quote .quote-form {
  display: grid;
  gap: 0;
}
.service-banner-quote .quote-form h3 {
  margin-top: 0;
}
.service-banner-quote .btn-primary {
  cursor: pointer;
}
.quote-card.service-banner-quote {
  width: 700px;
  margin: 0 auto;
    margin-top: 0px;
  margin-top: 0px;
  margin-top: -100px;
  max-width: 100%;
}
.inner-page-banner.service-banner.full-width {
  padding-bottom: 150px;
}
.quote-form-input {
  display: flex;
  gap: 10px;
}
.form-fld {
  width: 50%;
}
.quote-card.service-banner-quote .btn-primary.btn-block {
  width: 200px;
  margin: 0 auto;
}
.common-padding.service-content-sec.service-content-even {
  padding-top: 0px;
}
.serivice-sec a {
  color: var(--green);
}
.blog-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  border: 1px solid #e0e4ea;
  border-radius: 10px;
  overflow: hidden;
}
.blog-card-content {
  padding: 20px;
}
.blog-card-title {
  font-size: 26px;
  line-height: 27px;
  margin: 10px 0px 15px 0px;
  min-height: 54px;
}
.blog-card-read-more {
  margin-top: 10px;
}
.blog-card-read-more a {
  font-family: "Inter-SemiBold";
  font-size: 14px;
}
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.wp-pagenavi {
  width: 100%;
  margin-top: 50px;
  text-align: center;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--green) !important;
  font-family: "Inter-SemiBold";
  font-size: 16px;
}
.current {
  background-color: var(--green);
  border: 1px solid var(--green) !important;
  color: #fff !important;
}
.recently-collected-vehicle.common-padding h2 {
  margin: 0px;
}

/* Location page layout */
.location-content-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 64px;
}
.location-content-even .location-content-row {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
}
.location-content-even .location-content-image {
  order: 2;
}
.location-content-image,
.location-content-copy {
  min-width: 0;
}
.location-content-image img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
}
.location-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.location-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}
.location-why-card img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.location-why-card > div {
  min-width: 0;
}
.location-full-width-content {
  width: 100%;
}
.location-service-card {
  justify-content: flex-start;
}
.location-service-card > div {
  width: 100%;
}
.location-why-sec {
  background-color: #f6f7fa;
}
.location-services-sec {
  background-color: var(--navy);
  text-align: center;
}
.location-services-sec h2 {
  color: #fff;
  text-align: center;
}
.service-card.location-service-card {
  background-color: #fff;
}
.location-full-width-sec {
  background-color: #f6f8fa;
  text-align: center;
}
.location-full-width-sec h2 {
  text-align: center;
}
.location-why-sec.service-cards-sec {
  background-color: var(--navy);
}
.location-why-cards.service-card {
  background-color: #fff;
}
.location-why-sec.service-cards-sec h2 {
  color: #fff;
}
.location-services-sec .service-cards-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.location-services-sec .location-service-card {
  grid-column: span 2;
}
.location-services-sec .location-service-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.location-services-sec .location-service-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.serivice-sec.common-padding.location-services-sec .container {
  width: 1250px;
}
.location-sec4.location-content-even {
  padding-top: 0px;
}

/* Single location page layout */
.single-location-intro-content,
.single-location-content {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.single-location-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.single-location-service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  text-align: center;
}
.single-location-service-card img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.single-location-service-card > div {
  min-width: 0;
}
.single-location-map {
  width: 100%;
  aspect-ratio: 16 / 7;
}
.single-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.single-location-quote-sec .quote-card {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
.single-location-intro-sec .service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 1000px;
  margin: 0 auto;
    margin-top: 0px;
  margin-top: 40px;
  max-width: 100%;
}
.single-location-content-sec {
  background-color: var(--navy);
  color: #fff;
  text-align: center;
}
.single-location-content-sec p, .single-location-content-sec h2 {
  color: #fff;
  text-align: center;
}
.single-location-fullwidth-content-sec {
  background-color: #f6f6fa;
}
.single-location-fullwidth-content-sec h2 {
  text-align: center;
}
.single_main_sec h2 {
  text-align: left;
  margin-top: 30px;
}
.single-card-date {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.sidebar-list {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* .related-posts-list.blog-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
} */
.single_image_sec img {
  width: 100%;
}
.single-detail-page .container {
  width: 1350px;
}
.blog-detail-related-posts-sec {
  background-color: #f6f6fa;
}


/* Single post content structure */
.single_main_sec .post-date,
.single_main_sec .inner-page-common-title,
.single_main_sec .single_page_cnt {
  display: block;
}
.single_main_sec .post-date + .inner-page-common-title {
  margin-top: 0;
}

/* Related posts use the blog card layout */

.related-posts-list .blog-card-image img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-links {
  width: 100%;
  float: left;
  margin-top: 30px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.previous_post a {
  font-size: 0px;
  width: 30px;
  height: 30px;
  background-image: url(./images/left-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.nav-next a {
  font-size: 0px;
  width: 30px;
  height: 30px;
  background-image: url(./images/right-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.blog-card-read-more a {
  color: #2e8b3d;
}
.footer-form-sec {
 background: #012b58fc;
  color: #fff;
  float: left;
  width: 100%;
}
.footer-form-sec > .container {
  padding-top: 14px;
  padding-bottom: 14px;
}
.footer-form-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-form-lft-sec {
  min-width: 240px;
}
.footer-form-lft-sec p,
.footer-form-lft-sec h2,
.footer-form-lft-sec h3 {
  margin: 0;
  color: #fff;
}
.footer-form-lft-sec h2,
.footer-form-lft-sec h3 {
  font-size: 22px;
  line-height: 28px;
}
.footer-form-lft-sec p {
  color: #d9e5f2;
  font-size: 13px;
  line-height: 20px;
}
.footer-form-rgt-sec {
 display: flex;
  align-items: center;
  gap: 16px;
  width: 800px;
  justify-content: end;
  max-width: 100%;
}
.footer-reg-input,
.footer-postcode-input {
  flex: 1 1 0;
  min-width: 0;
  height: 45px;
  box-sizing: border-box;
  border-radius: 6px;
  background: #fff;
}
.footer-reg-input {
  display: flex;
  overflow: hidden;
  border: 2px solid #f4c928;
}
.footer-reg-flag {
  display: flex;
  width: 38px;
  align-items: center;
  justify-content: center;
  background: #f4c928;
}
.footer-reg-flag img {
  width: 22px;
  height: 30px;
  object-fit: contain;
}
.footer-reg-input input,
.footer-postcode-input {
  min-width: 0;
  padding: 0 18px !important;
  border: 0 !important;
  color: var(--navy);
  font-family: "Inter-SemiBold";
  font-size: 14px !important;
  height: 100%;
  box-shadow: none !important;
}
.footer-postcode-input {
  flex: 1 1 0;
}
.footer-quote-button {
  flex: 0 0 225px;
  height: 45px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-family: "Inter-Bold";
  font-size: 14px;
  cursor: pointer;
}

.footer-quote-button span {
  margin-left: 12px;
  font-size: 20px;
}
.footer-form-rgt-sub-sec {
  display: flex;
  gap: 15px;
}
#main-menu li a hover {
  color: var(--green);
}
#main-menu li:hover a, .phone-section a:hover {
  color: var(--green);
}
.error_page.inner_page.full-width {
  text-align: center;
}
.nt_page p {
  margin-bottom: 25px;
}
.common-btn:hover {
  background-color: var(--green-dark) !important;
}
.licensed-sec-btn-sec {
  margin-top: 30px;
}
.brand-card a {
  color: var(--green) !important;
  cursor: pointer;
}