:root {
  --bs-primary: #004B72;
  --bs-primary-rgb: 0, 75, 114;
  --bs-primary-dark: #023F5F;
  --bs-primary-light: #007CB0;
  --bs-primary-light-rgb: 0, 124, 176;
  --bs-primary-bg-subtle: rgba(var(--bs-primary-rgb), 0.3);
  --bs-primary-border-subtle: rgba(var(--bs-primary-rgb), 0.6);
  --bs-secondary: #007CB0;
  --bs-secondary-rgb: 0, 124, 175;
  --bs-secondary-bg-subtle: rgba(var(--bs-secondary-rgb), 0.3);
  --bs-secondary-border-subtle: rgba(var(--bs-secondary-rgb), 0.6);
  --bs-body-color: #000000;
  --bs-secondary-color: #898989;
  --light-blue-2: #0AB7FF;
  --line-color: #707070;
  --line-opacity: 1;
  --line-width: 1px;
  --line-bar-height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (min-width: 992px) {
  body {
    line-height: 1.7;
  }
}
@media only screen and (min-width: 1800px) {
  body {
    font-size: 17px;
    line-height: 1.9;
  }
}

textarea {
  resize: none;
}

iframe {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 3rem;
}

p {
  margin-bottom: 2rem;
}
p:last-child {
  margin-bottom: 0;
}

section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.text-underline {
  text-decoration: underline;
}

.fw-thin {
  font-weight: 100 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.fs-italic {
  font-style: italic;
}

.anchor-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 3;
}

.z-index-1 {
  z-index: 1;
}

.ps-18px {
  padding-left: 18px;
}

.btn {
  --bs-btn-padding-x: 1.625rem;
  --bs-btn-padding-y: 1.1255rem;
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1.1875;
  --bs-btn-border-width: 0;
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-secondary {
  --bs-btn-bg: var(--bs-secondary);
  --bs-btn-border-color: var(--bs-secondary);
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-active-bg: var(--bs-primary-dark);
  --bs-btn-active-border-color: var(--bs-primary-dark);
  --bs-btn-disabled-bg: var(--bs-secondary);
  --bs-btn-disabled-border-color: var(--bs-secondary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-white {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-bg: #ffffff;
  --bs-btn-border-color: #ffffff;
  --bs-btn-hover-bg: var(--light-blue-2);
  --bs-btn-hover-border-color: var(--light-blue-2);
  --bs-btn-active-bg: var(--light-blue-2);
  --bs-btn-active-border-color: var(--light-blue-2);
  --bs-btn-disabled-bg: var(--light-blue-2);
  --bs-btn-disabled-border-color: var(--light-blue-2);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: var(--bs-primary-light);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.2);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.content-section-row {
  position: relative;
}

.bg-img-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-img-fill._object-top img {
  object-position: top;
}
.bg-img-fill._object-right img {
  object-position: right;
}
.bg-img-fill._object-bottom img {
  object-position: bottom;
}
.bg-img-fill._object-left img {
  object-position: left;
}
.bg-img-fill + div {
  position: relative;
  z-index: 2;
}
.bg-img-fill img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.container-limited {
  max-width: 1920px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1700px) {
  .container-xxl {
    max-width: 1500px;
    width: 100%;
  }
}
@media only screen and (min-width: 1800px) {
  .container-xxl {
    max-width: 1625px;
    width: 100%;
  }
}
.text-secondary {
  --bs-text-opacity: 1;
  --bs-secondary-rgb: 137, 137, 137;
}

.text-light-secondary {
  --bs-text-opacity: 1;
  --bs-secondary-rgb: 185, 185, 185;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.bg-dark {
  --bs-dark: #252D32;
  --bs-dark-rgb: 37, 45, 50;
}

.bg-light-blue {
  background-color: #215B74;
}

.text-light-blue-2 {
  color: var(--light-blue-2);
}

form.form-theme label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
form.form-theme .form-group:not(.form-check) {
  position: relative;
  margin-bottom: 36px;
}
form.form-theme .form-group:not(.form-check) label {
  position: absolute;
  top: 10px;
  transition: all ease 0.35s;
  pointer-events: none;
}
form.form-theme .form-group:not(.form-check):has(> textarea.form-control) {
  margin-top: 48px;
}
form.form-theme .form-group:not(.form-check):has(> textarea.form-control) label {
  top: 20px;
}
form.form-theme .form-control, form.form-theme .form-select {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 12px;
  color: #fff;
}
form.form-theme .form-control:focus, form.form-theme .form-select:focus {
  box-shadow: none;
}
form.form-theme .form-control:focus ~ label, form.form-theme .form-control:valid ~ label, form.form-theme .form-select:focus ~ label, form.form-theme .form-select:valid ~ label {
  transform: translateY(calc(-100% - 4px));
}
form.form-theme .form-control option, form.form-theme .form-select option {
  color: #000;
  background: #fff;
}
form.form-theme .form-select {
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  background-color: #252D32;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M4 6l4 4 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}
form.form-theme textarea.form-control {
  border-top: 1px solid #fff;
  padding: 20px 12px;
}
form.form-theme textarea.form-control:focus ~ label, form.form-theme textarea.form-control:valid ~ label {
  transform: translateY(calc(-100% - 30px));
}

.line-light {
  --line-color: #E2E2E2;
  --line-opacity: 1;
  --line-width: 1px;
}

.line-light-dark {
  --line-color: #959595;
  --line-opacity: .5;
  --line-width: 1px;
}

.bar-height-sm {
  --line-bar-height: 230px;
}

.bar-height-md {
  --line-bar-height: 55%;
}

.bar-height-lg {
  --line-bar-height: 85%;
}

.line-bar-overlay {
  width: var(--line-width);
  height: var(--line-bar-height);
  position: absolute;
  top: 0;
  left: auto;
  border-right: 1px solid var(--line-color);
  background-color: var(--line-color);
  opacity: var(--line-opacity);
}
.line-bar-overlay.bar-top-auto {
  top: auto;
  margin-top: 1.5rem;
}
.line-bar-overlay.bar-bottom {
  top: auto;
  bottom: 0;
}

.brand-name-logo {
  display: -ms-inline-flexbox;
  display: inline-flex;
  flex-direction: column;
}
.brand-name-logo .heading-logo {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 1.104;
}
.brand-name-logo .sub-heading-logo {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.6px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.44em;
}
.brand-name-logo.brand-name-lg .heading-logo {
  font-size: 47px;
}
.brand-name-logo.brand-name-lg .sub-heading-logo {
  font-size: 11px;
}
@media only screen and (max-width: 1399px) {
  .brand-name-logo.brand-name-lg .heading-logo {
    font-size: 28px;
  }
  .brand-name-logo.brand-name-lg .sub-heading-logo {
    font-size: 6.6px;
  }
  .brand-name-logo.brand-name-lg.brand-destribution .heading-logo {
    font-size: 41px;
  }
  .brand-name-logo.brand-name-lg.brand-destribution .sub-heading-logo {
    font-size: 9.6px;
  }
}
@media only screen and (min-width: 992px) {
  .brand-name-logo .heading-logo {
    font-size: 29px;
  }
  .brand-name-logo .sub-heading-logo {
    font-size: 7px;
  }
}

.vertical-brand-logo {
  max-width: 120px;
  margin: 0 auto;
}
.vertical-brand-logo img {
  max-height: 79px;
  width: auto;
}

.vertical-brand-name {
  text-align: center;
  max-width: 150px;
}
.vertical-brand-name .sub-heading-logo {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
}

.mw-812px {
  max-width: 812px;
}

@media only screen and (min-width: 1800px) {
  .display-4-xl {
    font-size: 3.5rem;
  }
}
html {
  scrollbar-gutter: stable;
}

.navbar .navbar-toggler {
  margin-right: -5px;
  border: 0;
  color: var(--primary);
}
.navbar .navbar-toggler.collapsed {
  color: #585858;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  background-image: none;
  font-size: 26px;
}

header .nav-link {
  --bs-nav-link-color: #fff;
  --bs-nav-link-hover-color: #00B4FF;
  --bs-navbar-active-color: #00B4FF;
  text-transform: uppercase;
}
header .nav-link.active {
  --bs-navbar-active-color: #00B4FF;
}
header .contact-item {
  color: #00B4FF;
}
header #navbar-nav-main .nav-link {
  --bs-nav-link-padding-y: 1rem;
  position: relative;
}
header #navbar-nav-main .nav-link.active {
  --bs-navbar-active-color: #fff;
}
header #navbar-nav-main .nav-link.active:after {
  content: "\f176";
  font-family: "Font Awesome 6 Pro";
  font-weight: 100;
  font-size: 18px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

header #main-header, .mega-menu-header {
  background-color: var(--bs-primary-dark);
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
  display: flex;
  align-items: center;
}
header #main-header .menu-toggle, .mega-menu-header .menu-toggle {
  width: 58px;
  cursor: pointer;
  margin-left: auto;
}
@media only screen and (min-width: 1200px) {
  header #main-header .menu-toggle, .mega-menu-header .menu-toggle {
    margin: 0 auto;
  }
}
header #main-header .menu-toggle .toggle-label, .mega-menu-header .menu-toggle .toggle-label {
  text-transform: uppercase;
  font-size: 10px;
  text-align: center;
  letter-spacing: 3px;
  display: block;
  line-height: 12px;
  padding-left: 2px;
}
header #main-header .menu-toggle .toggle-icon, .mega-menu-header .menu-toggle .toggle-icon {
  position: relative;
  margin-top: 15px;
  width: 44px;
  margin-left: auto;
  margin-right: auto;
}
header #main-header .menu-toggle .toggle-icon ._bar, .mega-menu-header .menu-toggle .toggle-icon ._bar {
  width: 44px;
  height: 1px;
  background-color: #fff;
  position: relative;
}
header #main-header .menu-toggle .toggle-icon ._bar + ._bar, .mega-menu-header .menu-toggle .toggle-icon ._bar + ._bar {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  header #main-header .menu-toggle, .mega-menu-header .menu-toggle {
    margin-right: 15px;
    width: 35px;
  }
  header #main-header .menu-toggle .toggle-label, .mega-menu-header .menu-toggle .toggle-label {
    font-size: 9px;
    padding-left: 0;
    letter-spacing: 1px;
  }
  header #main-header .menu-toggle .toggle-icon, .mega-menu-header .menu-toggle .toggle-icon {
    width: 32px;
    margin-top: 8px;
  }
  header #main-header .menu-toggle .toggle-icon ._bar, .mega-menu-header .menu-toggle .toggle-icon ._bar {
    width: 32px;
  }
  header #main-header .menu-toggle .toggle-icon ._bar + ._bar, .mega-menu-header .menu-toggle .toggle-icon ._bar + ._bar {
    margin-top: 8px;
  }
}

