body {
  font-family: "Poppins", serif;
  background: var(--black);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

:root {
  --primaryColor: #b3f500;
  --black: #000;
  --white: #fff;
  --offWhite: #f5f5f5;
  --grey: #2c2c2c;
  --offGrey: #232323;
  --lightGrey: #a4a4a4;
  --transition500: all 500ms ease-in-out;
}

h1 {
  font-size: 54px;
  font-weight: 500;
}

h2 {
  font-size: 34px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 20px;
  color: var(--white);
}

p {
  font-size: 16px;
  color: var(--lightGrey);
  margin: 0;
}

ul {
  margin: 0;
}
header img {
  width: 160px;
}

header.top-nav {
  position: absolute;
  width: 100%;
  padding: 20px 0;
  z-index: 9;
}

header.nav-normal {
  padding: 25px 0 0 0;
}

.menu-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: 0;
  border: none;
}
.menu-icon .bar {
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.show .menu-icon .bar-1 {
  transform: rotate(45deg) translate(6px, -9px);
}

.show .menu-icon .bar-2 {
  opacity: 0;
}

.show .menu-icon .bar-3 {
  transform: rotate(-45deg) translate(-15px, 0px);
}
.banner {
  position: relative;
  overflow: hidden;
  /* pick a height that fits your design */
  min-height: 100vh;
  display: flex;          /* enable flexbox */
  align-items: center;    /* vertical centering */
  justify-content: center;/* horizontal centering */
  text-align: center;     /* center text inside */
}
.banner .video-background {
  position: absolute;
  inset: 0;         /* top:0; right:0; bottom:0; left:0 */
  z-index: 0;
  pointer-events: none;  /* make it non-interactive */
}
.banner .video-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;   /* key: fills area without black bars */
}


/* Black gradient overlay */
.banner .video-background::after {
  content: "";
  position: absolute;
  inset: 0; /* cover the full video block */
  background: rgba(0, 0, 0, 0.45); /* solid semi-transparent black */
  z-index: 1;
  pointer-events: none;
}
.navbar-toggler{
  border: none;
}

.banner .container {
  position: relative;
  z-index: 2; /* Above video and overlay */
  color: white;
  max-width: 900px;
}

