<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Pliki scss w katalogu assets nie nadają się do uzytku. Pliki scss są niekompletne i róznią się w stosunku do pliku css */
/* Brak plików scss odpowiadających skompilowanemu plikowi css lub zostały naniesione poprawki bezpośrednio w pliku css */
/* Nie włączać kompilacji pliku app.scss */
.headernew {
  z-index: 999;
  height: 116px;
  position: fixed;
  width: 100vw;
  top: 0;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .headernew {
    height: 64px;
  }
}
.headernew.sticky {
  height: 90px;
}
@media (min-width: 992px) {
  .headernew.sticky .headernew__bottom {
    top: 70px;
  }
}
@media (min-width: 992px) and (hover: hover) and (pointer: fine) {
  .headernew.sticky .headernew__bottom .headernew__megamenu-items {
    padding: 0px 20px;
  }
  .headernew.sticky .headernew__bottom .headernew__megamenu-element {
    padding: 12.5px 23px 12.5px;
  }
  .headernew.sticky .headernew__bottom .headernew__megamenu-element:after {
    bottom: 0;
  }
}
@media (max-width: 991px) {
  .headernew.sticky {
    height: 50px;
  }
  .headernew.sticky .headernew__rightside {
    top: 50px !important;
  }
  .headernew.sticky .headernew__searchbar .input {
    top: 50px;
  }
}
.headernew.sticky .headernew__logo {
  width: 220px;
}
@media (max-width: 991px) {
  .headernew.sticky .headernew__logo {
    width: 180px;
  }
}
.headernew__container {
  max-width: 1540px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 7px 50px;
  z-index: 3;
  position: relative;
}
@media (max-width: 991px) {
  .headernew__container {
    padding: 0px 15px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.headernew__logo {
  width: 235px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .headernew__logo {
    width: 180px;
  }
}
@media (max-width: 500px) {
  .headernew__logo {
    width: 155px;
  }
}
.headernew__logo img {
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.headernew__menu-ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
@media (max-width: 991px) {
  .headernew__menu-ul {
    padding-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.headernew__menu-ul li {
  margin: 0 1.5vw;
}
@media (max-width: 1200px) {
  .headernew__menu-ul li {
    margin: 0 15px;
  }
}
@media (max-width: 991px) {
  .headernew__menu-ul li {
    margin: 0;
    margin-bottom: 20px;
  }
}
.headernew__menu-ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #004379;
  display: block;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .headernew__menu-ul li a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .headernew__menu-ul li a {
    white-space: initial;
    font-size: 18px;
    right: 9px;
  }
}
.headernew__menu-ul li a::before {
  content: "";
  position: relative;
  width: 10px;
  display: block;
  height: 10px;
  background-color: #004379;
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  margin-right: 8px;
}
@media (min-width: 992px) {
  .headernew__menu-ul li a:hover::before {
    opacity: 1;
  }
}
.headernew__menu-ul li.current_page_item a {
  font-weight: 700;
}
.headernew__menu-ul li.current_page_item a::before {
  opacity: 1;
}
.headernew__menu-ul li.current-menu-parent a {
  font-weight: 700;
}
.headernew__menu-ul li.current-menu-parent a::before {
  opacity: 1;
}
.headernew__menu-ul li.current-menu-parent .sub-menu li a {
  font-weight: 400;
}
.headernew__menu-ul li.current-menu-parent .sub-menu li a::before {
  opacity: 0;
}
.headernew__menu-ul li.menu-item-has-children {
  position: relative;
}
.headernew__menu-ul li.menu-item-has-children a {
  z-index: 4;
}
@media (max-width: 991px) {
  .headernew__menu-ul li.menu-item-has-children a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .headernew__menu-ul li.menu-item-has-children a::after {
    content: "";
    display: block;
    width: 16px;
    height: 10px;
    background-size: contain;
    background-position: center;
    background-image: url(../images/chevron.svg);
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-width: 16px;
    -webkit-filter: brightness(0);
            filter: brightness(0);
    margin-left: 10px;
  }
}
@media (min-width: 992px) {
  .headernew__menu-ul li.menu-item-has-children::before {
    content: "";
    position: absolute;
    width: calc(100% + 18px);
    height: 75px;
    border-radius: 20px 20px 0px 0px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
    top: -18px;
    left: 0;
    background-color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
  .headernew__menu-ul li.menu-item-has-children::after {
    content: "";
    position: absolute;
    width: calc(100% + 18px);
    height: 70px;
    border-radius: 20px 20px 0px 0px;
    top: -18px;
    left: 0;
    background-color: white;
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
}
.headernew__menu-ul li.menu-item-has-children .sub-menu {
  position: absolute;
  min-width: 281px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #fff;
  border-radius: 0px 20px 20px 20px;
  z-index: 2;
  list-style: none;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
  top: 51px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .headernew__menu-ul li.menu-item-has-children .sub-menu {
    position: relative;
    top: 0;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0 18px;
  }
}
.headernew__menu-ul li.menu-item-has-children .sub-menu li {
  margin: 0;
  margin-bottom: 12px;
}
.headernew__menu-ul li.menu-item-has-children .sub-menu li:last-child {
  margin-bottom: 0;
}
.headernew__menu-ul li.menu-item-has-children .sub-menu li a {
  color: #004379;
  font-size: 16px;
}
@media (max-width: 991px) {
  .headernew__menu-ul li.menu-item-has-children .sub-menu li a {
    right: 0;
  }
  .headernew__menu-ul li.menu-item-has-children .sub-menu li a::after, .headernew__menu-ul li.menu-item-has-children .sub-menu li a::before {
    display: none !important;
  }
}
.headernew__menu-ul li.menu-item-has-children.open .sub-menu {
  height: auto;
  opacity: 1;
  visibility: visible;
  padding: 18px 35px;
}
@media (max-width: 991px) {
  .headernew__menu-ul li.menu-item-has-children.open .sub-menu {
    padding: 18px;
  }
}
.headernew__menu-ul li.menu-item-has-children.open .sub-menu li a {
  font-weight: 400;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__menu-ul li.menu-item-has-children.open .sub-menu li a {
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  .headernew__menu-ul li.menu-item-has-children.open .sub-menu li a:hover::before {
    opacity: 1 !important;
  }
}
.headernew__menu-ul li.menu-item-has-children.open .sub-menu li a:focus {
  outline: none;
}
.headernew__menu-ul li.menu-item-has-children.open .sub-menu li a:focus::before {
  opacity: 1 !important;
}
.headernew__menu-ul li.menu-item-has-children.open .sub-menu li.current_page_item a {
  font-weight: 700;
}
.headernew__menu-ul li.menu-item-has-children.open::after, .headernew__menu-ul li.menu-item-has-children.open::before {
  opacity: 1;
}
.headernew__menu-ul li.menu-item-has-children.open a {
  font-weight: 700;
}
.headernew__menu-ul li.menu-item-has-children.open a::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.headernew__menu-ul li.menu-item-has-children.open a::before {
  opacity: 0 !important;
}
.headernew__searchbar {
  position: relative;
}
.headernew__searchbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  position: relative;
}
@media (max-width: 991px) {
  .headernew__searchbar-container {
    position: absolute;
    right: 70px;
  }
}
.headernew__searchbar-container .language-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 14px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  list-style: none;
}
@media (max-width: 500px) {
  .headernew__searchbar-container .language-switcher {
    margin-left: 10px;
  }
}
.headernew__searchbar-container .language-switcher__item {
  margin-left: 12px;
}
@media (max-width: 500px) {
  .headernew__searchbar-container .language-switcher__item {
    margin-left: 6px;
  }
}
.headernew__searchbar-container .language-switcher__item span {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #004379;
  color: white;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 50%;
}
.headernew__searchbar-container .language-switcher__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #004379;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__searchbar-container .language-switcher__item a {
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  .headernew__searchbar-container .language-switcher__item a:hover {
    border: 1px solid #004379;
  }
}
.headernew__searchbar-container .language-switcher__item a:focus {
  outline: none;
  border: 1px solid #004379;
}
.headernew__searchbar .zoom {
  background-color: #ececec;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 45px;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 500px) {
  .headernew__searchbar .zoom {
    height: 36px;
    width: 36px;
    background-color: transparent;
  }
}
.headernew__searchbar .zoom img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 24px;
}
@media (max-width: 500px) {
  .headernew__searchbar .zoom img {
    width: 24px;
  }
}
.headernew__searchbar .zoom.loading img {
  opacity: 0;
}
.headernew__searchbar .loader {
  position: absolute;
  border: 2px solid #004379;
  border-top: 2px solid #f3f3f3;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.headernew__searchbar .loader.loading {
  opacity: 1;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.headernew__searchbar .input {
  position: absolute;
  right: 43px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 0;
  -webkit-transform: translateX(240px);
          transform: translateX(240px);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .headernew__searchbar .input {
    position: fixed;
    top: 64px;
    height: 50px;
    left: 0;
    right: auto;
  }
}
.headernew__searchbar .input input {
  height: 100%;
  background-color: #ececec;
  border: 0;
  outline: 0;
  border-radius: 10px 0px 0px 10px;
  min-width: 315px;
  padding: 0px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .headernew__searchbar .input input {
    width: 100%;
  }
}
.headernew__searchbar .input .search_result {
  width: calc(100% + 43px);
  background-color: #ececec;
  position: relative;
  top: -7px;
  border-radius: 0px 0px 10px 10px;
}
.headernew__searchbar .input .search_result.loaded {
  padding: 10px 15px;
}
.headernew__searchbar .input .search_result ul {
  list-style: none;
}
.headernew__searchbar .input .search_result ul li {
  margin-bottom: 12px;
}
.headernew__searchbar .input .search_result ul li a {
  text-decoration: none;
  color: #004379;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__searchbar .input .search_result ul li a {
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  .headernew__searchbar .input .search_result ul li a:hover {
    color: #2FC7E6;
  }
}
.headernew__searchbar .input .search_result ul li a:focus {
  outline: none;
  color: #2FC7E6;
}
.headernew__searchbar.open .zoom {
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 991px) {
  .headernew__searchbar.open .zoom {
    border-radius: 10px;
  }
}
.headernew__searchbar.open .input {
  width: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .headernew__searchbar.open .input {
    width: 100%;
  }
}
.headernew__bottom {
  position: absolute;
  top: 80px;
  max-width: 1540px;
  padding: 0px 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1500px) {
  .headernew__bottom {
    padding: 0px 15px;
  }
}
@media (max-width: 991px) {
  .headernew__bottom {
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.headernew__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFA621;
  border-radius: 15px;
  padding: 0px 30px;
  margin-left: 100px;
  color: #004379;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 1500px) {
  .headernew__button {
    margin-left: 25px;
  }
}
@media (max-width: 1200px) {
  .headernew__button {
    font-size: 14px;
    padding: 0px 15px;
  }
}
@media (max-width: 991px) {
  .headernew__button {
    font-size: 18px;
    padding: 12px;
    width: 100%;
    margin: 25px 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .headernew__button {
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  .headernew__button:hover {
    background: #004379;
    color: #FFA621;
  }
}
.headernew__button:focus {
  outline: none;
  background: #004379;
  color: #FFA621;
}
.headernew__megamenu-items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(94, 174, 191);
  background: -webkit-gradient(linear, right top, left top, from(rgb(94, 174, 191)), to(rgb(0, 107, 179)));
  background: linear-gradient(270deg, rgb(94, 174, 191) 0%, rgb(0, 107, 179) 100%);
  border-radius: 15px;
  padding: 12.5px 20px 0;
  list-style: none;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .headernew__megamenu-items {
    padding: 10px 0 0;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.headernew__megamenu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headernew__megamenu-item:last-of-type .headernew__megamenu-element:after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__megamenu-item {
    -webkit-transition: 200ms;
    transition: 200ms;
  }
  .headernew__megamenu-item:hover .headernew__megamenu-element::before {
    opacity: 1;
  }
  .headernew__megamenu-item:hover .headernew__megamenu-categories {
    opacity: 1;
    height: auto;
    padding: 40px 50px 0;
    padding-bottom: 0;
    margin: 0px 20px;
    visibility: visible;
  }
}
@media (hover: hover) and (pointer: fine) and (max-width: 1200px) {
  .headernew__megamenu-item:hover .headernew__megamenu-categories {
    padding: 20px 15px;
    margin: 0;
  }
}
.headernew__megamenu-item:focus {
  outline: none;
}
.headernew__megamenu-item:focus .headernew__megamenu-element::before {
  opacity: 1;
}
.headernew__megamenu-item:focus .headernew__megamenu-categories {
  opacity: 1;
  height: auto;
  padding: 40px 50px 0;
  padding-bottom: 0;
  margin: 0px 20px;
  visibility: visible;
}
@media (max-width: 1200px) {
  .headernew__megamenu-item:focus .headernew__megamenu-categories {
    padding: 20px 15px;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-item {
    display: block;
    width: 100%;
  }
}
.headernew__megamenu-element {
  position: relative;
  padding: 12.5px 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__megamenu-element {
    padding: 12.5px 23px 25px;
  }
}
.headernew__megamenu-element::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 2px);
  bottom: -2px;
  left: 0;
  background-color: #004379;
  border-radius: 15px 15px 0px 0px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.headernew__megamenu-element:after {
  content: "";
  height: calc(100% - 12px);
  width: 1px;
  background: white;
  display: block;
  position: absolute;
  top: 0;
  bottom: 12px;
  margin: auto;
  right: 0;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.headernew__megamenu-element.open::before {
  opacity: 1;
}
@media (max-width: 991px) {
  .headernew__megamenu-element {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.headernew__megamenu-header {
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  margin-right: 10px;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__megamenu-header {
    margin-right: 0;
  }
}
.headernew__megamenu-header span {
  color: #FFFFFF;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 1200px) {
  .headernew__megamenu-header span {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-header span {
    font-size: 18px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.headernew__megamenu .arrownew {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0 5px;
  width: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12px;
          flex: 0 0 12px;
  height: 12px;
  position: relative;
  top: -3px;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .headernew__megamenu .arrownew {
    display: none;
  }
}
.headernew__megamenu .arrownew.active {
  top: 5px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.headernew__megamenu-categories {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #004379;
  margin: 0px 20px;
  -webkit-box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.2);
  padding: 0 50px;
  border-radius: 0px 0px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  overflow-y: scroll;
  visibility: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 1200px) {
  .headernew__megamenu-categories {
    padding: 20px 15px;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-categories {
    visibility: visible;
    position: relative;
    top: 0;
    width: 100%;
    padding: 0px;
  }
}
.headernew__megamenu-categories::-webkit-scrollbar {
  width: 8px;
  border-radius: 15px;
}
.headernew__megamenu-categories::-webkit-scrollbar-track {
  background: #004379;
  border-radius: 15px;
}
.headernew__megamenu-categories::-webkit-scrollbar-thumb {
  background: #5eaebf;
  border-radius: 15px;
}
.headernew__megamenu-categories::-webkit-scrollbar-thumb:hover {
  background: #2FC7E6;
  border-radius: 15px;
}
.headernew__megamenu-categories.open {
  opacity: 1;
  height: auto;
  padding: 40px 50px;
  padding-bottom: 0;
  margin: 0px 20px;
  visibility: visible;
}
@media (max-width: 1200px) {
  .headernew__megamenu-categories.open {
    padding: 20px 15px;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-categories.open {
    padding: 0px 15px;
    margin: 0;
  }
  .headernew__megamenu-categories.open a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.headernew__megamenu-categories-item {
  width: 17%;
  margin-bottom: 40px;
  margin-right: 2%;
}
@media (max-width: 991px) {
  .headernew__megamenu-categories-item {
    width: 100%;
    margin-bottom: 25px;
    margin-right: 0;
  }
}
.headernew__megamenu-categories-header {
  font-size: 16px;
  font-weight: 700;
  color: #DFF1FD;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .headernew__megamenu-categories-header {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-categories-header {
    margin-bottom: 10px;
    font-size: 16px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.headernew__megamenu-submenus {
  list-style: none;
}
.headernew__megamenu-submenu {
  margin-bottom: 12px;
}
.headernew__megamenu-submenu.list .headernew__megamenu-submenu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.headernew__megamenu-submenu.nolist a {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .headernew__megamenu-submenu.nolist a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-submenu.nolist a {
    font-size: 16px;
  }
}
.headernew__megamenu-submenu.nolist a:hover {
  color: #2FC7E6;
}
.headernew__megamenu-submenu-headerarrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 400;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .headernew__megamenu-submenu-headerarrow {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-submenu-headerarrow {
    font-size: 16px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.headernew__megamenu-submenu-headerarrow::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  background-size: contain;
  background-position: center;
  background-image: url(../images/chevron.svg);
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  min-width: 12px;
}
@media (max-width: 991px) {
  .headernew__megamenu-submenu-headerarrow::after {
    margin-left: 20px;
    margin-right: -20px;
  }
}
.headernew__megamenu-submenu-container.open .headernew__megamenu-submenu-headerarrow {
  text-decoration: underline;
  font-weight: 700;
}
.headernew__megamenu-submenu-container.open .headernew__megamenu-submenu-headerarrow::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.headernew__megamenu-submenu-container.open ul {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-bottom: 25px;
}
.headernew__megamenu-submenu ul {
  list-style: none;
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headernew__megamenu-submenu ul li {
  margin-top: 8px;
}
.headernew__megamenu-submenu ul li:first-child {
  margin-top: 12px;
}
.headernew__megamenu-submenu ul li a {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .headernew__megamenu-submenu ul li a {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .headernew__megamenu-submenu ul li a {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.headernew__megamenu-submenu ul li a:hover {
  color: #2FC7E6;
}
.headernew__ham {
  display: none;
}
@media (max-width: 991px) {
  .headernew__ham {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 40px;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 3;
    overflow: hidden;
  }
  .headernew__ham-menubtn {
    width: 20px;
    height: 2px;
    background-color: #004379;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .headernew__ham-menubtn::before, .headernew__ham-menubtn::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #004379;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .headernew__ham-menubtn::before {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  .headernew__ham-menubtn::after {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  .headernew__ham p {
    font-size: 12px;
    color: #004379;
    position: relative;
    top: 10px;
    font-weight: 600;
    -webkit-transform: 0.4s;
            transform: 0.4s;
    position: relative;
    left: -1px;
  }
  .headernew__ham.open .headernew__ham-menubtn {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .headernew__ham.open .headernew__ham-menubtn::before {
    -webkit-transform: rotate(45deg) translate(35px, -35px);
            transform: rotate(45deg) translate(35px, -35px);
    width: 20px;
    background: #2FC7E6;
  }
  .headernew__ham.open .headernew__ham-menubtn::after {
    -webkit-transform: rotate(-45deg) translate(35px, 35px);
            transform: rotate(-45deg) translate(35px, 35px);
    width: 20px;
    background-color: #2FC7E6;
  }
  .headernew__ham.open p {
    color: #2FC7E6;
  }
}
.headernew__rightside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
@media (max-width: 991px) {
  .headernew__rightside {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background: white;
    top: 64px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    height: calc(var(--vh, 1vh) * 100 - 50px);
    overflow-y: scroll;
  }
  .headernew__rightside.open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.headernew__form {
  position: fixed;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.788);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headernew__form.open {
  opacity: 1;
  visibility: visible;
}
.headernew__form-text {
  text-align: center;
  margin-bottom: 24px;
}
.headernew__form-container {
  max-width: 564px;
  background-color: #006BB3;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow-y: scroll;
  max-height: 96vh;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.headernew__form-container::-webkit-scrollbar {
  width: 0;
}
.headernew__form-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.headernew__form-container::-webkit-scrollbar-thumb {
  background: #888;
}
.headernew__form-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (max-width: 767px) {
  .headernew__form-container {
    padding: 24px;
    border-radius: 20px;
    margin: 0px 10px;
  }
}
.headernew__form-container h1 {
  color: #004379;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Maven Pro", sans-serif;
}
@media (max-width: 991px) {
  .headernew__form-container h1 {
    font-size: 32px;
  }
}
.headernew__form-container h2 {
  color: #004379;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Maven Pro", sans-serif;
}
@media (max-width: 991px) {
  .headernew__form-container h2 {
    font-size: 28px;
  }
}
.headernew__form-container h3 {
  color: #004379;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Maven Pro", sans-serif;
}
@media (max-width: 991px) {
  .headernew__form-container h3 {
    font-size: 24px;
  }
}
.headernew__form-container h4 {
  color: #004379;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Maven Pro", sans-serif;
}
@media (max-width: 991px) {
  .headernew__form-container h4 {
    font-size: 20px;
  }
}
.headernew__form-container h5 {
  color: #004379;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "Maven Pro", sans-serif;
}
@media (max-width: 991px) {
  .headernew__form-container h5 {
    font-size: 18px;
  }
}
.headernew__form-container h6 {
  color: #004379;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Maven Pro", sans-serif;
}
@media (max-width: 991px) {
  .headernew__form-container h6 {
    font-size: 16px;
  }
}
.headernew__form-container p {
  font-size: 16px;
  font-weight: 500;
  color: #131414;
  line-height: 24px;
}
.headernew__form-container h1,
.headernew__form-container h2,
.headernew__form-container h3,
.headernew__form-container h4,
.headernew__form-container h5,
.headernew__form-container h6,
.headernew__form-container p,
.headernew__form-container li {
  color: white;
}
.headernew__form-container .wpcf7 {
  width: 100%;
  max-width: 564px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}
.headernew__form-container .wpcf7 .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.headernew__form-container .wpcf7 .wpcf7-form.submitting {
  opacity: 0.5;
}
.headernew__form-container .wpcf7 .wpcf7-form.submitting::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
.headernew__form-container .wpcf7 .wpcf7-form.submitting::before {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 7px solid white;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  top: 40%;
  border-top: 6px solid #5EAEBF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  z-index: 4;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element {
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  margin-bottom: 15px;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element .required {
  color: #FF0303;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input,
.headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea {
  color: white;
  font-family: "Roboto", sans-serif;
  padding: 8px 10px;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #ECECEC;
  outline: none;
  background: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .headernew__form-container .wpcf7 .wpcf7-form label.form-element input,
  .headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea {
    font-size: 14px;
  }
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input::-webkit-input-placeholder, .headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #ACACAC;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input::-moz-placeholder, .headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea::-moz-placeholder {
  opacity: 1;
  color: #ACACAC;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input:-ms-input-placeholder, .headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea:-ms-input-placeholder {
  opacity: 1;
  color: #ACACAC;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input::-ms-input-placeholder, .headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea::-ms-input-placeholder {
  opacity: 1;
  color: #ACACAC;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input::placeholder,
.headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea::placeholder {
  opacity: 1;
  color: #ACACAC;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input:focus,
.headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea:focus {
  border: 1px solid #5EAEBF;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element input.wpcf7-not-valid,
.headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea.wpcf7-not-valid {
  border: 1px solid #E40000;
}
.headernew__form-container .wpcf7 .wpcf7-form label.form-element textarea {
  height: 160px;
}
.headernew__form-container .wpcf7 .submit-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.headernew__form-container .wpcf7 .submit-container .wpcf7-spinner {
  display: none !important;
}
.headernew__form-container .wpcf7 .submit-container input {
  cursor: pointer;
  background-color: white;
  text-decoration: none;
  padding: 10px 75px;
  font-size: 16px;
  text-transform: uppercase;
  color: #004379;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: "Roboto", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  outline: 0;
  border-radius: 10px;
  max-width: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .headernew__form-container .wpcf7 .submit-container input {
    padding: 10px 60px;
    font-size: 16px;
  }
}
.headernew__form-container .wpcf7 .submit-container input:hover {
  background-color: #3A9BE9;
  color: white;
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-left: 0;
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Customize the label (the container) */
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 12px;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
}
@media (max-width: 991px) {
  .headernew__form-container .wpcf7 .wpcf7-form-control-wrap label {
    padding-left: 35px;
  }
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 2px;
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap label::after {
  content: "";
  position: absolute;
  left: 7px;
  opacity: 0;
  top: 4px;
  width: 4px;
  height: 8px;
  border: solid #FFA621;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .headernew__form-container .wpcf7 .wpcf7-form-control-wrap label::after {
    left: 7px;
    top: 4px;
    width: 4px;
    height: 9px;
  }
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap label.checked {
  /* Show the checkmark when checked */
}
.headernew__form-container .wpcf7 .wpcf7-form-control-wrap label.checked::after {
  opacity: 1;
}
.headernew__form-container .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: normal;
  display: block;
  margin-top: 4px;
}
.headernew__form-container .wpcf7 form .wpcf7-response-output,
.headernew__form-container .wpcf7 form.unaccepted .wpcf7-response-output,
.headernew__form-container .wpcf7 form.payment-required .wpcf7-response-output {
  border: 0 !important;
  font-size: 14px;
  color: white;
  text-align: center;
  width: 100%;
}
.headernew__form-cancel {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.headernew__form-cancel::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 2px;
  height: 25px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  left: 50%;
  top: 50%;
}
.headernew__form-cancel::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 2px;
  height: 25px;
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
  left: 50%;
  top: 50%;
}/*# sourceMappingURL=headernew.css.map */</pre></body></html>