/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Avenir Next";
  src: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/raw_assets/public/Axess%20Official/assets/font/Avenir-Next/Avenir-Regular.woff2") format("woff2");
    font-weight: 400;
    }
@font-face {
  font-family: "Avenir Next";
  src: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/raw_assets/public/Axess%20Official/assets/font/Avenir-Next/Avenir-Semi.woff2") format("woff2");
    font-weight: 600;
    }
@font-face {
  font-family: "Avenir Next";
  src: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/raw_assets/public/Axess%20Official/assets/font/Avenir-Next/Avenir-Bold.woff2") format("woff2");
    font-weight: 800;
    }
header {
  border-bottom: 4px solid #ff8034;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header .navbar .logo-holder {
  width: 191px;
}
@media screen and (max-width: 1200px) {
  header .navbar .logo-holder {
    width: 133px;
  }
}
header .navbar .logo-holder img {
  width: 100%;
  object-fit: contain;
}
header .navbar .nav-links {
  display: flex;
  align-items: center;
  margin: 0;
  height: 70px;
}
@media screen and (max-width: 1024px) {
  header .navbar .nav-links {
    position: absolute;
    left: 0;
    top: 70px;
    z-index: 9;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    max-height: 0;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    border-bottom: 4px solid #ff8034;
  }
  header .navbar .nav-links.active {
    visibility: visible;
    max-height: 1000px;
    height: fit-content;
    opacity: 1;
    transition: all 0.3s ease;
  }
}
header .navbar .nav-links .nav-item {
  border-left: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  font-weight: 400;
  color: #484848;
  height: 100%;
  font-size:15px;
}
@media screen and (max-width: 1024px) {
  header .navbar .nav-links .nav-item {
    border-left: none;
    border-top: 1px solid #ededed;
    width: 100%;
    padding: 0px;
    min-height: 55px;
    display: inline-table;
  }
}
header .navbar .nav-links .nav-item:hover {
  background-color: #f7f7f7;
}
header .navbar .nav-links .nav-item a {
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #4b4b4b;
  padding: 16px;
}
header .toggle {
  width: 28px;
  height: 20px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  header .toggle {
    display: flex;
  }
}
header .toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #484848;
}
header .toggle.active {
  transform: rotate(180deg);
}
header .toggle.active span {
  background-color: #ff8034;
}
header .lang {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .lang img {
  margin-left: 7px;
}
header .icon i {
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  margin-left: 5px;
}
header .icon i.active {
  transform: rotate(180deg);
  transform-origin: center;
}
header .lang-list {
  position: absolute;
  background-color: #ff8034;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  header .lang-list {
    position: unset;
  }
}
header .lang-list.active {
  max-height: 77px;
  visibility: visible;
}
@media screen and (max-width: 992px) {
  header .lang-list.active {
    max-height: 1000px;
    flex-direction: column;
  }
}
header .lang-list a {
  display: block;
  padding: 27px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  header .lang-list a {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  header .lang-list a {
    border: 0;
    padding: 16px;
    font-weight: 600;
  }
}
header .lang-list a:hover {
  background-color: #f57d34;
}
@media screen and (max-width: 1024px) {
  header .lang-list {
    top: 0;
  }
}

footer {
  font-size: 13.6px;
  background-color: #484848;
  padding: 32px 0;
}
@media screen and (max-width: 992px) {
  footer {
    padding: 0;
  }
}
@media screen and (max-width: 992px) {
  footer .footer-container {
    padding: 0;
  }
}
footer ul {
  margin: 0;
  position: relative;
}
@media screen and (max-width: 992px) {
  footer ul {
    padding: 32px;
  }
  footer ul:nth-child(1) {
    background-color: #4b4b4b;
  }
}
/* @media screen and (max-width: 992px) {
footer ul.bussines-areas {
display: none;
}
} */
footer ul li {
  margin-bottom: 5px;
}
footer ul li a {
  transition: color 0.2s;
}
footer ul li a:hover {
  color: #dad8d6;
}
footer ul li.title {
  color: #ff8034;
  font-weight: 600;
  margin-bottom: 10px;
}
footer .flex-row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  footer .flex-row {
    flex-direction: column;
  }
}
footer .flex-col {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  footer .flex-col {
    flex-direction: column;
    gap: 0;
  }
}
footer i {
  color: #dad8d6;
  margin-right: 8px;
  display: inline-block;
}
footer .socials {
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  footer .socials {
    margin-top: 32px;
    text-align: center;
  }
}
footer .socials span {
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 992px) {
  footer .socials span {
    display: inline-block;
    margin-right: 10px;
  }
}
footer .socials i {
  color: #858585;
  transition: color 0.2s;
  font-size: 18px;
}
footer .socials i:hover {
  color: #ff8034;
}
@media screen and (max-width: 992px) {
  footer .socials .social-links {
    display: inline-block;
  }
}