.container {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

.btn-primary {
  text-decoration: none;
  background: var(--primaryColor);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 16px;
  color: var(--black);
  transition: var(--transition500);
  font-weight: 500;
  line-height: 1.3em;
}

ul li {
  list-style: none;
}
a {
  text-decoration: none;
}

.navbar-nav li a {
  color: var(--white);
  font-size: 16px;
}

header .navbar .navbar-nav li {
  padding: 0 22px;
}

header .navbar-nav {
  padding: 22px 44px;
  border-bottom: 1px solid var(--white);
  margin: 0 24px;
}

header .navbar .navbar-nav li a {
  position: relative;
  transition: var(--transition500);
  padding: 0 !important;
}

header .navbar .navbar-nav li a::before {
  content: "";
  width: 0;
  height: 2px;
  right: 0;
  margin: auto;
  left: 0;
  background: var(--primaryColor);
  position: absolute;
  bottom: -4px;
  transition: var(--transition500);
  transition: all 0.5s;
}

header .navbar .nav-link:hover {
  color: var(--primaryColor);
  transition: var(--transition500);
}

header .navbar .navbar-nav li a:hover::before {
  width: 100%;
}

.banner h1 {
  color: var(--white);
  text-align: center;
  line-height: 1.4em;
  padding-bottom: 10px;
}

.banner p {
  color: var(--white);
  text-align: center;
}

.partner {
  background: var(--black);
  padding: 50px 0;
}
.carousal-partner {
  margin-top: 50px;
}

.partner h2 {
  text-align: center;
}

.carousal-image img {
  margin-top: 20px;
}

.solution,
.services,
.choose-exhibit,
.latest-project,
.testimonial-section {
  padding: 70px 0;
}

.exhibit-img img {
  width: 100%;
}

.hp-box img {
  width: 50px;
}
.solution {
  padding-top: 140px;
}
.exhibit-img {
  background: var(--grey);
  padding: 25px 45px 60px;
  border-radius: 20px;
  position: relative;
}

.hp-box {
  position: absolute;
  width: 280px;
  padding: 25px;
  border-radius: 30px;
  right: 20px;
  bottom: 25px;
  backdrop-filter: blur(10px);
  background-color: rgba(74, 74, 74, 0.4);
}

.hp-box img {
  background: var(--primaryColor);
  padding: 15px;
  margin-bottom: 22px;
  border-radius: 10px;
}
.hp-box p {
  color: var(--white);
  font-weight: 500;
  padding-bottom: 10px;
}
.choose-exhibit .hp-box h2 {
  color: var(--primaryColor);
  padding-bottom: 8px;
  font-weight: 600;
}
.choose-exhibit {
  position: relative;
}
.choose-exhibit::after {
  content: "";
  background: url(../img/exhibit.png) no-repeat;
  bottom: 140px;
  width: 107px;
  height: 400px;
  right: 0;
  position: absolute;
}
.solution p {
  padding: 24px 155px;
}

.right-img {
  background: url(../img/side-img.png) no-repeat #000;
  background-position-y: 27px;
  background-position-x: 102%;
}

.btn-middle {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  transition: var(--transition500);
}

.btn-middle .btn-white:hover {
  background: var(--primaryColor);
  color: var(--black);
}

.service-box p {
  position: relative;
  z-index: 9;
}
.service-box {
  background: var(--grey);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}
.services .col-md-6:first-child .service-box::after {
  position: absolute;
  content: "";
  background: url(../img/one.svg) no-repeat;
  top: -20px;
  width: 96px;
  height: 290px;
  right: 1px;
}
.services .col-md-6:first-child .service-box::before {
  position: absolute;
  content: "";
  background: url(../img/two.svg) no-repeat;
  width: 96px;
  height: 80px;
  left: 1px;
  bottom: 0;
}
.services .col-md-6:nth-child(2) .service-box::before {
  position: absolute;
  content: "";
  background: url(../img/three.svg) no-repeat;
  width: 357px;
  height: 86px;
  right: 37px;
  top: 0;
}
.services .col-md-6:nth-child(2) .service-box::after {
  position: absolute;
  content: "";
  background: url(../img/four.svg) no-repeat;
  bottom: 0;
  width: 296px;
  height: 54px;
  left: 92px;
}

.services .col-md-6:nth-child(3) .service-box::before {
  position: absolute;
  content: "";
  background: url(../img/five.svg) no-repeat;
  width: 272px;
  height: 123px;
  right: 0;
  top: 0;
}
.services .col-md-6:nth-child(3) .service-box::after {
  position: absolute;
  content: "";
  background: url(../img/six.svg) no-repeat;
  bottom: 0;
  width: 243px;
  height: 46px;
  left: 7px;
}
.services .col-md-6:nth-child(4) .service-box::before {
  position: absolute;
  content: "";
  background: url(../img/seven.svg) no-repeat;
  width: 126px;
  height: 225px;
  right: 0;
  top: 0;
}
.services .col-md-6:nth-child(4) .service-box::after {
  position: absolute;
  content: "";
  background: url(../img/eight.svg) no-repeat;
  bottom: 0;
  width: 164px;
  height: 205px;
  left: 0;
}
.btn-right {
  display: flex;
  justify-content: right;
  padding-top: 25px;
  z-index: 9;
  position: relative;
}

.btn-border {
  border: 1px solid var(--primaryColor);
  background: transparent;
  color: var(--primaryColor);
  transition: var(--transition500);
}

.btn-border:hover {
  border: 1px solid var(--white);
  color: var(--white);
}

.service-box img {
  margin-bottom: 25px;
  width: 50px;
}

.service-box h6 {
  padding-bottom: 15px;
}

footer {
  padding: 30px 0 10px;
  background: var(--offGrey);
}

.footer-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-img img {
  width: 200px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 25px;
  flex-wrap: wrap;
}

.footer-mini-text {
  padding: 80px 0 0 0;
}
.footer-mini-img {
  padding-bottom: 15px;
}

.footer-mini-img img {
  padding-right: 10px;
}

.footer-mini-img a:hover {
  color: var(--white);
}
footer h6 {
  padding-bottom: 12px;
  color: var(--offWhite);
  text-transform: uppercase;
  font-weight: 500;
}

footer a {
  color: #97999b;
  transition: var(--transition500);
}

ul {
  padding: 0;
}

footer ul li {
  padding-bottom: 10px;
}

footer ul li a:hover {
  color: var(--offWhite);
}

.mini-text {
  border-top: 1px solid var(--offWhite);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

.mini-text ul {
  display: flex;
}

.mini-text ul li a {
  color: var(--white);
}
.mini-text ul li {
  padding-right: 20px;
}

.block h6 {
  font-size: 18px;
  position: relative;
}

.block h6::before {
  position: absolute;
  content: "";
  background: url(../img/tick.svg) no-repeat;
  width: 35px;
  height: 18px;
  left: -27px;
  top: 2px;
}

.choose-exhibit h5 {
  color: var(--offWhite);
}

.choose-exhibit h2 {
  padding-bottom: 20px;
}

.block {
  padding: 15px 0 15px 30px;
}

.general-padding {
  padding: 70px 0;
}

.project-swiper img {
  width: 100%;
}

.pagination-wrap .swiper-pagination-bullet {
  background: #fff;
}

.latest-project h2 {
  padding-bottom: 10px;
}

.latest-project p,
.testimonial-section h2 {
  padding-bottom: 30px;
  padding-bottom: 30px;
  max-width: 1035px;
  margin: auto;
}

.testimonial-block {
  background: var(--offGrey);
  border-radius: 10px;
  padding: 25px;
}

.rating {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}
.rating-text {
  padding-left: 20px;
}

.testimonial-block span {
  color: #818181;
  padding-bottom: 12px;
  display: block;
}

.rating-images img {
  padding-right: 10px;
}
.testimonial-block p {
  color: var(--white);
}
.about-us-banner {
  position: relative;
}
.general-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 0;
  position: relative;
}

.general-banner::before {
  position: absolute;
  content: "";
  background: url(../img/side-banner.png) no-repeat;
  width: 117px;
  height: 418px;
  right: 0;
  top: 46px;
}
.general-banner h2 {
  padding-bottom: 24px;
}
.about-us-banner::before {
  position: absolute;
  content: "";
  background: url(../img/about-side-img.png) no-repeat;
  width: 160px;
  height: 418px;
  right: 0;
  top: 46px;
}

.our-team {
  position: relative;
  padding-bottom: 140px;
}
.our-team::after {
  position: absolute;
  content: "";
  background: url(../img/about-side-img.png) no-repeat;
  width: 160px;
  height: 386px;
  right: 0;
  bottom: -45px;
}

.general-banner p {
  line-height: 1.7em;
}
.about-us-banner p {
  padding-bottom: 30px;
}
.blog-banner {
  padding: 50px 0;
}

.back a {
  color: var(--white);
  text-decoration: underline;
}

.back a .fa-chevron-left {
  padding-right: 5px;
}

.blog-banner h1,
.blog-banner h2 {
  padding-top: 62px;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.blog-block {
  display: flex;
  align-items: center;
  padding: 22px 0;
  justify-content: space-between;
}

.first-block h6 {
  margin: 0;
  padding-left: 14px;
  font-size: 14px;
  font-weight: 300;
}

.first-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-block a {
  color: var(--lightGrey);
  font-size: 14px;
}

.date-block {
  padding-left: 26px;
}

.date-block a {
  position: relative;
}

/* .date-block a:first-child:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 6px;
  left: 0;
} */

.date-block span {
  color: var(--lightGrey);
  padding: 0 14px;
}

.blog-description h2,
.blog-description p {
  padding-bottom: 24px;
  margin: 0;
}

.blog-description p {
  line-height: 29px;
}

.blog-link ul li a {
  color: var(--white);
  transition: var(--primaryColor);
}
.blog-link ul li a:hover {
  color: var(--primaryColor);
}

.blog-link ul li {
  border-bottom: 1px solid #383838;
  list-style: inside;
  color: var(--white);
  padding: 24px 0;
  position: relative;
}

.col-md-8 .blog-description {
  padding-left: 50px;
}

.blog-link ul li img {
  position: absolute;
  right: 5px;
  top: 32px;
  width: 12px;
}

.blog-description {
  padding-bottom: 60px;
}

.articles .card {
  background: #0000;
  border: inherit;
  border-radius: 20px;
}

.articles .card h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 22px;
}

.articles {
  background: var(--offGrey);
  padding: 35px 0;
  margin: 40px 0 140px;
}

.articles .card {
  background: #2c2c2c;
  margin: 24px 0;
}

.card-body {
  padding: 18px;
}

.articles .blog-block {
  justify-content: space-between;
  padding: 25px 0 0 0;
}

.articles .card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
  margin: 0;
}

