@import url('./helvetica.css');

/* Global Variables */
:root {
  --font-family: 'Helvetica Neue';

  --primary-blue: #23b4f0;
  --secondary-blue: #01387a;

  --primary-yellow: #F0B84F;
  --secondary-yellow: #C7973C;

  --text-color: #4A4A4A;
  --text-blue: #27478b;

  --border-blue: #002858;
  --border-gray: #bac9db;
  --border-lightgray: #e5eaf1;

  --gray: #F4F4F4;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  transition: all .3s ease;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #aaa;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  color: var(--text-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: .2s;
  -ms-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
}

a {
  transition: 0.25s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.25;
  font-weight: 600;
}

strong {
  font-weight: 600;
  color: var(--black-grade--2);
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

h2 {
  color: var(--text-blue);
  font-weight: 600;
}

p {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: normal;
}

.navbar.bg-light {
  background-color: #FFF !important;
}

.navbar-brand img {
  height: 45px;
}

.search-list-wrap .link-block {
  box-shadow: 0 3px 10px rgba(39, 71, 139, 0.2);
  border-radius: 10px;
  margin-block: 1.5rem;
  padding: 1.5rem;
}

.search-list-wrap .link-block:first-child {
  margin-top: 0px;
}

.search-list-wrap .link-block > a {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.search-list-wrap .link-block > h2 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.search-list-wrap .link-block > .search-url,
.search-list-wrap .link-block > .search-type {
  color: var(--primary-blue);
  display: none;
}

.loading_outer {
  background-color: var(--white);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
}

.loading_outer > span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #01387a;
  background: -moz-linear-gradient(left, #01387a 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #01387a 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #01387a 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #01387a 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #01387a 10%, rgba(255, 255, 255, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loading_outer > span:before {
  width: 50%;
  height: 50%;
  background: #01387a;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.loading_outer > span:after {
  background: #FFFFFF;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Hero Section */

.hero-section {
  background: rgb(0, 135, 191);
  background-image: url('../img/hero-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 90px;
  position: relative;
  height: calc(100vh - 60px);

}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
  color: var(--text-blue);
}

.hero-section h1>span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5rem;
  font-weight: 400;
}

.hero-section ul {
  list-style: none;
  color: var(--white);
  font-weight: normal;
  margin-top: 10px;
  font-size: 1.125rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  bottom: -81px;
  right: -81px;
  border: 80px solid transparent;
  border-bottom-color: var(--white);
  transform: rotate(135deg);
  z-index: 1;
}

.hero-shape {
  transform: translateY(-8px);
}

.hero-shape > div {
  overflow: hidden;
  width: 60%;
  height: 90px;
  left: 0;
  bottom: 0;
  background-color: transparent;
  margin-bottom: 60px;
}

.hero-shape span {
  display: flex;
  transform: skew(-45deg);
  width: 100%;
  height: 100%;
  background-color: var(--secondary-blue);
  margin-left: -50px;
}

.hero-shape span::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 50px;
  background-color: var(--primary-blue);
  width: 100%;
  height: 100%;
}

/* Footer */

.scrollToButton {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -70px;
  right: 45px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-blue);
  color: var(--white);
  border-radius: 50%;
  z-index: 10;
  transition: all .25s linear;
}

.scrollToButton > img {
  max-width: 30px;
}

.scrollToButton.active {
  bottom: 45px;
}

.footer {
  border-top: 4px solid #4d4d4d;
}

.footer .navbar-brand img {
  filter: grayscale(1);
}

.footer .menu-wrapper {
  border-top: 1px dashed #4d4d4d;
  border-bottom: 1px dashed #4d4d4d;
}

.footer .menu-wrapper ul {
  position: relative;
  list-style: none;
  padding-left: 15px;
  color: #6f6f6f;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block: 8px;
}

.footer .menu-wrapper ul:before {
  content: '';
  position: absolute;
  left: -12px;
  top: -30px;
  bottom: 0;
  border-left: 1px dashed #4d4d4d;
}

.footer .menu-wrapper ul li ul:before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed #4d4d4d;
}

.footer .menu-wrapper h5,
.footer .menu-wrapper h5 a {
  font-size: 1.125rem;
  color: #6f6f6f;
}

.footer .menu-wrapper h5.active,
.footer .menu-wrapper h5.active a {
  color: var(--text-blue);
}

.footer .menu-wrapper ul li a {
  color: #6f6f6f;
  font-size: 0.875rem;
}

.footer .menu-wrapper ul li a.disabled {
  pointer-events: none;
  cursor: default;
}

/* Section Headers */