.bottom-footer {
  background-color: #ff8034;
  padding: 0;
  color: #fff;
  font-size:13px;
}
.bottom-footer .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
@media screen and (max-width: 1140px) {
  .bottom-footer .flex {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 10px;
  }
}
.bottom-footer ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  .bottom-footer ul {
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.bottom-footer ul li {
  height: 100%;
}
.bottom-footer ul a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: all 0.2s;
}
.bottom-footer ul a:hover {
  background-color: #f57d34;
}

.container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.content-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1310px) {
  .p-1 {
    padding: 0 16px;
  }
}

body {
  font-family: "Avenir Next", sans-serif;
  font-weight: 400;
  color: #858585;
}

h1 {
  font-size: 35px;
  color: #ff8034;
  line-height: 1.1;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 26.25px;
    font-weight: 600;
  }
}

h2 {
  font-size: 24px;
  color: #ff8034;
  line-height: 1.3;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 18px;
    font-weight: 600;
  }
}

p {
  margin: 16px 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ff8034;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 3px solid #ff8034;
  width: 240px;
  height: 50px;
  text-align: center;
}
.btn:hover {
  background-color: #ff8034;
  color: #fff;
}

a {
  text-decoration: none;
  color: #ff8034;
}

.main-slider .swiper-slide {
  height: 600px;
}
@media screen and (max-width: 1024px) {
  .main-slider .swiper-slide {
    height: unset;
  }
}

.main-slider .swiper-slide .img-holder {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .main-slider .swiper-slide .img-holder {
    height: unset;
  }
}

@media screen and (max-width: 600px) {
  .main-slider .swiper-slide .img-holder {
    height: 273px;
  }
}

.main-slider .swiper-slide .img-holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main-slider .swiper-slide .info-box {
  position: absolute;
  bottom: 0;
  height: 300px;
  background-color: #484848;
  padding: 16px 48px 16px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 533px;
}
@media screen and (max-width: 1024px) {
  .main-slider .swiper-slide .info-box {
    position: unset;
    width: 100%;
    height: 200px;
    justify-content: flex-start;
    padding: 16px;
  }
}
.main-slider .swiper-slide .info-box h2 {
  color: white;
  margin: 16px 0;
  font-weight: 600;
}
.main-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  opacity: 1;
  border: 2px solid #fff;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .main-slider .swiper-pagination-bullet {
    border: 2px solid #fff;
  }
}
.main-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff8034;
  border: 0;
}

.v-slider {
  height: 300px;
  background-color: #ededed;
}
@media screen and (max-width: 1024px) {
  .v-slider {
    height: auto;
  }
}
.v-slider .slide-content {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .v-slider .slide-content {
    display: block;
  }
}
.v-slider .slide-content .v-img {
  flex: 0 0 533px;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .v-slider .slide-content .v-img {
    height: 300px;
    width: 100%;
  }
  .v-slider .slide-content .v-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.v-slider .slide-content .box {
  padding: 38px 64px 0 60px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .v-slider .slide-content .box {
    height: auto;
    padding: 16px;
  }
}
.v-slider .slide-content small {
  margin: 16px 0;
  display: block;
}
.v-slider .slide-content p {
  margin: 16px 0;
}
.v-slider .swiper-pagination {
  right: 30px;
}
.v-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  opacity: 1;
  border: 2px solid #484848;
  background-color: transparent;
}
.v-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff8034;
  border: 0;
}
.v-slider .v-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 2.2em;
  height: 2.2em;
}
@media screen and (max-width: 992px) {
  .v-slider .v-icon {
    display: none;
  }
}