.about-us-block {
  background: var(--grey);
  border-radius: 20px;
  margin-bottom: 140px;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}

.counter img {
  padding-bottom: 20px;
  display: flex;
  margin: auto;
}

.counter h5,
.counter p {
  color: var(--white);
  text-align: center;
}

.counter {
  position: relative;
  width: 33.33%;
}

.counter::before {
  position: absolute;
  content: "";
  height: 110px;
  width: 1px;
  background: var(--primaryColor);
  right: 0;
  top: 10px;
}

.counter:last-child::before {
  width: 0;
}

.bg-grey {
  background: var(--grey);
}

.work-with-us {
  border-radius: 20px;
  display: flex;
  /* background: url(../img/work-about.png) no-repeat #2c2c2c; */
  margin-bottom: 140px;
  position: relative;
}

.work-with-us::after {
  position: absolute;
  content: "";
  background: url(../img/work-btn.svg);
  width: 352px;
  height: 58px;
  bottom: 0;
  left: 32%;
  background-repeat: no-repeat;
}
.work-with-us::before {
  position: absolute;
  content: "";
  background: url(../img/work-logo.svg);
  width: 255px;
  height: 58px;
  top: 0;
  right: 10px;
  background-repeat: no-repeat;
}
.work-wrap {
  display: flex;
}

.work-wrap span {
  color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  padding: 20px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}

.work-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.num {
  padding-right: 25px;
}

.main-work {
  padding: 44px 35px;
  width: 55%;
}

.work-wrap {
  padding-right: 20px;
  padding-bottom: 34px;
}

.work-wrap:first-child {
  margin-left: -38%;
}

.work-wrap:nth-child(2) {
  margin-left: -30%;
}
.work-wrap:nth-child(3) {
  margin-left: -22%;
}
.work-wrap:nth-child(4) {
  margin-left: -13%;
}
.work-wrap:nth-child(5) {
  margin-left: -6%;
}

.work-with-us img {
  margin: -20px 0px;
}

.team-block img {
  margin-bottom: 14px;
  border-radius: 5%;
  width: 100%;
}
.img-wrapper {
  max-width: 182px;
}

.team-block h6 {
  margin: 0;
  width: 168px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  padding-bottom: 6px;
}

.our-team h2 {
  padding-bottom: 10px;
}

.team-wrap {
  padding: 60px 0 0 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.team-block {
  padding-bottom: 50px;
  position: relative;
  z-index: 9;
  margin-right: 14px;
}

.team-wrap .team-block:last-child {
  margin-right: 0;
}
ul.trick li {
  position: relative;
  padding-left: 30px;
  color: var(--white);
  padding-bottom: 15px;
}

ul.trick li::before {
  content: "";
  position: absolute;
  background: url(../img/tick.svg) no-repeat;
  width: 23px;
  height: 23px;
  left: 0;
  top: 3px;
}

ul.trick {
  padding-top: 30px;
}

.trade-section .row {
  padding-bottom: 140px;
  position: relative;
}

.left-side {
  position: relative;
}

.left-side::before {
  position: absolute;
  content: "";
  background: url(../img/service-bg.png) no-repeat;
  width: 212px;
  height: 426px;
  left: 0;
  bottom: 32%;
}

.service-block-i:after {
  position: absolute;
  content: "";
  background: url(../img/service-side.png) no-repeat;
  width: 108px;
  height: 367px;
  right: 0;
  bottom: 20%;
}
.service-block-i .row {
  padding-bottom: 140px;
}
.service-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #4a4a4a8a;
  border-radius: 0 0 30px 30px;
  backdrop-filter: blur(10px);
  background-color: rgba(74, 74, 74, 0.4);
}

