.elementor-397 .elementor-element.elementor-element-61133e4c{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-397 .elementor-element.elementor-element-df14647{margin:0rem 0rem calc(var(--kit-widget-spacing, 0px) + 0rem) 0rem;padding:0rem 0rem 0rem 0rem;}.elementor-397 .elementor-element.elementor-element-38f9385a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0rem;--margin-bottom:0rem;--margin-left:0rem;--margin-right:0rem;--padding-top:0rem;--padding-bottom:0rem;--padding-left:0rem;--padding-right:0rem;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-397 .elementor-element.elementor-element-df14647{margin:0rem 0rem calc(var(--kit-widget-spacing, 0px) + 0rem) 0rem;padding:0rem 0rem 0rem 0rem;}}@media(min-width:768px){.elementor-397 .elementor-element.elementor-element-61133e4c{--width:100%;}}@media(max-width:767px){.elementor-397 .elementor-element.elementor-element-61133e4c{--margin-top:0rem;--margin-bottom:0rem;--margin-left:0rem;--margin-right:0rem;--padding-top:0rem;--padding-bottom:0rem;--padding-left:0rem;--padding-right:0rem;}.elementor-397 .elementor-element.elementor-element-df14647{width:var( --container-widget-width, 100% );max-width:100%;margin:0rem 0rem calc(var(--kit-widget-spacing, 0px) + 0rem) 0rem;padding:0rem 0rem 0rem 0rem;--container-widget-width:100%;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-df14647 */:root{
  --efs-lp-primary:#c62828;
  --efs-lp-primary-hover:#e53935;
  --efs-lp-soft-bg:#fff4f4;
}

/* =================
HEADER
================= */

.efs-lp-header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  height:110px;
  background:transparent;
  transition:background .4s ease, box-shadow .4s ease;
  display:flex;
  align-items:center;
}

.efs-site-has-dropdown{
  position:relative;
}

/* hover buffer */
.efs-site-has-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:30px;
}

.efs-lp-header.scrolled{
  background:var(--efs-lp-soft-bg);
  box-shadow:0 4px 12px rgba(0,0,0,0.12);
}

/* =================
CONTAINER
================= */

.efs-lp-container{
  max-width:1400px;
  margin:0 auto;
  padding:0 2rem;
  display:flex;
  align-items:center;
  width:100%;
  justify-content:space-between;
}

/* =================
LOGO
================= */

.efs-lp-logo{
  display:inline-block;
  flex-shrink:0;
}

.efs-lp-logo-img{
  max-height:160px;
  width:auto;
  display:block;
}

/* =================
NAV
================= */

.efs-lp-nav{
  flex:1;
  display:flex;
  justify-content:center;
  font-family:"Inter", sans-serif;
}

.efs-lp-nav-list{
  display:flex;
  align-items:center;
  gap:2rem;
  list-style:none;
  margin:0;
  padding:0;
}

.efs-lp-nav-list li{
  position:relative;
}

