:root {
  --primary: #BD8A2C;
  --secondary: #0087B7;
  --grey: #CCC;
  --l-grey: #EFEFEF;
  --d-grey: #545454;
  --base: #000;
  --white: #FFF;
}

/* Accessibility */
:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}

:focus {
    outline: -webkit-focus-ring-color auto 5px;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
input[type="search"]:focus,
.main-navigation .btn-toggle:focus,.owl-dots .owl-dot:focus,
input[type="submit"]:focus,
[tabindex]:focus {
 outline: -webkit-focus-ring-color auto 5px;
  outline-offset: 2px; /* Offset the outline */
  /* Optionally, add a box-shadow or background change for stronger indication */
  /* box-shadow: 0 0 5px 2px rgba(0, 95, 204, 0.7); */
  transition: none;
}

.copyright a:focus, .overlay .cancel:focus::after {
 outline: -webkit-focus-ring-color auto 5px;
  outline-offset: 2px; /* Offset the outline */
  transition: none;
}




.wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid;
}

/* Theme colours */
.has-primary-color {
  color: var(--primary);
}

.has-primary-background-color {
  background-color: var(--primary);
}

.has-secondary-color {
  color: var(--secondary);
}

.has-secondary-background-color {
  background-color: var(--secondary);
}

.has-grey-color {
  color: var(--grey);
}

.has-grey-background-color {
  background-color: var(--grey);
}

.has-l-grey-color {
  color: var(--l-grey);
}

.has-l-grey-background-color {
  background-color: var(--l-grey);
}

.has-d-grey-color {
  color: var(--d-grey);
}

.has-d-grey-background-color {
  background-color: var(--d-grey);
}

.has-base-color,
.has-base-color.has-text-color {
  color: var(--base);
}

.has-base-background-color {
  background-color: var(--base);
}

.has-white-color,
.has-white-color.has-text-color a {
  color: var(--white);
}

.has-white-background-color {
  background-color: var(--white);
}

.has-background-dim {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
  /*default*/
}

.has-background-dim.has-background-dim-10 {
  opacity: 0.1;
}

.has-background-dim.has-background-dim-20 {
  opacity: 0.2;
}

.has-background-dim.has-background-dim-30 {
  opacity: 0.3;
}

.has-background-dim.has-background-dim-40 {
  opacity: 0.4;
}

.has-background-dim.has-background-dim-50 {
  opacity: 0.5;
}

.has-background-dim.has-background-dim-60 {
  opacity: 0.6;
}

.has-background-dim.has-background-dim-70 {
  opacity: 0.7;
}

.has-background-dim.has-background-dim-80 {
  opacity: 0.8;
}

.has-background-dim.has-background-dim-90 {
  opacity: 0.9;
}

.has-background-dim.has-background-dim-100 {
  opacity: 1;
}

/* Fade scroll/load animations */
.animate {
  opacity: 0
}

.fade {
  opacity: 1;
  transition: opacity .5s 0.5s
}