.main-service-wrap {
  position: relative;
}

.service-wrap {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.service-img img {
  width: 100%;
  border-radius: 30px;
}

.img-text {
  display: flex;
  align-items: center;
}

.img-text h6 {
  margin: 0;
  padding-left: 16px;
}

.service-text {
  padding-left: 25px;
}

.btn-plane-white {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 24px;
}
.main-btn {
  padding-top: 32px;
}

footer {
  position: relative;
  z-index: 9;
}

.left-footer::after {
  position: absolute;
  content: "";
  background: url(../img/left-footer.png) no-repeat;
  width: 117px;
  height: 392px;
  left: 0;
  top: -414px;
}

.right-footer::before {
  position: absolute;
  content: "";
  background: url(../img/left-footer.png) no-repeat;
  width: 117px;
  height: 297px;
  right: 0;
  top: -313px;
}

/* .general-banner {
  padding-bottom: 140px;
} */

.trade-wrap span {
  color: #a4a4a4;
  font-size: 100px;
  display: block;
  margin-top: -34px;
  padding-right: 17px;
}
.trade-wrap {
  display: flex;
}

.side-bg,
.team-side {
  position: relative;
}

.side-bg::before {
  content: "";
  background: url(../img/side-bg.png) no-repeat;
  top: 332px;
  width: 176px;
  height: 546px;
  left: 0;
  position: absolute;
}
.team-side::before {
  content: "";
  background: url(../img/tram-side.png) no-repeat;
  top: 332px;
  width: 176px;
  height: 546px;
  top: 33%;

  left: 0;
  position: absolute;
}

.trade-section:first-child .trade-img {
  padding-right: 0;
}

.trade-img {
  display: flex;
  justify-content: end;
}

.trade-wrap {
  display: flex;
  padding-right: 100px;
}

.flex-row-reverse .trade-img {
  display: flex;
  justify-content: start;
}

.flex-row-reverse .trade-wrap {
  padding-left: 50px;
  padding-right: 0;
}

.trade-section {
  position: relative;
}

.side-bg:after,
.team-side::after {
  position: absolute;
  content: "";
  background: url(../img/treade-bottom.png) no-repeat;
  width: 217px;
  height: 297px;
  right: 0;
  bottom: -70px;
}

.blog-padding {
  padding-bottom: 100px;
}

.blog-home-banner {
  background: url(../img/blog-banner.png) no-repeat;
  background-size: cover;
  margin-bottom: 140px;
  position: relative;
}

.blog-home-text {
  backdrop-filter: blur(5px);
  background-color: rgba(74, 74, 74, 0.4);
  width: 50%;
  padding: 34px;
}

.right-read {
  position: absolute;
  right: 20px;
  color: var(--white);
  text-decoration: underline;
  bottom: 20px;
}
.blog-home-text h2 {
  font-size: 50px;
  font-weight: 50px;
  padding-bottom: 24px;
  line-height: 1.1em;
}

.blog-home-text .text {
  color: #c0c0c0;
  padding-right: 25px;
  padding-bottom: 92px;
}

.client-img p {
  padding-left: 12px;
}

.client .date a {
  color: #a4a4a4;
}

.blog-card .card {
  background: inherit;
  border-radius: 0;
}

.term-service-banner {
  padding-bottom: 30px;
}
.blog-card .card-body {
  background: #2c2c2c;
}

.term-service-section {
  padding-bottom: 30px;
}

.term-service-section h3 {
  padding-bottom: 15px;
}

.term-service-section p {
  line-height: 32px;
  margin-bottom: 30px;
}

.term-service-section ul li {
  color: var(--lightGrey);
  padding-bottom: 5px;
  list-style: inside;
}

.term-service-section ul {
  margin-bottom: 30px;
}

.blog-card {
  background: inherit;
}

.blog-card .carousal-articles {
  display: flex;
}

.testimonial-section h2 {
  padding-bottom: 20px;
}
.blog-card {
  padding-bottom: 140px;
}
.blog-card .card {
  margin-bottom: 50px;
}

.blog-home a {
  color: var(--white);
  text-decoration: underline;
}
.blog-home h5 {
  margin-bottom: 22px;
}

.blog-pagination {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: var(--grey);
  border-radius: 20px;
  padding: 18px;
  max-width: 600px;
  margin: auto;
}
.blog-pagination a {
  text-decoration: none;
}

.blog-pagination a:hover {
  color: var(--primaryColor);
}
.blog-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-pagination .prev {
  padding-right: 8px;
}

.blog-card .blog-block {
  padding-bottom: 0;
}
.blog-pagination .next {
  padding-left: 8px;
}
.blog-pagination ul li {
  padding: 0 20px;
  position: relative;
}

.blog-pagination ul li a {
  text-decoration: none;
}

.blog-pagination ul li:hover::before {
  position: absolute;
  content: "";
  background: url(/assets/img/eciples.svg) no-repeat;
  width: 52px;
  height: 52px;

  top: -14px;
  left: 1px;
}

.blog-pagination ul li:first-child:hover::before {
  top: -14px;
  left: -3px;
}

.blog-pagination ul li:hover a {
  color: #000;
  z-index: 9;
  position: relative;
}

.images-wrap {
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.grid-wrap {
  display: grid;
  grid-template-columns: 1.65fr 2.45fr;
  gap: 32px;
  margin-bottom: 32px;
}
.grid-img {
  grid-row: 1;
}
.grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reverse-grid {
  grid-template-columns: 2.45fr 1.65fr;
}
.images-wrap img {
  padding-bottom: 30px;
}
.gallery-card {
  padding: 140px 0;
}

.gallery-text {
  background: #4a4a4a8a;
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  background-color: rgba(74, 74, 74, 0.4);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.card-wrap {
  position: relative;
}

.gallery-width img {
  width: 100%;
}

.card-wrap {
  margin-bottom: 27px;
}

.gallery-text p {
  font-size: 16px;
  color: #c0c0c0;
}

.blog-block p {
  font-size: 12px;
}

.gallery-card.side-bg::before {
  content: "";
  background: url(../img/gallery-side.png) no-repeat;
  top: inherit;
  width: 250px;
  height: 546px;
  left: 0;
  bottom: 20%;
  position: absolute;
}

.client-banner {
  position: relative;
}

.client-banner .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.client-banner .blog-block {
  padding-top: 44px;
}

.gallery-card h3 {
  padding-bottom: 24px;
}

.trade-btn {
  padding-top: 40px;
}

.btn-secondary {
  background: inherit;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}

.btn-secondary:hover {
  background: inherit;
  border: 1px solid var(--primaryColor);
  color: var(--black);
  background: var(--primaryColor);
}

.contact-box {
  border: 1px solid #f6f8f9;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box p {
  text-align: center;
}

.contact-box a {
  color: var(--white);
  padding-bottom: 14px;
}

.contact-box img {
  padding-bottom: 15px;
}

.social-link a {
  margin-right: 20px;
}

.contact-from {
  background: var(--grey);
  padding: 35px 65px 50px;
  border-radius: 10px;
}

.from-contact {
  display: flex;
}

.contact-from-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-from-box p {
  text-align: center;
}

.from-contact {
  display: flex;
  padding-bottom: 24px;
}

.contact-wrap {
  padding-left: 50px;
}

.from-contact input {
  border: 1px solid #676869;
}

.from-contact input,
.from-contact textarea {
  border: 2px solid #676869;
  padding: 12px 16px;
  background: #222222;
  border-radius: 10px;
  width: 100%;
}
.first-from {
  width: 50%;
}
.first-line {
  width: 100%;
}

.from-contact .first-from:first-child {
  margin-right: 25px;
}

.from-contact label {
  color: var(--offWhite);
  padding-bottom: 10px;
}

.contact-from {
  position: relative;
}
.contact-from::after {
  position: absolute;
  content: "";
  background: url(../img/contact-top.svg) no-repeat;
  top: 0;
  width: 235px;
  height: 100px;
  right: 1px;
}

.contact-from::before {
  position: absolute;
  content: "";
  background: url(../img/contact-bottom.svg) no-repeat;
  bottom: 0;
  width: 312px;
  height: 100px;
  left: 1px;
}

.contact-from-box h2 {
  padding: 10px 0;
}

.location-side {
  background: var(--grey);
  border-radius: 20px;
}

.location-side p {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 30px;
  padding-left: 30px;
}

.box-img {
  position: relative;
}

.box-text {
  position: absolute;
  background: #4a4a4a8a;
  backdrop-filter: blur(5px);
  background-color: rgba(74, 74, 74, 0.4);
  width: 50%;
  top: 0;
  padding: 35px;
  height: 100%;
}

.location-box {
  padding: 140px 0 40px;
}

.tel {
  padding-bottom: 15px;
}

.tel a {
  color: var(--white);
}

.box-btn a {
  color: var(--white);
  text-decoration: underline;
}

.box-btn {
  padding-top: 40px;
}

.box-text h3 {
  padding-bottom: 20px;
}

.project-swiper {
  position: relative;
}
.mini-logo {
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
}
.mini-logo h6 {
  font-size: 14px;
  padding-left: 10px;
  margin: 0;
}

.mini-logo img {
  width: 50px;
}

.youtube img {
  width: 40px;
}

.youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.youtube svg {
  color: var(--primaryColor);
}

.box-img img {
  width: 100%;
}

.blog-card .card {
  position: relative;
  overflow: hidden;
  border: none;
}

.blog-card .card a.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ensure it sits above other content */
}

.gallery-banner {
  padding-top: 50px;
  padding-bottom: 140px;
}

.gallery-banner:hover .play-icon a {
  background: var(--primaryColor);
}

.gallery-banner {
  position: relative;
}
.play-icon {
  position: absolute;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.play-icon a {
  background: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  transition: var(--transition500);
}

.contact-wrap h3 {
  padding-bottom: 23px;
}

.contact-wrap span {
  color: #ff3d02;
}

.place-form {
  padding-bottom: 76px;
}

.input-img {
  position: relative;
}

.input-img img {
  position: absolute;
  right: 16px;
  top: 13px;
}

.second-from input {
  min-height: 80px;
}

.flex-end {
  display: flex;
  justify-content: end;
}

.nevada-banner {
  position: relative;
  padding-top: 60px;
}

.nevada-text {
  backdrop-filter: blur(5px);
  background-color: rgba(74, 74, 74, 0.4);
  position: absolute;
  width: 79%;
  left: 0;
  bottom: 0;
  padding: 34px;
}

.nevada-text h3 {
  text-transform: uppercase;
}

.services-nevada.choose-exhibit {
  padding: 0;
}

.nevada-box {
  background: var(--grey);
  padding: 45px 70px;
  border-radius: 20px;
  margin-bottom: 48px;
  position: relative;
}

.nevada-box::before {
  content: "";
  background: #363636;
  width: 21px;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 20px 0 0 20px;
}

.services-nevada.blog-padding {
  padding-bottom: 80px;
}

.services-nevada h3 {
  padding-bottom: 24px;
}

.nevada-box {
  padding-bottom: 50px;
}

.nevada-box p {
  width: 385px;
  margin: auto;
  text-align: center;
}

.nevada-box h6 {
  text-align: center;
}

.services-nevada.left-side::before {
  background: url(../img/nevada.svg) no-repeat;
  bottom: -38px;
}

.cities .col-md-5 {
  margin-bottom: 50px;
}

.cities h6 {
  color: var(--white);
  padding-bottom: 12px;
}
.cities h6 a{
  color: var(--white);
}
.cities h6:hover a{
  color: var(--primaryColor);
}
.cities ul li {
  color: #a4a4a4;
  list-style: inside;
}

.events-text strong {
  color: var(--white);
}

.events-text p {
  line-height: 32px;
}

.pagination-wrap .swiper-button-prev:after,
.pagination-wrap .swiper-button-next:after {
  font-size: 18px;
  font-weight: 700;
}

.pagination-wrap .swiper-button-prev,
.pagination-wrap .swiper-button-next {
  font-size: 25px;
  color: var(--primaryColor);
  background: var(--grey);
  width: 40px;
  border-radius: 50%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-wrap .swiper-button-next {
  right: 14%;
}

.pagination-wrap .swiper-button-prev {
  left: 14%;
}
.pagination-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 14%;
}

.pagination-wrap .swiper-button-prev:hover,
.pagination-wrap .swiper-button-next:hover {
  background: var(--primaryColor);
}

.pagination-wrap .swiper-button-prev:hover:after,
.pagination-wrap .swiper-button-next:hover:after {
  color: var(--grey);
}

.nevada-contact h3 {
  padding-bottom: 10px;
}

.nevada-contact p {
  padding-bottom: 10px;
}

.nevada-contact .contact-us {
  padding-top: 43px;
}

.nevada-contact .contact-box {
  width: 90%;
}

.nevada-contact {
  padding-bottom: 140px;
}

.testimonial-section h3 {
  padding-bottom: 24px;
}

.project-image::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #00000042;
}

.swiper-wrap {
  position: relative;
}

.swiper-wrap
  .pagination-wrap
  .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -47px;
}

.swiper-wrap .pagination-wrap .swiper-button-next {
  right: -6%;
}

.swiper-wrap .pagination-wrap .swiper-button-prev {
  left: -6%;
}

.work-with-us .hp-box {
  left: 22px;
  width: 190px;
  display: flex;
  flex-direction: column;
}

.work-with-us .hp-box h6 {
  color: var(--white);
  text-align: center;
  padding: 9px;
  margin: 0;
}

.work-with-us .hp-box img {
  margin: auto;
  margin-bottom: 7px;
}
.blog-home-banner {
  position: relative;
}

.blog-home-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #00000042;
}