section h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary-blue);
}

section h2 {
  text-transform: uppercase;
  margin-bottom: 1rem;
}

section h3 {
  font-size: 2rem;
  font-weight: 600;
}

section h4 {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.75rem;
}

/* Card */

.card {
  padding: 90px 45px 30px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(39, 71, 139, 0.2);
  border: none;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.card:not(.img):before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  border: 80px solid transparent;
  border-bottom-color: var(--primary-blue);
  transform: rotate(-45deg);
}

.card:not(.img):hover:before {
  border-bottom-color: var(--secondary-blue);
}

.card:not(.img):hover > * {
  color: var(--secondary-blue);
}

.card:not(.img) img {
  transition: none;
}

.card:not(.img):hover img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(68%) saturate(1944%) hue-rotate(196deg) brightness(91%) contrast(107%);
}

.card:not(.img) p {
  position: relative;
}

.card:not(.img) p:after {
  content: '';
  height: 3px;
  width: 100%;
  background-color: transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.card:not(.img):hover p:after {
  background-color: var(--secondary-blue);
}

.card h3 {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.15;
}

.card.img {
  background-color: #F0B84F;
  display: flex;
  align-items: center;
  padding: 0;
}

.title-bg {
  background-color: var(--secondary-blue);
  color: var(--white);
}

/* Shapes */

.triangle {
  position: relative;
  display: flex;
  margin: auto;
  border: 70px solid transparent;
  border-bottom-color: var(--secondary-blue);
  width: 0;
  height: 0;
  top: -35px;
}

.triangle.down {
  border-bottom-color: transparent;
  border-top-color: var(--secondary-blue);
  top: 35px;
}

.triangle.shape-rightTop, .triangle.shape-rightBottom {
  position: absolute;
  right: -70px;
  top: -69px;
  transform: rotate(135deg);
  border-width: 70px;
}

.triangle.shape-rightBottom {
  top: 66px;
  right: -55px;
  border-width: 55px;
}

.triangle.white {
  border-bottom-color: var(--white);
}

.triangle.down.white {
  border-bottom-color: transparent;
  border-top-color: var(--white);
  top: 0;
}

.triangle.yellow {
  border-bottom-color: var(--primary-yellow);
}

.triangle.down.yellow {
  border-bottom-color: transparent;
  border-top-color: var(--primary-yellow);
}

.circle {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 20px;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.block {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 10px;
  height: 50px;
  position: relative;
}

.block.blue {
  background-color: var(--primary-blue);
}

.block.blue:hover {
  background-color: var(--secondary-blue);
}

.block.yellow {
  background-color: var(--primary-yellow);
}

.block.yellow::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  background-color: var(--primary-yellow);
}

.block.yellow:hover::before {
  top: -25px;
  bottom: -25px;
}

.bar-skewed--lg {
  position: absolute;
  width: 480px;
  top: -50px;
  bottom: 0;
  background-color: var(--secondary-blue);
  right: -20%;
  transform: skewX(-45deg);
  z-index: -1;
}

.bar-skewed--md {
  position: absolute;
  top: -77px;
  right: 13%;
  width: 45px;
  height: 80px;
  transform: skew(-45deg);
}

.bar-skewed--sm {
  position: absolute;
  left: -75px;
  width: 40px;
  height: 50px;
  background-color: var(--secondary-blue);
  transform: skew(-45deg);
  top: 25px;
}

.bar-skewed--md--1 {
  top:auto;
  bottom: 21px;
  left: calc(50% - 80px);
}

.bar-skewed--md--2 {
  top:auto;
  bottom: 21px;
  left: calc(95% - 80px);
}

.border-skewed {
  position: absolute;
  height: 20px;
  width: 50%;
  right: -100px;
  background-color: var(--secondary-blue);
  top: -50px;
  transform: skewX(-45deg);
}

.border-skewed--topLeft,
.border-skewed--topRight {
  position: absolute;
  height: 100px;
  width: 25%;
  left: -18%;
  top: 0;
  transform: skewX(45deg) rotate(90deg);
}

.border-skewed--topRight {
  left: auto;
  right: -18%;
  transform: skewX(-45deg) rotate(90deg);
}

.rectangle {
  position: absolute;
  height: 70px;
  width: 100px;
  left: calc(45% - 50px);
  top: -45px;
  transform: rotate(90deg);
  z-index: -1;
}

.rectangle.left {
  left: auto;
  right: calc(90% - 108px);
  transform: rotate(45deg);
  width: 200px;
  top: -50px;
}

.rectangle.right {
  right: auto;
  left: calc(90% - 144px);
  transform: rotate(-45deg);
  width: 200px;
  top: -50px;
}

.rounded-rectangle {
  background-color: var(--border-gray);
  height: 75px;
  position: relative;
}

.rounded-rectangle::before {
  content: '';
  position: absolute;
  top: -50px;
  left: auto;
  right: 0;
  width: 75%;
  height: 100px;
  border-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--secondary-blue);
}