.on-scroll--bottom {
  opacity: 0;
  transform: translateY(200px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform
}

.on-scroll--left, .on-scroll--top {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  will-change: transform
}

.fade--bottom {
  animation: 1s forwards fade-bottom
}

@keyframes fade-bottom {
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.on-scroll--top {
  transform: translateY(-20px);
  backface-visibility: hidden
}

.fade--top {
  animation: 1s forwards fade-top
}

@keyframes fade-top {
  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.on-scroll--left {
  transform: translateX(-20px);
  backface-visibility: hidden
}

.fade--left {
  animation: 1s forwards fade-left
}

@keyframes fade-left {
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.on-scroll--right {
  opacity: 0;
  transform: translateX(20px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform
}

.fade--right {
  animation: 1s forwards fade-right
}

@keyframes fade-right {
  100% {
    opacity: 1;
    transform: translateX(0)
  }
}

.delay-200 {
  animation-delay: .2s !important
}

.delay-400 {
  animation-delay: .4s !important
}

.delay-600 {
  animation-delay: .6s !important
}

.delay-800 {
  animation-delay: .8s !important
}

.delay-1000 {
  animation-delay: 1s !important
}

.delay-1200 {
  animation-delay: 1.2s !important
}

.delay-1400 {
  animation-delay: 1.4s !important
}

.delay-1600 {
  animation-delay: 1.6s !important
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  font: 300 16px/1.6 'Roboto', Arial, sans-serif;
  color: var(--base);
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  word-break: break-word;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0 auto;
  background: var(--white);
}

#main-content .wp-block-column {
  position: relative;
}

/* Standard Width of Group blocks */
.wp-block-group>div:first-of-type,
.wp-block-cover .wp-block-cover__inner-container,
#signup-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  z-index: 1;
  position: relative;
}

/* Narrow Width of Group blocks */
.wp-block-group.narrow>div:first-of-type,
.wp-block-cover.narrow .wp-block-cover__inner-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "wide" Group blocks */
.wp-block-group.alignwide>div:first-of-type,
.wp-block-cover.alignwide .wp-block-cover__inner-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Width of "full-wide" Group blocks */
.wp-block-group.alignfull>div:first-of-type,
.wp-block-cover.alignfull .wp-block-cover__inner-container {
  max-width: initial;
  margin: 0 auto;
  padding: 1.3rem 0rem .5rem;
}

.site-header .wp-block-group.alignwide>div:first-of-type,
.wp-block-cover.alignwide>div:first-of-type,
.wp-block-cover.narrow>div:first-of-type {
  padding: 0;
}

.site-footer .wp-block-group.alignwide>div:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
}

/*
h1::selection,
h2::selection,
h3::selection,
h4::selection,
p::selection,
li::selection,
a::selection,
span::selection {
  background: var(--primary);
}

h1.has-primary-color::selection,
h2.has-primary-color::selection,
h3.has-primary-color::selection,
h4.has-primary-color::selection,
p.has-primary-color::selection,
li.has-primary-color::selection,
a.has-primary-color::selection,
span.has-primary-color::selection {
  background: var(--secondary);
}
*/

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0 0 1rem 0;
  padding: 0;
  color: var(--base);
}

h1 {
  font-size: 1.7em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h2 {
  font-size: 2em;
  margin: 0 0 1rem 0;
  line-height: 1.15;
}

h3 {
  font-size: 1.5em;
  line-height: 1.25;
  margin-top: 0
}
h3 strong {
  color: var(--primary)
}
h4 {
  font-size: 1em;
  line-height: 1.6;
  margin: 0 0 0.4rem 0;
}

p {
  font-size: .9em;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

p.has-small-font-size {
  font-size: .85em;
}

p.has-medium-font-size {
  font-size: 1.2em;
}

p.has-large-font-size {
  font-size: 1.4em;
}

p.has-x-large-font-size {
  font-size: 1.6em;
  line-height: 1.25;
}

b,
strong {
  font-weight: 700;
}
h2 strong {
  color: var(--primary)
}
hr.wp-block-separator {
  background-color: var(--grey);
  border: 0;
  height: 1px;
  width: 5rem;
  margin: 0 auto;
}

hr.wp-block-separator.is-style-wide {
  width: 100%;
}

hr.wp-block-separator.is-style-dots {
  background-color: transparent;
  border-top: 5px dotted var(--grey);
}

img {
  max-width: 100%;
  width: initial;
  height: auto;
  display: block;
  margin: 0 auto;
}

figure {
  margin: 0;
}

figure.alignleft img {
  margin: 0;
}

figure.alignright img {
  margin: 0 0 0 auto;
}

figure.aligncenter img {
  margin: auto;
}

figure.alignwide img,
figure.alignfull img {
  width: 100%;
}

svg {
  display: block;
}

ul,
main ul.list-no-style {
  list-style-type: none;
  font-size: 1em;
  margin: 0;
  padding: 0;
}

main ul,
ol {
  list-style-type: square;
  font-size: 1em;
  margin: 0 0 2rem 2rem;
  padding: 0;
  line-height: 1.6;
}

main ul li ul,
ol li ol {
  margin-bottom: 0;
}

ol {
  list-style-type: decimal;
}

ol.lower-alpha {
  list-style-type: lower-alpha;
}

ol.upper-alpha {
  list-style-type: upper-alpha;
}

ol.lower-roman {
  list-style-type: lower-roman;
}

ol.upper-roman {
  list-style-type: upper-roman;
}

a {
  text-decoration: none!important;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  color: var(--primary);
}

main a {
  text-decoration: underline;
}

a:hover,
a:focus,
a:active {
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
}


a:focus {
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: 2px;
}

/* Example: Making the focus outline more noticeable */
a:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: 2px;
}

/* Breadcrumbs */
.ah-breadcrumb {
  width: 100%;
  margin: .5rem auto 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.ah-breadcrumb li {
  display: inline-block;
  margin: 0 .25rem;
  font-size: .9em;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: var(--l-grey);
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: var(--secondary);
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Video (YouTube)
--------------------------------------------------------------*/
.wp-block-embed__wrapper {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.wp-block-embed__wrapper iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* cross-browser fix */
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  display: inline-block;
  margin: 0;
  padding: 1rem 1.5rem;
  background: var(--primary);
  border-radius: 4px;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.6;
  white-space: normal;
  box-shadow: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: var(--base);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid var(--primary)
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: var(--base);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
input[type="file"],
textarea,
select {
  color: var(--d-grey);
  border: 1px solid var(--base);
  border-radius: 0;
  margin: 0 0 1.5em 0;
  padding: .75rem 1rem;
  width: 100%;
}

input[type="file"] {
  border: 0;
  padding: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: var(--base);
}

/* contact 7 forms */
span.required {
  color: var(--secondary);
  font-size: 0.8em;
}

span.wpcf7-not-valid-tip {
  color: var(--secondary);
}

span.wpcf7-list-item {
  display: block;
}
.step1-form-wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap; /* allows mobile stacking */
}

.step1-form-wrap .field-row {
  flex: 1;
  min-width: 150px;
}

.step1-form-wrap .field-row:last-child {
  flex: 0 0 auto; /* button doesn't stretch */
}

.step1-form-wrap input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.step1-continue-btn {
  padding: .55rem 2rem;
  cursor: pointer;
  white-space: nowrap;
  font-size: .9em;
}

.step2-form-wrap .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.step2-form-wrap .field-col {
  flex: 1;
  min-width: 200px;
}

.step2-form-wrap .row-2 .field-col {
  flex: 1 1 50%;
}

.step2-form-wrap .row-3 .field-col {
  flex: 1 1 33.33%;
}

.step2-form-wrap input,
.step2-form-wrap textarea {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
}

.step2-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.step2-form-wrap label {
  display: block;
  font-size: 14px;
  margin-bottom: -10px;
}

#wpcf7-f2821-p4801-o1 {
  background: #000;
  padding: 2rem 3rem;
  border-radius: 25px
}
#wpcf7-f2821-p4801-o1 label{
  color: var(--primary)!important;
  font-size: .9em!important;
  text-transform: uppercase;
  font-weight: 550
}

/*--------------------------------------------------------------
## Site logo
--------------------------------------------------------------*/
.site-header {
  background-image: url(/wp-content/uploads/2026/03/ChatGPT-Image-Mar-26-2026-06_42_20-AM.jpg);
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, .15);
  background-position: center;
  background-size: cover;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0; /* shorthand for top/right/bottom/left: 0 */
  background: rgba(0, 0, 0, 0.5); /* adjust opacity here */
  z-index: 1;
}
.site-branding {
  padding: .6rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-branding img {
  width: 8rem;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.site-branding a:hover img {
  opacity: .75;
}

.top-nav {
  display: none;
}

/* Social Media */
.menu-social-media-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .25rem;
}

.menu-social-media-container img {
  width: 0.9rem;
  margin: 0.4em;
}

/* Language Selector */
.menu-languages img {
  display: inline-block;
  margin: 0 .2rem 0 0;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/* Hide/show nav*/
.btn-content {
  display: none;
  width: 100%;
  background: var(--primary);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  top: 0;
}

.btn-content a {
  color: var(--white);
  text-decoration: none;
  line-height: 1.8;
  text-transform: uppercase;
}

.main-navigation .btn-toggle {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 1em;
  line-height: 0;
  cursor: pointer;
  padding: 2rem 1rem;
  margin: 0;
  z-index: 2;
}

.main-navigation .btn-toggle i.bar {
  position: relative;
  display: block;
  width: 2rem;
  height: 3px;
  background: var(--white);
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before,
.main-navigation .btn-toggle i.bar::after {
  content: '';
  width: 2rem;
  height: 3px;
  background: var(--white);
  position: absolute;
  left: 0;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.main-navigation .btn-toggle i.bar::before {
  top: -10px;
}

.main-navigation .btn-toggle i.bar::after {
  bottom: -10px;
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar {
  background: rgba(0, 0, 0, 0);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::before {
  top: 0;
  -webkit-transform: rotateZ(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotateZ(-135deg);
}

.main-navigation .btn-toggle.btn-toggle-expand i.bar::after {
  bottom: 0;
  -webkit-transform: rotateZ(135deg);
  -ms-transform: rotate(135deg);
  transform: rotateZ(135deg);
}

.main-navigation li a {
  display: block;
  padding: .75rem;
  border-bottom: 1px solid rgba(225, 225, 225, .5);
  line-height: 1.25;
}

.main-navigation li:last-child a {
  border: 0;
}

.main-navigation .sub-menu {
  display: none;
}

.main-navigation .sub-menu a {
  text-transform: none;
}

.main-navigation .menu-item-has-children {
  position: relative;
}

.main-navigation .menu-item-has-children:after {
  background: url(/wp-content/themes/ibtonline/img/chevron-down-white.svg) no-repeat 50% 50%;
  background-size: 10px;
  position: absolute;
  right: 0;
  width: 2.25rem;
  height: 2rem;
  top: .25rem;
  content: "";
  z-index: 111;
  cursor: pointer;
}

/*--------------------------------------------------------------
## col and Modules
--------------------------------------------------------------*/
/* quotations */
blockquote {
  display: block;
  margin: 0 0 .75rem 0;
  padding: 0;
  font-style: normal;
  quotes: "\201C""\201D";
}

blockquote p:before {
  content: open-quote;
  margin-right: .1rem
}

blockquote p:after {
  content: close-quote;
}

blockquote p {
  color: var(--white);
  font-size: 1.15rem;
}

.quotee {
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
}

address {
  font-style: normal;
}

iframe,
object,
embed {
  max-width: 100%;
}

/* col */
.wp-block-columns,
figure.wp-block-gallery.wp-block-gallery,
.wp-block-media-text {
  display: grid;
  gap: 1.5rem;
  grid-auto-flow: row;
}

.wp-block-media-text {
  gap: 0;
  margin: 1.75rem 0 0 0;
}


@media screen and (max-width: 768px) {
  .wp-block-media-text.is-stacked-on-mobile{
    grid-template-columns: 100% !important;
  }
}



.wp-block-media-text__media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wp-block-media-text .wp-block-media-text__content {
  display: grid;
  align-content: center;
  padding: 1.75rem;
}

.is-not-stacked-on-mobile,
.wp-block-media-text.is-not-stacked-on-mobile {
  grid-auto-flow: column;
}

.slim-gutter {
  gap: .5rem;
}

.large-gutter {
  gap: 3rem;
}

/* without gutter */
.no-gutter {
  gap: 0;
}

.no-gutter-bottom {
  row-gap: 0;
}

/* center text */
.has-text-align-center {
  text-align: center;
}

/* text right */
.has-text-align-right {
  text-align: right;
}

/* text left */
.text-left {
  text-align: left;
}

/* justify per row */
.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

/* vertical alignment (grid parent) */
.are-vertically-aligned-top {
  align-items: start;
}

.are-vertically-aligned-center {
  align-items: center;
}

.are-vertically-aligned-bottom {
  align-items: end;
}

.are-vertically-aligned-stretch {
  align-items: stretch;
}

/* vertical alignment (grid child) */
.is-vertically-aligned-top {
  align-self: start;
}

.is-vertically-aligned-center {
  align-self: center;
}

.is-vertically-aligned-bottom {
  align-self: end;
}

.is-vertically-aligned-stretch {
  align-self: stretch;
}

/* base classes for all media - mobile first */
/*even columns*/
.two-items, .columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.three-items, .columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.four-items, .columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.five-items, .columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.six-items, .columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

/*uneven columns as fractions*/
.one-of-three {
  grid-template-columns: 33.3fr 76.7fr;
}

.one-of-four {
  grid-template-columns: 25fr 75fr;
}

.one-of-five {
  grid-template-columns: 20fr 80fr;
}

.one-of-six {
  grid-template-columns: 16.6fr 83.4fr;
}

.two-of-five {
  grid-template-columns: 40fr 60fr;
}

/*reverse uneven columns as fractions*/
.two-of-three {
  grid-template-columns: 76.7fr 33.3fr;
}

.three-of-four {
  grid-template-columns: 75fr 25fr;
}

.four-of-five {
  grid-template-columns: 80fr 20fr;
}

.five-of-six {
  grid-template-columns: 83.4fr 16.6fr;
}

.three-of-five {
  grid-template-columns: 60fr 40fr;
}

/* Switch 2 column order */
.switcharoo:nth-of-type(1),
.reverse .wp-block-media-text__content:nth-of-type(1) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 2;
  order: 2;
}

.switcharoo:nth-of-type(2),
.reverse .wp-block-media-text__media:nth-of-type(2) {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 1;
  order: 1;
}

/* slider */
.slider {
  display: block;
}

.slider .wp-block-heading {
  font-size: 3.5em;
  line-height: 1.25;
}

.wp-block-cover {
  padding: 4rem 0;
  position: relative;
}

.wp-block-cover div.wp-block-cover__image-background {
  padding: 0;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.wp-block-cover.mv__cover-overflow {
  padding: 0;
  max-height: 40rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 500px;
  width: 100%;
}

.mv__cover-overflow video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wp-block-cover.mv__cover-overflow video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__cover-overflow .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
}

.heading-only {
  margin: 0 0 2rem 0;
}

.blog .latest-news h2,
.archive .latest-news h2 {
  font-size: 1.15em
}

.blog .latest-news p,
.archive .latest-news p {
  font-size: .85em;
}

.post-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  bottom: 0;
  width: 100%;
  padding: 2rem 0;
}

.post-pagination .next-post {
  text-align: right;
}

.latest-news .outer-link {
  display: block;
  border: 1px solid var(--d-grey);
  border-radius: 4px;
  color: var(--base);
  position: relative;
}

.latest-news .outer-img {
  position: relative;
  overflow: hidden;
}

.latest-news .outer-link img {
  border-radius: 4px 4px 0 0;
  -webkit-transition: -webkit-transform .75s;
  transition: -webkit-transform .75s;
  -o-transition: transform .75s;
  transition: transform .75s;
  transition: transform .75s, -webkit-transform .75s;
  width: 100%;
}

.latest-news .outer-link:hover img {
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15)
}

.latest-news .inner-content {
  font-size: 1.15em;
  padding: 1.5rem;
  height: 100%;
}

.latest-news .category {
  display: block;
  background: var(--primary);
  padding: .5rem 1.75rem;
  border-radius: 0 4px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: .75em;
  text-transform: uppercase;
  color: var(--white);
}

.latest-news .read {
  display: block;
  margin: 1.75rem 0 0 0;
  font-size: .9em;
  color: var(--primary);
  text-transform: uppercase;
}

.latest-news .outer-link:hover .read {
  color: var(--primary);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.pagination {
  margin: 2rem 0 0 0;
  text-align: center;
  font-size: .9em;
  display: block;
  position: relative;
  height: 60px;
  box-sizing: content-box;
}

.pagination .page-numbers {
  padding: 1rem 1.3rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.15em;
  line-height: 1.6;
}

.pagination a:hover,
.pagination .page-numbers.current {
  background: var(--b-cyan);
}

.pagination .page-numbers.next {
  position: relative;
  left: 1px;
}

.pagination .page-numbers.next::before,
.pagination .page-numbers.prev::before {
  content: ">";
  position: relative;
  top: -.1rem;
}

.pagination .page-numbers.prev::before {
  content: "<";
}

/* Popup / Modal */
.overlay {
  position: fixed;
  /*! margin: auto; */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.75);
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
  visibility: hidden;
  opacity: 0;
  height: 0;
  z-index: 100;
}

.overlay .cancel {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.overlay .cancel::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512" fill="%23FFFFFF"><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>') center no-repeat;
  background-color: var(--primary);
  background-size: 1.5rem;
  position: absolute;
  top: -1px;
  right: 0;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.overlay:target {
  visibility: visible;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  height: auto;
}

.overlay.wp-block-group.alignfull>div:first-of-type {
  position: static;
}

.popup {
  max-width: 1000px;
  max-height: 500px;
  width: 90%;
  overflow: auto;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* buttons */
.wp-block-button {
  background: var(--primary);
  border-radius: 4px;
}

.wp-block-button .wp-block-button__link {
  display: block;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white)!important;
  white-space: normal;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.wp-block-button .has-primary-background-color:hover {
  background: var(--base)!important;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button .has-secondary-background-color:hover {
  background: var(--primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: transparent;
  color: var(--primary);
}

.wp-block-buttons.is-content-justification-center {
  justify-content: center;
}

.wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}

.wp-block-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1em;
}

.cta {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 98;
}

.cta .wp-block-button__link {
  border: 2px solid var(--white);
  padding: .5rem 1rem;
  font-size: .9em;
  letter-spacing: 2px;
}

/*table styling*/
.wp-block-table {
  max-width: calc(100vw - 2rem);
  margin: 0 0 2rem 0;
  padding: 1rem 0;
  word-break: keep-all;
  overflow-x: scroll;
}

.wp-block-table table {
  border-collapse: collapse;
  display: table;
  /*width: fit-content;*/
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
}

.wp-block-table table td,
.wp-block-table table th {
  border: 1px solid var(--d-grey);
  padding: 1.5rem 1.75rem;
}

.wp-block-table table thead {
  color: var(--primary);
  background: transparent;
}

.wp-block-table table th, .wp-block-table table thead td {
  text-align: left;
  border-top: none;
  font-weight: 700;
}

.wp-block-table table td {
  /*white-space: nowrap;*/
  border-bottom: none;
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.3;
}

.wp-block-table table td:first-of-type,
.wp-block-table table th:first-of-type {
  border-left: none;
}

.wp-block-table table td:last-of-type,
.wp-block-table table th:last-of-type {
  border-right: none;
}

.is-style-stripes table {
  font-size: .9em
}

.is-style-stripes table th, .is-style-stripes table thead td, .is-style-stripes table thead td:first-child {
  font-size: 1.2em
}

.is-style-stripes table td:first-child {
  font-size: 1em;
}

.is-style-stripes table td,
.is-style-stripes table th {
  padding: .5rem;
}

.is-style-stripes table tr:nth-child(even) {
  background: var(--l-grey);
}

/* footer */
.site-info {
  padding: 4rem 0;
  border-top: 6px solid var(--primary);
  border-bottom: 1px solid var(--primary)
}

.site-info h2 {
  margin: 0 0 1rem 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase
}

.site-info-one h2{
  font-size: 1.5em
}
.site-info p,
.site-info li {
  font-size: .9em;
  line-height: 2.25;
}
.site-info iframe{
  border: 3px solid var(--primary)!important;
  border-radius: 25px
}
.site-info p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
.site-info img{
  width: 9rem;
}
.social-icons div{
  display: flex;
  margin-left: 0
}
.wp-block-group .social-icons .wp-block-group__inner-container {
  padding: 0!important;
}
.social-icons img{
  width: 1.6rem;
  margin: 0rem .3rem
}
.address {
  padding-top: 1rem
}
.address::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(https://onv.8ab.myftpupload.com/wp-content/uploads/2026/04/location-dot-solid-full.svg) no-repeat center;
  background-size: contain;
  margin-right: 6px;
  vertical-align: middle;
}
.email::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(https://onv.8ab.myftpupload.com/wp-content/uploads/2026/04/envelope-solid-full.svg);
  margin-right: 6px;
  vertical-align: middle;
}
.copyright {
  display: block;
  padding: .25rem 0 .45rem 0;
  width: 100%;
  background: var(--base);
  color: var(--white);
}

.copyright ul,
.copyright p {
  margin: 0;
  padding: 0;
}

.copyright ul li,
.copyright p {
  display: inline-block;
  font-size: .8em;
  line-height: 1.4;
}

.copyright ul li {
  padding: 0 0.5rem;
}

.copyright ul li:last-child {
  padding-right: 0;
  border-left: 1px solid white;
}

.copyright a,
.copyright li a {
  color: var(--white);
}

/* Main content */
.module {
  margin: 0 0 3.5rem 0;
}
.e-con.e-flex>.e-con-inner {
  display: none;
}
.desktop-only {
  display: none
}
.mobile-only {
  display: block
}
.stm-elementor-contact-form-seven.stm_listing_car_form .stm-single-car-contact .sent .wpcf7-response-output {
    color: var(--motors-accent-color);
    font-size: .8em;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    font-size: .8em;
}
.homegold img {
  width: 4rem;
}
.homegold .wp-block-group__inner-container {
  padding: 2rem 1rem!important;
}
.aboutus-first img{
  background: transparent!important;
  border: 3px solid var(--primary)!important;
}
.aboutus-first .wp-block-buttons {
  display: block;
}
.aboutus-first .wp-block-button {
  margin-bottom: 1rem
}
.homegold {
  padding: 0;
  border-radius: 15px;
  border: 1px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #ffd76a, #b98512) border-box;
}
.getstarted-dark {
  padding: 2.5rem 2rem 2rem;
  border-radius: 25px;

  background:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4)),
    url(https://onv.8ab.myftpupload.com/wp-content/uploads/2026/03/ChatGPT-Image-Mar-26-2026-06_42_20-AM.jpg) no-repeat;

  background-position: center;
  background-size: cover;
}
.getstarted-dark input {
  border: 1px solid var(--white)!important;
  background: transparent;
  color: var(--white);
  border-radius: 5px
}
.getstarted-dark button {
  padding: .6rem 2rem
}
.sellcar-icons img{
  width: 4.5rem;
}
.sellcar-icons {
  font-weight: 550
}
.steps {
  list-style: none;
  counter-reset: step;
  margin-left: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--primary);
  margin-top: 1rem
}
.steps strong {
  font-size: 1.2em
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.2em;

  width: 2.3rem;
  height: 2.3rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--base);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 25%;
  font-size: 1.4rem;
  font-weight: 600;
}
  .gold-border img{
  border: 4px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #ffd76a, #b98512) border-box;
  border-radius: 35px
}
.sellcar-icons .wp-block-column {
  border-left: 1px solid var(--primary);
  border-right: 1px solid var(--primary)
}
.valuation-content img {
  max-width: 350px;
  margin-left: 0
}
.gradient-border {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #ffd76a, #b98512) border-box;

}
.stm-filter_condition,
.stm-filter_body,
.stm-filter_ca-year,
.stm-filter_transmission,
.stm-filter_engine,
.stm-filter_fuel,
.stm-filter_drive{
  display: none
}
.homegold strong {
  color: var(--white)
}
.auto-listings-single {
  max-width: 1300px;
  margin: 0 auto
}
.gradient-text {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #f8f1dc 40%,
    #e2b44a 45%,
    #c8921f 50%,
    #e2b44a 55%,
    #f8f1dc 60%,
    #ffffff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  /* Depth + glow */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.1),     /* depth */
    0 0 8px rgba(255, 200, 80, 0.15), /* soft gold glow */
    0 0 18px rgba(255, 200, 80, 0.2);
  padding: .3rem;
}
.stm-single-listing-car-features .grouped_checkbox-3 ul {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(255px, 1fr));
    column-gap: 30px;
    row-gap: 14px;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
}

.stm-single-listing-car-features .grouped_checkbox-3 li {
    display: grid !important;
    grid-template-columns: 18px 1fr;
    column-gap: 12px;
    align-items: start;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.stm-single-listing-car-features .grouped_checkbox-3 li::before,
.stm-single-listing-car-features .grouped_checkbox-3 li i {
    grid-column: 1;
    margin: 4px 0 0 0 !important;
}

.stm-single-listing-car-features .grouped_checkbox-3 li span,
.stm-single-listing-car-features .grouped_checkbox-3 li a {
    grid-column: 2;
}

/* Tablet */
@media (max-width: 1024px) {
    .stm-single-listing-car-features .grouped_checkbox-3 ul {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        column-gap: 24px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .stm-single-listing-car-features .grouped_checkbox-3 ul {
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .stm-single-listing-car-features .grouped_checkbox-3 li {
        grid-template-columns: 18px 1fr;
        column-gap: 10px;
    }
}

.logistics-form {
    max-width: 1100px;
}

.logistics-form h3 {
    margin: 32px 0 14px;
    font-size: 22px;
}

.form-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-grid.one-col {
    grid-template-columns: 1fr;
}

.form-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid.four-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logistics-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.logistics-form input,
.logistics-form select,
.logistics-form textarea {
    width: 95%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
}
.logistics-form [type="submit"] {
  padding: 1rem!important;;
  width: 100%!important;
}
.logistics-form button {
  font-size: .85em;
  padding: 1rem 0rem!important;
  width: 15rem
}
.logistics-form textarea {
    min-height: 140px;
    resize: vertical;
}

.logistics-form .wpcf7-form-control-wrap {
    display: block;
}

.quote-result {
    margin-top: 10px;
}

.quote-summary {
    margin-top: 15px;
    padding: 18px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.quote-summary p {
    margin: 0 0 10px;
}

.quote-summary p:last-child {
    margin-bottom: 0;
    font-size: 18px;
}

.form-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.form-actions button,
.form-actions input[type="submit"],
.form-actions .wpcf7-submit {
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .form-grid.three-col,
    .form-grid.four-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .form-grid.two-col,
    .form-grid.three-col,
    .form-grid.four-col {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}
.wprevpro_t1_DIV_2 {
  border: none;
}
.wprevpro_t1_DIV_2::after {
  content: none;
}
img.sprev-google-left-src {
  height: 5rem;
}
.wprev-google-right {
    align-content: center;
}
.wprev-google-basedon {
  color: var(--white);
}

img.wprev-google-powered-img {
  display: none;
}
.wprev-google-place {
  border: none!important
}
.wprevpro_t1_DIV_1 {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) !important;
  border: 1px solid rgba(198, 144, 38, 0.8) !important;
  border-radius: 18px !important;
  padding: 28px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.45) !important;
}
.wprevpro_t1_DIV_1.w3_wprs-col {
  width: 24% !important;
  max-width: 24% !important;
  flex: 0 0 24% !important;
  margin: 0 .42rem
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .wprevpro_t1_DIV_1.w3_wprs-col {
  width: 23.5% !important;
  max-width: 23.5% !important;
  flex: 0 0 23% !important;
  margin: 0 .42rem
}
}
@media (min-width: 1200px) {
  .wprevpro_t1_DIV_1.w3_wprs-col {
  width: 23.7% !important;
  max-width: 23.8% !important;
  flex: 0 0 23% !important;
  margin: 0 .42rem
}
}
/* Tablet: show only 3 reviews */
@media (min-width: 768px) and (max-width: 1024px) {
  .wprs_unslider-wrap > li {
    display: flex !important;
    flex-wrap: nowrap !important;
  }

  .wprevpro_t1_DIV_1.w3_wprs-col {
    width: 32.233% !important;
    max-width: 32.233% !important;
    flex: 0 0 33.333% !important;
    margin: 0 .2rem!important;
    box-sizing: border-box !important;
  }

  .wprs_unslider-wrap > li .wprevpro_t1_DIV_1.w3_wprs-col:nth-of-type(n+4) {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .wprs_unslider,
  .wprs_unslider-wrap,
  .wprs_unslider-wrap > li,
  .wprevpro,
  .wprevpro_t1_DIV_1,
  .wprevpro_t1_DIV_2 {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
  }
@media (max-width: 767px) {
  .wprs_unslider {
    overflow: hidden !important;
  }

  .wprs_unslider-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: auto !important;
  }

  .wprs_unslider-wrap > li,
  .wprevpro_t1_DIV_1.w3_wprs-col {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

  .wprevpro_t1_DIV_2,
  .wprevpro_t1_P_3,
  .wprevpro_t1_SPAN_5 {
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}
@media (max-width: 767px) {
  .wprevpro_t1_DIV_1 {
    padding: 18px !important;
    min-height: auto !important;
    height: auto !important;
  }

  .wprevpro_t1_DIV_2,
  .wprevpro_t1_P_3 {
    min-height: auto !important;
    height: auto !important;
    margin-bottom: 12px !important;
  }

  .wprevpro_t1_DIV_2 p,
  .wprevpro_t1_P_3 {
    line-height: 1.45 !important;
  }

  .wprevpro_t1_DIV_1 img {
    max-height: 48px !important;
  }
  .wprevpro_t1_P_3,
.wprevpro_t1_DIV_2 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
}
@media (max-width: 767px) {
  .wprevpro_t1_DIV_1.w3_wprs-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
  }

  .wprevpro_t1_DIV_2,
  .wprevpro_t1_DIV_2 * {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

.wprevpro_t1_DIV_2 {
  padding: 0 !important;
  margin-bottom: 24px !important;
}

.wprevpro_t1_P_3 {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.9) !important;
  margin: 0 !important;
}
.wprevpro_t1_DIV_2 {
  position: relative !important;
  padding: 1rem 2rem!important;
  margin-bottom: 18px !important;

  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)) !important;
  border: 1px solid rgba(198, 144, 38, 0.18) !important;
  border-radius: 14px !important;
}

.wprevpro_t1_DIV_2:before {
  content: "\201C" !important;
  position: absolute !important;
  top: 20px !important;
  left: 24px !important;
  font-size: 56px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: rgba(212,166,58,0.8) !important;
  z-index: 1 !important;
  pointer-events: none;
}
.wprevpro_t1_A_8,
.wprevpro_t1_SPAN_5,
.wprevpro_t1_SPAN_6 {
  color: #fff !important;
  font-weight: 600 !important;
  
}
a.wprev-google-wr-a {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0rem 2rem!important;
  min-height: 49px !important;

  background: none !important; /* reset first */
  background-color: #0a0a0a !important; /* fallback */
  background-image: linear-gradient(180deg, #151515 0%, #050505 100%) !important;
  color: #fff !important;
  border: 1px solid var(--primary) !important;
  border-radius: 0px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 0 18px rgba(198, 144, 38, 0.18), inset 0 0 12px rgba(198, 144, 38, 0.08) !important;
  transition: all 0.25s ease !important;
}
a.wprev-google-wr-a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(212,166,58,0.3);
}
a.wprev-google-wr-a:hover {
  background: linear-gradient(135deg, #c8942c, #8f6515) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(198, 144, 38, 0.35), inset 0 0 10px rgba(255,255,255,0.15) !important;
}
.wprev-google-leftboth {
  display: flex !important;
  gap: 14px;
}
span.wprev-google-rating{
  font-size: 35px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1;
}

span.wprev_btot {
  color: var(--primary) !important;
  font-weight: 700!important;
}

.wprevpro_star_imgs img {
  transform: scale(1.1)!important;
}
.wprevpro_t1_H2_0 {
  font-size: clamp(32px, 4vw, 54px) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 10px !important;
}
.sprev-google-left-src {
  border: 1px solid var(--primary);
  border-radius: 50px!important;
}
.stm-similar-cars-units .stm-similar-car .right-unit .stm-dealer-name {
  display: none;
}
.stm-similar-cars-units .stm-similar-car .right-unit .stm-car-similar-meta {
  display: none;
}
.logistics-home h2{
  line-height: 1.3;
  font-size: 2.3em
}
.pblogistic-logo {
  position: absolute;
  z-index: 99999;
  right: -5%;
  top: 65%;
  margin: 0;
}

.pblogistic-logo img {
  width: 10rem;
  background: none !important;
  display: block;
}
.logistics-home img {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, #ffd76a, #b98512);
  border-radius: 15px
}
.carweekly-title {
  font-size: .9em;
  background: var(--base);
  color: var(--white);
  width: 12rem;
  padding: .4rem 1rem;
  border-radius: 50px;
  display: inline-flex;      
  align-items: center;
}

.carweekly-title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("https://onv.8ab.myftpupload.com/wp-content/uploads/2026/04/star-solid-full.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  flex-shrink: 0;             /
}
.feature-icon img{
  width: 4rem
}
.feature-icon p {
  color: var(--white);
  font-weight: 600;
  line-height: 1.2; 
}
.carweekly-button a{
  font-size: .7em;
  padding: .4rem 1rem!important;
  background: var(--base)!important;  
}
.carweekly-button a:hover{
  background: transparent!important;
  border: 2px solid var(--base)
}
.car-weekly h3 {
  font-size: 2em;
  text-transform: uppercase
}
.border-bottom {
  display: inline-block;
  position: relative;
  margin-bottom: 16px;
  border-bottom: none!important;
}

.border-bottom::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 8px;

  background: linear-gradient(90deg, #ffd76a, #b98512);
  border-radius: 999px;
}
.car-weekly {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #8b6118, #c9972c);
}

.car-content {
  flex: 1;
  padding: 1.5rem 1.5rem 1rem 2.5rem;
}

.car-week-image {
  position: relative;
  flex: 0 0 48%;
  padding: 8px;
  background: linear-gradient(135deg, #ffd76a, #b98512);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 1% 60%);
}

.car-week-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 1% 60%);
}

/* Tablet */
@media (max-width: 900px) {
  .car-weekly {
    flex-direction: column;
  }

  .car-week-image {
    flex: none;
    width: 100%;
    padding: 6px;

    /* angled top edge instead of side cut */
    clip-path: polygon(0 8%, 50% 0, 100% 8%, 100% 100%, 0 100%);
  }

  .car-week-image img {
    height: 360px;
    min-height: 0;
    clip-path: polygon(0 8%, 50% 0, 100% 8%, 100% 100%, 0 100%);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .car-weekly {
    border-radius: 18px;
  }

  .car-content {
    padding: 28px 22px;
  }

  .car-week-image {
    padding: 5px;
    clip-path: none;
    border-radius: 0 0 18px 18px;
  }

  .car-week-image img {
    height: 240px;
    clip-path: none;
    border-radius: 0 0 14px 14px;
  }
}
.handover-weekly {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;

  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url(https://onv.8ab.myftpupload.com/wp-content/uploads/2026/03/ChatGPT-Image-Mar-26-2026-06_42_20-AM.jpg) no-repeat;

  background-size: contain;
  background-position: inherit;
  background-color: var(--base);
}

.handover-content {
  padding: 1.5rem 1.5rem 1rem 3.5rem;
  flex: 0 0 45%;
  color: var(--white)
}
.handover-content strong {
  color: var(--primary)
}
.handoverweekly-title {
  font-size: .9em;
  background: var(--primary);
  color: var(--white);
  width: 15.4rem;
  padding: .4rem 1rem;
  border-radius: 50px;
  display: inline-flex;      
  align-items: center;
}
.handoverweekly-button a:hover {
  background: var(--base)!important;
  border: 1px solid var(--primary)
}
.handoverweekly-title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("https://onv.8ab.myftpupload.com/wp-content/uploads/2026/04/star-solid-full.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
  flex-shrink: 0;             /
}
.handover-image {
  position: relative;
  flex: 0 0 523;
  padding: 8px;
  background: linear-gradient(135deg, #e0b24a 0%, #8a6515 50%, #c99a2e 100%);
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 1% 60%);
}

.handover-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%, 1% 60%);
}

/* Tablet */
@media (max-width: 900px) {
  .handover-weekly {
    flex-direction: column;
  }

  .handover-image {
    flex: none;
    width: 100%;
    padding: 6px;

    /* angled top edge instead of side cut */
    clip-path: polygon(0 8%, 50% 0, 100% 8%, 100% 100%, 0 100%);
  }

  .handover-image img {
    height: 360px;
    min-height: 0;
    clip-path: polygon(0 8%, 50% 0, 100% 8%, 100% 100%, 0 100%);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .handover-weekly {
    border-radius: 18px;
  }

  .handover-content {
    padding: 28px 22px;
  }

  .handover-image {
    padding: 5px;
    clip-path: none;
    border-radius: 0 0 18px 18px;
  }

  .handover-image img {
    height: 240px;
    clip-path: none;
    border-radius: 0 0 14px 14px;
  }
}
.logistics-socialmedia div{
  display: flex;
  margin-left: 0
}
.wp-block-group .logistics-socialmedia .wp-block-group__inner-container {
  padding: 0!important;
}
.logistics-socialmedia img{
  width: 2.6rem;
  margin: 0rem .1rem
}
.module a h2 {
  display: block;
  font-size: 1.85em;
  line-height: 1.25;
  color: var(--primary);
}
.elementor .e-button-base {
  background-color: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-right: 1rem
}
.elementor .e-button-base:hover{
  background: var(--base)
}
  .team {
    position: relative;
    margin: 0 0 2.5rem 0;
  }
  
  .team:last-of-type {
    margin: 0;
  }

.team::after {
  content: "";
  width: 200vw;
  height: 113%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/uploads/2026/03/ChatGPT-Image-Mar-26-2026-06_42_20-AM.jpg) no-repeat;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  background-position: center;
  background-size: cover;
}
  
/* profiles */
.profile {
	display: block;
	margin: 0 0 2rem 0;
	text-align: center;
}
.profile img {
  height: 430px!important;
  width: 100%;
  object-fit: cover!important;
}
.profile,
.profile:hover {
	text-decoration: none;
	color: var(--white);
}
.profile-second {
  margin-top: 6rem
}
.profile figure.aligncenter img {
	margin-bottom: .5rem;
}

.profile .wp-element-caption strong {
	font-size: 1.25em;
	font-weight: 700;
}
.profile figcaption {
  text-align: center;
  margin-top: .5rem
}
.profile:hover .wp-element-caption strong {
	color: var(--primary);
}

/* team page */
.profile-hover {
	width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
	aspect-ratio: 5/6;
}
.profile-hover img {
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s ease;
	border: .3rem solid transparent;
	transform: scale(.95);
	filter: grayscale(100%);
	-o-object-fit: contain;
	   object-fit: contain;
	width: 100%;
  border-radius: 25px
}

.profile-hover:hover img {
	border-color: var(--primary);
	transform: scale(1);
	filter: none;
}
.profile-hover div:first-of-type {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}
.profile-hover figcaption {
  position: absolute;
	left: 0;
	top: calc(100% - 4rem);
	top: 77.5%;
  width: 100%;
  z-index: 10;
}
@media (max-width: 767px) {
  .team {
    margin-bottom: 2rem;
    overflow: hidden;
  }

  .team::after {
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
    z-index: -1;
  }

  .profile {
    margin-bottom: 2rem;
  }

  .profile img {
    height: auto !important;
    max-height: 420px;
    width: 90%;
    object-fit: cover !important;
  }

  .profile-second {
    margin-top: 0;
  }

  .profile-hover {
    aspect-ratio: 4 / 5;
    position: relative;
  }

  .profile-hover img {
    position: relative;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    transform: none;
    filter: none;
  }

  .profile-hover div:first-of-type {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
  }

  .profile-hover figcaption {
    position: static;
    margin-top: 0.75rem;
  }
}
.is-style-rounded img {
  border-radius: 50%;
}
/* Cookie popup */
.cookie-banner {
  position: fixed;
  display: none;
  width: 100%;
  bottom: 0;
  /*! padding: 1rem 2rem; */
  z-index: 99;
  left: 0;
  -webkit-box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
  box-shadow: 0px 1px 23px 1px rgb(0 0 0 / 36%);
}

.cookie-banner.wp-block-group.alignwide>div:first-of-type {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.cookie-banner a {
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner a:hover {
  text-decoration: none;
}

.cookie-banner .wp-block-button .wp-block-button__link {
  padding: .5rem 1rem;
  text-decoration: none;
  font-size: .7em;
  border: 1px solid var(--secondary);
  border-radius: 3px;
}

.cookie-banner .wp-block-button .wp-block-button__link:hover {
  background: var(--secondary);
  border-color: var(--white);
}

.cookie-banner p {
  font-size: .85em;
  margin: 0;
}

p.cookies-status {
  font-weight: 700;
  font-size: 0.8em;
  color: var(--primary);
}

.timeline {
  position: relative
}

.timeline:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: var(--primary)
}

.timeline:after {
  content: "";
  display: block;
  clear: both
}

.timeline .timeline-container {
  position: relative;
  padding: 0 0 0 1.5rem
}

.timeline .timeline-container:before {
  content: "";
  position: absolute;
  width: .6rem;
  height: .6rem;
  top: .6rem;
  left: -.35rem;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(29, 66, 138, 0.3)
}

.timeline .timeline-container h3 {
  font-size: 1.2em
}

.timeline .timeline-container p {
  margin: 0 0 1.5rem 0;
  font-size: .9em
}

.timeline .timeline-container .time {
  padding: .375rem 1rem;
  display: inline-block;
  background: var(--primary);
  border-radius: 1rem;
  box-shadow: 0 0 0 3px rgba(29, 66, 138, 0.3);
  font-weight: 300;
  font-size: .9em;
  color: var(--white);
  letter-spacing: .5px
}
.instant-valuation {
  padding: 0 1rem;
  border-radius: 20px;
  opacity: .8;

}
/* tablet (medium) screens */
@media (min-width: 768px) {
  html {
    font-size: 18px;
    word-break: keep-all;
  }

  .wp-block-group>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-group.narrow>div:first-of-type,
  .wp-block-group.alignwide>div:first-of-type,
  .wp-block-cover>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover.alignwide .wp-block-cover__inner-container,
  .wp-block-cover.narrow .wp-block-cover__inner-container {
    padding: 3rem 2rem;
  }

  /*even columns*/
  .t-one-item {
    grid-auto-flow: row;
  }
.home-navblock img{
  height: 19rem
}
  .t-two-items,
  .wp-block-media-text {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-three-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .t-four-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .t-five-items {
    grid-template-columns: repeat(5, 1fr);
  }

  .t-six-items {
    grid-template-columns: repeat(6, 1fr);
  }

  /*uneven columns as fractions*/
  .t-one-of-two {
    grid-template-columns: 50fr 50fr;
  }

  .t-one-of-three {
    grid-template-columns: 33.3fr 76.7fr;
  }

  .t-one-of-four {
    grid-template-columns: 25fr 75fr;
  }

  .t-one-of-five {
    grid-template-columns: 20fr 80fr;
  }

  .t-one-of-six {
    grid-template-columns: 16.6fr 83.4fr;
  }

  .t-two-of-five {
    grid-template-columns: 40fr 60fr;
  }

  /*reverse uneven columns as fractions*/
  .t-two-of-three {
    grid-template-columns: 76.7fr 33.3fr;
  }

  .t-three-of-four {
    grid-template-columns: 75fr 25fr;
  }

  .t-four-of-five {
    grid-template-columns: 80fr 20fr;
  }

  .t-five-of-six {
    grid-template-columns: 83.4fr 16.6fr;
  }

  .t-three-of-five {
    grid-template-columns: 60fr 40fr;
  }

  .t-align-right {
    justify-content: flex-end;
  }

  .t-align-left {
    justify-content: flex-start;
  }

  .t-align-center {
    justify-content: center;
  }

  .t-has-text-align-center {
    text-align: center;
  }

  .t-has-text-align-right {
    text-align: right;
  }

  .t-has-text-align-left {
    text-align: left;
  }

  .timeline:before {
    left: 50%
  }

  .timeline .timeline-container {
    width: 50%;
    padding: 0 2.5rem;
    float: left;
    text-align: right;
    clear: both
  }

  .timeline .timeline-container h3 {
    margin: 0 0 .5rem 0
  }

  .timeline .timeline-container:nth-child(even) {
    float: right;
    text-align: left;
    clear: both
  }

  .timeline .timeline-container:before {
    left: initial;
    right: -.3rem
  }

  .timeline .timeline-container:nth-child(even):before {
    left: -.3rem
  }

  .timeline .timeline-container .time {
    position: absolute;
    top: 0;
    right: -6.5rem
  }

  .timeline .timeline-container:nth-child(even) .time {
    top: 0;
    right: initial;
    left: -6.5rem
  }
.aboutus-first .wp-block-buttons {
  display: flex;
}
.aboutus-first .wp-block-button {
  margin-bottom: 1rem
}
  .main-navigation li a {
    border-bottom: 0;
    line-height: 1.6;
  }

  .site-branding {
    padding: 1rem 2rem;
  }

  .site-branding img {
    width: 8rem;
  }

  .main-navigation .btn-toggle {
    padding: 3rem 2rem;
  }

  .main-navigation .btn-toggle i.bar,
  .main-navigation .btn-toggle i.bar::before,
  .main-navigation .btn-toggle i.bar::after {
    width: 2.25rem;
  }

  .main-navigation .btn-toggle i.bar::before {
    top: -12px;
  }

  .main-navigation .btn-toggle i.bar::after {
    bottom: -12px;
  }

  .slider .owl-dots,
  .slider .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
  }

  .slider .owl-dots {
    position: absolute;
    bottom: 1em;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
  }

  .slider .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
  }

  .slider .owl-nav {
    top: 0
  }

  .slider .owl-dots .owl-dot span {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 .2rem;
    background: var(--white);
    border: 1px solid var(--d-grey);
    border-radius: 100%;
    -webkit-backface-visibility: visible;
    background-size: 16px 19px;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
  }

  .slider .owl-dots .owl-dot.active span,
  .slider .owl-dots .owl-dot:hover span {
    background: var(--d-grey);
    border-radius: 100%;
  }

  .slider .owl-nav [class*=owl-] {
    display: inline-block;
    cursor: pointer;
    width: 42px;
    height: 82px;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-prev,
  .slider .owl-nav .owl-prev:hover {
    background: url(/wp-content/themes/ibtonline/img/chevron-left.svg) no-repeat;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-next,
  .slider .owl-nav .owl-next:hover {
    background: url(/wp-content/themes/ibtonline/img/chevron-right.svg) no-repeat;
    background-size: 11px 20px;
    background-size: 42px 82px;
  }

  .slider .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    left: 98%;
    -webkit-transform: translate(-98%, -50%);
    -ms-transform: translate(-98%, -50%);
    transform: translate(-98%, -50%)
  }

  .slider .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: 2%;
    -webkit-transform: translate(-2%, -50%);
    -ms-transform: translate(-2%, -50%);
    transform: translate(-2%, -50%)
  }

  .slider .owl-nav [class*=owl-]:hover {
    opacity: .8
  }

  .list-three-cols {
    -moz-columns: 2;
    -webkit-columns: 2;
    columns: 2;
    -moz-column-gap: 1rem;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
  }

  .list-three-cols li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
  }
.desktop-only {
  display: block
}
.mobile-only {
  display: none
}
  .copyright {
    padding: .25rem 0 .45rem 0;
  }
  
  .auto-listings .sidebar {
  width: 35%;
  float: right;
}
  .auto-listings .has-sidebar {
  width: 60.6667%;
  float: left;
}
    .site-info-one {
    border-right: 1px solid var(--primary);
    padding: 0rem 2rem   
  }
  .site-info-two {
    border-right: 1px solid var(--primary);
    padding: 0rem 2rem   
  }
.profile img {
  height: 400px!important;
  width: 100%;
  object-fit: cover!important;
}
  .profile-second {
  margin-top: 0rem
}
  
.team::after {
  content: "";
  width: 100vw;
  height: 52%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(/wp-content/uploads/2026/03/ChatGPT-Image-Mar-26-2026-06_42_20-AM.jpg) no-repeat;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  background-position: center;
  background-size: cover;
}
.profile,
.profile:hover {
	text-decoration: none;
	color: var(--base);
}


/* desktop */
@media (min-width: 1200px) {
  html {
    font-size: 17px;
  }

  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2.1em;
  }

  .wp-block-group>div:first-of-type,
  .wp-block-group.narrow>div:first-of-type,
  .wp-block-group.alignwide>div:first-of-type {
    padding: 2.5rem 2.5rem;
    max-width: 1400px
  }
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover>div:first-of-type,
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover.alignwide .wp-block-cover__inner-container,
  .wp-block-cover.narrow .wp-block-cover__inner-container {
    padding: 2.5rem 2.5rem;

  }

  .site-header .wp-block-group.alignwide>div:first-of-type {
    padding: 0 2.5rem;
    max-width: 1600px
  }

  /*even columns*/
  .d-two-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .d-three-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .d-four-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .d-five-items {
    grid-template-columns: repeat(5, 1fr);
  }

  .d-six-items {
    grid-template-columns: repeat(6, 1fr);
  }

  /*uneven columns as fractions*/
  .d-one-of-two {
    grid-template-columns: 50fr 50fr;
  }

  .d-one-of-three {
    grid-template-columns: 33.3fr 76.7fr;
  }

  .d-one-of-four {
    grid-template-columns: 25fr 75fr;
  }

  .d-one-of-five {
    grid-template-columns: 20fr 80fr;
  }

  .d-one-of-six {
    grid-template-columns: 16.6fr 83.4fr;
  }

  .d-two-of-five {
    grid-template-columns: 40fr 60fr;
  }

  /*reverse uneven columns as fractions*/
  .d-two-of-three {
    grid-template-columns: 76.7fr 33.3fr;
  }

  .d-three-of-four {
    grid-template-columns: 75fr 25fr;
  }

  .d-four-of-five {
    grid-template-columns: 80fr 20fr;
  }

  .d-five-of-six {
    grid-template-columns: 83.4fr 16.6fr;
  }

  .d-three-of-five {
    grid-template-columns: 60fr 40fr;
  }

  /* Switch 2 column order */
  .switcharoo:nth-of-type(1),
  .reverse .wp-block-media-text__media:nth-of-type(2) {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .switcharoo:nth-of-type(2),
  .reverse .wp-block-media-text__media:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .d-align-right {
    justify-content: flex-end;
  }

  .d-align-left {
    justify-content: flex-start;
  }

  .d-align-center {
    justify-content: center;
  }

  .d-has-text-align-center {
    text-align: center;
  }

  .d-has-text-align-right {
    text-align: right;
  }

  .d-has-text-align-left {
    text-align: left;
  }

  .top-nav {
    display: block;
    width: 100%;
    margin: 0;
    font-size: .85em;
  }

  .site-header .one-item>.wp-block-column {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .site-branding {
    padding:0;
    justify-content: flex-start;
  }

  .site-branding img {
    width: 9rem;
  }

  .btn-toggle,
  .btn-toggle2 {
    display: none;
  }

  .btn-content {
    display: inline;
  }

  .main-navigation {
    position: relative;
    z-index: 2;
  }

  .main-navigation .btn-content {
    background: transparent;
    padding: 0;
  }

  #primary-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 0;
    width: 100%;
    position: relative;
  }

  #primary-menu ul {
    display: flex
  }
  #primary-menu li {
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
  }

  #primary-menu li a {
    display: block;
    margin: 0;
    padding: 0rem 1rem;
    white-space: nowrap;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--white);
    font-size: .875em;
  }

  #primary-menu li.btn-nav a {
    margin: 0 0 0 1.25rem;
    padding: 1.4rem 1.6rem;
    background: var(--primary);
    border-radius: 4px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    line-height: 0;
  }

  #primary-menu li.btn-nav a:hover {
    background: var(--base);
    color: var(--white);
    border: 1px solid var(--primary)
  }

  #primary-menu li a:hover {
    color: var(--grey);
  }

  #primary-menu .current-menu-parent a,
  #primary-menu .current_page_item a {
    color: var(--grey);
  }

  /* sub menu drop-down */
  #primary-menu .menu-item-has-children:after {
    background-image: url(/wp-content/uploads/chevron-down.svg);
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  #primary-menu .menu-item-has-children a {
    padding-right: 2.25em;
  }

  #primary-menu .sub-menu {
    position: absolute;
    display: none;
    margin: 0 0 0 1rem;
  }

  #primary-menu li:hover .sub-menu,
  #primary-menu li:focus-within .sub-menu {
    display: block;
  }

  #primary-menu li .sub-menu li a,
  #primary-menu li .sub-menu li:last-of-type a {
    margin: 0;
    padding: .5rem .7rem;
    background: var(--primary);
    display: block;
    color: var(--white);
    border-top: 1px solid var(--white);
    border-radius: 0;
    text-align: left;
    white-space: normal;
    line-height: 1.4;
  }

  #primary-menu li .sub-menu li.current-menu-item a,
  #primary-menu li .sub-menu li a:hover,
  #primary-menu li .sub-menu li:last-of-type a:hover {
    background: var(--white);
    color: var(--primary);
  }

  #primary-menu li.menu-languages {
    position: absolute;
    top: -3.5rem;
    right: 0;
    font-size: .775em;
    z-index: 10;
  }

  #primary-menu li.menu-languages a {
    padding: .3rem .3rem .3rem 3.7rem;
    color: var(--white);
    line-height: 1.6;
    text-align: right;
    text-transform: none;
  }

  #primary-menu li.menu-languages.menu-item-has-children:after {
    position: static;
  }

  #primary-menu li.menu-languages .sub-menu {
    margin: 0;
    min-width: initial;
    width: 100%;
  }

  #primary-menu li.menu-languages .sub-menu li a {
    padding: .25rem .4rem;
    color: var(--base);
    background: var(--white);
    font-size: .875em;
    border-color: var(--grey);
  }

  #primary-menu li.menu-languages .sub-menu li a:hover {
    background: var(--l-grey);
    color: var(--base);
  }

  .wp-block-table {
    overflow-x: hidden;
  }

  .text-block-right {
    padding: 0 0 0 5rem;
  }

  .text-block-left {
    padding: 0 5rem 0 0;
  }

  .wp-block-cover.has-parallax .wp-block-cover__inner-container {
    background-attachment: fixed;
  }

  .list-three-cols {
    -moz-columns: 3;
    -webkit-columns: 3;
    columns: 3;
    -moz-column-gap: 4rem;
    -webkit-column-gap: 4rem;
    column-gap: 4rem;
  }

  .latest-news .outer-link {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: 1fr;
    height: 100%;
    /* equal height columns */
  }

  .latest-news .read {
    position: absolute;
    bottom: 1.75rem;
  }
  /* profiles */