.meet-greet {
  /*   height: 354px; */
  background-color: #ededed;
  display: flex;
  position: relative;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .meet-greet {
    display: block;
    height: auto;
    padding: 0 16px;
  }
}
.meet-greet .title {
  /*   height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 48px 16px 60px;
  flex: 0 0 533px;
}
@media screen and (max-width: 1024px) {
  .meet-greet .title {
    flex: 1;
    justify-content: flex-start;
    padding: 16px 0px;
  }
}
.meet-greet .title h2 {
  color: #484848;
  margin: 16px 0;
  font-weight: 800;
}
.meet-greet .dates {
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .meet-greet .dates .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    height: auto;
  }
  .meet-greet .dates .swiper-wrapper .swiper-slide {
    flex: 0 0 50%;
    height: max-content;
  }
}
.meet-greet .dates .date-holder {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  align-items: center;
  color: #fff;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  background-color: #ff8034;
  height: 143px;
}

.meet-greet .dates .date-holder img{
  width:40px  
}
@media screen and (max-width: 1024px) {
  .meet-greet .dates .date-holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 220px;
  }
}
.date-location {
  text-align: right;
}
.meet-greet .dates .date-holder .date {
  color: #484848;
  margin-right: 16px;
}
.meet-greet .dates .date-holder .date h2 {
  color: #484848;
}
.meet-greet .dates .date-holder .date p {
  margin: 0;
}
.meet-greet .dates .item h2 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.meet-greet .dates .item span {
  font-weight: 400;
}
.meet-greet .dates .item i {
  margin-right: 8px;
}
.meet-greet .dates .more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background-color: #ff8034;
  height: 70px;
  flex: 0 0 100%;
}
@media screen and (max-width: 992px) {
  .meet-greet .dates .more {
    display: none;
  }
}
.meet-greet .dates .more a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.meet-greet .calendar {
  position: absolute;
  right: 16px;
  top: 16px;
}
.meet-greet .swiper-pagination {
  bottom: -35px;
}
.meet-greet .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  opacity: 1;
  border: 2px solid #484848;
  background-color: transparent;
  bottom: -35px;
}
.meet-greet .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff8034;
  border: 0;
}

.more-dates {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: #ededed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.more-dates.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.more-dates .title {
  display: block;
  flex: 0 0 50%;
}
@media screen and (max-width: 992px) {
  .more-dates .title {
    display: none;
  }
}
.more-dates .dates {
  flex: 0 0 50%;
  width: 50%;
  height: 100vh;
  background-color: #ff8034;
  overflow: auto;
}
@media screen and (max-width: 992px) {
  .more-dates .dates {
    flex: 0 0 100%;
    width: 100%;
  }
}
.more-dates .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  color: #fff;
  background-color: #ededed;
  cursor: pointer;
  transition: all 0.3s ease;
}
.more-dates .close:hover {
  background-color: #ff8034;
}
.more-dates .close_news img {
  margin-left: 15px;
}
.more-dates .date-holder {
  justify-content: space-between;
}
/* @media screen and (max-width: 992px) {
.more-dates .date-holder {
flex-direction: row !important;
height: unset !important;
align-items: center !important;
}
} */
.more-dates i {
  margin-right: 12px;
}

.business-areas {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .business-areas {
    padding: 0 15px;
  }
}
.business-areas .title {
  max-width: 746px;
  width: 100%;
  margin: 70px auto;
}
.business-areas .title h1 {
  color: #484848;
  margin: 16px 0;
}
.business-areas .areas {
  display: flex;
  flex-wrap: wrap;
}
.business-areas .areas .area {
  flex: 0 0 33.333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dad8d6;
  margin-top: -1px;
  margin-right: -1px;
  padding: 60px;
}
@media screen and (max-width: 1024px) {
  .business-areas .areas .area {
    flex: 0 50%;
    padding: 30px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .business-areas .areas .area {
    flex: 0 100%;
  }
}
.business-areas .areas .area img {
  width: 85px;
  height: 85px;
  margin-right: 32px;
}

.ticket-slider {
  display: flex;
  gap: 50px;
  margin-bottom: 90px;
}
@media screen and (max-width: 992px) {
  .ticket-slider {
    flex-direction: column;
  }
}
.ticket-slider .info {
  flex: 0 0 46%;
  width: 49%;
}
@media screen and (max-width: 992px) {
  .ticket-slider .info {
    flex: 0 0 100%;
    width: 100%;
  }
  .slider-holder {
    flex: 0 0 100%;
    width: 100%;
  }
}
.ticket-slider .info h1 {
  color: #484848;
}
.ticket-slider .slider-holder 
width: 50%;
}
@media screen and (max-width: 992px) {
  .ticket-slider .slider-holder {
    width: 100%;
  }
}
.ticket-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  opacity: 1;
  border: 2px solid #484848;
  background-color: transparent;
}
.ticket-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff8034;
  border: 0;
}
@media screen and (max-width: 992px) {
  .ticket-slider .btn {
    width: 100%;
  }
}