.blog-card-img {
  position: relative;
}

.blog-card-img::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: #00000042;
}

.btn-primary:hover {
  background: var(--white);
}

.nevada-cites h5 {
  color: var(--white);
  font-size: 24px;
  padding-bottom: 24px;
}

.cities-link {
  display: flex;
  flex-direction: column;
}

.cities-link a {
  color: #a4a4a4;
  font-size: 16px;
  text-decoration: underline;
  padding-bottom: 10px;
  transition: var(--transition500);
}

.nevada-section .box-text {
  width: 75%;
}

.nevada-section h4 {
  padding-bottom: 24px;
  color: var(--white);
  margin: 0;
}

.box-btn a {
  transition: var(--transition500);
}
.box-btn a:hover {
  color: var(--primaryColor);
}
/* .box-img {
  margin-bottom: 100px;
} */

.nevada-section.left-side::before {
  left: 0;
  bottom: -53px;
}

.cities-link a:hover {
  color: var(--white);
}
.blog-card {
  position: relative;
}
.blog-card::before {
  position: absolute;
  content: "";
  background: url(/assets/img/blog-i.png) no-repeat;
  width: 212px;
  height: 426px;
  left: 0;
  top: 0;
}

.blog-card::after {
  position: absolute;
  content: "";
  background: url(/assets/img/blog-ii.png) no-repeat;
  width: 162px;
  height: 404px;
  right: 0;
  top: 20%;
}