.mega-menu-header {
  background-color: #004F77;
}

.mega-menu-underlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#mega-menu {
  position: fixed;
  z-index: 1050;
  inset: 0;
  top: -100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: top 0.4s ease-in-out, opacity 0.4s ease-in-out;
  width: 100%;
}
#mega-menu .menu-toggle .toggle-icon ._bar:nth-child(2) {
  opacity: 0;
}
#mega-menu .menu-toggle .toggle-icon ._bar:nth-child(1) {
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mega-menu .menu-toggle .toggle-icon ._bar:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #mega-menu .menu-toggle .toggle-icon {
    width: 26px;
  }
  #mega-menu .menu-toggle .toggle-icon ._bar {
    width: 26px;
  }
  #mega-menu .menu-toggle .toggle-icon ._bar:nth-child(1) {
    top: 9px;
  }
  #mega-menu .menu-toggle .toggle-icon ._bar:nth-child(3) {
    top: -9px;
  }
}
#mega-menu.active {
  top: 0;
  opacity: 1;
}
#mega-menu .mega-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  background-color: #003A52;
}
@media only screen and (max-width: 767px) {
  #mega-menu .mega-menu-nav {
    flex-wrap: wrap;
  }
}
#mega-menu .mega-menu-nav .mega-nav-item {
  width: calc(25% + 1px);
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  margin-right: -1px !important;
}
#mega-menu .mega-nav-content {
  position: relative;
  padding: 60px 60px 40px;
  text-align: center;
  color: #fff;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  #mega-menu .mega-nav-content {
    padding: 80px 20px 30px;
  }
}
@media only screen and (min-width: 992px) {
  #mega-menu .mega-nav-content {
    padding: 100px 30px 40px;
  }
}
@media only screen and (min-width: 1200px) {
  #mega-menu .mega-nav-content {
    padding: 150px 40px 40px;
  }
}
@media only screen and (min-width: 1400px) {
  #mega-menu .mega-nav-content {
    padding: 180px 60px 50px;
  }
}
#mega-menu .mega-nav-content .mega-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #003a52;
}
#mega-menu .mega-nav-content .mega-item-bg img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.1;
  mix-blend-mode: lighten;
  transition: opacity 0.4s ease-in-out;
}
#mega-menu .mega-nav-content:after {
  content: "";
  width: 100%;
  height: 10px;
  background-color: #00B4FF;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
