/* *********** HEADER *********** */
.head-notification {
  background: var(--darkblue);
  padding: 6px 0;

  & p {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1;
  }
}

.logo-left .sub-logo-text{
    color: var(--darkblue);
    letter-spacing: 3.5px;
    font-size: 18px;
}

header .container {
  max-width: 1565px;
}
.mainheader {
  position: relative;
  width: 100%;
}
.head-bottom .container-fluid {
  position: static;
}

.menu_link ul > li.hidden,
.togglebtn {
  display: none;
}

.head-bottom {
  border-top: 1px solid var(--border-color);
}
.menu_link {
  width: calc(100% - 300px);
}

.head-follow {
  width: 300px;
 /* background: var(--light-gray);*/
background: #ffffff;
  padding: 20px 30px;
}
.head-follow .social-list {
  justify-content: center;
}
.head-follow .social-list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--paragraph);
}
.head-follow .social-list li a img {
  filter: invert(17%) sepia(92%) saturate(0%) hue-rotate(237deg) brightness(30%)
    contrast(99%);
}
.menu_link ul {
  margin: 0;
}
.menu_link > nav > ul {
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
}
.menu_link nav > ul > li {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  padding: 0 30px;
  position: relative;
  margin-bottom: 0;
}

.menu_link nav > ul > li > a {
  color: var(--paragraph);
  font-size: 18px;
  padding: 22px 0;
  display: block;
  position: relative;
  line-height: 100%;
  z-index: 1;
  font-weight: 500;
  text-transform: capitalize;
}
.menu_link nav > ul > li > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
}
.menu_link nav > ul > li > a:hover:after,
.menu_link nav > ul > li.active > a:after {
  width: 100%;
}

/*.menu_link nav>ul>li.has-sub{
    position: static;
}*/

.menu_link .menudrop {
  font-size: 16px;
  padding-left: 8px;
  top: 0;
  position: relative;
  line-height: 0;
  font-weight: bold;
}
.menu_link nav > ul > li:first-child {
  padding-left: 0;
}
.menu_link nav > ul > li:last-child {
  padding-right: 0;
}
.head-top {
  padding: 28px 0;
}

.head-call {
  display: flex;
  align-items: center;
}

.call-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--secondary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  & img {
    filter: invert(17%) sepia(92%) saturate(0%) hue-rotate(237deg)
      brightness(30%) contrast(99%);
  }
}
.call-info {
  width: calc(100% - 42px);
  padding-left: 10px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
  color: var(--orange);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;

  & label.call-text {
    display: block;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--paragraph);
  }
}
.google-ratting-wrap {
  & span {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--paragraph);
    line-height: 1.1;
    margin-bottom: 5px;
  }
}
a.head-call:hover .call-info {
  color: var(--darkblue);
}

.head-right .button-group {
  margin: 0 -30px;
  column-gap: 0;
}
.head-right .button-group li {
  padding: 0 30px;
  margin-bottom: 0;
}
.head-right .button-group li:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.menu_link nav > ul > li.service-dropdown .submenu {
  width: 830px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1275px;
}


.head-notification .container {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.head-notification span.close{
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    border: 1px solid #fff;
    border-radius: 100%;
    padding: 5px;
    cursor: pointer;
}


/* **** MENU Submenu ******* */
.menu_link .submenu {
  /*left: 0;*/
  position: absolute;
  top: 100%;
  width: 330px;
  text-align: left;
  border-radius: 0 0 5px 5px;
  z-index: 10;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 30px;
  box-shadow: 0 5px 10px rgb(89 89 89 / 13%);
}
.menu_link li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.menu_link .submenu.simple-dropdown {
  width: 300px;
  left: inherit;
  right: inherit;
  min-width: 300px;
}
.menu_link .submenu .sublink li {
  margin-bottom: 0;
  width: 100%;
}
.menu_link .submenu .sublink li a {
  color: var(--paragraph);
  position: relative;
  display: block;
  line-height: 1.1;
  font-weight: 500;
  position: relative;
  padding-left: 16px;

  &::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 2px;
    background: currentColor;
  }
}
.menu_link .submenu .sublink li a i.fa::before {
  content: "\f105 ";
}
.menu_link .submenu .sublink li:not(:last-child) a {
  margin-bottom: 20px;
}

.menu_link .submenu .sublink li:last-child {
  margin-bottom: 0;
}
.menu_link nav > ul > li > a:hover,
.menu_link nav > ul > li.active > a,
.menu_link .submenu .sublink li a:hover,
.menu_link .submenu .sublink li.active > a {
  color: var(--orange);
}