.location-box .box-img {
  margin-bottom: 100px;
}

.nav-link:focus {
  color: var(--white);
}
/* subham added css */
.our-team .contact-from .wpcf7 form.sent .wpcf7-response-output {
  position: relative;
}

.postid-640 .general-banner {
  padding-bottom: 100px;
}

.postid-640 .gallery-banner {
  padding-top: 0;
}

.about-wrap {
  position: relative;
  width: 45%;
}

/* location map */
.map--container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* or a specific height */
  width: 100%; /* or a specific width */
  position: relative;
}

.map--container svg,
.map--container img,
.map--container object {
  max-width: 100%;
  height: auto;
  display: block;
}
.map--container .popup {
  position: absolute;
  background: #b1ff00;
  color: #000;
  padding: 10px;
  border-radius: 8px;
  z-index: 9999;
  display: none;
  font-family: sans-serif;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.map--container .popup h4 {
  font-size: 16px;
}
.map--container .popup ul li {
  font-size: 12px;
}
svg path.selected {
  fill: #ffffff !important;
}
svg path {
  cursor: pointer;
}
.trust--copy {
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.team-block p {
  width: 168px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.2;
}

.page-id-69 .general-banner {
  padding-bottom: 50px;
}

.contact-box a:hover {
  color: var(--primaryColor);
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousal-articles .pagination-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}
.articles .carousal-articles{
  padding-bottom: 20px;
}

/* customizer css added from wp */
body.single-post header {
  position: relative;
 margin-bottom: 50px;
}
.fancy-ico  span {
    background: #4a4a4a40;;
  width: 40px;
  border-radius: 50%;
  height: 40px;
  align-items: center;
backdrop-filter: blur(10px);
    border: inherit;

}

.page-template-place-order .our-team.general-padding {
padding-top: 0;
}
.nav-link:focus {
color: var(--white);
}
.blog-pagination .page-numbers {
position: relative;
z-index: 99999;
}

.location-box .box-img {
margin-bottom: 100px;
}

.blog-pagination .page-numbers:hover:before,
.blog-pagination .page-numbers.current:before {
    position: absolute;
  content: "";
  background: url(https://allexhibitsdev.wpenginepowered.com/wp-content/uploads/2025/04/eciples.svg) no-repeat;
  width: 52px;
  height: 52px;
  top: -14px;
  left: 0;
    z-index: -1;
}

.blog-pagination .dots:hover:before , .blog-pagination .prev:hover:before , .blog-pagination .next:hover:before {
width: 0;

}

.blog-pagination .page-numbers:hover {
z-index: 9;
color: #000;
}
.prev {
}

.blog-pagination .prev {
  padding-left: 20px !important;
  color: #fff !important;
  position: relative;
}


.blog-pagination .next {
    padding-right: 20px !important;
  color: #fff !important;
  position: relative;
}
.blog-pagination .prev::before {
 position: absolute;
content: "";
font-family: "Font Awesome 6 Free"; 
content: "\f053" !important;
font-weight: 900; 
width: 20px;
height: 20px;
background: inherit !important;
       top: 0 !important;
  left: 0 !important;
}

.blog-pagination .next::before {
position: absolute;
content: "";
font-family: "Font Awesome 6 Free"; 
content: "\f054" !important;
font-weight: 900; 
width: 20px;
height: 20px;
background: inherit !important;
right: -8px !important;
top: 0 !important;
}
.blog-pagination .prev:hover:before , 
.blog-pagination .next:hover:before{
  width: 20px;
height: 20px;
color: #b3f500;
    top: 0 !important;
}
.blog-pagination .next:hover:before {
left: inherit;
    right: -8px !important;

}
.blog-pagination .prev:hover , 
.blog-pagination .next:hover {
color: #b3f500 !important;
}

.blog-pagination .next:hover {
color: #fff;
    top: 0;
  left: inherit;
  right: 0;
}
.blog-pagination .dots:hover {
color: #fff;
}

#fancybox-close  span {
background: inherit;
    backdrop-filter: inherit;
  box-shadow: none;
top: 40px;
  left: -20px;
    transform: inherit;
}
#fancybox-outer {
  background: inherit;
}

#fancybox-img {
  border-radius: 20px;
}
#fancybox-close span::before , #fancybox-close span::after {
  width: 23px;
}