#mega-menu .mega-nav-content .mega-item-icon {
  max-height: 79px;
  min-height: 79px;
  margin-bottom: 30px;
}
#mega-menu .mega-nav-content .mega-item-title {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.625rem;
  line-height: 1.8125rem;
  margin-bottom: 18px;
}
#mega-menu .mega-nav-content .mega-item-sub-title {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.65em;
  letter-spacing: 0.3rem;
  max-width: 190px;
  margin: 0 auto;
}
#mega-menu .mega-nav-content .mega-item-number {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1;
  color: rgba(var(--bs-primary-light-rgb), 0.65);
  padding-top: 1.5rem;
  margin-top: auto;
}
@media only screen and (min-width: 768px) {
  #mega-menu .mega-nav-content .mega-item-number {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) {
  #mega-menu .mega-nav-content .mega-item-number {
    font-size: 85px;
  }
}
@media only screen and (min-width: 1200px) {
  #mega-menu .mega-nav-content .mega-item-number {
    font-size: 120px;
  }
}
@media only screen and (min-width: 1600px) {
  #mega-menu .mega-nav-content .mega-item-number {
    font-size: 130px;
  }
}
@media only screen and (min-width: 1700px) {
  #mega-menu .mega-nav-content .mega-item-number {
    font-size: 170px;
  }
}
#mega-menu.animated .mega-nav-item:hover .mega-nav-content:after {
  opacity: 1;
}
#mega-menu.animated .mega-nav-item:hover .mega-item-bg img {
  opacity: 1;
}
#mega-menu.animated .mega-nav-item:hover:nth-child(2) .mega-item-bg img {
  opacity: 0.8;
}
#mega-menu.animated .mega-nav-item:hover:nth-child(3) .mega-item-bg img, #mega-menu.animated .mega-nav-item:hover:nth-child(4) .mega-item-bg img {
  opacity: 0.7;
}
@media only screen and (max-width: 1199px) {
  #mega-menu .mega-nav-content .mega-item-content-img img {
    height: 72px;
    width: auto;
    margin-top: 5px;
  }
  #mega-menu .mega-nav-content .mega-item-number {
    padding-top: 0.9rem;
  }
}
@media only screen and (max-width: 991px) {
  #mega-menu .mega-menu-nav .mega-nav-item {
    width: 50%;
  }
  #mega-menu .mega-nav-content .mega-item-icon {
    max-height: 44px;
    min-height: 44px;
    margin-bottom: 22px;
  }
  #mega-menu .mega-nav-content .mega-item-icon img {
    height: 44px;
  }
  #mega-menu .mega-nav-content .mega-item-title {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }
  #mega-menu .mega-nav-content .mega-item-sub-title {
    font-size: 10px;
  }
  #mega-menu .mega-nav-content .mega-item-content-img img {
    height: 72px;
    width: auto;
    margin-top: 6px;
  }
  #mega-menu .mega-nav-content .mega-item-number {
    padding-top: 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #mega-menu .mega-nav-content {
    padding: 40px 20px 25px;
  }
  #mega-menu .mega-nav-content .mega-item-icon {
    max-height: 35px;
    min-height: 35px;
    margin-bottom: 20px;
  }
  #mega-menu .mega-nav-content .mega-item-icon img {
    height: 35px;
  }
  #mega-menu .mega-nav-content .mega-item-title {
    font-size: 1.25rem;
  }
  #mega-menu .mega-nav-content .mega-item-content-img img {
    height: 62px;
    width: auto;
    margin-top: 6px;
  }
  #mega-menu .mega-menu-nav .mega-nav-item {
    border-bottom: 1px solid #707070;
  }
}
@media only screen and (max-width: 360px) {
  #mega-menu .mega-nav-content {
    padding: 40px 10px 25px;
  }
  #mega-menu .mega-nav-content .mega-item-sub-title {
    font-size: 9px;
  }
  #mega-menu .mega-nav-content .mega-item-content-img img {
    height: 57px;
    width: auto;
    margin-top: 6px;
  }
  #mega-menu .mega-nav-content .mega-item-number {
    font-size: 40px;
  }
}