.rounded-rectangle--md {
  position: relative;
}

.rounded-rectangle--md {
  width: 90%;
  height: 50px;
}
.btn-outline-primary {
  border-color: var(--secondary-blue);
  color: var(--secondary-blue);
  border-radius: 0;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary:first-child:active {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
  color: #FFFFFF;
}

/* Colors */

.color-blue--secondary {
  color: var(--secondary-blue);
}

.background-blue--secondary {
  background-color: var(--secondary-blue);
}

.color-blue--primary {
  color: var(--primary-blue);
}

.background-blue--primary {
  background-color: var(--primary-blue);
}

.color-white {
  color: var(--white);
}

.background-white {
  background-color: var(--white);
}

.color-yellow {
  color: var(--primary-yellow);
}

.background-yellow {
  background-color: var(--primary-yellow);
}

.background-yellow--secondary {
  background-color: var(--secondary-yellow);
}

.background-gray {
  background-color: var(--gray);
}

.background-blue--third {
  background-color: var(--border-blue);
}

.background-multicolor {
  background: -moz-linear-gradient(left, var(--secondary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 50%, var(--primary-blue) 95%, var(--white) 95%, var(--white) 100%);  /* FF3.6+ */
  background: -webkit-linear-gradient(left, var(--secondary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 50%, var(--primary-blue) 95%, var(--white) 95%, var(--white) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, var(--secondary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 50%, var(--primary-blue) 95%, var(--white) 95%, var(--white) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, var(--secondary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 50%, var(--primary-blue) 95%, var(--white) 95%, var(--white) 100%); /* IE10+ */
  background: linear-gradient(to right, var(--secondary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 50%, var(--primary-blue) 95%, var(--white) 95%, var(--white) 100%); /* W3C */
}

/* Border */

.hr-border {
  height: 5px;
  border: none;
  opacity: 1;
}

.hr-border-6 {
  height: 10px;
}

.hr-border-4 {
  height: 4px;
}

.hr-border-3 {
  height: 3px;
}

.hr-border-2 {
  height: 2px;
}

.hr-border-1 {
  height: 1px;
}

.section-border--yellow {
  border-top: 7px solid var(--secondary-yellow);
}

.section-border--blue {
  border-top: 7px solid var(--border-blue);
}

.section-border--blue h5 {
  font-size: 22px;
  font-weight: 500;
}

/* Max Width */

.max-limit-80 {
  max-width: 80%;
  margin-inline: auto;
}

.max-limit-90 {
  max-width: 90%;
  margin-inline: auto;
}

/* Min Height */

.min-h-1 {
  min-height: 5rem;
}

.min-h-2 {
  min-height: 7.5rem;
}

.min-h-3 {
  min-height: 10rem;
}

.min-h-4 {
  min-height: 12.5rem;
}

.min-h-5 {
  min-height: 15rem;
}

.min-h-6 {
  min-height: 17.5rem;
}

.get-more-it::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary-blue);
  width: 50%;
  z-index: -1;
}

.get-more-it h3 > span::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -275px;
  width: 620px;
  height: 120px;
  transform: rotate(-45deg);
  background-color: var(--white);
}

.get-more-it h3 > span > span {
  position: relative;
  z-index: 1;
}

.arrowbg-blue--primary, .arrowbg-blue--secondary, .arrowbg-yellow {
  position: absolute;
  top: 0;
  right: -30px;
  width: 58px;
  height: 100%;
  background-image: url(../img/triangle-blue-primary.png);
  background-repeat: space;
  background-size: contain;
}

.arrowbg-blue--secondary {
  background-image: url(../img/triangle-blue-secondary.png);
}

.arrowbg-yellow {
  background-image: url(../img/triangle-yellow.png);
}

.circle-frame {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--secondary-blue);
  box-shadow: 0 0 0 3px var(--white),
              0 0 0 5px #6687af,
              0 0 0 9px var(--white),
              0 0 0 11px #99afc9,
              0 0 0 16px var(--white),
              0 0 0 17px var(--border-lightgray),
              0 0 0 25px var(--white);
  background-color: var(--white);
}

.circle-frame::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: var(--border-lightgray);
  height: 100px;
  width: 100%;
  z-index: -1;
}

#clients .shadow {
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.25) !important;
}