#fancybox-next span::after , #fancybox-prev span::after {
  top: 12px;
  width: 14px;
  color: #b3f500;
  height: 15px;
  left: 10px;

}
#fancybox-prev span::after  {
    left: 15px;

}
.single-post .grid-container {
      max-width: 1240px;
      margin: auto;
      padding: 0;
  }
ul.wp-block-list{
padding-bottom:20px;
}
ul.wp-block-list  li{
  list-style: inherit;
  color: var(--lightGrey);
  margin-left: 20px;
  line-height:30px
}
.blog-description h3,
.blog-description h2,
.blog-description h1,
.blog-description h4,
.blog-description h5{
  font-weight: 500;
  color: var(--white);
}
img{
max-width:100%;
}
.gutentor-container-cover .grid-container{
      max-width: 1240px;
}
.single-services .back{
padding-top:60px;
}
header .navbar .current_page_item .nav-link {
  color: var(--primaryColor);
  transition: var(--transition500);
}
header .navbar .navbar-nav li.current_page_item a{
position:relative;
}
/* header .navbar .navbar-nav  li.current_page_item a::before {
  content: "";
  width: 100%;
  height: 2px;
  right: 0;
  margin: auto;
  left: 0;
  background: var(--primaryColor);
  position: absolute;
  bottom: -4px;
  transition: var(--transition500);
  transition: all 0.5s;
} */
.testimonial-block .rating img.headshot{
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
.testimonial-block span {
  padding-bottom: 20px;
  display: block;
}
.testimonial-section .pagination-wrap{
margin-top:40px;
}
.blog-home h5{
line-height:35px;
}
.ex-solution-block .exhibit-img img{
border-radius:5%;
}
.blog-pagination a{
font-size: 16px;
padding: 0 20px;
text-decoration: none;
}
.blog-pagination a.prev.page-numbers{
color: var(--lightGrey);
padding:0;
}
.blog-pagination a.page-numbers,
span.page-numbers.current{
padding:0 20px;
color:#fff;
}
span.page-numbers.current{
  color: #121212;
}
.date-block a{
text-decoration: none;
}
.blog-block .first-block img,
.blog-home-text .client-img img{
width: 50px;
  height: 50px;
  border-radius: 50%;
}
/* .side-bg:after, .team-side::after{
bottom:auto;
} */
textarea:focus-visible,
input:focus-visible{
border: 2px solid #b3f500;
border-radius: 3px;
outline: none;
}
.from-contact input,
.from-contact textarea,
.wpcf7 form.sent .wpcf7-response-output{
color:#fff;
}
.wpcf7 form.sent .wpcf7-response-output{
border-color:#b3f500;
}
.carousal-partner .swiper-wrapper{
animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}
.project-swiper .swiper-pagination-bullets.swiper-pagination-horizontal{
bottom:80px;
}
.gallery-card .card-wrap{
position:relative;
} 
a.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* responsive css starts */
/* .pagination-wrap .swiper-button-prev{
left:6%;
}
.pagination-wrap .swiper-button-next{
right:6%;
} */
#fancybox-content{
border:none;
background:none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
color:#fff;
}
span.page-numbers.dots{
color:#fff;
}
.btn-primary:hover{
color:var(--offGrey);
}
.card:hover h5{
color:var(--primaryColor);
}
.location-box .box-img img,
.nevada-slider .box-img img{
  min-height:300px;
}
.carousal-partner .swiper-wrapper{
align-items: center;
justify-content: center;
}
.header-btn .btn-primary:hover{
border:none;
}
img.footer-logo{
  max-width: 180px;
}