.profile {
	display: block;
	margin: 0 0 2rem 0;
	text-align: center;
}
.profile img {
  height: 600px!important;
  width: 100%;
  object-fit: cover!important;
}

.profile figure.aligncenter img {
	margin-bottom: .5rem;
}

.profile .wp-element-caption strong {
	font-size: 1.25em;
	font-weight: 700;
}
.profile figcaption {
  text-align: center;
  margin-top: 1.5rem
}
.profile:hover .wp-element-caption strong {
	color: var(--primary);
}

/* team page */
.profile-hover {
	width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
	aspect-ratio: 5/6;
}
.profile-hover img {
	position: absolute;
	top: 0;
	left: 0;
	transition: all .5s ease;
	border: .3rem solid transparent;
	transform: scale(.95);
	filter: grayscale(100%);
	-o-object-fit: contain;
	   object-fit: contain;
	width: 100%;
}

.profile-hover:hover img {
	border-color: var(--primary);
	transform: scale(1);
	filter: none;
}
.profile-hover div:first-of-type {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
}
.profile-hover figcaption {
  position: absolute;
	left: 0;
	top: calc(100% - 4rem);
	top: 77.5%;
  width: 100%;
  z-index: 10;
}
.is-style-rounded img {
  border-radius: 50%;
}
  .instant-valuation {
    max-width: 600px;
    margin: 0 auto
  }
  .pblogistic-logo img {
  width: 14rem;
}
}