/* **** Legal Services ******* */
.menuserv-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 15px 0 0;
  margin: 0 -7px;
  width: calc(100% - 400px);
  max-width: 300px;
}
.head-cta {
    position: relative;
    text-align: center;
    padding: 30px 25px;
    width: 400px;
    border-radius: 10px;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: center;
}
.head-cta-inner {
  & .heading-22 {
    margin-bottom: 10px;
    line-height: 1.2;
  }
  & p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .button-group {
    justify-content: center;

    & .button-call {
      min-width: 180px;
    }
  }
}

/* ***************** MENU THIRD LEVEL ***************** */
.menu_link nav > ul > li.has-sub.areas-dropdown {
  position: static;
}
.submenu.megamenu {
  width: 65%;
  right: 14px;
  padding: 5px;
  left: auto;
}
/*.submenu.megamenu ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}*/
.submenu.megamenu ul li {
  padding: 0 10px;
}
.menu_link .submenu.megamenu > .sublink {
  width: 350px;
  margin: initial;
  padding: 35px 0 35px 30px;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 450px;
}
.submenu.menu-level2 {
  left: 350px;
  opacity: 0;
  visibility: hidden;
  top: 0%;
  background: var(--sky-blue);
  width: calc(100% - 350px);
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
  box-shadow: none;
  padding: 0;
  height: 100%;
  border-radius: 8px;
  border: 5px solid #fff;
  padding: 35px 40px;
}
.submenu.menu-level2 .menu-info {
  margin-bottom: 20px;
}
.sub-description{
    background: var(--primary);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    text-align: center;

}
.submenu.menu-level2 .sublink {
  column-count: 3;
}
li .submenu.menu-level2 ul.sublink li{
	font-size: 12px;
}
.submenu.menu-level2 .sublink li a span {
  display: block;
  font-weight: 600;
  font-size: 14px;
}
.menu_link .submenu.megamenu .sublink.menu-level1 > li {
  padding-right: 30px;

  & > a {
    border-bottom: 1px solid var(--sky-blue);
    border-radius: 0;
    padding: 15px 20px 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;

    &::before {
      content: none;
    }
  }
}
.menu_link .submenu.megamenu .sublink.menu-level1 > li > a[href="#"] {

      cursor: unset;
}

li.menu-item-hover .submenu.menu-level2 {
  opacity: 1;
  visibility: visible;
}
/*STICKY HEADER*/
@-webkit-keyframes headfadeIn {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
  }
}

@keyframes headfadeIn {
  0% {
    opacity: 1;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -moz-transform: translateY(0);
  }
}
.fixed-header header {
  position: fixed;
  box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 23%);
  -moz-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 23%);
  -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 23%);
  -webkit-animation-duration: 0.7s;
  -webkit-animation-name: headfadeIn;
  animation-name: headfadeIn;
  animation-duration: 0.7s;
  background: var(--white);
  width: 100%;
  top: 0;
  z-index: 11;
  width: 100%;
}

.fixed-header header .head-top {
  padding: 8px 0;
}
.fixed-header .menu_link nav > ul > li > a {
  padding: 20px 0;
}




/******** Bread Crumb ******* */