.navbar-brand img {
  max-height: 91px;
}
@media only screen and (max-width: 1199px) {
  .navbar-brand img {
    max-height: 72px;
  }
}
@media only screen and (max-width: 991px) {
  .navbar-brand img {
    max-height: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-brand img {
    max-height: 56px;
  }
}

.language-dropdown {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.language-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid #007CB0;
}
.language-dropdown .dropdown-menu {
  width: auto;
  min-width: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
}
.language-dropdown .dropdown-menu .dropdown-item {
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  padding: 5px 7px;
}
.language-dropdown .dropdown-menu .dropdown-item:hover, .language-dropdown .dropdown-menu .dropdown-item:active {
  background-color: transparent;
}

.header-fixed-offset, #main-header {
  height: 86px;
}
@media only screen and (min-width: 992px) {
  .header-fixed-offset, #main-header {
    height: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-fixed-offset, #main-header {
    height: 120px;
  }
}

@media only screen and (max-width: 991px) {
  body:has(.home-banner) header #main-header {
    width: 100%;
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 0;
    right: 0;
  }
}
header.innerpage #main-header {
  width: 100%;
  position: fixed;
  z-index: 1030;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 48, 67, 0.9);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  header.innerpage #main-header {
    background-color: rgb(15, 48, 67);
  }
}
@media only screen and (min-width: 1200px) {
  header.innerpage #main-header {
    padding-top: 23px;
    padding-bottom: 17px;
  }
}
header.innerpage .navbar-brand img {
  max-height: 40px;
}
header.innerpage .navbar-brand.brand-transport img {
  max-height: 40px;
}
@media only screen and (max-width: 424px) {
  header.innerpage .navbar-brand.brand-transport img {
    max-height: 38px;
  }
  header.innerpage .navbar-brand.brand-transport .brand-name-logo {
    margin-left: 10px !important;
  }
  header.innerpage .navbar-brand.brand-transport .brand-name-logo .heading-logo {
    font-size: 20px;
  }
  header.innerpage .navbar-brand.brand-transport .brand-name-logo .sub-heading-logo {
    font-size: 5.6px;
  }
}
header.innerpage .navbar-brand.brand-destribution img {
  max-height: 51px;
}
header.innerpage .navbar-brand.brand-fsbau img {
  max-height: 55px;
}
header.innerpage .navbar-brand.brand-fsbau .sub-heading-logo {
  line-height: 1.7;
}
@media only screen and (min-width: 992px) {
  header.innerpage .navbar-brand img {
    max-height: 40px;
  }
  header.innerpage .navbar-brand.brand-transport img {
    max-height: 40px;
  }
  header.innerpage .navbar-brand.brand-destribution img {
    max-height: 51px;
  }
  header.innerpage .navbar-brand.brand-fsbau img {
    max-height: 69px;
  }
  header.innerpage .navbar-brand.brand-fsbau .sub-heading-logo {
    line-height: 1.8;
  }
}