.efs-lp-nav-list > li > a{
  text-decoration:none;
  color:#b7b7b7;
  font-size:15px;
  font-weight:500;
  transition:color .25s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* normal header hover */

.efs-lp-nav-list > li > a:hover{
  color:#fff;
}

/* hover colour AFTER scroll */

.efs-lp-header.scrolled .efs-lp-nav-list > li > a{
  color:#6f7680;
}

.efs-lp-header.scrolled .efs-lp-nav-list > li > a:hover{
  color:var(--efs-lp-primary);
}

/* dropdown arrow */

.efs-site-has-dropdown > a::after{
  content:"";
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  margin-top:-3px;
  transition:transform .25s ease;
}

.efs-site-has-dropdown:hover > a::after{
  transform:rotate(225deg);
  margin-top:2px;
}

/* =================
DROPDOWNS
================= */

.efs-site-dropdown{
  position:absolute;
  top:calc(100% + 24px);
  left:50%;
  transform:translateX(-50%) translateY(10px);
  min-width:290px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 24px 60px rgba(0,0,0,.14);
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index:20;
}

/* dropdown reveal */

.efs-site-has-dropdown:hover .efs-site-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.efs-site-dropdown-column{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.efs-site-dropdown-heading{
  font-size:13px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--efs-lp-primary);
  margin-bottom:4px;
  font-family:"Inter", sans-serif;
}

.efs-site-dropdown a{
  text-decoration:none;
  color:#0f1f3d;
  font-size:15px;
  line-height:1.5;
  font-weight:500;
  transition:color .2s ease, transform .2s ease;
  font-family:"Inter", sans-serif;
}

.efs-site-dropdown a:hover{
  color:var(--efs-lp-primary);
  transform:translateX(3px);
}

/* =================
BUTTON
================= */

.efs-lp-quote-btn{
  margin-left:2rem;
  background:var(--efs-lp-primary);
  color:white;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  font-family:"Inter", sans-serif;
  font-weight:600;
  font-size:14px;
  transition:background .25s ease, transform .25s ease;
  white-space:nowrap;
}

.efs-lp-quote-btn:hover{
  background:var(--efs-lp-primary-hover);
  transform:translateY(-2px);
  color:white;
}

/* =================
SOCIAL
================= */

.efs-lp-social-group{
  display:flex;
  gap:1.25rem;
  margin-left:2rem;
}

/* default state (top of page) */

.efs-lp-social-icon{
  font-size:1.2rem;
  color:#ffffff;
  transition:color .25s ease, transform .2s ease;
}

/* hover while hero is visible */

.efs-lp-social-icon:hover{
  color:#ffffff;
  transform:translateY(-1px);
}

/* once header becomes solid */

.efs-lp-header.scrolled .efs-lp-social-icon{
  color:var(--efs-lp-primary);
}

.efs-lp-header.scrolled .efs-lp-social-icon:hover{
  color:var(--efs-lp-primary-hover);
}

/* =================
TABLET
================= */

@media (max-width:1024px){
  .efs-lp-nav-list{
    gap:1.2rem;
  }

  .efs-lp-quote-btn{
    padding:10px 20px;
    font-size:13px;
  }

  .efs-lp-social-group{
    margin-left:1.25rem;
    gap:1rem;
  }
}

/* =================
MOBILE
================= */

@media (max-width:1024px){
  .efs-lp-header{
    display:none;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-61133e4c */.page-id-658 .header-inner,
.elementor-preview .header-inner {
  display: none !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2714c0b6 *//* =================
MOBILE + TABLET HEADER
================= */

@media (max-width:1023px){

.contact-strip{
display:none;
}

.main-nav{
display:none;
}

/* HEADER */

.mobile-header{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;

background:#ffffff;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 20px;

border-bottom:1px solid rgba(0,0,0,0.06);

z-index:1000;

transition:all .3s ease;
}


/* LOGO */

.contact-logo{
display:flex;
align-items:center;
}

.logo-img{
max-height:46px;
width:auto;
display:block;
}


/* CONTROLS */

.mobile-controls{
display:flex;
align-items:center;
gap:14px;
}


/* =================
HAMBURGER
================= */

.mobile-hamburger{
width:28px;
height:22px;

display:flex;
flex-direction:column;
justify-content:space-between;

cursor:pointer;
}

.mobile-hamburger span{
height:2px;
width:100%;
background:#333;
border-radius:2px;

transition:all .35s ease;
}

/* hamburger animation */

.mobile-hamburger.active span:nth-child(1){
transform:translateY(10px) rotate(45deg);
}

.mobile-hamburger.active span:nth-child(2){
opacity:0;
}

.mobile-hamburger.active span:nth-child(3){
transform:translateY(-10px) rotate(-45deg);
}


/* =================
SLIDE OUT MENU
================= */

.mobile-nav{

position:fixed;
top:0;
left:0;

width:320px;
max-width:85%;

height:100vh;

background:#ffffff;

padding-top:100px;
padding-left:28px;
padding-right:28px;

transform:translateX(-100%);
transition:transform .4s cubic-bezier(.77,0,.18,1);

z-index:999;

overflow-y:auto;

box-shadow:4px 0 20px rgba(0,0,0,0.08);

}

.mobile-nav.active{
transform:translateX(0);
}

/* =================
TABLET MENU WIDTH
================= */

@media (min-width:768px) and (max-width:1023px){

.mobile-nav{
width:75vw;
max-width:none;
}

}

/* =================
MENU STRUCTURE
================= */

.mobile-menu{
list-style:none;
padding:0;
margin:0;
}

.mobile-menu li{
margin-bottom:18px;
}


/* MAIN LINKS */

.mobile-menu > li > a{

display:block;

font-family:"Inter",sans-serif;
font-size:18px;
font-weight:600;

color:#222;

text-decoration:none;

position:relative;

padding-right:20px;

transition:color .25s ease;

}

.mobile-menu > li > a:hover{
color:#d97c86;
}


/* =================
CHEVRON
================= */

.mobile-parent > a::after{

content:"";

position:absolute;

right:0;
top:50%;

width:8px;
height:8px;

border-right:2px solid #d97c86;
border-bottom:2px solid #d97c86;

transform:translateY(-50%) rotate(45deg);

transition:transform .25s ease;

}

.mobile-parent.active > a::after{
transform:translateY(-50%) rotate(-135deg);
}


/* =================
SUB MENU
================= */

.mobile-submenu{

display:none;

margin-top:10px;

padding-left:14px;

border-left:2px solid rgba(0,0,0,.05);

}

.mobile-parent.active .mobile-submenu{
display:block;
}


/* SUBMENU ITEMS */

.mobile-submenu li{
margin:8px 0;
}

.mobile-submenu a{

font-family:"Inter",sans-serif;

font-size:15px;

color:#555;

text-decoration:none;

transition:color .25s ease;

}

.mobile-submenu a:hover{
color:#d97c86;
}


/* =================
OVERLAY
================= */

.mobile-overlay{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.35);

backdrop-filter:blur(3px);

opacity:0;
pointer-events:none;

transition:opacity .3s ease;

z-index:998;

}

.mobile-overlay.active{
opacity:1;
pointer-events:auto;
}

}


/* =================
DESKTOP
================= */

@media (min-width:1024px){

.mobile-header,
.mobile-nav,
.mobile-overlay{
display:none;
}

}/* End custom CSS */