/*!/wp-content/themes/bluebox-theme-v2/assets/css/main-style.css*//* (wpacu)(at)import url(https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap); */

@font-face{font-family:'Rubik';src:url(/wp-content/themes/bluebox-theme-v2/assets/css/../../fonts/rubik/Rubik-Regular.woff2) format('woff2');font-weight:400;font-style:normal;font-display:swap;}
:root {
  --main-color: #007eff;
  --heading-color: #1f2937;
  --text-color: #1f2937;
  --color-accent: #ff5722;
  --color-dark: #000;
  --main-family: "Rubik", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  background: #f5f5f5;
}
body {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
  font-family: "Rubik", sans-serif;
  max-width: 1920px;
  margin: 0 auto;
  background-color: white;
  font-weight: 300;
  position: relative;
}
body,
html {
  overflow-x: hidden;
  zoom: 100%;
}
h1,
.h1 {
  font-weight: 500;
  font-size: 38px;
  line-height: 42px;
  color: var(--heading-color);
}
h2,
.h2 {
  font-weight: 500;
  font-size: 34px;
  line-height: 38px;
  color: var(--heading-color);
}
h3,
.h3 {
  font-weight: 500;
  line-height: 34px;
  font-size: 30px;
  color: var(--heading-color);
}
h4,
.h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--heading-color);
}
a {
  text-decoration: none;
  color: var(--main-color);
}
.maxwidth {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  font-size: 18px;
  font-weight: 400;
  padding: 16px 32px;
  background: var(--main-color);
  color: white;
  display: inline-block;
  border: 0;
}
.btn-white {
  background: #ffffff;
  color: var(--main-color);
}
.btn-stroke {
  background-color: #0000;
  color: var(--color-dark);
  border: 1px solid;
}
.grid-ff {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 10px));
  gap: 20px;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}
.text-center {
  text-align: center;
}
.align-center {
  align-items: center;
}
.col-align-center {
  justify-content: center;
}
.row {
  display: flex;
}
.maxwidth.col {
  padding-left: 30px;
  padding-right: 30px;
}
.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99;
}

/* Header container */
.header {
  background-color: #052b50;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 2px);
  max-width: 1922px;
  z-index: 100;
}
.header-row-one {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.header-row-two {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 8px 0;
}
/* Left section with flags and phone numbers */
.header .contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 8px 0;
}

.header .contact-info img {
  width: 20px;
  height: auto;
  margin-right: 5px;
}

.header .contact-info a {
  font-size: 16px;
  font-weight: 300;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Center section with logo and navigation links */
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .logo img {
  width: 240px;
  height: auto;
}

.header .logo span {
  font-size: 1.2rem;
  font-weight: bold;
}
/* 
.header .nav-links {
  display: flex;
}

.header .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: color 0.3s;
  padding: 12.5px 20px;
}
.header .nav-links a:hover {
  color: var(--main-color);
}
.megamenu-item {
  position: relative;
  display: flex;
}
.megamenu {
  transition: 0.3s ease;
  display: grid;
  position: fixed;
  left: 0;
  top: 106px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  color: var(--text-color);
  z-index: 99;
  padding: 25px;
  box-shadow: 0 4px 4px #0002;
  grid-template-columns: auto auto auto;
  grid-template-rows: repeat(13, auto);
  grid-auto-flow: column;
}
.header .nav-links a.megamenu-main-link:hover {
  color: var(--main-color);
  background: white;
}
.header .nav-links .megamenu a {
  color: var(--text-color);
  padding: 3px 5px;
  font-size: 16px;
}
.header .nav-links .megamenu a.title {
  font-size: 20px;
  color: var(--main-color);
} */
/* Search bar */
.header .search-bar {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 45px;
  min-width: 45px;
  background-color: #fff;
}
.header .search-bar:after {
  content: "\f002";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  color: #000;
}
.header .search-bar input {
  padding: 0 30px 0 10px;
  outline: none;
  border: 0;
  color: var(--text-color);
  background-color: #0000;
  height: 40px;
  width: 0;
  font-family: var(--main-family);
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
  font-size: 16px;
}
.header .search-bar.active input {
  width: 280px;
  visibility: visible;
}
.header .search-bar input::placeholder {
  color: var(--text-color);
}
/* Buttons on the right */
.header .cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: end;
}

.header .cta-buttons a {
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.header .cta-buttons .quote {
  background-color: var(--color-accent);
}

.header .cta-buttons .call {
  background-color: var(--main-color);
}
.mobile-menu-toggle {
  display: none;
}

@media (min-width: 1024px) {
  .megamenu-item:hover .megamenu {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 26px;
    align-items: center;
  }
  .header .nav-links .megamenu a {
    color: white;
    font-size: 20px;
  }
  .header .nav-links .megamenu a.title {
    font-size: 24px;
  }
  .header .nav-links .megamenu a:not(:last-child) {
    border-bottom: 1px solid #1f2937;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .megamenu-item {
    flex-direction: column;
    color: white;
  }
  .megamenu {
    position: static;
    visibility: hidden;
    opacity: 0;
    display: flex;
    height: 0;
    flex-direction: column;
    padding: 0 15px;
    margin: 0 20px;
    width: calc(100% - 40px);
    box-sizing: border-box;
    background: #32373c;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
  }
  .megamenu.active {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 15px;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    max-height: 100%;
    min-height: 100vh;
    position: fixed;
    top: 100px;
    left: -200%;
    background-color: #282828;
    transition: 0.3s ease;
  }
  .scrolly {
    overflow-y: scroll;
  }
  .nav-links.active {
    left: 0;
  }
  .megamenu-main-link {
    min-width: 100%;
    position: relative;
    pointer-events: none;
  }
  .megamenu-main-link.active::after {
    rotate: 180deg;
  }
  .megamenu-main-link:after {
    content: " \f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: rotate 0.3s ease;
    line-height: 0;
  }
  .mobile-menu-toggle:after {
    content: "\f0c9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
  }
  .toggle-active.mobile-menu-toggle::after {
    content: "\f00d";
  }
  .header .search-bar {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .contact-info {
    display: none;
  }
  .header .maxwidth {
    padding: 0;
  }
  .header .cta-buttons {
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    text-align: center;
  }
  .header-row-two {
    padding: 10px;
  }
}