footer {
  background-color: #F0F0F0;
  padding-top: 37px;
  padding-bottom: 41px;
  font-size: 14px;
  min-height: 325px;
  background-position-y: 40px;
}
footer.innerpage {
  background-position-y: 0px;
}
@media only screen and (min-width: 992px) {
  footer p:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1600px) {
  footer {
    min-height: 350px;
  }
}
footer .widget-block-1 {
  margin-right: 60px;
}
footer .widget-block-2 {
  margin-right: 40px;
}
footer .widget-block-4 {
  margin-left: 1.5rem;
  margin-right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  footer {
    font-size: 13px;
  }
  footer .container {
    max-width: 1280px;
    width: 95%;
  }
  footer .widget-block-1 {
    margin-right: 35px;
  }
  footer .widget-block-2 {
    margin-right: 20px;
  }
  footer .widget-block-4 {
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  footer {
    font-size: 13px;
  }
  footer .widget-block-1 {
    margin-right: 5px;
    margin-right: auto;
  }
  footer .widget-block-2 {
    margin-right: 5px;
  }
  footer .widget-block-4 {
    margin-left: 0;
    width: 50%;
  }
  footer .widget-block-4 {
    align-self: end;
  }
}
@media only screen and (max-width: 767px) {
  footer .widget-block-1 {
    width: 100%;
    text-align: center;
  }
  footer .widget-block-2, footer .widget-block-3 {
    margin-left: 10px;
    margin-right: 10px;
  }
  footer .widget-block-4 {
    width: 100%;
    justify-content: center;
  }
}

.contact-section + footer {
  min-height: 250px;
}
@media only screen and (max-width: 767px) {
  .contact-section + footer {
    min-height: 275px;
  }
}

.repeating-linear {
  background-image: repeating-linear-gradient(-90deg, #E2E2E2, #E2E2E2 1px, transparent 0px, transparent 111px);
  background-position-x: -25px;
  background-repeat: no-repeat;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 5px;
}
.social-links .social-link {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #707070;
  border-radius: 100%;
  color: var(--bs-primary);
  background-color: #F0F0F0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.social-links .social-link:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.home-banner {
  position: relative;
  height: 450px;
}
.home-banner .baner-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0F3043;
  opacity: 0.68;
}
@media only screen and (min-width: 768px) {
  .home-banner {
    height: 550px;
  }
}
@media only screen and (min-width: 992px) {
  .home-banner {
    height: 750px;
  }
}
.home-banner .banner-title {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 2.25rem;
}
@media only screen and (max-width: 767px) {
  .home-banner .banner-title {
    max-width: 460px;
  }
}
@media only screen and (min-width: 576px) {
  .home-banner .banner-title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .home-banner .banner-title {
    font-size: 3.375rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-banner .banner-title {
    max-width: 620px;
  }
}
@media only screen and (min-width: 992px) {
  .home-banner .banner-title {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .home-banner .banner-title {
    max-width: 730px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-banner .banner-title {
    font-size: 4.5rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .home-banner .banner-title {
    font-size: 4.5rem;
    max-width: 800px;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .home-banner .banner-title {
    font-size: 5rem;
    max-width: 920px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1699px) {
  .home-banner .banner-title {
    font-size: 5.5rem;
    max-width: 1060px;
  }
}
@media only screen and (min-width: 1700px) {
  .home-banner .banner-title {
    font-size: 5.8rem;
  }
}

.border-corner:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  border-right: 0.5px solid #959595;
  opacity: 0.5;
}

.small-title {
  font-size: 21px;
  letter-spacing: 3.8px;
}

.small-title-secondary {
  font-size: 19px;
  letter-spacing: 2.125px;
}

@media only screen and (min-width: 992px) {
  .featured-highlights .item-highlight + .item-highlight .widget-highlight {
    position: relative;
  }
  .featured-highlights .item-highlight + .item-highlight .widget-highlight:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: -12px;
    border-right: 0.5px solid #FFFFFF;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 991px) {
  .featured-highlights .item-highlight:nth-child(even) .widget-highlight {
    position: relative;
  }
  .featured-highlights .item-highlight:nth-child(even) .widget-highlight:before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: -12px;
    border-right: 0.5px solid #FFFFFF;
    opacity: 0.5;
  }
}

.widget-highlight {
  text-align: center;
}
.widget-highlight .highlight-number {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 35px;
}
.widget-highlight .highlight-title {
  font-size: 21px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  max-width: 186px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .widget-highlight .highlight-title {
    font-size: 1rem;
    letter-spacing: 2.5px;
  }
}

.image-slider .swiper-slide {
  position: relative;
  width: 100%;
  padding-bottom: 65.6725%;
}
.image-slider .swiper-slide .image-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.image-slider .swiper-slide .image-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.image-slider .swiper-button-next, .image-slider .swiper-button-prev {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.74);
  border: 1px solid #fff;
}
.image-slider .swiper-button-next *, .image-slider .swiper-button-prev * {
  color: #002891;
}
.image-slider .swiper-button-next:after, .image-slider .swiper-button-prev:after {
  display: none;
}
.image-slider .swiper-button-next.swiper-button-disabled, .image-slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}
.image-slider .swiper-button-prev {
  left: 13px;
  right: auto;
  top: auto;
  bottom: 10px;
}
.image-slider .swiper-button-next {
  left: 42px;
  right: auto;
  top: auto;
  bottom: 10px;
}

.featured-centers {
  --bs-gutter-x: 0.1875rem;
}
@media only screen and (max-width: 991px) {
  .featured-centers {
    --bs-gutter-y: 0.1875rem;
  }
}

.featured-center {
  position: relative;
  padding: 60px 30px 40px;
  text-align: center;
  color: #fff;
  height: 100%;
  transform: translateY(0px);
  transition: 0.25s ease-in-out;
}
.featured-center:hover {
  transform: translateY(-20px);
}
.featured-center .item-icon {
  max-height: 79px;
  min-height: 79px;
  margin-bottom: 30px;
}
.featured-center .item-title {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.625rem;
  line-height: 1.8125rem;
  margin-bottom: 18px;
}
.featured-center .item-sub-title {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.65em;
  letter-spacing: 0.4rem;
  max-width: 170px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 991px) {
  .cta-title {
    font-size: 2rem;
  }
}

.inner-banner {
  position: relative;
  min-height: 450px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 1200px) {
  .inner-banner {
    padding-top: 145px;
    padding-bottom: 135px;
  }
}
.inner-banner .baner-overlay:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #0F3043;
  opacity: 0.54;
}
@media only screen and (min-width: 1200px) {
  .inner-banner .banner-content {
    margin-top: 11.35%;
  }
}
@media only screen and (min-width: 1200px) {
  .inner-banner {
    height: 750px;
  }
}
@media only screen and (min-width: 1400px) {
  .inner-banner {
    height: 873px;
  }
}
.inner-banner .banner-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  position: relative;
  padding-left: 58px;
}
.inner-banner .banner-title:before {
  content: "";
  height: 0;
  position: absolute;
  left: 0;
  top: 16px;
  width: 35px;
  border-bottom: 3px solid #00B4FF;
}
@media only screen and (max-width: 424px) {
  .inner-banner .banner-title {
    font-size: 1.75rem;
    padding-left: 44px;
  }
  .inner-banner .banner-title:before {
    width: 28px;
  }
}
@media only screen and (min-width: 576px) {
  .inner-banner .banner-title {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .inner-banner .banner-title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1299px) {
  .inner-banner .banner-title {
    font-size: 4.5rem;
  }
}
@media only screen and (min-width: 1300px) and (max-width: 1599px) {
  .inner-banner .banner-title {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .inner-banner .banner-title {
    font-size: 5.5rem;
  }
}
@media only screen and (min-width: 1700px) {
  .inner-banner .banner-title {
    font-size: 5.5rem;
  }
}
.inner-banner .banner-number {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-bottom: 15%;
  margin-bottom: -15%;
  overflow: hidden;
  z-index: 3;
}
.inner-banner .banner-number .number {
  font-family: "Roboto", serif;
  font-size: calc(14rem + 7vw);
  line-height: 1;
  color: var(--bs-secondary);
  opacity: 0.65;
  display: block;
  position: relative;
  right: -10%;
  margin-bottom: -30%;
}
@media only screen and (min-width: 576px) {
  .inner-banner .banner-number {
    padding-bottom: 10%;
    margin-bottom: -10%;
  }
  .inner-banner .banner-number .number {
    font-size: calc(17rem + 7vw);
  }
}
@media only screen and (min-width: 992px) {
  .inner-banner .banner-number .number {
    font-size: calc(20rem + 7vw);
  }
}
@media only screen and (min-width: 1200px) {
  .inner-banner .banner-number .number {
    font-size: 536px;
  }
}
@media only screen and (min-width: 1800px) {
  .inner-banner .banner-number .number {
    font-size: 736px;
  }
}
.inner-banner .pagenav {
  position: absolute;
  bottom: 25px;
  margin-left: 0;
  left: 15px;
  z-index: 1;
}
.inner-banner .pagenav .banner-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inner-banner .pagenav .banner-nav {
  width: 35px;
  height: 35px;
  border: 1px solid #FFFFFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
}
.inner-banner .pagenav .banner-nav:hover {
  background-color: #00B4FF;
  border-color: #00B4FF;
}
@media only screen and (min-width: 992px) {
  .inner-banner .banner-title {
    padding-left: 105px;
  }
  .inner-banner .banner-title:before {
    top: 24px;
    width: 60px;
    border-width: 4px;
  }
  .inner-banner .pagenav {
    bottom: 35px;
  }
  .inner-banner .pagenav .banner-nav-buttons {
    gap: 13px;
  }
  .inner-banner .pagenav .banner-nav {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .inner-banner {
    padding-top: 125px;
    padding-bottom: 80px;
  }
  .inner-banner .banner-title {
    padding-left: 142px;
  }
  .inner-banner .banner-title:before {
    top: 50px;
    width: 91px;
    border-width: 6px;
  }
  .inner-banner .pagenav {
    left: auto;
    margin-left: -90px;
  }
}
.inner-banner .banner-slider-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.inner-banner .banner-slider-wrapper .bannerSlider {
  height: 100%;
}
.inner-banner .banner-slider-wrapper .bannerSlider .swiper-slide {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 1200px) {
  .inner-banner .banner-slider-wrapper .bannerSlider .swiper-slide {
    padding-top: 125px;
    padding-bottom: 80px;
  }
}

.dashed-title {
  position: relative;
  padding-left: 108px;
}
.dashed-title:before {
  content: "";
  width: 53px;
  height: 3px;
  position: absolute;
  background-color: #007CB0;
  left: 0;
  top: 20px;
}
.dashed-title.dashed-blue-2:before {
  background-color: var(--light-blue-2);
}
@media only screen and (max-width: 767px) {
  .dashed-title {
    margin-bottom: 2rem;
    padding-left: 60px;
  }
  .dashed-title:before {
    content: "";
    position: absolute;
    background-color: #007CB0;
    left: 0;
    top: 13px;
    width: 35px;
    height: 3px;
  }
}

.service-info .info-title {
  font-size: calc(1.375rem + 1.5vw);
  line-height: 1.3;
  font-weight: 700;
}
@media only screen and (min-width: 992px) {
  .service-info .info-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1200px) {
  .service-info .info-title {
    font-size: calc(1.325rem + 0.9vw);
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1400px) {
  .service-info .info-title {
    font-size: calc(1.325rem + 1.1vw);
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1600px) {
  .service-info .info-title {
    font-size: calc(1.25rem + 1.5vw);
    line-height: 1.5;
  }
}
@media only screen and (min-width: 1800px) {
  .service-info .info-title {
    font-size: 54px;
  }
}
.rental-service {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100%;
  align-items: flex-start;
}
.rental-service .rental-img {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  max-width: 300px;
  width: 100%;
  height: 185px;
}
.rental-service .rental-title {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 25px;
  line-height: 1.16em;
  margin-bottom: 15px;
}
.rental-service .short-detail {
  margin-bottom: 25px;
}
.rental-service .location-description {
  margin-bottom: 30px;
}
.rental-service .location-description ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.rental-service .btn {
  margin-top: auto;
}
@media only screen and (min-width: 992px) {
  .rental-service .rental-img {
    margin-bottom: 25px;
  }
  .rental-service .rental-title {
    margin-bottom: 15px;
  }
  .rental-service .short-detail {
    margin-bottom: 25px;
  }
  .rental-service .location-description {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .rental-service .rental-img {
    margin-bottom: 47px;
  }
  .rental-service .rental-title {
    margin-bottom: 24px;
  }
  .rental-service .short-detail {
    margin-bottom: 35px;
  }
  .rental-service .location-description {
    margin-bottom: 80px;
  }
}

.image-grid-slider .image-slide {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid #01435E;
}
.image-grid-slider .image-slide:before {
  content: "";
  display: block;
  float: left;
  padding-top: 75%;
}
.image-grid-slider .image-slide .bg-img-fill {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: all ease 1s;
}
.image-grid-slider .image-slide:hover .bg-img-fill {
  transform: scale(1.2, 1.2);
}
@media only screen and (max-width: 991px) {
  .image-grid-slider {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .image-grid-slider {
    padding-bottom: 60px;
  }
}

.image-swiper-nav.swiper-button-prev, .image-swiper-nav.swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.image-swiper-nav.swiper-button-prev i, .image-swiper-nav.swiper-button-next i {
  font-size: 22px;
  font-weight: 300;
}
.image-swiper-nav.swiper-button-prev:after, .image-swiper-nav.swiper-button-next:after {
  display: none;
}
.image-swiper-nav.swiper-button-prev:hover, .image-swiper-nav.swiper-button-next:hover {
  background-color: var(--bs-primary);
  color: #FFFFFF;
}
.image-swiper-nav.swiper-button-prev {
  left: 53px;
}
.image-swiper-nav.swiper-button-next {
  right: 53px;
}
@media only screen and (max-width: 991px) {
  .image-swiper-nav.swiper-button-prev, .image-swiper-nav.swiper-button-next {
    top: auto;
    bottom: 0;
  }
  .image-swiper-nav.swiper-button-prev {
    left: 0px;
  }
  .image-swiper-nav.swiper-button-next {
    right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .image-swiper-nav.swiper-button-prev, .image-swiper-nav.swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .image-swiper-nav.swiper-button-prev i, .image-swiper-nav.swiper-button-next i {
    font-size: 20px;
  }
}

.tool-widget .tool-slider {
  margin-bottom: 27px;
}
.tool-widget .tool-slider .image-tool-slider {
  padding-bottom: 38px;
}
.tool-widget .tool-slider .image-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #01435E;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-widget .tool-slider .image-slide:before {
  content: "";
  display: block;
  float: left;
  padding-top: 71%;
}
.tool-widget .tool-slider .image-slide .img-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transform: scale(1);
  transition: all ease 1s;
}
.tool-widget .tool-slider .image-slide:hover .img-tool {
  transform: scale(1.2, 1.2);
}
.tool-widget .tool-slider .swiper-button-prev, .tool-widget .tool-slider .swiper-button-next {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.tool-widget .tool-slider .swiper-button-prev i, .tool-widget .tool-slider .swiper-button-next i {
  font-size: 10px;
  font-weight: 300;
}
.tool-widget .tool-slider .swiper-button-prev:after, .tool-widget .tool-slider .swiper-button-next:after {
  display: none;
}
.tool-widget .tool-slider .swiper-button-prev:hover, .tool-widget .tool-slider .swiper-button-next:hover {
  background-color: var(--light-blue-2);
  border-color: var(--light-blue-2);
}
.tool-widget .tool-slider .swiper-button-prev {
  top: auto;
  bottom: 0;
  left: 0;
}
.tool-widget .tool-slider .swiper-button-next {
  top: auto;
  bottom: 0;
  right: 0;
}
.tool-widget .tool-title {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 25px;
  line-height: 1.16em;
  color: var(--light-blue-2);
}

.promotion-desc {
  font-family: "Philosopher", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 25px;
  line-height: 1.16em;
  color: var(--light-blue-2);
}

.fb-button {
  font-weight: 700;
  font-size: 25px;
  --bs-btn-padding-x: 1.75rem;
  --bs-btn-padding-y: 0.8rem;
}

.responsive-map-container {
  position: relative;
  padding-bottom: 59.25%;
  padding-top: 30px;
  height: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  .responsive-map-container {
    min-height: 630px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .responsive-map-container {
    padding-bottom: 100%;
  }
}

.responsive-map-container iframe,
.responsive-map-container object,
.responsive-map-container embed,
.responsive-map-container #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 992px) {
  .map-column {
    flex: 0 0 auto;
    width: 52.75%;
  }
  .service-contact-column {
    flex: 0 0 auto;
    width: 47.25%;
  }
  .service-contact-column .separtor-line-end {
    position: relative;
    padding-right: 40px;
  }
  .service-contact-column .separtor-line-end:before {
    content: "";
    width: 0px;
    height: calc(100% + 10px);
    position: absolute;
    border-right: 1px solid #002133;
    top: 0;
    right: 0;
  }
  .service-contact-column .mw-198 {
    max-width: 198px;
  }
}
@media only screen and (max-width: 767px) {
  .fred-group-logo img {
    max-height: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fred-group-logo {
    text-align: center;
  }
}

/*# sourceMappingURL=app.css.map */