.designa {
  background-color: #0064dc;
}
.designa img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.designa .mob {
  display: none;
}
@media screen and (max-width: 600px) {
  .designa .mob {
    display: block;
  }
}
.designa .desktop {
  display: block;
}
@media screen and (max-width: 600px) {
  .designa .desktop {
    display: none;
  }
}

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


/* single press */
.single-news-container {
  max-width: 853px;
  position: relative;
}
.single-news-container .news-img {
  margin: 30px 0 50px;
  width: 100%;
}


.press-container {
  display: flex;
  flex-wrap: wrap;
  margin: 50px auto;
  gap: 50px;
}
.press-container .press-text {
  flex: 0 0 60%;
}
@media screen and (max-width: 992px) {
  .press-container .press-text {
    flex: 0 0 100%;
  }
}
.press-container .press-text p {
  margin-bottom: 24px;
}
.press-container .press-text p strong {
  font-weight: 600;
}
.press-container .press-text .date {
  font-weight: 600;
  color: #484848;
  margin-bottom: 24px;
}
.press-container .press-text h1 {
  margin: 0 0 16px;
}
.press-container .press-text h2 {
  color: #484848;
  font-weight: 600;
}
.press-container .press-text.single-news {
  flex: 0 0 100%;
}
.press-container .contact-feed-container {
  position: relative;
  flex: 0 0 30%;
  width: 30%;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .press-container .contact-feed-container {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
  }
}
.press-container .contact-feed-container .box {
  background-color: #ededed;
  padding: 30px;
  margin-bottom: 15px;
  color: #484848;
}
.press-container .contact-feed-container .box h4 {
  color: #ff8034;
}
.press-container .contact-feed-container .box h5 {
  margin-top: 0;
  margin-bottom: 16px;
}
.press-container .contact-feed-container .box.rss {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.press-container .contact-feed-container .box.rss h4 {
  color: #484848;
}
.press-container .contact-feed-container .box.rss p {
  margin: 0;
}
.press-container .contact-feed-container .box.rss i {
  width: 40px;
  height: 40px;
  background-color: #ff8034;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 5px;
}

.hidden {
  visibility: hidden;
  width: 0px !important;
  height: 0px !important;
  margin: 0px !important;
  padding: 0px !important;
}


.btn-holder-load {
  margin: 50px auto;
  text-align: center;
}
.btn-holder-load button {
  margin: 0 auto;
}

/*# sourceMappingURL=news.css.map */
.sticky {
  position: absolute;
  right: -10%;
  top: 0;
}
@media screen and (max-width: 1080px) {
  .sticky {
    position: unset;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.sticky .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #484848;
  border: 2px solid #484848;
  border-radius: 50%;
  margin-top: 10px;
}
@media screen and (max-width: 1080px) {
  .sticky .social {
    margin-top: 0;
  }
}
.sticky .social i {
  transition: 0.2s ease-in-out;
}
.sticky .social:hover i {
  color: #ff8034;
}
.sticky p {
  color: #484848;
  font-weight: 600;
}

.top-bar {
  padding: 24px 0;
  background-color: #ff8034;
}
.top-bar .flex-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .flex-bar {
    width: 100%;
  }
  .back {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.top-bar .flex-bar .back {
  display: flex;
  gap: 8px;
  align-items: center;
}
.top-bar .flex-bar .navigation {
  display: flex;
  gap: 8px;
  align-items: center;
}
.top-bar img {
  object-fit: contain;
}
.top-bar.business-areas-bar {
  padding: 0;
  min-height: 77px;
  display: flex;
  align-items: center;
  position: relative;
}

.single-news-container-footer {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 0;
}
@media screen and (max-width: 992px) {
  .single-news-container-footer {
    flex-wrap: wrap;
  }
}
.single-news-container-footer .box {
  min-height: 540px;
}
@media (min-width: 993px) and (max-width: 1600px) {
  .single-news-container-footer .box:last-child {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .single-news-container-footer .box {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .single-news-container-footer .box {
    width: 100%;
    min-height: auto;
  }
}
.single-news-container-footer .news {
  height: 100%;
}
.single-news-container-footer .news-box {
  height: auto;
  position: relative;
}
.single-news-container-footer .news-box .arrow-angle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
}


.field.hs-form-field {
  position: relative;
  margin-bottom: 22px;
}


textarea{
  border: 1px solid #858585;
  height: 100px;
  padding: 8px;
  -moz-border-radius: 0;
  border-radius: 0;
  webkit-transition: all .15s;
  -moz-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
  outline: 0;
  width: 100% !important;
  font-weight: 400;
}

input[type=text],[type=email],[type=tel] {
  width: 100% !important;
  border: 0;  
  border-bottom: 1px solid #858585;
  font-size: 16px;
  color: #858585;
  transition: all 0.3s ease;
}

select {
  width: 100% !important;
  border: 0;  
  border-bottom: 1px solid #858585;
  font-size: 16px;
  color: #858585;
  transition: all 0.3s ease;
  padding: 20px 0px;
}

input::before, input::after {
  box-sizing: border-box;
  outline: none;
}

input:focus-visible {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow:none;

}

select:focus-visible{
  outline: none;
}

select:focus{
  outline: none;
}

input:focus {
  outline: none;
  border-bottom: 1px solid #ff8034;
  box-shadow:none;
}

input.hs-button.primary.large {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ff8034;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 3px solid #ff8034;
  height: 50px;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

input.hs-button.primary.large:hover {
  background-color: #ff8034;
  color: #fff;
}

.hs-form fieldset {
  max-width: 100% !important;
}

.hs-form input {
  margin-right: 0px !important;
}

@media screen and (min-width: 1024px){
  .new-navbar {
    flex-wrap: wrap !important;
    min-height: 70px !important;
    height: 100% !important;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto
  }

  .new-navbar .logo-holder {
    /*     flex: 0 0 38% !important; */
    /*     width: 100% !important; */
    padding: 20px 0px !important;
    /* margin-left: 28%; */
    /*     text-align: right !important; */
  }

  .new-navbar .logo-holder img {
    width: 191px !important;
    /*     margin-left: auto !important; */
  }

  .new-navbar .nav-links {
    width: 100% !important;
    border-top: 1px solid #ededed !important;
    flex: 0 0 100% !important;
    /*     justify-content: center !important; */
    position: relative;
  }
  .new-navbar .nav-links::before {
    content: "";
    height: 1px;
    left: -25%;
    position: absolute;
    top: -1px;
    width: 150%;
    border-top: 1px solid #ededed;
  }
  .new-navbar .nav-links .nav-item {
    white-space: nowrap;
    width: 100%;
  }
  .new-navbar .nav-links .nav-item:last-child {
    border-right: 1px solid #ededed;
  }
}



.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 80%;
  text-align: center;
  margin: auto;
}

.overlay input[type="text"] {
  padding: 15px;
  font-size: 20px;
  border: none;
  width: 80%;
  background: white;
}

.closebtn {
  color: #a19e9e;
  font-size: 60px;
  position: absolute;
  right: 14px;
  top: -90px;
}

#search-results {
  color: white;
  margin-top: 20px;
}

.search-result {
  margin: 10px 0;
}

.search-result h2 {
  margin: 0;
  font-size: 24px;
}

.search-result p {
  margin: 5px 0;
  font-size: 16px;
}

.search-result a {
  color: #1e90ff;
  text-decoration: none;
}

.hs-search-field {
  margin: 100px;
}
.hs-search-field__bar input[type=text], [type=email], [type=tel]{
  padding: 15px;
}


/* base fill & stroke of cards icon */
.icon.cards {
align-items: center;
display: flex;
/* flex: 6; */
}
@media (max-width:1025px) {
  .nav-links .cards-item > a::after {
    display: none !important;
  }
}

        .cards .cls-1 {
          fill: #858585;
          transition: fill 0.3s ease-in-out;
        }
        .cards .cls-2 {
          fill: none;
          stroke: #858585;
          stroke-miterlimit: 10;
          stroke-width: 11px;
          transition: stroke 0.3s ease-in-out;
        }

        /* hover color */
        .cards:hover .cls-1 { fill: #ff8034; }
        .cards:hover .cls-2 { stroke: #ff8034; }

        /* wrapper pivot point */
        .cards .cards-shape {
          transform-box: fill-box;
          transform-origin: center center;
        }

        /* bounce keyframes */
        @keyframes cards {
          0%,100% { transform: translateY(0); }
          50%     { transform: translateY(20px); }
        }

        /* only animate the .cards-shape group */
        .cards:hover .cards-shape {
          animation: cards 1.2s ease-in-out infinite;
        }


li.has-submenu:has(> a .icon.cards) > ul.sub-menu,
li.has-submenu:has(> a .icon.cards) > a .arrow {
  display: none;
}