.team-wrap-mobile {
	display: none;
}
.team-block.swiper-slide h6,
.team-block.swiper-slide p{
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.place-form.apply {
  padding-bottom: 0;
}
.apply-copy{
  padding-bottom: 80px;
}
.trade-btn.flex-end.start {
  justify-content: start;
  z-index: 2;
  position: relative;
}
.trade-btn.flex-end.start p{
  padding-left: 50px;
}
.from-contact.resume .first-from{
  width: 100%;
  margin-right: 0;
}
.page-template-join-now .team-side::after{
  z-index: -99;
}

/* city page styling */
/* === Las Vegas Block (simple CSS) === */
.lv-block {
  padding: 140px 20px;
}

.lv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.lv-media img {
  width: 100%;
  height: auto;
  display: block;
}

.lv-content {
  flex: 1;
}

.lv-title {
  color: #F5F5F5;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}

.lv-text {
  color:  #A4A4A4;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.swiper-pagination.cities-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal{
  bottom: auto;
  left: 0;
  width: 100%;
}

/* Hover polish (desktop) */
@media (hover:hover){
  .city-card:hover img{ transform:scale(1.04); }
}

/* Pagination dots style */
.cities-pagination .swiper-pagination-bullet{
  background:#cfcfcf;
  opacity:.4;
}
.cities-pagination .swiper-pagination-bullet-active{
  background:#ffffff;
  opacity:1;
}
.cities-sec.swiper-wrap .pagination-wrap .swiper-button-prev {
  left: 6%;
}
.cities-sec.swiper-wrap .pagination-wrap .swiper-button-next {
  right: 6%;
}
/* Responsive for tablets and phones */
@media (max-width: 900px) {
  .lv-container {
    flex-direction: column;
    text-align: center;
  }
  
  .lv-title {
    font-size: 24px;
  }
}

/* new state cities section */
section.section-cities{
  padding-bottom: 140px;
}
.headline {
  margin-bottom: 24px;
  color: #F5F5F5;
  font-size: 24px;
  font-weight: 500;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* exactly 4 columns */
  gap: 20px;
}

.city-card {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  height: 200px; /* fixed height for cards */
}

.city-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.city-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  color:#F5F5F5;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #4a4a4a8a; backdrop-filter: blur(5px); background-color: rgba(74, 74, 74, 0.4);
}


/* Responsive: fewer columns on smaller screens */
@media (max-width: 992px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .city-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

/* state city section ends */

/* convention section starts */
/* Swiper container padding so the next btn can sit on right */
.venues-swiper {
  padding-right: 70px;
}

/* A slide contains a card link */
.swiper-slide .venue-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.venue-img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .25s ease;
}
.venue-card:hover .venue-img { transform: scale(1.02); }

.venue-name {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  color:#F5F5F5;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; 
}

/* Custom nav buttons */
.venues-next, .venues-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(2px);
  transition: background .2s ease;
}
.venues-next::after, .venues-prev::after {
  font-size: 18px;
  color: #fff;
}
.venues-next { right: 10px; }
.venues-prev { left: 10px; opacity: .4; } /* dim prev; hide if you want */

.venues-next:hover, .venues-prev:hover {
  background: rgba(255,255,255,0.22);
}
.section{
  position: relative;
}
.section .pagination-wrap .swiper-button-prev{
  left: 5%;
}
.section .pagination-wrap .swiper-button-next.swiper-button-disabled,
.section .pagination-wrap .swiper-button-prev.swiper-button-disabled,
.section .pagination-wrap .swiper-button-prev{
  opacity: 1;
}
.section .pagination-wrap .venues-next::after,
.section .pagination-wrap .venues-prev::after{
  color: inherit;
}
.section .pagination-wrap .swiper-button-prev:hover::after,
.section .pagination-wrap .swiper-button-next:hover::after{
  color: var(--black);
}
.venues-swiper .swiper-slide{
  margin-bottom: 50px;
}
.section .pagination-wrap .swiper-button-next{
  right: 5%;
}
figure.lv-media {
  max-width: 500px;
}
/* Responsive */
@media (max-width: 1199px) {
  .venue-img { height: 186px; }
  .venues-swiper { padding-right: 60px; }
}
@media (max-width: 767px) {
  .venue-img { height: 190px; }
  .venues-prev { display: none; }
  .venues-swiper { padding-right: 48px; }
}
/* convention section ends */