/* Inner banner  */
.inner-banner {
  background-color: var(--darkblue);
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.inner-banner img.bgimg {
  opacity: 0.3;
}
.inner-banner .heading-50 {
  color: var(--white);
  margin-bottom: 10px;
}
.woo_breadcums a:hover::after {
  left: unset !important;
}
ul.woo_breadcums li {
  list-style: none;
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.woo_breadcums li::before {
  display: none;
}

ul.woo_breadcums li span {
  padding: 0;
  display: inline-block;
  font-size: 14px;
  color: white;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 26px;
  letter-spacing: 0.28px;
}
ul.woo_breadcums li a {
  position: relative;
  z-index: 0;
  line-height: 100%;
  margin: 0 25px 0 0;
  display: inline-block;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.28px;
}
ul.woo_breadcums li a:before {
  display: none;
}

ul.woo_breadcums li a:after {
  content: "-";
  position: absolute;
  top: 0;
  right: -16px;
  bottom: 0;
  left: unset;
  font-family: "FontAwesome";
  opacity: 1;
  z-index: 0;
}

ul.woo_breadcums li a:hover {
  text-decoration: underline;
}

ul.woo_breadcums {
  padding: 0;
  position: relative;
  margin-bottom: 0;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

span.breadcrumb_last {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.menu-info p{
    color: var(--darkblue);
    font-weight: 600;
}

/* ****************| START MEDIA QUERY |******************/

@media (max-width: 1439.99px) {
  .menu_link nav > ul > li {
    padding: 0 18px;
  }
  .submenu.megamenu {
    width: 80%;
  }
}

@media (max-width: 1199.99px) {

  .logo-left .sub-logo-text {letter-spacing: 1px;font-size: 16px;}
  .head-top {
    padding: 15px 0;
  }
  .head-bottom {
    border-top: 0;
  }
  .logo-left {
    width: 200px;
  }
  .head-right .button-group {
    margin: 0;
    column-gap: 10px;
  }
  .head-right .button-group li {
    padding: 0;
  }
  .call-info {
    font-size: 20px;

    & label.call-text {
      font-size: 16px;
    }
  }
  .menu_link {
    width: calc(100% - 235px);
  }
  .head-follow {
    width: 235px;
    padding: 20px 15px;
  }

  .head-right {
    padding-right: 50px;
  }

  /* ******* CALL ******* */
  .head-right .button-group li:not(:last-child) {
    border-right: 0;
  }
  .head-call {
    display: flex;
    align-items: center;
    background: var(--darkblue);
    min-height: 56px;
    border-radius: 10px;
    padding: 10px 25px;
  }
  .call-info {
    width: 100%;
    font-size: 18px;
    color: var(--white);

    & label.call-text {
      display: none;
    }
  }
  a.head-call:hover .call-info{
    color: var(--white);
  }
  .call-icon {
    width: auto;
    height: auto;
    border: 0;
  }
  .head-right .button-group li:first-child,
  .head-bottom .head-follow,
  .submenu.menu-level2 .menu-info {
    display: none;
  }

  .call-icon {
    & img {
      transform: scale(1.1);
      filter: brightness(0) invert(1);
    }
  }

  /* TOGGLE CSS */
  html.menuhidden {
    position: fixed;
    overflow-y: hidden;
  }
  .overlay {
    position: fixed;
    right: 0;
    z-index: 11;
    width: 100%;
    height: calc(100% - 124px);
    display: none;
    background-color: hsl(50deg 23% 95% / 80%);
    cursor: pointer;
    top: 124px;
  }
  .togglebtn span {
    position: relative;
    display: inline-block;
    margin-top: 9px;
    vertical-align: top;
    left: 5px;
  }

  .togglebtn span::before {
    top: -10px;
  }
  .togglebtn span::after {
    top: 10px;
  }

  .togglebtn span::before,
  .togglebtn span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .togglebtn span,
  .togglebtn span::before,
  .togglebtn span::after {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    height: 3px;
    border-radius: 2px;
  }

  .togglebtn span::before,
  .togglebtn span::after,
  .togglebtn span {
    width: 26px;
  }
  .have-notification-open .togglebtn {
        top: 65px;
   }

  .togglebtn {
    position: fixed;
    right: 15px;
    display: block;
    top:25px;
    text-align: center;
    width: 45px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
    padding: 6px 2px;
    background: transparent;
    border: 0px;
    border-radius: 100%;
  }
  .togglebtn.active span::before {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    top: 0;
  }

  .togglebtn.active span::after {
    -webkit-transition-delay: 0.09s;
    top: 0;
    -moz-transition-delay: 0.09s;
    -o-transition-delay: 0.09s;
    -ms-transition-delay: 0.09s;
    transition-delay: 0.09s;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
  }

  .togglebtn.active span {
    background: transparent;
  }

  .togglebtn.active span::after,
  .togglebtn.active span::before,
  .togglebtn.active span {
    width: 30px;
    margin-top: 5px;
  }

  .togglebtn.active:before {
    content: none;
  }

  .togglebtn span,
  .togglebtn span::before,
  .togglebtn span::after {
    background-color: var(--darkblue);
  }
   

  /* MENU LINK */
  .menu_link {
    position: fixed;
    top: 124px;
    height: calc(100% - 124px);
    bottom: 0;
    left: 0px;
    width: 450px;
    z-index: 100;
    background-color: var(--darkblue);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    max-width: 100%;
    padding: 10px 0 0;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .menu_link.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
    overflow-y: scroll;
    bottom: 0;
    border-top: 1px solid rgb(255 255 255 / 20%);
  }
  .menu_link > nav {
    padding: 0px 30px;
    width: 100%;

    flex-wrap: wrap;
    align-content: flex-start;
  }
  .menu_link > nav > ul {
    padding-right: 0;
    width: 100%;
    align-items: flex-start;
  }
  .menu_link ul > li.hidden {
    display: block;
  }
  .menu_link nav > ul > li {
    display: block;
    text-align: left;
    width: 100%;
    height: auto;
    margin: 0;
    margin-left: 0px;
  }
  .menu_link nav > ul > li > a {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin: 0;
    padding: 20px 0;
    letter-spacing: 0.32px;
    color: var(--white);
  }
  .menu_link .menudrop {
    display: block;
    top: 0;
    font-size: 14px;
    height: 50px;
    width: 50px;
    border-radius: 0;
    line-height: 50px;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    background: transparent;
    text-align: center;
    color: var(--primary-color);
    width: 35px;
  }
  .menu_link .menudrop.openedmenu {
    transform: rotate(180deg);
  }
  .menu_link .submenu {
    position: static;
    box-shadow: none;
    background-color: var(--white);
    height: auto;
    display: none;
    opacity: unset;
    visibility: inherit;
    transform: none;
    padding: 20px;
    width: 100%;
    min-width: auto;
    border-radius: 5px;
    max-width: 100%;
    border: 0;
  }
  .menu_link li:hover .submenu {
    transform: none;
    visibility: inherit;
    opacity: unset;
    pointer-events: inherit;
    display: none;
  }
  .menu_link nav ul li.isopen > a .fa-caret-down:before {
    content: "\f0da ";
  }
  .menu_link nav > ul > li {
    padding: 0;

    &:not(:last-child) {
      border-bottom: 1px solid rgb(255 255 255 / 8%);
    }
  }
  .submenu.megamenu ul li {
    width: 100%;
  }

  .head-cta {
    display: none;
  }
  .menu_link nav > ul > li.service-dropdown .submenu,
  .menuserv-list {
    width: 100%;
  }
  .menu_link nav > ul > li.service-dropdown .submenu {
    display: none;
  }
  /* ****  THIRD LEVEL *****/
  .menu_link .submenu.megamenu .sublink.menu-level1 > li {
    padding: 0;
  }
  .sublink.menu-level1 .heading-34 {
    display: none;
  }
  .submenu.menu-level2 {
    padding: 20px 15px;
    column-count: 1;
    background: var(--sky-blue);
  }
  .menu_link .submenu.megamenu > .sublink {
    width: 100%;
    padding: 0;
    min-height: auto;
  }
  .submenu.menu-level2 .sublink {
    column-count: 2;
  }
  .menu_link .submenu.megamenu .sublink.menu-level1 > li {
    & > a {
      margin-bottom: 0;
    }
  }

  .menu-mobile-show {
    display: flex;
    background: var(--sky-blue);
    width: 100%;
    padding: 30px 0 0;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;

    & .google-ratting-wrap {
      padding: 0 20px;
      width: 100%;
    }

    & .social-list {
      width: 100%;
      justify-content: space-between;
      align-items: center;
      background: var(--orange);
      padding: 20px 20px;
      margin-top: 20px;

      & li {
        color: var(--white);

        & img {
          filter: brightness(0) invert(1);
        }
      }
    }
  }

  .fixed-header .togglebtn {
    top: 59px;
  }
  .sub-description{
    display: none;
  }
}

@media (max-width: 991.99px) {
  .have-notification-open .togglebtn {
    top: 55px;
  }
  .fixed-header .togglebtn {
    top: 52px;
  }
  .head-call {
    min-height: 45px;
  }
  .call-info {
    font-size: 16px;
    font-weight: 600;
    padding-left: 6px;
  }
  .overlay,
  .menu_link {
    top: 109px;
    height: calc(100% - 109px);
  }
  ul.woo_breadcums li span {
    display: inline-block;
  }
}

@media (max-width: 767.98px) {
  .logo-left .sub-logo-text {letter-spacing: 0.32px;}
  .head-notification {
    min-height: 36px;
    padding: 5px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    & p {
      font-size: 13px;
      padding-right: 17px;
    }
  }
  .togglebtn {
    top: 13px;
  }
  .head-top {
    padding-bottom: 0;

    & .container {
      max-width: 100%;
      padding: 0;
    }
  }
  .logo-left {
    padding-left: 15px;
  }
  .head-call {
    padding: 10px 15px;
    border-radius: 0;
    justify-content: center;
  }
  .head-right {
    padding-right: 0;
    width: 100%;
    margin-top: 10px;
  }
  .head-right .button-group {
    column-gap: 0;
  }
  .head-right .button-group li {
    width: 50%;

    & .button {
      width: 100%;
      border-radius: 0;
    }
  }
  .call-info {
    width: auto;
  }
  .overlay,
  .menu_link {
    top: 136px;
    height: calc(100% - 136px);
  }
  .fixed-header header .head-top {
    padding-bottom: 0;
  }
  .fixed-header .togglebtn {
    top: 45px;
  }
  .fixed-header .overlay,
  .fixed-header .menu_link {
    top: 129px;
    height: calc(100% - 129px);
  }
}

@media (max-width: 575.99px) {
  .call-info {
    font-size: 14px;
  }
  .head-right .button-group li .button {
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
  }
  .submenu.menu-level2 .sublink {
    column-count: 1;
  }
  .menu_link {
    width: 100%;
  }
  .head-notification span.close{position: absolute;right: 4px;}
}