/* Search Box */

.mobile-search {
  display: none;
}

.search-box {
  position: absolute;
  width: 0;
  background: #f0b84f;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  height: 75px;
  right: 0;
}

.search-box.active {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.search-results {
  position: absolute;
  top: 75px;
  background: #FFF;
  left: 0;
  right: 0;
  padding: 20px;
  max-height: 400px;
  overflow: auto;
  border: 1px solid #d2d2d2;
}

.search-field {
  width: calc(100% - 35px);
}

.search-field input,
.search-field input:focus {
  border-radius: 0;
  background: none;
  border: 1px solid #FFF;
  color: #FFF;
  outline: 0;
  box-shadow: none;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-box svg {
  cursor: pointer;
}

.search-field button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid #FFF;
  min-width: 45px;
  background-color: #FFF;
}

.search-results > div {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.search-results > div:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.search-results h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.search-results h4 {
  color: var(--secondary-blue);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.search-results .link-block {
  color: #6f6f6f;
  font-size: 14px;
  padding: 0 0 8px 0;
  font-weight: 500;
}

.search-results .link-block.active {
  font-weight: 600;
}

/* Form */
.styled-input {
  margin: 0px 0px 25px 0px;
  position: relative;
}

.styled-input input, .styled-input textarea {
  padding: 8px 10px;
  border: 0;
  font-size: 1rem;
}

.form-control, .form-control:focus {
  background-color: var(--gray);
  border-radius: 0;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.styled-input input ~ span, .styled-input textarea ~ span {
  display: block;
  width: 0;
  height: 3px;
  background: var(--text-blue);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.styled-input input.form-control:focus ~ span, .styled-input textarea.form-control:focus ~ span, .styled-input input.error ~ span, .styled-input textarea.error ~ span {
  width: 100%;
}

.styled-input input.error ~ span, .styled-input textarea.error ~ span {
  background: #F54D4D;
}

.styled-input label {
  color: #999;
  padding: 0.4rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  pointer-events: none;
}

.styled-input input:focus ~ label, .styled-input textarea:focus ~ label, .styled-input input.not-empty ~ label, .styled-input textarea.not-empty ~ label {
  font-size: 14px;
  color: var(--text-color);
  top: -20px;
  padding: 0;
}

.fileUpload button {
  position: absolute;
  top: 6px;
  right: 6px;
  max-height: 30px;
  padding: 3px 10px;
  border: 0;
}

#sendMessage {
  font-size: 20px;
  font-weight: 400;
  background-color: var(--secondary-blue);
  color: var(--white);
}

.contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #eaeaea;
}

.contact-box ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-box ul a {
  font-size: 1.2rem;
}

.ContactBtnDisabled {
  pointer-events: none;
  opacity: 0.5;
}

.navbar-expand-lg .navbar-nav .mega-menu {
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 70px;
  min-height: 210px;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  backdrop-filter: brightness(1.5) blur(50px);
  --webkit-backdrop-filter: brightness(1.5) blur(50px);
  background-color: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.35s ease-in-out;
}

.navbar-expand-lg .navbar-nav .mega-menu.active {
  top: 90px;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu {
  display: flex;
  flex-flow: row wrap;
  flex-basis: 70%;
  max-width: 70%;
  position: relative;
  top: 0;
  border: none;
  background: transparent;
  padding-inline: 0;
}

.navbar-expand-lg .navbar-nav .mega-menu img {
  width: 180px;
  margin-inline: auto 30px;
  margin-block: auto;
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(90deg) brightness(0%) contrast(0%);
  opacity: 0.5;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li {
  flex-direction: column;
  flex-basis: 50%;
  margin-inline: 0;
  max-width: 50%;
  padding-inline: 0.75rem;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li {
  position: relative;
  font-size: 0.875rem;
  margin-inline: 0;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li a {
  color: #6f6f6f;
  padding-left: 20px;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li a:hover,
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li a:focus,
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li.active a {
  background-color: transparent;
  color: var(--secondary-blue);
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li:before {
  content: '';
  position: absolute;
  left: 6px;
  border: 1px solid #707070;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: #FFF;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  min-height: 170px;
  border-right: 1px dashed #707070;
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li:hover:before,
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li:focus:before,
.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > ul > li.active:before {
  border-color: var(--secondary-blue);
  background: var(--secondary-blue);
}

.navbar-expand-lg .navbar-nav .mega-menu .dropdown-menu > li > a {
  color: var(--secondary-blue);
}