@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&amp;display=swap");

:root {
  --fontFamily: "Inter", sans-serif;
  --bodyFontFamily: "Open Sans", sans-serif;
  --mainColor: #fb3567;
  --optionalColor: #2a07f9;
  --headingColor: #111111;
  --bodyColor: #666666;
  --whiteColor: #ffffff;
  --transition: all ease 0.8s;
  --ph-navy: #0b0f2b;
  --ph-navy-deep: #070a1d;
  --ph-navy-card: #11163a;
  --ph-blue: #1547c9;
  --ph-blue-dark: #0e2e8f;
  --ph-blue-light: #4fa8e8;
  --ph-red: #f0543f;
  --ph-red-dark: #d8402c;
  --ph-text-light: #eef1fb;
  --ph-text-muted: #aab0cc;
  --ph-border: rgba(255, 255, 255, 0.08);
  --ph-white: #ffffff;
  --ph-radius: 10px;
  --ph-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: var(--fontFamily);
  font-weight: bold;
  color: var(--headingColor);
}

p {
  font-size: 16px;
  color: #000000;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

body {
  margin: 0;
  background: #030613;
  color: var(--ph-text-light);
  line-height: 1.7;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  height: auto;
  max-width: 100%;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

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

.pt-100 {
  padding-top: 100px;
}

.pt-70 {
  padding-top: 70px;
}

/*=======================================
Section Title
==========================================*/
.section-title {
  text-align: center;
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.section-title.left-title {
  text-align: left;
  margin-bottom: 25px;
  max-width: unset;
}
.section-title.left-title h2 {
  margin-bottom: 15px;
}
.section-title .top-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--optionalColor);
  font-family: var(--bodyFontFamily);
  display: inline-block;
  margin-bottom: 15px;
}
.section-title h2 {
  font-size: 40px;
  font-weight: bold;
}
.landing-page h4 {
  color: #ffffff !important;
  font-size: 24px !important;
}
/*================================================
Preloader CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  width: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 9999999;
  background-color: transparent;
  transition: 0.9s;
}
.preloader .loader {
  transition: 0.9s;
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 45%;
  transform: translateY(-45%);
}
.preloader .loader .loader-outter {
  position: absolute;
  border: 4px solid var(--whiteColor);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.preloader .loader .loader-inner {
  position: absolute;
  border: 4px solid var(--whiteColor);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  border-right: 0;
  border-top-color: transparent;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}
.preloader .loader span {
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  color: var(--whiteColor);
  font-family: var(--fontFamily);
  font-size: 25px;
  font-weight: bold;
}
.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  background: var(--optionalColor);
  transition: 0.9s;
}
.preloader::after {
  left: auto;
  right: 0;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}
.preloader.preloader-deactivate::before {
  width: 0;
}
.preloader.preloader-deactivate::after {
  width: 0;
}
.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}
@keyframes loader-outter {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* ========================================
Default Btn
==========================================*/
.default-btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  border: none;
  text-align: center;
  background-color: #ef4b54;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  z-index: 1;
  border-radius: 5px;
  padding: 15.5px 34px;
}
.default-btn.btn-style-one {
  background-color: #2b469e;
}
.default-btn.btn-style-one::after {
  background-color: #ef4b54;
}
.default-btn.btn-style-one::before {
  background-color: #2b469e;
}
.default-btn i {
  margin-left: 5px;
  position: relative;
  top: 4px;
  font-size: 20px;
}
.default-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #2b469e;
  z-index: -1;
  transition: var(--transition);
}
.default-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #2b469e;
  z-index: -1;
  transition: var(--transition);
}
.default-btn:hover {
  color: var(--whiteColor);
}
.default-btn:hover::after {
  width: 100%;
}
.default-btn:hover::before {
  width: 100%;
}

.read-more {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: var(--optionalColor);
  position: relative;
}
.read-more i {
  font-size: 18px;
  color: var(--optionalColor);
  position: relative;
  top: 3px;
  margin-left: 5px;
}

/*======================================
Start Submenu Area
========================================*/
.submenu-area {
  background: #2b469e;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}
.submenu-area .container-fluid {
  max-width: 1520px;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.submenu-left-content {
  text-align: left;
}
.submenu-left-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.submenu-left-content ul li {
  list-style-type: none;
  display: inline-block;
  padding-left: 28px;
  margin-right: 25px;
  position: relative;
}
.submenu-left-content ul li:last-child {
  margin-right: 0;
}
.submenu-left-content ul li img {
  position: absolute;
  left: 0;
  top: 53%;
  transform: translateY(-50%);
}
.submenu-left-content ul li p {
  color: #c0c0c0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}
.submenu-left-content ul li a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}

.submenu-right-content {
  text-align: right;
}
.submenu-right-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.submenu-right-content ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.submenu-right-content ul li:last-child {
  margin-right: 0;
}
.submenu-right-content ul li p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}
.submenu-right-content ul li a i {
  font-size: 15px;
  color: #ffffff;
  transition: var(--transition);
}
.submenu-right-content ul li a:hover i {
  color: var(--mainColor);
}

/* ========================================
Start Menubar Area
===========================================*/
.navbar-area.is-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
  z-index: 999;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area.is-sticky .main-nav.main-style-two {
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
}
.navbar-area.is-sticky .main-nav.main-style-two nav {
  border-bottom: 1px solid #ffffff;
}
.navbar-area .others-option-for-responsive {
  display: none;
}

.main-nav {
  background-color: var(--whiteColor);
  padding-top: 3px;
  padding-bottom: 3px;
}
.main-nav .logo-dark {
  display: none;
}
.main-nav.main-style-two {
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.main-nav.main-style-two .container-fluid {
  max-width: 1780px;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}
.main-nav.main-style-two nav {
  border-bottom: 1px solid rgba(42, 7, 249, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-nav.main-style-two .others-option-vg .option-item .search-form {
  margin-right: 25px;
  position: relative;
}
.main-nav.main-style-two
  .others-option-vg
  .option-item
  .search-form
  .search-input {
  background: #ffffff;
  color: var(--bodyColor);
}
.main-nav .container-fluid {
  max-width: 1520px;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}
.main-nav nav {
  padding-bottom: 0;
  padding-bottom: 0;
}
.main-nav nav .navbar-nav .nav-item {
  margin-right: 45px;
}
.main-nav nav .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-toggle::after {
  top: 1px;
  position: relative;
}
.main-nav nav .navbar-nav .nav-item .nav-link {
  color: var(--headingColor);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
.main-nav nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--mainColor);
}
.main-nav nav .navbar-nav .nav-item .nav-link:hover i {
  color: var(--mainColor);
}
.main-nav nav .navbar-nav .nav-item .nav-link i {
  position: absolute;
  top: 52%;
  right: -18px;
  transform: translateY(-50%);
  font-size: 25px;
  color: var(--headingColor);
  transition: var(--transition);
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  border: none;
  border-radius: 0px;
  width: max-content;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
  /*max-width: 280px;*/
  z-index: 999;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin-right: 0;
  padding: 5px 5px;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 25px;
  color: var(--headingColor);
  font-family: var(--bodyFontFamily);
  transition: var(--transition);
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.bg-border-top {
  padding-top: 20px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.bg-border-top::before {
  top: 63.5%;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.bg-border-2 {
  padding-bottom: 20px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.bg-border-2::before {
  top: 42.5%;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link::before {
  content: "\ee8f";
  position: absolute;
  left: 22px;
  top: 52.5%;
  font-size: 10px;
  transform: translateY(-50%);
  font-family: boxicons !important;
  transition: var(--transition);
  opacity: 0;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active {
  color: var(--mainColor);
  padding-left: 38px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link.active::before {
  opacity: 1;
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: var(--mainColor);
  padding-left: 38px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover::before {
  opacity: 1;
  color: var(--mainColor);
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover.bg-border-top {
  padding-top: 20px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .nav-link:hover.bg-border-2 {
  padding-bottom: 20px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-toggle::after {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item .dropdown-menu {
  left: -100%;
  top: 20px;
}
.main-nav
  nav
  .navbar-nav
  .nav-item
  .dropdown-menu
  .nav-item
  .dropdown-menu:hover {
  top: 0;
}
.main-nav .others-option-vg .option-item .search-form {
  margin-right: 25px;
  position: relative;
}
.main-nav .others-option-vg .option-item .search-form .search-input {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15.5px 23px;
  border: none;
  outline: 0;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--headingColor);
}
.main-nav
  .others-option-vg
  .option-item
  .search-form
  .search-input::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: #aeaeae;
}
.main-nav
  .others-option-vg
  .option-item
  .search-form
  .search-input::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: #aeaeae;
}
.main-nav
  .others-option-vg
  .option-item
  .search-form
  .search-input:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.main-nav
  .others-option-vg
  .option-item
  .search-form
  .search-input:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.main-nav .others-option-vg .option-item .search-form .search-button {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  border: none;
  background-color: var(--optionalColor);
  width: 50px;
  height: 55px;
  color: var(--whiteColor);
  line-height: 55px;
  padding: 0 !important;
  border-radius: 5px;
  z-index: 1;
  overflow: hidden;
}
.main-nav .others-option-vg .option-item .search-form .search-button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--mainColor);
  z-index: -1;
  transition: var(--transition);
}
.main-nav .others-option-vg .option-item .search-form .search-button::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--mainColor);
  z-index: -1;
  transition: var(--transition);
}
.main-nav .others-option-vg .option-item .search-form .search-button i {
  font-size: 20px;
  position: relative;
  top: 3px;
}
.main-nav
  .others-option-vg
  .option-item
  .search-form
  .search-button:hover::after {
  width: 50%;
}
.main-nav
  .others-option-vg
  .option-item
  .search-form
  .search-button:hover::before {
  width: 50%;
}
.logo-light {
  width: 120px;
}
/* ========================================
Start Banner area
=========================================*/
.hero-slider-item {
  background-image: url(../images/banner/slider-banner-01.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}
.hero-slider-item.bg-img-1 {
  background-image: url(../images/banner/slider-banner-02.jpg);
}
.hero-slider-item.bg-img-1 .hero-content {
  margin-left: auto;
  max-width: 480px;
}
.hero-slider-item.bg-img-1 .hero-shape-5 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.hero-slider-item.bg-img-1 .hero-shape-1 {
  left: auto;
  right: 14%;
}
.hero-slider-item.bg-img-1 .hero-shape-3 {
  left: auto;
  right: 5%;
}
.hero-slider-item.bg-img-1 .hero-shape-2 {
  right: auto;
  left: 5%;
}
.hero-slider-item .container-fluid {
  max-width: 1520px;
  padding-left: 50px;
  padding-right: 50px;
}
.hero-slider-item img {
  width: auto !important;
}
.hero-slider-item .hero-shape-1 {
  position: absolute;
  bottom: 65px;
  left: 14%;
  z-index: -1;
  animation: animationFramesOne 9s linear infinite;
}
.hero-slider-item .hero-shape-2 {
  position: absolute;
  right: 10.5%;
  top: 15%;
  animation: rotateme 9s linear infinite;
  z-index: -1;
}
.hero-slider-item .hero-shape-3 {
  position: absolute;
  left: 5%;
  top: 12%;
  z-index: -1;
  animation: movebounce 3s linear infinite;
}
.hero-slider-item .hero-shape-4 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-content {
  max-width: 490px;
}
.hero-content h1 {
  font-size: 40px;
  color: var(--whiteColor);
  line-height: 60px;
  margin-bottom: 15px;
}
.hero-content p {
  color: #eaeaea;
  font-size: 15px;
  margin-bottom: 30px;
}
.hero-content .hero-bottom .default-btn.btn-style-one {
  margin-left: 25px;
}

/* =====================================
Start Banner area Two
======================================*/
.hero-area-two {
  background-image: url(../images/banner/hero-bg-two.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  width: auto !important;
  padding-top: 70px;
  overflow: hidden;
}
.hero-area-two .container-fluid {
  max-width: 1520px;
  padding-left: 50px;
  padding-right: 50px;
}
.hero-area-two::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.7) 2.27%,
    rgba(17, 17, 17, 0.7) 102.27%
  );
  z-index: -1;
}
.hero-area-two .hero-two-shape {
  position: absolute;
  bottom: 13%;
  left: 46%;
  animation: animationFramesOne 9s linear infinite;
}
.hero-area-two .hero-two-shape img {
  width: auto;
}
.hero-area-two .hero-two-shape-2 {
  position: absolute;
  right: 39%;
  top: 32%;
  transform: translateY(-50%);
  animation: moveleftbounce 4s linear infinite;
}
.hero-area-two .hero-two-shape-2 img {
  width: auto;
}

.hero-image {
  position: relative;
  right: -30px;
}
.hero-image img {
  width: auto !important;
}

.hero-content-tow {
  position: relative;
  top: -40px;
}
.hero-content-tow h1 {
  font-size: 100px;
  color: var(--whiteColor);
  line-height: 110px;
  margin-bottom: 25px;
}
.hero-content-tow p {
  font-size: 15px;
  color: #eaeaea;
  max-width: 650px;
  margin-bottom: 50px;
}
.hero-content-tow .hero-bottom .default-btn {
  margin-right: 25px;
}
.hero-content-tow .upcoming-list {
  margin-bottom: 70px;
}
.hero-content-tow
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10 {
  position: relative;
  z-index: 1;
}
.hero-content-tow
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10
  .live-auctions-countdown-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
  text-align: center;
  margin-left: auto;
  z-index: -1;
  margin-right: auto;
}
.hero-content-tow
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10
  p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: #e4e4e4;
  font-family: var(--bodyFontFamily);
}
.hero-content-tow
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10
  span {
  color: var(--whiteColor);
  font-size: 45px;
  font-family: var(--fontFamily);
  font-weight: bold;
}

/* =====================================
start Banner Three area
=======================================*/
.banner-three-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 230px;
  padding-bottom: 130px;
  background-image: url(../images/banner/banner-three-bg-1.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-three-area .container-fluid {
  max-width: 1780px;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}
.banner-three-area .banner-three-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: -1;
}
.banner-three-area .banner-three-shape-1 {
  position: absolute;
  right: -81px;
  z-index: -1;
  bottom: -266px;
}

.banner-three-img {
  border-radius: 115px 10px 100px 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  padding-right: 70px;
}
.banner-three-img img {
  border-radius: 115px 10px 100px 10px;
}
.banner-three-img.banner-three-img20 {
  border-radius: 0px;
  text-align: right;
  padding-left: 70px;
  padding-right: 0;
}
.banner-three-img.banner-three-img20 img {
  border-radius: 10px 115px 10px 100px;
}

.single-banner-three-content {
  text-align: center;
}
.single-banner-three-content span {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  font-size: 14px;
  color: var(--optionalColor);
  display: inline-block;
  margin-bottom: 10px;
}
.single-banner-three-content h1 {
  font-size: 80px;
  line-height: 110px;
  margin-bottom: 15px;
}
.single-banner-three-content p {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 600;
}
.single-banner-three-content .banner-input-fill {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.04);
  border-radius: 5px;
  padding: 15px;
}
.single-banner-three-content .banner-input-fill .col-lg-3 {
  padding-right: 0;
}
.single-banner-three-content .banner-input-fill .form-group {
  position: relative;
  z-index: 1;
}
.single-banner-three-content .banner-input-fill .form-group::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 42px;
  top: -8px;
  right: 40px;
  z-index: -1;
  background: #e3e3e3;
}
.single-banner-three-content .banner-input-fill .form-group .form-control {
  padding: 0px 40px 0 0;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  position: relative;
}
.single-banner-three-content
  .banner-input-fill
  .form-group
  .form-control::-moz-placeholder {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
}
.single-banner-three-content
  .banner-input-fill
  .form-group
  .form-control::placeholder {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
}
.single-banner-three-content
  .banner-input-fill
  .form-group
  .form-control:focus {
  box-shadow: none;
}
.single-banner-three-content
  .banner-input-fill
  .form-group
  .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.single-banner-three-content
  .banner-input-fill
  .form-group
  .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.single-banner-three-content .banner-input-fill .banner-select {
  position: relative;
}
.single-banner-three-content .banner-input-fill .banner-select img {
  position: absolute;
  right: 0;
  top: 56%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--mainColor);
}
.single-banner-three-content .banner-input-fill .form-select {
  padding: 0px;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  background-image: none;
}
.single-banner-three-content .banner-input-fill .form-select:focus {
  box-shadow: none;
}
.single-banner-three-content .banner-input-fill .default-btn {
  padding: 10.5px 26px;
  font-size: 15px;
}

/* ===================================== 
Start Event Photo Area
======================================*/
.gallery-btn {
  text-align: center;
  margin-top: 10px;
}

.event-gallery-img {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.event-gallery-img .gallery-img {
  background-image: url(../images/gallery/event-photo-1.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.event-gallery-img .gallery-img.gallery-img-1 {
  background-image: url(../images/gallery/event-photo-2.jpg);
}
.event-gallery-img .gallery-img.gallery-img-2 {
  background-image: url(../images/gallery/event-photo-3.jpg);
}
.event-gallery-img .gallery-img.gallery-img-3 {
  background-image: url(../images/gallery/event-photo-4.jpg);
}
.event-gallery-img .gallery-img.gallery-img-4 {
  background-image: url(../images/gallery/event-photo-5.jpg);
}
.event-gallery-img .gallery-img.gallery-img-5 {
  background-image: url(../images/gallery/event-photo-6.jpg);
}
.event-gallery-img .gallery-img.gallery-img-6 {
  background-image: url(../images/gallery/event-photo-7.jpg);
}
.event-gallery-img .gallery-img.gallery-img-7 {
  background-image: url(../images/gallery/event-photo-8.jpg);
}
.event-gallery-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(42, 7, 249, 0.2);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: var(--transition);
  transform: scale(0);
}
.event-gallery-img .gallery-icon {
  position: absolute;
  transition: var(--transition);
  top: -85px;
  visibility: hidden;
  right: 30px;
  background-color: var(--whiteColor);
  padding: 40px 0px 0px 0px;
  border-radius: 0px 0px 28px 28px;
  opacity: 0;
  z-index: 1;
}
.event-gallery-img .gallery-icon a i {
  color: var(--mainColor);
  background-color: #f8f8f8;
  padding: 10px;
  font-size: 25px;
  border-radius: 50px;
  transition: var(--transition);
}
.event-gallery-img .gallery-icon a i:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}
.event-gallery-img:hover .gallery-icon {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.event-gallery-img:hover::after {
  transform: scale(1);
}

/* ======================================
Start Hall View Area
=======================================*/
.single-hall-view-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.single-hall-view-card .hall-view-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.single-hall-view-card .hall-view-img::after {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 44.81%,
    rgba(17, 17, 17, 0.77) 73.92%
  );
  border-radius: 10px;
  position: absolute;
}
.single-hall-view-card .hall-view-img.bg-view::after {
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0) 44.81%,
    rgba(17, 17, 17, 0.3) 100%
  );
}
.single-hall-view-card .hall-view-img img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-hall-view-card .hall-text {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.single-hall-view-card .hall-text h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--whiteColor);
  margin-bottom: 10px;
}
.single-hall-view-card .hall-text p {
  color: #d9d9d9;
}
.service-box {
  margin-bottom: 22px;
}
.service-box img {
  border-radius: 5px;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 200px;
}

/* ===================================
Start Our Conference Location Area
=======================================*/
.map {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
}
.map .maps2 {
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 10px;
}

.google-map-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.contact-map {
  display: inline-block;
  width: 100%;
  position: relative;
  bottom: -7px;
}
.contact-map iframe {
  width: 100%;
  height: 500px;
  display: inline-block;
  border-radius: 0;
}

/* ======================================
Start Coming Soon 
========================================*/
.coming-soon-img {
  display: none;
}

.coming-soon-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  text-align: center;
  position: relative;
  background: rgba(42, 7, 249, 0.05);
  padding: 50px;
}
.coming-soon-content h2 {
  margin-bottom: 15px;
  font-size: 30px;
}
.coming-soon-content p {
  margin-bottom: 25px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-content img {
  margin-bottom: 25px;
}
.coming-soon-content #timer {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: bold;
  font-family: var(--fontFamily);
  position: relative;
  color: var(--optionalColor);
  transition: var(--transition);
}
.coming-soon-content #timer div {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  margin-left: 0;
  background-color: var(--optionalColor);
  color: var(--whiteColor);
  padding: 13px 30px 38px 29px;
  border-radius: 5px;
  transition: var(--transition);
}
.coming-soon-content #timer div:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.coming-soon-content #timer div:hover span {
  color: var(--whiteColor);
}
.coming-soon-content #timer span {
  font-size: 16px;
  font-weight: 500;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
  bottom: 25px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  transition: var(--transition);
}
.coming-soon-content .coming-soon-list {
  padding-left: 0;
  margin: 0;
  text-align: center;
  margin-top: 30px;
}
.coming-soon-content .coming-soon-list li {
  display: inline-block;
  margin-right: 10px;
}
.coming-soon-content .coming-soon-list li:last-child {
  margin-right: 0;
}
.coming-soon-content .coming-soon-list li a {
  background-color: var(--mainColor);
  width: 40px;
  height: 40px;
  line-height: 46px;
  border-radius: 50px;
  justify-content: center;
  display: inline-block;
  align-items: center;
  color: var(--whiteColor);
  transition: var(--transition);
}
.coming-soon-content .coming-soon-list li a i {
  font-size: 20px;
  transition: var(--transition);
}
.coming-soon-content .coming-soon-list li a:hover {
  background-color: var(--optionalColor);
}
.coming-soon-content .coming-soon-list li a:hover i {
  color: var(--whiteColor);
}
.choose-prohance p {
  width: 100%;
  float: left;
}

.choose-prohance h3 {
  margin-top: 15px;
}

/* ===========================================
error-content
=============================================*/
.error-content {
  text-align: center;
}
.error-content img {
  margin-bottom: 35px;
}
.error-content h1 {
  font-size: 300px;
  line-height: 1;
  font-weight: 700;
  color: var(--optionalColor);
}
.error-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--mainColor);
}
.error-content p {
  margin-bottom: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =================================
Start Our Blog Details Area
==================================*/
.single-blog-details-content .blog-details-img {
  margin-bottom: 25px;
}
.single-blog-details-content .blog-details-img img {
  border-radius: 10px;
}
.single-blog-details-content .blog-details-list {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 22px;
}
.single-blog-details-content .blog-details-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 30px;
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 400;
  color: var(--bodyColor);
  padding-left: 30px;
  position: relative;
}
.single-blog-details-content .blog-details-list li:last-child {
  margin-right: 0;
}
.single-blog-details-content .blog-details-list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-details-content .blog-details-list li a {
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 400;
  color: var(--bodyColor);
}
.single-blog-details-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.single-blog-details-content h3 {
  font-size: 30px;
  margin-bottom: 30px;
}
.single-blog-details-content p {
  margin-bottom: 20px;
}
.single-blog-details-content .event-details-card {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 10px;
  padding: 50px 50px 50px 130px;
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
}
.single-blog-details-content .event-details-card img {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-details-content .event-details-card p {
  margin-bottom: 0;
}
.single-blog-details-content .d-flex {
  margin-bottom: 50px;
  margin-top: 55px;
}
.single-blog-details-content .d-flex .popular-tags ul li {
  margin-top: 0;
}
.single-blog-details-content .d-flex .popular-tags ul li:first-child {
  margin-right: 0;
}
.single-blog-details-content .d-flex .popular-tags ul li span {
  font-size: 18px;
  font-weight: bold;
  color: var(--headingColor);
  font-family: var(--fontFamily);
  margin-right: 23px;
}
.single-blog-details-content .d-flex .blog-sewile-list ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.single-blog-details-content .d-flex .blog-sewile-list ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.single-blog-details-content .d-flex .blog-sewile-list ul li:last-child {
  margin-right: 0;
}
.single-blog-details-content .d-flex .blog-sewile-list ul li span {
  font-size: 18px;
  font-weight: bold;
  color: var(--headingColor);
  font-family: var(--fontFamily);
  margin-right: 20px;
}
.single-blog-details-content .d-flex .blog-sewile-list ul li a {
  width: 35px;
  height: 35px;
  line-height: 37px;
  background-color: var(--optionalColor);
  color: var(--whiteColor);
  border-radius: 50px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}
.single-blog-details-content .d-flex .blog-sewile-list ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-blog-details-content .blog-details-comment {
  background: #ffffff;
  border: 1px solid rgba(42, 7, 249, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.single-blog-details-content .blog-details-comment .comment-text {
  display: flex;
  align-items: center;
}
.single-blog-details-content .blog-details-comment .comment-text img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.single-blog-details-content .blog-details-comment .comment-text .client-name {
  margin-left: 20px;
}
.single-blog-details-content
  .blog-details-comment
  .comment-text
  .client-name
  h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.single-blog-details-content
  .blog-details-comment
  .comment-text
  .client-name
  p {
  margin-bottom: 0;
  font-size: 15px;
}
.single-blog-details-content .blog-details-comment p {
  margin-bottom: 0;
}
.single-blog-details-content .blog-details-comment .reply-btn {
  text-align: right;
  transition: var(--transition);
}
.single-blog-details-content .blog-details-comment .reply-btn .reply {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 5px;
  padding: 10px 20px;
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 400;
  color: var(--mainColor);
  transition: var(--transition);
}
.single-blog-details-content .blog-details-comment:hover {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.05);
  border-radius: 10px;
  border: 1px solid var(--whiteColor);
}
.single-blog-details-content .blog-details-comment:hover .reply-btn .reply {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-blog-details-content .leave-comment {
  margin-top: 25px;
}
.single-blog-details-content .leave-comment h3 {
  font-size: 30px;
  margin-bottom: 25px;
}
.single-blog-details-content .leave-comment .form-group .form-control {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15px 30px;
  border: none;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 25px;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-control::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-control::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.single-blog-details-content .leave-comment .form-group .form-control:focus {
  box-shadow: none;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.single-blog-details-content .leave-comment .form-group .form-check {
  margin-bottom: 30px;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-check
  .form-check-input {
  border-radius: 0px;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-check
  .form-check-input:checked[type="checkbox"] {
  background-image: none;
  background-color: transparent;
  position: relative;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-check
  .form-check-input:checked[type="checkbox"]::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  width: 8px;
  height: 8px;
  top: 3px;
  left: 3px;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-check
  .form-check-input:focus {
  box-shadow: none;
}
.single-blog-details-content
  .leave-comment
  .form-group
  .form-check
  .form-check-label {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
}

/* =========================================
Privacy Area
============================================*/
.privacy-text h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: var(--bodyFontFamily);
  font-weight: bold;
  color: var(--headingColor);
}
.privacy-text p {
  margin-bottom: 20px;
}
.privacy-text p:last-child {
  margin-bottom: 0;
}

/* =======================================
Start My Account area  
=========================================*/
.my-account-content {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 10px;
  padding: 56px 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.my-account-content h2 {
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}
.my-account-content h2::after {
  content: "";
  position: absolute;
  background-color: var(--optionalColor);
  width: 100px;
  height: 3px;
  left: 0;
  bottom: 0;
}
.my-account-content .text-account {
  float: right;
}
.my-account-content.register-form {
  padding: 45px 50px;
}
.my-account-content.register-form .form-control {
  margin-bottom: 23px;
}
.my-account-content .form-control {
  padding: 15px;
  border: 1px solid var(--whiteColor);
  background-color: var(--whiteColor);
  border-radius: 5px;
  margin-bottom: 23px;
  color: var(--bodyColor);
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 400;
}
.my-account-content .form-control::-moz-placeholder {
  color: var(--bodyColor);
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 400;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.my-account-content .form-control::placeholder {
  color: var(--bodyColor);
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 400;
  transition: var(--transition);
}
.my-account-content .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--mainColor);
  transition: var(--transition);
  border-radius: 5px;
}
.my-account-content .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.my-account-content .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.my-account-content .form-check {
  margin-bottom: 30px;
}
.my-account-content .form-check .form-check-input {
  border-radius: 0px;
}
.my-account-content .form-check .form-check-input:checked[type="checkbox"] {
  background-image: none;
  background-color: transparent;
  position: relative;
}
.my-account-content
  .form-check
  .form-check-input:checked[type="checkbox"]::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  width: 8px;
  height: 8px;
  top: 3px;
  left: 3px;
}
.my-account-content .form-check .form-check-input:focus {
  box-shadow: none;
}
.my-account-content .form-check .form-check-label {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
}
.my-account-content .default-btn {
  width: 100%;
  margin-bottom: 20px;
}
.my-account-content .border-or {
  text-align: center;
  position: relative;
}
.my-account-content .border-or::after {
  content: "";
  position: absolute;
  background-color: #dedede;
  width: 39%;
  height: 1px;
  left: 0;
  top: 50%;
}
.my-account-content .border-or::before {
  content: "";
  position: absolute;
  background-color: #dedede;
  width: 39%;
  height: 1px;
  right: 0;
  top: 50%;
}
.my-account-content .border-or span {
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  color: var(--bodyColor);
}
.my-account-content p {
  text-align: center;
}
.my-account-content p a {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 500;
  color: var(--bodyColor);
  margin-left: 5px;
  position: relative;
  z-index: 1;
}
.my-account-content p a::after {
  content: "";
  position: absolute;
  background-color: var(--bodyColor);
  width: 0%;
  height: 1px;
  left: 0;
  bottom: 0;
  right: 0;
  transition: var(--transition);
}
.my-account-content p a:hover::after {
  width: 100%;
}
.my-account-content .my-account-list {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.my-account-content .my-account-list ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.my-account-content .my-account-list ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
.my-account-content .my-account-list ul li:last-child {
  margin-right: 0;
}
.my-account-content .my-account-list ul li a {
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 50px;
  background-color: var(--optionalColor);
  color: var(--whiteColor);
  display: inline-block;
  transition: var(--transition);
  font-size: 17px;
}
.my-account-content .my-account-list ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.login-form {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================================
Start Contact Us Area 
===================================*/
.contact-area {
  position: relative;
  overflow: hidden;
}

.contact-form-content {
  margin-right: 40px;
}
.contact-form-content .section-title p {
  max-width: 725px;
}
.contact-form-content .form-group {
  margin-bottom: 20px;
}
.contact-form-content .form-group .form-control {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15px 20px;
  border: none;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.contact-form-content .form-group .form-control::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.contact-form-content .form-group .form-control::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.contact-form-content .form-group .form-control:focus {
  box-shadow: none;
}
.contact-form-content .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.contact-form-content .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.contact-form-content .form-group .form-check .form-check-input {
  border-radius: 0px;
}
.contact-form-content .form-group .form-check .form-check-input:focus {
  box-shadow: none;
}
.contact-form-content .form-group .form-check .form-check-label {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
}
.contact-form-content .form-group .form-check .form-check-label a {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  margin: 0px 5px;
  transition: var(--transition);
}
.contact-form-content .form-group .form-check .form-check-label a:hover {
  color: var(--optionalColor);
}
.contact-form-content .form-group .list-unstyled {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--mainColor);
}
.contact-form-content .text-danger {
  font-size: 18px;
  font-family: var(--bodyFontFamily);
  font-weight: bold;
  color: var(--mainColor);
}

.single-contact-card {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.05);
  border-radius: 10px;
  padding: 50px;
}
.single-contact-card .contact-box {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}
.single-contact-card .contact-box img {
  position: absolute;
  left: 0;
  top: 0;
}
.single-contact-card .contact-box h3 {
  font-size: 16px;
  color: var(--headingColor);
  margin-bottom: 10px;
}
.single-contact-card .contact-box ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.single-contact-card .contact-box ul li {
  list-style-type: none;
}
.single-contact-card .contact-box ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.single-contact-card .contact-list {
  padding-left: 30px;
}
.single-contact-card .contact-list h3 {
  font-size: 16px;
  color: var(--headingColor);
  margin-bottom: 20px;
}
.single-contact-card .contact-list ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.single-contact-card .contact-list ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
}
.single-contact-card .contact-list ul li:last-child {
  margin-right: 0;
}
.single-contact-card .contact-list ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
  background-color: var(--optionalColor);
  color: var(--whiteColor);
  display: inline-block;
  text-align: center;
  transition: var(--transition);
}
.single-contact-card .contact-list ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* ===================================
Start Our Sponsors Upcoming Area
=====================================*/
.sponsors-upcoming-area .section-title {
  max-width: 750px;
}

.sponsors-countdown .upcoming-list {
  margin-bottom: 50px;
  max-width: 785px;
  margin-left: auto;
  margin-right: auto;
}
.sponsors-countdown .upcoming-list .live-auctions-countdown {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.sponsors-countdown
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10 {
  position: relative;
  z-index: 1;
}
.sponsors-countdown
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10
  .live-auctions-countdown-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  text-align: center;
  margin-left: auto;
  z-index: -1;
  margin-right: auto;
}
.sponsors-countdown
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10
  p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--bodyColor);
  font-family: var(--bodyFontFamily);
}
.sponsors-countdown
  .upcoming-list
  .live-auctions-countdown
  .countdown-content-10
  span {
  color: var(--headingColor);
  font-size: 50px;
  font-family: var(--fontFamily);
  font-weight: bold;
}
.sponsors-countdown .sponsors-bottom {
  text-align: center;
}
.sponsors-countdown .sponsors-bottom .default-btn.btn-style-one {
  margin-right: 25px;
}

/* =====================================
Start Event Photo Area
======================================*/
.event-photo-area {
  position: relative;
}

.event-photo-img {
  position: relative;
  overflow: hidden;
}
.event-photo-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(42, 7, 249, 0.2);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: var(--transition);
  transform: scale(0);
}
.event-photo-img img {
  border-radius: 10px;
}
.event-photo-img .gallery-icon {
  position: absolute;
  transition: var(--transition);
  top: -85px;
  visibility: hidden;
  right: 30px;
  background-color: var(--whiteColor);
  padding: 40px 0px 0px 0px;
  border-radius: 0px 0px 28px 28px;
  opacity: 0;
  z-index: 1;
}
.event-photo-img .gallery-icon a i {
  color: var(--mainColor);
  background-color: #f8f8f8;
  padding: 10px;
  font-size: 25px;
  border-radius: 50px;
  transition: var(--transition);
  transition: var(--transition);
}
.event-photo-img .gallery-icon a i:hover {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
}
.event-photo-img:hover::after {
  transform: scale(1);
}
.event-photo-img:hover .gallery-icon {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.event-photo-slider .owl-stage-outer {
  border-radius: 10px;
}
.event-photo-slider.owl-theme .owl-nav {
  margin-top: 0;
}
.event-photo-slider.owl-theme .owl-nav [class*="owl-"] {
  font-size: 14px;
  padding: 0 !important;
  background: rgba(42, 7, 249, 0.1);
  border-radius: 50px;
  color: var(--headingColor);
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 55px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -70px;
  transition: var(--transition);
}
.event-photo-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.event-photo-slider.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -70px;
}

/* =====================================
Start Category Area
======================================*/
.category-area {
  position: relative;
  overflow: hidden;
}

.single-category-card {
  margin-left: 50px;
  padding: 45px 17px 45px 70px;
  background: #ffffff;
  border: 1px solid rgba(42, 7, 249, 0.1);
  border-radius: 5px;
  position: relative;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-category-card .category-img {
  overflow: hidden;
  transition: var(--transition);
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
  transition: var(--transition);
}
.single-category-card .category-img img {
  transition: var(--transition);
  border-radius: 50px;
}
.single-category-card h3 {
  font-size: 16px;
  font-weight: bold;
  color: var(--headingColor);
  font-family: var(--bodyFontFamily);
  margin-bottom: 5px;
  transition: var(--transition);
}
.single-category-card:hover {
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.05);
  border-radius: 5px;
}
.single-category-card:hover .category-img img {
  transform: scale(1.3);
}

/* =============================================
Start Blog style Three Area
==============================================*/
.blog-style-three-area {
  position: relative;
  overflow: hidden;
}
.blog-style-three-area .container-fluid {
  overflow: hidden;
  position: relative;
  left: calc((100% - 1320px) / 2);
}
.blog-style-three-area .section-title {
  margin-bottom: 0;
}
.blog-style-three-area .section-title h2 {
  font-size: 36px;
}
.blog-style-three-area .section-title p {
  max-width: 390px;
  font-size: 15px;
}

.single-blog-style-three-card img {
  width: auto !important;
}
.single-blog-style-three-card .blog-image {
  border-radius: 10px;
}
.single-blog-style-three-card .blog-image img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-blog-style-three-card .blog-style-two-content {
  background: #ffffff;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.03);
  border-radius: 10px;
  padding: 28px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: -50px;
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
}
.single-blog-style-three-card .blog-style-two-content h3 {
  font-size: 18px;
  line-height: 30px;
}
.single-blog-style-three-card .blog-style-two-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 20px;
}
.single-blog-style-three-card .blog-style-two-content ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
  margin-right: 30px;
  padding-left: 30px;
  position: relative;
}
.single-blog-style-three-card .blog-style-two-content ul li:last-child {
  margin-right: 0;
}
.single-blog-style-three-card .blog-style-two-content ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-style-three-card .blog-style-two-content ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
}

.blog-style-three-slider.owl-theme .owl-nav {
  position: absolute;
  left: -34%;
  bottom: 50px;
  margin-top: 0;
}
.blog-style-three-slider.owl-theme .owl-nav [class*="owl-"] {
  font-size: 14px;
  padding: 0 !important;
  background: rgba(42, 7, 249, 0.1);
  border-radius: 50px;
  color: var(--headingColor);
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 55px;
  transition: var(--transition);
}
.blog-style-three-slider.owl-theme .owl-nav [class*="owl-"]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* ===============================================
Start Faqs Area
===============================================*/
.faqs-area {
  background: #f9f9f9;
}
.faqs-area .section-title {
  max-width: 685px;
}

.faqs-img {
  padding-right: 15px;
}

.single-faqs-content {
  padding-left: 15px;
}
.single-faqs-content .accordion .accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 20px;
}
.single-faqs-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.single-faqs-content .accordion .accordion-item .accordion-header {
  border: none;
}
.single-faqs-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: #ef4b54;
  background: #ffffff;
  border: 1px solid rgba(42, 7, 249, 0.1);
  border-radius: 5px;
  transition: var(--transition);
  padding: 14px 25px;
}
.single-faqs-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  content: "\ed91";
  font-family: boxicons !important;
  background-image: none;
  font-size: 12px;
  position: relative;
  top: 5px;
  right: -10px;
  color: #ef4b54;
}
.single-faqs-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:focus {
  box-shadow: none;
}
.single-faqs-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: rgb(56 81 160 / 99%);
  border: 1px solid rgb(56 81 160);
  border-radius: 5px 5px 0px 0px;
  transition: var(--transition);
}
.single-faqs-content
  .accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  color: var(--mainColor);
  top: -4px;
}
.single-faqs-content .accordion .accordion-item .accordion-body {
  border: 1px solid rgb(56 81 160);
  border-top: none;
  border-radius: 0px 0px 5px 5px;
  padding: 23px;
}
.single-faqs-content .accordion .accordion-item .accordion-body p {
  color: #fff !important;
  font-size: 15px;
}

/* =================================================
Start Our Conference Schedules Area 
===================================================*/
.schedules-style-three-area {
  background-image: url(../images/conference-schedules/schedules-style-three-bg-img.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.schedules-style-three-area::after {
  background: linear-gradient(
    90deg,
    rgba(251, 53, 103, 0.7) 0%,
    rgba(42, 7, 249, 0.7) 100%
  );
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  content: "";
}
.schedules-style-three-area::before {
  background: rgba(17, 17, 17, 0.7);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  z-index: 1;
}
.schedules-style-three-area .section-title {
  z-index: 2;
  position: relative;
}
.schedules-style-three-area .section-title .top-title {
  color: var(--mainColor);
}
.schedules-style-three-area .section-title h2 {
  color: var(--whiteColor);
}

.schedules-style-3-tabs {
  position: relative;
  z-index: 2;
}
.schedules-style-3-tabs .nav {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  justify-content: center;
}
.schedules-style-3-tabs .nav.nav-pills.mb-3 {
  margin-bottom: 30px !important;
}
.schedules-style-3-tabs .nav.nav-pills .nav-item {
  margin-right: 25px;
}
.schedules-style-3-tabs .nav.nav-pills .nav-item:last-child {
  margin-right: 0;
}
.schedules-style-3-tabs .nav.nav-pills .nav-item .nav-link {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  padding: 18px 86px;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--fontFamily);
  color: var(--whiteColor);
  transition: var(--transition);
}
.schedules-style-3-tabs .nav.nav-pills .nav-item .nav-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  transition: var(--transition);
  border: 1px solid var(--mainColor);
}
.schedules-style-3-tabs .nav.nav-pills .nav-item .nav-link:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
}

.schedules-style-three-content {
  padding: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  margin-bottom: 30px;
}
.schedules-style-three-content .schedules-style-list ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.schedules-style-three-content .schedules-style-list ul li {
  list-style-type: none;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: #f5f5f5;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.schedules-style-three-content .schedules-style-list ul li:last-child {
  margin-bottom: 0;
}
.schedules-style-three-content .schedules-style-list ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.schedules-style-three-content .digital-schedules-item {
  max-width: 410px;
  margin-left: auto;
  margin-right: auto;
}
.schedules-style-three-content .digital-schedules-item h3 {
  font-size: 20px;
  color: var(--whiteColor);
  line-height: 30px;
}
.schedules-style-three-content .schedules-speakers-img {
  max-width: 333px;
  margin-left: auto;
}
.schedules-style-three-content .schedules-speakers-img ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.schedules-style-three-content .schedules-speakers-img ul li {
  list-style-type: none;
  display: inline-block;
  margin-left: -15px;
}
.schedules-style-three-content .schedules-speakers-img ul li:first-child {
  margin-left: 0;
}
.schedules-style-three-content .schedules-speakers-img ul li img {
  width: 45px;
  height: 45px;
  border-radius: 100%;
}
.schedules-style-three-content .schedules-speakers-img .speakers-text {
  margin-left: 30px;
}
.schedules-style-three-content .schedules-speakers-img .speakers-text h5 {
  font-size: 15px;
  font-weight: bold;
  color: var(--whiteColor);
  margin-bottom: 10px;
}
.schedules-style-three-content .schedules-speakers-img .speakers-text p {
  color: #c5c5c5;
}

/* =================================================
Start Why Join Conference Style three Area
====================================================*/
.join-conference-style-three-area {
  overflow: hidden;
  position: relative;
}
.join-conference-style-three-area
  .single-conference-content
  .section-title.left-title {
  margin-bottom: 15px;
}
.join-conference-style-three-area .single-conference-content .bg-text {
  margin-bottom: 30px;
}

.conference-style-three-img {
  text-align: right;
  position: relative;
  border-radius: 10px;
  margin-bottom: 45px;
}
.conference-style-three-img img {
  border-radius: 10px;
}
.conference-style-three-img .conference-style-3 {
  position: absolute;
  bottom: -45px;
  left: 20px;
}

/* ======================================
Start Conference Planning Area
=========================================*/
.planning-area {
  overflow: hidden;
}

.single-planning-content {
  background: #ffffff;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.04);
  border-radius: 0px 0px 10px 10px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-planning-content .planning-image {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-radius: 10px 10px 0px 0px;
}
.single-planning-content .planning-image img {
  border-radius: 10px 10px 0px 0px;
  transition: var(--transition);
}
.single-planning-content .planning-card {
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}
.single-planning-content .planning-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: var(--transition);
}
.single-planning-content:hover {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.07);
  border-radius: 0px 0px 10px 10px;
}
.single-planning-content:hover .planning-image img {
  transform: scale(1.2);
}

/* ====================================
Start Why Join Conference Area
=======================================*/
.join-conference-area {
  overflow: hidden;
}

.join-conference-image {
  position: relative;
}
.join-conference-image img {
  border-radius: 10px;
}
.join-conference-image .join-conference-image-two {
  position: absolute;
  bottom: 32px;
  background-color: var(--whiteColor);
  padding: 7px 0px 8px 8px;
  right: 15px;
  border-radius: 10px;
}
.join-conference-image .join-conference-image-two img {
  border-radius: 10px;
}
.join-conference-image .conference-experience {
  z-index: 1;
  position: absolute;
  top: 32px;
  right: 27px;
  max-width: 305px;
  margin-left: auto;
  text-align: left;
  padding: 15px 10px 15px 90px;
}
.join-conference-image .conference-experience::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  width: 100.5%;
  height: 103%;
  left: -1px;
  right: 0;
  top: -1px;
  bottom: 0;
  z-index: -1;
  transform: skew(-18deg);
}
.join-conference-image .conference-experience::before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 99.5%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transform: skew(-18deg);
}
.join-conference-image .conference-experience i {
  position: absolute;
  left: 28px;
  font-size: 48px;
  color: var(--mainColor);
  top: 55%;
  transform: translateY(-50%);
  z-index: 2;
}
.join-conference-image .conference-experience .odometer-content {
  position: relative;
  z-index: 2;
}
.join-conference-image .conference-experience .odometer-content h2 {
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  font-family: var(--fontFamily) !important;
}
.join-conference-image .conference-experience .odometer-content h2 .target {
  font-size: 16px;
  font-weight: bold;
  color: var(--headingColor);
  font-family: var(--fontFamily);
  position: relative;
  top: 1px;
}
.join-conference-image .conference-experience .odometer-content h2 .target-two {
  position: relative;
  top: 0.5px;
  left: 4px;
}
.join-conference-image
  .conference-experience
  .odometer-content
  h2
  .odometer-formatting-mark {
  display: none;
}

.join-conference-content {
  padding-left: 15px;
}
.join-conference-content .section-title h2 {
  margin-bottom: 10px;
}
.join-conference-content .join-conference-card {
  padding-left: 90px;
  position: relative;
  margin-bottom: 20px;
}
.join-conference-content .join-conference-card .join-sponsor-icon {
  width: 65px;
  height: 65px;
  line-height: 68px;
  border-radius: 50px;
  background: #ffffff;
  border: 1px solid rgba(251, 53, 103, 0.15);
  color: var(--mainColor);
  text-align: center;
  font-size: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.join-conference-content .join-conference-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.join-conference-content .join-conference-card:hover .join-sponsor-icon {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--whiteColor);
}
.join-conference-content .join-conference-item {
  display: flex;
  align-items: center;
}
.join-conference-content .join-conference-item img {
  border-radius: 10px;
  margin-right: 20px;
}
.join-conference-content .join-conference-item p {
  font-size: 15px;
  font-family: var(--fontFamily);
  font-weight: 500;
  color: var(--headingColor);
}

/*======================================
Start Conference Area
========================================*/
.conference-area {
  position: relative;
  overflow: hidden;
  background-color: #030613;
}

.single-conference-img {
  text-align: right;
  padding-right: 20px;
  position: relative;
}
.single-conference-img img {
  border-radius: 10px;
}
.single-conference-img .conference-experience {
  z-index: 1;
  position: relative;
  max-width: 305px;
  margin-left: auto;
  text-align: left;
  padding: 15px 15px 15px 105px;
  margin-top: 30px;
  margin-bottom: 30px;
  right: 15px;
}
.single-conference-img .conference-experience::after {
  content: "";
  position: absolute;
  background-color: var(--mainColor);
  width: 100.5%;
  height: 103%;
  left: -1px;
  right: 0;
  top: -1px;
  bottom: 0;
  z-index: -1;
  transform: skew(-18deg);
}
.single-conference-img .conference-experience::before {
  content: "";
  position: absolute;
  background: #ffffff;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transform: skew(-18deg);
}
.single-conference-img .conference-experience i {
  position: absolute;
  left: 40px;
  font-size: 48px;
  color: var(--mainColor);
  top: 55%;
  transform: translateY(-50%);
  z-index: 2;
}
.single-conference-img .conference-experience h5 {
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  z-index: 2;
  position: relative;
}
.single-conference-img .conference-img-2 {
  position: absolute;
  top: 0;
  left: 0;
}
.single-conference-img .conference-img-2 img {
  border-radius: 140px 10px 10px 140px;
}
.single-conference-img .conference-img-3 {
  position: absolute;
  bottom: -30px;
  left: 0;
  border: 12px solid #ffffff;
  border-bottom: none;
  border-radius: 20px;
}
.single-conference-img .conference-img-3 img {
  border-radius: 10px;
}

.single-conference-content .conference-item {
  padding-left: 89px;
  position: relative;
  margin-bottom: 25px;
}
.single-conference-content .conference-item .conference-icon {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border: 1px solid rgba(251, 53, 103, 0.15);
  line-height: 65px;
  text-align: center;
  border-radius: 50px;
  font-size: 35px;
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--transition);
  color: var(--mainColor);
}
.single-conference-content .conference-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-conference-content .conference-item:hover .conference-icon {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*=======================================
Start Conference Planning Area 
==========================================*/
.conference-planning-area {
  position: relative;
  overflow: hidden;
}
.conference-planning-area .col-lg-4:nth-child(1) .single-conference-card {
  margin-right: 30px;
}
.conference-planning-area .col-lg-4:nth-child(3) .single-conference-card {
  margin-left: 50px;
}
.conference-planning-area
  .col-lg-4:nth-child(3)
  .single-conference-card::after {
  display: none;
}
.conference-planning-area .col-lg-4:nth-child(2) .single-conference-card {
  margin-right: 25px;
  position: relative;
  left: 25px;
}

.single-conference-card {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.03);
  border-radius: 10px;
  padding: 80px 35px 35px 35px;
  position: relative;
  margin-top: 40px;
  transition: var(--transition);
  margin-bottom: 30px;
}
.single-conference-card::after {
  content: "";
  position: absolute;
  background: #fb3567;
  width: 42px;
  height: 1px;
  right: -58px;
  top: 50%;
  transform: translateY(-50%);
}
.single-conference-card .planning-icon {
  width: 85px;
  height: 85px;
  line-height: 95px;
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.05);
  border-radius: 50px;
  text-align: center;
  color: var(--mainColor);
  font-size: 48px;
  position: absolute;
  left: 35px;
  top: -40px;
  transition: var(--transition);
}
.single-conference-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.single-conference-card:hover {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.07);
  border-radius: 10px;
}
.single-conference-card:hover .planning-icon {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* ==========================================
Start Our Conference Schedules Area
=============================================*/
.conference-schedules-area {
  background-color: #f9f9f9;
}

.conference-schedules-content {
  padding: 30px;
  border-bottom: 1px solid rgba(42, 7, 249, 0.05);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.conference-schedules-content .conference-schedules-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}
.conference-schedules-content .single-schedules-item {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.conference-schedules-content .single-schedules-item .schedules-images {
  margin-right: 28px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  transition: var(--transition);
}
.conference-schedules-content .single-schedules-item .schedules-images img {
  border-radius: 10px;
  transition: var(--transition);
}
.conference-schedules-content .single-schedules-item .schedules-text span {
  font-size: 14px;
  font-weight: 600;
  color: var(--headingColor);
  font-family: var(--bodyFontFamily);
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  transition: var(--transition);
}
.conference-schedules-content .single-schedules-item .schedules-text span img {
  margin-right: 5px;
  transition: var(--transition);
}
.conference-schedules-content
  .single-schedules-item
  .schedules-text
  .client-item {
  padding-left: 65px;
  position: relative;
  transition: var(--transition);
}
.conference-schedules-content
  .single-schedules-item
  .schedules-text
  .client-item
  img {
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.conference-schedules-content
  .single-schedules-item
  .schedules-text
  .client-item
  h3 {
  font-size: 18px;
  font-weight: bold;
  font-family: var(--fontFamily);
  margin-bottom: 10px;
  transition: var(--transition);
}
.conference-schedules-content
  .single-schedules-item
  .schedules-text
  .client-item
  p {
  font-size: 15px;
  transition: var(--transition);
}
.conference-schedules-content .schedules-design-content {
  padding-right: 20px;
  transition: var(--transition);
}
.conference-schedules-content .schedules-design-content span {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: var(--optionalColor);
  display: inline-block;
  margin-bottom: 10px;
  transition: var(--transition);
}
.conference-schedules-content .schedules-design-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.conference-schedules-content .schedules-btn .default-btn {
  padding: 15.5px 28px;
  transition: var(--transition);
}
.conference-schedules-content:hover {
  background: #ffffff;
  border-radius: 10px;
  border-bottom: 1px solid #ffffff;
}
.conference-schedules-content:hover .schedules-design-content span {
  color: var(--mainColor);
}
.conference-schedules-content:hover .conference-schedules-shape {
  opacity: 1;
}
.conference-schedules-content:hover
  .single-schedules-item
  .schedules-images
  img {
  transform: scale(1.1);
}
.conference-schedules-content:hover .schedules-btn .default-btn {
  background-color: var(--mainColor);
}

.conference-schedules-tab .nav.nav-tabs {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(42, 7, 249, 0.15);
}
.conference-schedules-tab .nav.nav-tabs .nav-item .nav-link {
  padding: 18px 80.5px !important;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--fontFamily);
  color: var(--headingColor);
  outline: 0;
  border: none;
}
.conference-schedules-tab .nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  border-color: transparent;
  border-bottom: 2px solid var(--mainColor);
}
.conference-schedules-tab .nav.nav-tabs .nav-item .nav-link:hover {
  outline: 0;
}

/* ==================================
Start Conference Team Area
=======================================*/
.team-area {
  position: relative;
  overflow: hidden;
}

.team-three-area {
  overflow: hidden;
}

.team-card {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.team-card.team-card-two .team-list li a {
  background-color: var(--optionalColor);
  color: var(--whiteColor);
  transition: var(--transition);
}
.team-card.team-card-two .team-list li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.team-card.team-card-two .team-images {
  border-radius: 0px;
}
.team-card.team-card-two .team-images.bg-border-team-img {
  border-radius: 10px 0px 0px 10px;
}
.team-card.team-card-two .team-images.bg-border-team-img img {
  border-radius: 10px 0px 0px 10px;
}
.team-card.team-card-two .team-images.bg-border-team-img13 {
  border-radius: 0px 10px 10px 0px;
}
.team-card.team-card-two .team-images.bg-border-team-img13 img {
  border-radius: 0px 10px 10px 0px;
}
.team-card.team-card-two .team-images img {
  border-radius: 0px;
}
.team-card.team-card-three {
  background: linear-gradient(
    180deg,
    rgba(42, 7, 249, 0) 0%,
    rgba(42, 7, 249, 0.05) 100%
  );
  border-radius: 10px;
  position: relative;
  transition: var(--transition);
}
.team-card.team-card-three .team-three-images {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.team-card.team-card-three .team-three-images::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 29.81%,
    #fb3567 100%
  );
  box-shadow: 0px 0px 30px 5px rgba(17, 17, 17, 0.02);
  transform: rotate(176deg);
  transition: var(--transition);
}
.team-card.team-card-three .team-three-images img {
  border-radius: 100%;
  padding: 30px;
  transition: var(--transition);
}
.team-card.team-card-three .team-list-three {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.team-card.team-card-three .team-list-three li {
  list-style-type: none;
  margin-right: 5px;
  transition: var(--transition);
  display: inline-block;
}
.team-card.team-card-three .team-list-three li:last-child {
  margin-right: 0;
}
.team-card.team-card-three .team-list-three li a {
  background-color: var(--optionalColor);
  width: 35px;
  height: 35px;
  line-height: 38px;
  border-radius: 50px;
  color: var(--whiteColor);
  display: inline-block;
  font-size: 18px;
  transition: var(--transition);
}
.team-card.team-card-three .team-list-three li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.team-card.team-card-three .team-three-text {
  padding: 35px;
  transition: var(--transition);
}
.team-card.team-card-three:hover .team-three-images::after {
  transform: rotate(0);
}
.team-card.team-card-three:hover .team-list-three {
  visibility: visible;
  opacity: 1;
}
.team-card.team-card-three:hover .team-three-text {
  transform: translateY(-10px);
}
.team-card .team-images {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 25px;
  border-radius: 10px;
}
.team-card .team-images img {
  transition: var(--transition);
  border-radius: 10px;
}
.team-card .team-list {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.team-card .team-list li {
  list-style-type: none;
  margin-bottom: 10px;
  transition: var(--transition);
}
.team-card .team-list li:last-child {
  margin-bottom: 0;
}
.team-card .team-list li a {
  background-color: var(--whiteColor);
  width: 35px;
  height: 35px;
  line-height: 38px;
  border-radius: 50px;
  color: var(--optionalColor);
  display: inline-block;
  font-size: 18px;
  transition: var(--transition);
}
.team-card .team-list li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.team-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.team-card:hover .team-images img {
  transform: scale(1.1);
}
.team-card:hover .team-list {
  visibility: visible;
  opacity: 1;
}

.team-two-area {
  overflow: hidden;
}
.team-two-area .col-lg-3 {
  padding-left: 0;
  padding-right: 0;
}

/* ======================================
Start Best Sponsor Area
=======================================*/
.sponsor-pages-area {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.sponsor-pages-area .section-title {
  max-width: 580px;
  margin-bottom: 0;
}
.sponsor-pages-area .sponsor-logo-img {
  margin-bottom: 0;
  margin-top: 70px;
}

.sponsor-logo-img {
  margin-bottom: 50px;
}

.sponsor-logo-area .section-title {
  margin-bottom: 0;
}
.sponsor-logo-area .section-title h2 {
  margin-bottom: 0;
}
.sponsor-logo-area .row .col-lg-7 .col-lg-4:nth-child(4) .sponsor-logo-img {
  margin-bottom: 0;
}
.sponsor-logo-area .row .col-lg-7 .col-lg-4:nth-child(5) .sponsor-logo-img {
  margin-bottom: 0;
}

/* =======================================
Start Upcoming area
=========================================*/
.upcoming-area {
  position: relative;
  background-image: url(../images/upcoming-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  overflow: hidden;
}
.upcoming-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(251, 53, 103, 0.71) 0%,
    rgba(42, 7, 249, 0.82) 100%
  );
}
.upcoming-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(17, 17, 17, 0.5);
}
.upcoming-area .section-title {
  z-index: 10;
  position: relative;
  max-width: 100%;
}
.upcoming-area .section-title .top-title {
  color: #4ac7f0;
  font-size: 24px;
}
.upcoming-area .section-title h2 {
  color: var(--whiteColor);
  font-weight: 400;
}
.upcoming-area .upcoming-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.upcoming-area .upcoming-shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.upcoming-list {
  text-align: center;
  position: relative;
  z-index: 2;
}
.upcoming-list .live-auctions-countdown {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.upcoming-list .live-auctions-countdown li {
  width: 160px;
  height: 132px;
  border: 1px solid rgba(251, 53, 103, 0.4);
  border-radius: 10px;
  margin-right: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #e4e4e4;
  font-family: var(--bodyFontFamily);
}
.upcoming-list .live-auctions-countdown li:last-child {
  margin-right: 0;
}
.upcoming-list .live-auctions-countdown li span {
  color: var(--whiteColor);
  font-size: 50px;
  font-family: var(--fontFamily);
  font-weight: bold;
}
.upcoming-list .live-auctions-countdown .bgs-border-10 {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.upcoming-list .upcoming-btn {
  margin-top: 40px;
}

/* =======================================
Start Events Pages Area
========================================*/
.events-area .section-title {
  max-width: 600px;
}

.single-events-item {
  background: #ffffff;
  box-shadow: 0px 5px 30px 5px rgba(17, 17, 17, 0.03);
  border-radius: 0px 10px 10px 0px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-events-item .events-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px 0px 0px 10px;
  transition: var(--transition);
}
.single-events-item .events-image img {
  border-radius: 10px 0px 0px 10px;
  transition: var(--transition);
}
.single-events-item .events-content {
  padding: 0px 30px 0px 8px;
  transition: var(--transition);
}
.single-events-item .events-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 30px;
  transition: var(--transition);
}
.single-events-item .events-content p {
  margin-bottom: 18px;
  transition: var(--transition);
}
.single-events-item .events-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-left: -95px;
  transition: var(--transition);
}
.single-events-item .events-content ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
  margin-right: 25px;
  position: relative;
  padding-left: 30px;
}
.single-events-item .events-content ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-events-item .events-content ul li:last-child {
  margin-right: 0;
}
.single-events-item .events-content ul .events-list-cart {
  background: #ffffff;
  box-shadow: 5px 0px 30px 5px rgba(17, 17, 17, 0.05);
  border-radius: 5px;
  padding: 10px 20px 10px 40px;
}
.single-events-item .events-content ul .events-list-cart img {
  left: 13px;
}
.single-events-item:hover {
  background: #ffffff;
  box-shadow: 0px 5px 30px 5px rgba(17, 17, 17, 0.07);
  border-radius: 0px 10px 10px 0px;
}
.single-events-item:hover .events-image img {
  transform: scale(1.2);
}

/* =======================================
Start Event Details Area
========================================*/
.events-details-area {
  overflow: hidden;
  position: relative;
}

.single-event-details-content {
  padding-right: 20px;
}
.single-event-details-content .event-details-img {
  margin-bottom: 30px;
}
.single-event-details-content .event-details-img img {
  border-radius: 10px;
}
.single-event-details-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.single-event-details-content p {
  margin-bottom: 15px;
}
.single-event-details-content .event-details-card {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 10px;
  padding: 35px 35px 35px 120px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}
.single-event-details-content .event-details-card p {
  margin-bottom: 0;
}
.single-event-details-content .event-details-card img {
  position: absolute;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.single-event-details-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.single-event-details-content .event-details-list {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 35px;
}
.single-event-details-content .event-details-list li {
  list-style-type: none;
  padding-left: 30px;
  position: relative;
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 15px;
}
.single-event-details-content .event-details-list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-event-details-content .event-details-list li:last-child {
  margin-bottom: 0;
}
.single-event-details-content .team-card.team-card-three {
  margin-top: 30px;
}

.event-information-card {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.05);
  border-radius: 10px;
  padding: 45px;
}
.event-information-card h2 {
  font-size: 20px;
  padding-bottom: 12px;
  margin-bottom: 20px;
  position: relative;
}
.event-information-card h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: var(--optionalColor);
  left: 0;
  bottom: 0;
}
.event-information-card ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.event-information-card ul li {
  list-style-type: none;
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  color: var(--headingColor);
  font-size: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  position: relative;
}
.event-information-card ul li p {
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 16px;
  color: var(--mainColor);
  position: relative;
}
.event-information-card ul li p del {
  font-size: 15px;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
  font-weight: 400;
  margin-left: 15px;
}
.event-information-card ul li p .off {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: var(--optionalColor);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.event-information-card ul li span {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  font-size: 16px;
  position: absolute;
  right: 0;
}
.event-information-card .default-btn {
  width: 100%;
  margin-top: 20px;
}

/* =====================================
Start Some Faqs Area
======================================*/
.some-faqs-area {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.some-faqs-area .section-title {
  max-width: 700px;
}

/* =======================================
Start Our Blog Post Area
========================================*/
.blog-post-card {
  background: #ffffff;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.04);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.blog-post-card .blog-post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}
.blog-post-card .blog-post-img img {
  border-radius: 10px 10px 0px 0px;
  transition: var(--transition);
}
.blog-post-card .blog-post-text {
  padding: 30px;
}
.blog-post-card .blog-post-text ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 25px;
  vertical-align: middle;
}
.blog-post-card .blog-post-text ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
  padding-left: 28px;
  margin-right: 15px;
  position: relative;
}
.blog-post-card .blog-post-text ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
}
.blog-post-card .blog-post-text ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 18px;
}
.blog-post-card .blog-post-text ul li:first-child {
  padding-left: 0;
}
.blog-post-card .blog-post-text ul li:last-child {
  margin-right: 0;
}
.blog-post-card .blog-post-text ul li span {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--mainColor);
  transition: var(--transition);
}
.blog-post-card .blog-post-text ul li span:hover {
  background-color: var(--mainColor);
  color: #ef4b54;
}
.blog-post-card .blog-post-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 30px;
}
.blog-post-card:hover {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.07);
  border-radius: 0px 0px 10px 10px;
}
.blog-post-card:hover .blog-post-text .default-btn {
  background-color: var(--mainColor);
}
.blog-post-card:hover .blog-post-img img {
  transform: scale(1.1);
}

.blog-post-btn {
  text-align: center;
  margin-top: 15px;
}

.blog-post-right-bar {
  padding-left: 20px;
}

.blog-post-search {
  margin-bottom: 40px;
}
.blog-post-search .search-form {
  position: relative;
}
.blog-post-search .search-form .form-control {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 5px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
  border: none;
  padding: 15px 25px;
}
.blog-post-search .search-form .form-control::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.blog-post-search .search-form .form-control::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.blog-post-search .search-form .form-control:focus {
  box-shadow: none;
}
.blog-post-search .search-form .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.blog-post-search .search-form .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.blog-post-search .search-form .default-btn {
  position: absolute;
  padding: 0;
  top: 0;
  right: 0;
  width: 50px;
  height: 54px;
  line-height: 54px;
}

.recent-posts-card {
  margin-bottom: 40px;
}
.recent-posts-card h2 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
}
.recent-posts-card h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: var(--optionalColor);
  left: 0;
  bottom: 0;
}
.recent-posts-card .recent-posts-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.recent-posts-card .recent-posts-item .popular-post-img {
  background-image: url(../images/blog/popular-post-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 10px;
}
.recent-posts-card .recent-posts-item .recent-text {
  margin-left: 20px;
}
.recent-posts-card .recent-posts-item .recent-text p {
  font-size: 14px;
  font-weight: 400;
  color: var(--bodyColor);
  margin-bottom: 15px;
}
.recent-posts-card .recent-posts-item .recent-text h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
  color: var(--headingColor);
}

.blog-post-category {
  margin-bottom: 40px;
}
.blog-post-category h2 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 20px;
}
.blog-post-category h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: var(--optionalColor);
  left: 0;
  bottom: 0;
}
.blog-post-category ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.blog-post-category ul li {
  list-style-type: none;
  margin-bottom: 10px;
}
.blog-post-category ul li:last-child {
  margin-bottom: 0;
}
.blog-post-category ul li a {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--fontFamily);
  color: var(--headingColor);
}

.popular-tags h2 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  position: relative;
}
.popular-tags h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: var(--optionalColor);
  left: 0;
  bottom: 0;
}
.popular-tags ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.popular-tags ul li {
  list-style-type: none;
  display: inline-block;
  margin-top: 35px;
  margin-right: 10px;
}
.popular-tags ul li:last-child {
  margin-right: 0;
}
.popular-tags ul li a {
  background: #2b469e;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: var(--mainColor);
  transition: var(--transition);
}
.popular-tags ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* =======================================
Start Page Banner Area
========================================*/
.page-banner-area {
  background-image: url(../images/page/page-banner-bg-img-1.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 200px;
  width: auto;
  height: 100%;
  z-index: 1;
}
.page-banner-area.gallery-pages {
  background-image: url(../images/page/page-banner-bg-img-7.jpg);
}
.page-banner-area.gallery-pages::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.88) 34.9%,
    rgba(17, 17, 17, 0) 69.43%
  );
}
.page-banner-area.page-testimonials {
  background-image: url(../images/page/page-banner-bg-img-6.jpg);
}
.page-banner-area.page-testimonials::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.88) 34.9%,
    rgba(17, 17, 17, 0) 69.43%
  );
}
.page-banner-area.page-faqs {
  background-image: url(../images/page/page-banner-bg-img-5.jpg);
}
.page-banner-area.page-faqs::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.88) 34.9%,
    rgba(17, 17, 17, 0) 69.43%
  );
}
.page-banner-area.events-pages {
  background-image: url(../images/page/page-banner-bg-img-2.jpg);
}
.page-banner-area.events-pages.event-details {
  background-image: url(../images/page/page-banner-bg-img-4.jpg);
}
.page-banner-area.events-pages::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.88) 45.67%,
    rgba(17, 17, 17, 0) 90.45%
  );
}
.page-banner-area.page-pricing-table {
  background-image: url(../images/page/page-banner-bg-img-3.jpg);
}
.page-banner-area.page-pricing-table::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.88) 34.9%,
    rgba(17, 17, 17, 0) 69.43%
  );
}
.page-banner-area .container-fluid {
  padding-left: 50px;
  padding-right: 50px;
  max-width: 1520px;
  margin: auto;
}
.page-banner-area .page-banner-shape-1 {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 10%;
  text-align: center;
  animation: animationFramesOne 9s linear infinite;
}
.page-banner-area .page-banner-shape-2 {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  right: 6%;
  animation: rotateme 3s linear infinite;
  max-width: 90px;
}
.page-banner-area .page-banner-shape-3 {
  position: absolute;
  top: 16%;
  left: 1%;
  max-width: 45px;
  animation: movebounce 1s linear infinite;
}

.single-page-banner-content h1 {
  font-size: 50px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.single-page-banner-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.single-page-banner-content ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  font-size: 14px;
  color: var(--mainColor);
  margin-right: 15px;
  position: relative;
}
.single-page-banner-content ul li::after {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 15px;
  right: -10px;
  top: 4px;
  transform: rotate(17deg);
  background-color: var(--whiteColor);
}
.single-page-banner-content ul li:last-child {
  margin-right: 0;
}
.single-page-banner-content ul li:last-child::after {
  display: none;
}
.single-page-banner-content ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  font-size: 14px;
  color: var(--whiteColor);
}

/* =======================================
Start Why The Conference Area
===========================================*/
.conference-style-two-area {
  position: relative;
  overflow: hidden;
}

.why-the-conference-area {
  position: relative;
  overflow: hidden;
}

.why-the-conference-image {
  position: relative;
  margin-right: 50px;
  text-align: center;
  margin-bottom: 282px;
}
.why-the-conference-image.about-page-conference {
  margin-bottom: 0;
}
.why-the-conference-image img {
  border-radius: 10px;
}
.why-the-conference-image .why-the-conference-img-2 {
  background-color: var(--whiteColor);
  position: absolute;
  bottom: -290px;
  left: -18px;
  border-radius: 10px;
}
.why-the-conference-image .why-the-conference-img-2 img {
  margin: 8px;
}
.why-the-conference-image .why-the-conference-img-3 {
  position: absolute;
  right: 0;
  bottom: -253px;
}

.conference-style-two-img {
  border-radius: 10px;
}
.conference-style-two-img img {
  border-radius: 10px;
}

.why-the-conference-content {
  margin-left: -37px;
}
.why-the-conference-content.conference-style-two-content {
  background: #ffffff;
  box-shadow: 5px 0px 30px 5px rgba(17, 17, 17, 0.04);
  border-radius: 10px;
  padding: 40px;
  margin-left: -140px;
}
.why-the-conference-content.about-conference-content .section-title {
  margin-bottom: 20px;
}
.why-the-conference-content.about-conference-content ul {
  margin-bottom: 25px;
}
.why-the-conference-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 35px;
}
.why-the-conference-content ul li {
  list-style-type: none;
  font-family: var(--fontFamily);
  font-weight: 500;
  font-size: 16px;
  color: var(--headingColor);
  margin-bottom: 10px;
  padding-left: 40px;
  position: relative;
}
.why-the-conference-content ul li:last-child {
  margin-bottom: 0;
}
.why-the-conference-content ul li img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* =======================================
Start Our Testimonials Area 
=========================================*/
.testimonials-area {
  position: relative;
  overflow: hidden;
  background: #030613;
}
.testimonials-area .section-title {
  max-width: 630px;
}

.testimonials-card {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.02);
  border-radius: 10px;
  padding: 35px;
  position: relative;
  transition: var(--transition);
  margin-bottom: 30px;
}
.testimonials-card .testimonials-icon {
  position: absolute;
  top: 35px;
  right: 35px;
}
.testimonials-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--optionalColor);
  font-family: var(--bodyFontFamily);
  display: inline-block;
  margin-bottom: 18px;
  transition: var(--transition);
}
.testimonials-card .testimonials-cliend {
  padding-left: 75px;
  position: relative;
  margin-top: 25px;
}
.testimonials-card .testimonials-cliend img {
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
}
.testimonials-card .testimonials-cliend h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.testimonials-card:hover {
  background: #ffffff;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.07);
  border-radius: 10px;
}
.testimonials-card:hover span {
  color: var(--mainColor);
}

/* =====================================
Start Blog Area
=======================================*/
.blog-area {
  background-color: #030613;
  position: relative;
  z-index: 1;
  margin-top: -30px;
  padding-bottom: 50px;
}
.blog-area .blog-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  left: 10.5%;
}

.blog-item {
  position: relative;
  z-index: 1;
}

.single-blog-card {
  display: inline-flex;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.single-blog-card.single-blog-card-two {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.single-blog-card.single-blog-card-two .blog-text {
  position: relative;
  transform: translateY(100%);
  border-radius: 0px;
}
.single-blog-card.single-blog-card-two .blog-text::after {
  border-radius: 0px;
}
.single-blog-card.single-blog-card-three {
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  right: 0;
}
.single-blog-card.single-blog-card-three .blog-text {
  transform: translateY(200%);
}
.single-blog-card.single-blog-card-three .blog-text::after {
  border-radius: 0px 0px 5px 0px;
}
.single-blog-card .blog-img {
  border-radius: 10px 0px 0px 10px;
  transition: var(--transition);
  background-image: url(../images/blog/blog-1.jpg);
  width: 665px;
  height: 654px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.single-blog-card .blog-img.blog-img-two {
  background-image: url(../images/blog/blog-2.jpg);
  opacity: 0;
  visibility: hidden;
}
.single-blog-card .blog-img.blog-img-three {
  background-image: url(../images/blog/blog-3.jpg);
  opacity: 0;
  visibility: hidden;
}
.single-blog-card .blog-text {
  position: relative;
  z-index: 1;
  padding: 30px;
  height: 50%;
}
.single-blog-card .blog-text::after {
  background: #ffffff;
  border-radius: 0px 10px 0px 0px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
}
.single-blog-card .blog-text ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.single-blog-card .blog-text ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
  padding-left: 30px;
  margin-right: 30px;
  position: relative;
}
.single-blog-card .blog-text ul li:last-child {
  margin-right: 0;
}
.single-blog-card .blog-text ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-card .blog-text ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
  transition: var(--transition);
}
.single-blog-card .blog-text ul li a:hover {
  color: var(--optionalColor);
}
.single-blog-card .blog-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--headingColor);
  margin-bottom: 25px;
  margin-top: 25px;
  line-height: 30px;
}
.single-blog-card:hover .blog-img {
  visibility: visible;
  opacity: 1;
}

.blog-right-hover-content {
  margin-left: 30px;
}

.blog-image {
  position: relative;
  z-index: 1;
}
.blog-image img {
  border-radius: 10px 0px 0px 10px;
}
.blog-image .blog-img1 {
  transition: var(--transition);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 0;
}
.blog-image .blog-img1.active {
  opacity: 1;
  visibility: visible;
}
.blog-image .blog-img2 {
  transition: var(--transition);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 0;
}
.blog-image .blog-img2.active {
  opacity: 1;
  visibility: visible;
}

.blog-hover-content {
  margin-left: -24px;
}
.blog-hover-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.blog-hover-content ul li {
  list-style-type: none;
  border-bottom: 1px solid rgba(42, 7, 249, 0.01);
}
.blog-hover-content ul li:last-child {
  border-bottom: none;
}
.blog-hover-content ul li .single-hover-content {
  background: #ffffff;
  border-radius: 0px 10px 0px 0px;
  padding: 26px;
  transition: var(--transition);
}
.blog-hover-content ul li .single-hover-content:hover {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 0px;
}
.blog-hover-content ul li .single-hover-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 15.5px;
}
.blog-hover-content ul li .single-hover-content ul li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
  margin-right: 30px;
  position: relative;
  padding-left: 30px;
  border-bottom: none;
}
.blog-hover-content ul li .single-hover-content ul li img {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.blog-hover-content ul li .single-hover-content ul li:last-child {
  margin-right: 0;
}
.blog-hover-content ul li .single-hover-content ul li a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
}
.blog-hover-content ul li .single-hover-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 35px;
}
.blog-hover-content ul li .single-hover-content .read-more {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  color: var(--mainColor);
  font-size: 16px;
}
.blog-hover-content ul li .single-hover-content .read-more i {
  color: var(--mainColor);
}

/* ========================================
Start Blog style Two Area
==========================================*/
.blog-style-two-area {
  overflow: hidden;
  position: relative;
}

.single-blog-style-two-card {
  margin-bottom: 30px;
}
.single-blog-style-two-card .blog-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-blog-style-two-card .blog-image img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-blog-style-two-card .blog-style-two-content {
  position: relative;
}
.single-blog-style-two-card .blog-style-two-content .date {
  right: 40px;
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.06);
  border-radius: 5px;
  max-width: 80px;
  padding: 10px;
  text-align: center;
  position: absolute;
  top: -66px;
  left: 0;
  margin-left: auto;
  z-index: 1;
}
.single-blog-style-two-card .blog-style-two-content .date span {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  font-size: 15px;
  color: var(--optionalColor);
  display: inline-block;
  margin-bottom: 5px;
}
.single-blog-style-two-card .blog-style-two-content .date p {
  font-size: 15px;
  font-weight: 600;
  color: var(--optionalColor);
  font-family: var(--bodyFontFamily);
}
.single-blog-style-two-card .blog-style-two-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.single-blog-style-two-card .blog-style-two-content ul li {
  list-style-type: none;
  display: inline-block;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
  padding-left: 30px;
  margin-right: 30px;
  position: relative;
}
.single-blog-style-two-card .blog-style-two-content ul li span {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--bodyFontFamily);
  color: var(--mainColor);
  transition: var(--transition);
}
.single-blog-style-two-card .blog-style-two-content ul li span:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.single-blog-style-two-card .blog-style-two-content ul li:first-child {
  padding-left: 0;
}
.single-blog-style-two-card .blog-style-two-content ul li:last-child {
  margin-right: 0;
}
.single-blog-style-two-card .blog-style-two-content ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-style-two-card .blog-style-two-content ul li a {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 14px;
  color: var(--bodyColor);
  transition: var(--transition);
}
.single-blog-style-two-card .blog-style-two-content ul li a:hover {
  color: var(--optionalColor);
}
.single-blog-style-two-card .blog-style-two-content h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  margin-top: 30px;
  transition: var(--transition);
}
.single-blog-style-two-card:hover .blog-image img {
  transform: scale(1.3);
}
.single-blog-style-two-card:hover .blog-style-two-content h3 {
  color: var(--mainColor);
}

/* =========================================
Start Subscribed Form Area
===========================================*/
.subscribed-form-item {
  background-color: var(--optionalColor);
  padding: 70px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: -113px;
  z-index: 2;
}
.subscribed-form-item .section-title {
  margin-bottom: 0;
}
.subscribed-form-item .section-title .top-title {
  color: var(--whiteColor);
}
.subscribed-form-item .section-title h2 {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.subscribed-form-item .subscribed-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.subscribed-form .newsletter-form {
  position: relative;
  max-width: 615px;
  margin-left: auto;
}
.subscribed-form .newsletter-form .form-control {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px 30px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.subscribed-form .newsletter-form .form-control::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.subscribed-form .newsletter-form .form-control::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
}
.subscribed-form .newsletter-form .form-control:focus {
  box-shadow: none;
}
.subscribed-form .newsletter-form .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.subscribed-form .newsletter-form .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.subscribed-form .newsletter-form .validation-danger {
  position: absolute;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--whiteColor);
}
.subscribed-form .newsletter-form .default-btn {
  position: absolute;
  top: 5.5px;
  right: 5.5px;
}

/* ========================================= 
Start Our Conference Location Area
===========================================*/
.location-conference-area {
  position: relative;
  overflow: hidden;
}

.location-conference-form {
  background: #ffffff;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.05);
  border-radius: 10px;
  padding: 29px;
}
.location-conference-form h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1d1d1;
  margin-bottom: 20px;
}
.location-conference-form .form-group .form-control {
  background-color: #f5f5f5;
  padding: 15px 25px;
  border-radius: 5px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  font-size: 16px;
  border: none;
  margin-bottom: 20px;
}
.location-conference-form .form-group .form-control::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  font-size: 16px;
}
.location-conference-form .form-group .form-control::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  font-size: 16px;
}
.location-conference-form .form-group .form-control:focus {
  box-shadow: none;
}
.location-conference-form .form-group .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.location-conference-form .form-group .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.location-conference-form .form-group .select-icon {
  position: relative;
}
.location-conference-form .form-group .select-icon i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  font-size: 13px;
  color: var(--optionalColor);
}
.location-conference-form .form-group .form-select {
  background-color: #f5f5f5;
  padding: 15px 25px;
  border-radius: 5px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: var(--bodyColor);
  font-size: 16px;
  border: none;
  margin-bottom: 20px;
  background-image: none;
}
.location-conference-form .form-group .form-select i {
  position: absolute;
  right: 0;
  top: 0;
}
.location-conference-form .form-group .form-select:focus {
  box-shadow: none;
}
.location-conference-form .default-btn {
  width: 100%;
}

.location-image {
  position: relative;
  z-index: 1;
}
.location-image .location-shape {
  position: absolute;
  bottom: 0;
  left: -22px;
  right: 0;
  z-index: -1;
}

.location-branch-card {
  position: relative;
  padding: 30px;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.location-branch-card::before {
  content: "";
  position: absolute;
  background-image: url(../images/location-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  animation: heartBeat 20s infinite linear;
}
.location-branch-card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}
.location-branch-card h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #545454;
  margin-bottom: 20px;
  color: var(--whiteColor);
}
.location-branch-card .location-text {
  margin-bottom: 20px;
}
.location-branch-card .location-text h4 {
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.location-branch-card .location-text p {
  color: #c0c0c0;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}

/* =======================================
Start Schedules Style Two Area 
=========================================*/
.schedules-style-two-area {
  background: #f9f9f9;
  overflow: hidden;
  position: relative;
}

.schedules-style-two-tabs .nav {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  justify-content: center;
}
.schedules-style-two-tabs .nav.nav-pills.mb-3 {
  margin-bottom: 30px !important;
}
.schedules-style-two-tabs .nav.nav-pills .nav-item {
  margin-right: 25px;
}
.schedules-style-two-tabs .nav.nav-pills .nav-item:last-child {
  margin-right: 0;
}
.schedules-style-two-tabs .nav.nav-pills .nav-item .nav-link {
  background: rgba(42, 7, 249, 0.05);
  border-radius: 10px;
  padding: 18px 86px;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--fontFamily);
  color: var(--headingColor);
  transition: var(--transition);
}
.schedules-style-two-tabs .nav.nav-pills .nav-item .nav-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  transition: var(--transition);
}
.schedules-style-two-tabs .nav.nav-pills .nav-item .nav-link:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.schedules-style-two-content {
  background: #ffffff;
  border-radius: 10px;
  padding: 35px;
  margin-bottom: 30px;
}
.schedules-style-two-content .schedules-style-list ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.schedules-style-two-content .schedules-style-list ul li {
  list-style-type: none;
  position: relative;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 15px;
  padding-left: 30px;
}
.schedules-style-two-content .schedules-style-list ul li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.schedules-style-two-content .schedules-style-list ul li:last-child {
  margin-bottom: 0;
}
.schedules-style-two-content .digital-schedules-item {
  max-width: 586px;
  position: relative;
  left: -50px;
}
.schedules-style-two-content .digital-schedules-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.schedules-style-two-content .digital-schedules-item p {
  margin-bottom: 25px;
}
.schedules-style-two-content .digital-schedules-item .schedules-client {
  position: relative;
  padding-left: 70px;
}
.schedules-style-two-content .digital-schedules-item .schedules-client img {
  border-radius: 100%;
  width: 45px;
  height: 45px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.schedules-style-two-content .digital-schedules-item .schedules-client h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
.schedules-style-two-content .digital-schedules-item .schedules-client p {
  font-size: 15px;
  margin-bottom: 0;
}
.schedules-style-two-content .digital-schedules-item .client-speakers {
  padding-left: 115px;
  position: relative;
}
.schedules-style-two-content .digital-schedules-item .client-speakers img {
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 45px;
  height: 45px;
}
.schedules-style-two-content
  .digital-schedules-item
  .client-speakers
  .client-bg-img-two {
  left: 55px;
}
.schedules-style-two-content
  .digital-schedules-item
  .client-speakers
  .client-text
  span {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
  font-weight: 400;
  display: inline-block;
  margin-bottom: 5px;
}
.schedules-style-two-content
  .digital-schedules-item
  .client-speakers
  .client-text
  p {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
  font-weight: 400;
  margin-bottom: 0;
}
.schedules-style-two-content .schedules-speakers-img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.schedules-style-two-content .schedules-speakers-img img {
  border-radius: 10px;
  transition: var(--transition);
}
.schedules-style-two-content .schedules-speakers-img:hover img {
  transform: scale(1.1);
}

/* ========================================
Start Secure Your Place Now Area
==========================================*/
.place-area {
  overflow: hidden;
  position: relative;
}
.place-area .section-title {
  max-width: 525px;
}

.plans-switcher .toggler.toggler--is-active {
  color: var(--mainColor);
}

.plans-switcher {
  text-align: center;
  margin-bottom: 45px;
}
.plans-switcher .toggler {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: #111111;
}
.plans-switcher .switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
}
.plans-switcher .toggle {
  position: relative;
  width: 70px;
  height: 35px;
  background: rgba(251, 53, 103, 0.15);
  border-radius: 50px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: var(--headingColor);
}
.plans-switcher .toggle .check {
  position: absolute;
  display: block;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 6;
}
.plans-switcher .toggle .check:checked ~ .switch {
  right: 5px;
  left: 57.5%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}
.plans-switcher .toggle .switch {
  position: absolute;
  left: 5px;
  top: 2.5px;
  bottom: 5px;
  right: 58.5%;
  background-color: var(--mainColor);
  border-radius: 50px;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
}

.wrapper-full.hide {
  display: none;
}

.single-plans-table {
  background: #ffffff;
  box-shadow: 0px 6px 30px rgba(17, 17, 17, 0.04);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  margin-bottom: 30px;
}
.single-plans-table .plans-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}
.single-plans-table .plans-header span {
  font-size: 16px;
  color: var(--headingColor);
  font-family: var(--fontFamily);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.single-plans-table .plans-header .price {
  font-size: 40px;
  font-family: var(--fontFamily);
  font-weight: bold;
  color: var(--headingColor);
  margin-bottom: 10px;
}
.single-plans-table .plans-header .price.bg-price-color {
  color: var(--optionalColor);
}
.single-plans-table .plans-features-list {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-bottom: 30px;
}
.single-plans-table .plans-features-list li {
  list-style-type: none;
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}
.single-plans-table .plans-features-list li:last-child {
  margin-bottom: 0;
}
.single-plans-table .default-btn {
  transition: var(--transition);
}
.single-plans-table:hover {
  background: #ffffff;
  box-shadow: 0px 6px 30px 5px rgba(17, 17, 17, 0.06);
  border-radius: 10px;
}
.single-plans-table:hover .default-btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* =======================================
Start Footer area
========================================*/
.footer-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url(../images/footer/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.footer-area.footer-style-two {
  padding-top: 213px;
}
.footer-area.footer-style-two .footer-instagram {
  left: 0;
}
.footer-area.footer-style-two .footer-instagram .row {
  margin: 0 -28px;
}
.footer-area.footer-style-two .footer-instagram .row .col-xl-4 {
  padding: 0 6px;
}
.footer-area.footer-style-two .footer-widget.services-widget {
  padding-left: 90px;
}
.footer-area.footer-style-two .footer-widget.footer-widget-link {
  padding-left: 60px;
}
.footer-area.footer-style-two .footer-widget.footer-widget-link2 {
  left: 0;
}
.footer-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6);
}

.footer-widget img {
  margin-bottom: 25px;
}
.footer-widget p {
  color: #ffffff;
}
.footer-widget h2 {
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-widget .footer-widget-list {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.footer-widget .footer-widget-list li {
  list-style-type: none;
  margin-bottom: 15px;
}
.footer-widget .footer-widget-list li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-widget-list li a {
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: #ffffff;
  transition: var(--transition);
}
.footer-widget .footer-widget-list li a:hover {
  color: var(--whiteColor);
}
.footer-widget.footer-widget-link {
  position: relative;
  padding-left: 38px;
}
.footer-widget.footer-widget-link2 {
  position: relative;
  left: -45px;
}

.footer-instagram {
  position: relative;
  left: -65px;
}
.footer-instagram h2 {
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold;
  margin-bottom: 13px;
  position: relative;
  left: -20px;
}
.footer-instagram .row {
  margin: 0 -28px;
}
.footer-instagram .row .col-xl-4 {
  padding: 0 6px;
}
.footer-instagram .instagram-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 12px;
}
.footer-instagram .instagram-img img {
  border-radius: 5px;
  transition: var(--transition);
}
.footer-instagram .instagram-img:hover img {
  transform: scale(1.3);
}

.footer-subscribe {
  margin-left: -10px;
}
.footer-subscribe h2 {
  font-size: 18px;
  color: var(--whiteColor);
  font-weight: bold;
  margin-bottom: 24px;
}
.footer-subscribe .newsletter-form .form-control {
  background-color: transparent;
  padding: 15px;
  border: 1px solid rgba(251, 53, 103, 0.3);
  border-radius: 5px;
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  color: var(--whiteColor);
  font-size: 14px;
  margin-bottom: 20px;
}
.footer-subscribe .newsletter-form .form-control::-moz-placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-subscribe .newsletter-form .form-control::placeholder {
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-subscribe .newsletter-form .form-control:focus {
  box-shadow: none;
}
.footer-subscribe .newsletter-form .form-control:focus::-moz-placeholder {
  color: transparent;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.footer-subscribe .newsletter-form .form-control:focus::placeholder {
  color: transparent;
  transition: var(--transition);
}
.footer-subscribe .newsletter-form .default-btn {
  width: 100%;
}
.footer-subscribe .newsletter-form .validation-danger {
  font-family: var(--bodyFontFamily);
  font-weight: 500;
  color: var(--whiteColor);
  font-size: 14px;
  position: absolute;
}

/* =====================================
Copy Right Area 
========================================*/
.copyright-content {
  text-align: center;
  margin-top: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(170, 170, 170, 0.3);
}
.copyright-content p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.copyright-content p b {
  font-size: 16px;
  color: #fff;
  font-family: var(--bodyFontFamily);
  font-weight: 600;
}
.copyright-content p a {
  font-size: 16px;
  color: var(--mainColor);
  font-family: var(--bodyFontFamily);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.copyright-content p a:hover {
  color: var(--whiteColor);
}

/* ====================================
Go Top CSS
=======================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  top: 93%;
  right: -10%;
  background-color: var(--optionalColor);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  transition: 0.9s;
}
.go-top.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 93%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--mainColor);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top:hover {
  color: #ffffff;
  background-color: var(--mainColor);
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

/* ===========================================
Animate 
==============================================*/
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
.rotateme {
  animation-name: rotateme;
  animation-duration: 50s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
/* =============================================
Ripple Animation
================================================*/
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.75);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}
/* ==================================================
Responsive Style 
=====================================================*/
@media only screen and (max-width: 991px) {
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav .logo {
    text-decoration: none;
    position: absolute;
    top: 11px;
    z-index: 999;
    left: 0;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
  }
  .mean-container .mean-bar {
    background-color: #000;
    padding: 0;
  }
  .mean-container a.meanmenu-reveal {
    padding: 15px 15px 0 0;
  }
  .mobile-nav nav .navbar-nav .nav-item a i {
    display: none;
  }
  .main-nav {
    display: none !important;
  }
}
/* ==================================================
Others Option For Responsive Area Style
======================================================*/
.others-option-for-responsive {
  display: none;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 55px;
  top: -15px;
}
.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: #2a07f9;
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--mainColor);
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: -2px;
  top: 15px;
  max-width: 320px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
  transform: scaleY(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
} /*# sourceMappingURL=style.css.map */

/* Exhibition Section */
.exhibition-section {
  padding: 70px 0 70px;
  background: linear-gradient(
    90deg,
    rgb(17 28 78) 0%,
    rgb(7 4 52) 50%,
    rgb(1 2 19) 100%
  );
}

.content-box h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  color: #4ac7f0;
  margin-bottom: 15px;
}

.content-box h2 span {
  color: #ef4b54;
}

.content-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.1px;
  text-align: justify;
  text-justify: inter-word;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #34495e;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #ff4c53;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.quote-btn {
  display: inline-block;
  background: #ff4c53;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(214, 11, 18, 0.25);
}

.quote-btn:hover {
  background: #2337c6;
  color: #fff;
  transform: translateY(-3px);
}

.image-box {
  border: 3px solid #ff4c53;
  border-radius: 30px;
  overflow: hidden;
  padding: 10px;
}

.image-box img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .content-box h2 {
    font-size: 36px;
  }

  .image-box {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .exhibition-section {
    padding: 60px 0;
  }

  .content-box h2 {
    font-size: 30px;
  }

  .content-box p,
  .feature-list li {
    font-size: 16px;
  }

  .quote-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}
.stats-section {
  background: #2b469e;
  padding: 15px 0;
}

.stats-grid {
  display: flex;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  text-align: center;
  justify-content: space-between;
}

.stat-item {
  color: #fff;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 18px;
  color: #fff;
}

.stat-item h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
    display: grid;
  }

  .stat-item h4 {
    font-size: 15px;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
  }

  .stat-icon i {
    font-size: 22px;
  }
}
.about-cta-card {
  margin-top: 1.4rem;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgb(198 5 14 / 34%);
  background: linear-gradient(90deg, rgba(198, 5, 14, 0.1), #0a254f21);
}
.about-cta-title {
  margin: 0 0 10px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #fff;
}
.about-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.about-cta-links a {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #ef4b54 !important;
  line-height: 1.5 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  letter-spacing: 0.4px;
}
.image-box-about {
  padding: 10px;
}
.image-box-about img {
  width: 100%;
  min-height: 400px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.solutions-section {
  padding: 0px 0 70px;
  background: #030613;
}
.top-bar .fa-envelope,
.top-bar .fa-phone {
  color: #fff;
}
.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #4ac7f0;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: #fff;
  padding: 24px;
  text-align: center;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  transform: translateY(-8px);
}

.icon {
  width: 40px;
  height: 40px;
  border: 1px solid #f1b3b3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4c53;
  font-size: 18px;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 18px;
  color: #2b469e;
  margin-bottom: 10px;
}

.solution-card p {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.solution-card a {
  color: #ff4c53;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 991px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 30px;
  }
}
.cta-section {
  background: #2b469e;
  padding: 20px 0;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-box {
  min-width: 243px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #2337c6;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta-box:hover {
  transform: translateY(-4px);
  color: #ff4c53;
}

.cta-icon {
  font-size: 18px;
  color: #2337c6;
  transition: 0.3s;
}

.cta-box:hover .cta-icon {
  color: #ff4c53;
}

@media (max-width: 991px) {
  .cta-wrapper {
    gap: 20px;
  }

  .cta-box {
    min-width: 240px;
    font-size: 16px;
    padding: 16px 20px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper {
    flex-direction: column;
  }

  .cta-box {
    width: 100%;
    max-width: 350px;
  }
}
.why-choose-section {
  padding: 70px 0;
  background: #030613;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: #4ac7f0;
  margin-bottom: 15px;
}

.section-header h2 span {
  color: #ef4b54;
}

.section-header p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgb(201 194 194 / 26%);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #ef4b54;
  border-radius: 5px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #ef4b54;
  float: left;
  margin-right: 20px;
  text-align: center;
}

.why-card h3 {
  font-size: 18px;
  color: #2b469e;
  margin-bottom: 10px;
  line-height: 1.4;
}
.why-card i {
  font-size: 43px;
  text-align: center;
  margin: 2px auto;
}
.why-card p {
  color: #000;
  line-height: 1.5;
  font-size: 15px;
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .why-card {
    padding: 25px;
  }

  .why-card h3 {
    font-size: 22px;
  }
}
.our-work-section {
  padding: 0px 0 70px;
  background: #030613;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2337c6;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: #ef4b54;
}

.section-title p {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.work-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.work-card:hover {
  transform: translateY(-8px);
}

.work-image {
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.5s;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-content {
  padding: 25px;
}

.work-content h3 {
  font-size: 18px;
  color: #2337c6;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-size {
  font-size: 20px;
  font-weight: 700;
  color: #ff4e56;
  margin-top: 10px;
  margin-bottom: 10px;
}

.project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b7280;
  font-size: 16px;
}

.work-btn {
  text-align: center;
  margin-top: 50px;
}

.btn-load {
  display: inline-block;
  background: #ff4c53;
  color: #fff;
  padding: 10px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(213, 0, 0, 0.25);
}

.btn-load:hover {
  background: #b40000;
  color: #fff;
}

@media (max-width: 991px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .our-work-section {
    padding: 70px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .work-content h3 {
    font-size: 24px;
  }

  .work-image img {
    height: 250px;
  }
}
.clients-section {
  padding: 70px 0;
  background: #030613;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #4ac7f0;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: #ef4b54;
}

.section-title p {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.client-item {
  background: #fff;
  border-radius: 10px;
  height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.client-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: 0.3s;
}

.client-item:hover img {
  filter: grayscale(0%);
}

@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .client-item {
    height: 110px;
    padding: 15px;
  }

  .client-item img {
    max-height: 50px;
  }
}
.faq-section {
  padding: 0px 0 70px;
  background: #030613;
}

.section-title span {
  color: #e30613;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 30px;
  align-items: start;
}

/* FAQ */

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  border: none;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #0f172a;
}

.faq-question span {
  font-size: 22px;
  color: #e30613;
}

.faq-answer {
  padding: 0 25px 20px;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.8;
  font-size: 16px;
}

/* Form */

.quote-form {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quote-form h3 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0f172a;
}

.quote-form p {
  color: #64748b;
  margin-bottom: 25px;
}

.quote-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  height: 40px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.quote-form input:focus {
  border-color: #e30613;
}

.quote-form button {
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #e30613;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.quote-form button:hover {
  background: #b8000b;
}

/* Responsive */

@media (max-width: 991px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .quote-form h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .faq-question {
    font-size: 16px;
    padding: 18px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .quote-form {
    padding: 25px;
  }
}
.footer-content {
  text-align: left;
}
.footer-content ul {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
.footer-content ul li {
  list-style-type: none;
  display: inline-block;
  padding-left: 28px;
  margin-right: 25px;
  position: relative;
  margin-bottom: 10px;
}
.footer-content ul li p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}
.footer-content ul li img {
  position: absolute;
  left: 0;
  top: 53%;
  transform: translateY(-50%);
}
.footer-content ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  font-family: var(--bodyFontFamily);
}
.submenu-right-content ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}
ul.team-list li {
  margin: 0;
  padding: 0 10px;
  display: inline-flex;
}
.team-list i {
  font-size: 20px;
}
.team-list i {
  font-size: 20px;
  margin-top: 20px;
}

/* ...........new css page............ */

.pt-20 {
  padding-top: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}

.vision-mission-section {
  padding: 70px 0;
  background: #030613;
  position: relative;
}

.section-title span {
  display: inline-block;
  color: #ff4d53;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vm-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vm-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #ff4d53;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3f9ce4, #2131c499);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vm-icon i {
  color: #fff;
  font-size: 34px;
}

.vm-card h3 {
  font-size: 30px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.vm-card p {
  color: #64748b;
  line-height: 1.9;
  font-size: 16px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }

  .vm-wrapper {
    grid-template-columns: 1fr;
  }

  .vm-card {
    padding: 35px 25px;
  }
}

.why-choose-prohance {
  padding: 70px 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.why-choose-prohance::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}

.why-choose-prohance::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
}

.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-heading span {
  display: inline-block;
  color: #ff4d53;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-heading h2 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-heading p {
  color: #cbd5e1;
  line-height: 1.8;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.choose-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.choose-card:hover {
  transform: translateY(-10px);
  background: #ff4d53;
}

.icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.icon i {
  font-size: 28px;
  color: #ff4d53;
}

.choose-card h3 {
  color: #4ac7f0;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.choose-card p {
  color: #dbe4ee;
  line-height: 1.8;
  font-size: 15px;
}

.choose-card:hover .icon {
  background: #fff;
}

.choose-card:hover p,
.choose-card:hover h3 {
  color: #fff;
}

@media (max-width: 991px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 34px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
  }

  .choose-card {
    padding: 35px 25px;
  }
}

.industries-section {
  padding: 70px 0 0px;
  background: #030613;
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.industry-card {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #ff4d53;
  transform: scaleX(0);
  transition: 0.4s;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.industry-card i {
  font-size: 48px;
  color: #ff4d53;
  margin-bottom: 20px;
  transition: 0.4s;
}

.industry-card:hover i {
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 18px;
  color: #2337c6;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* .....contact-us........... */

.contact-section {
  padding: 70px 0;
  background: #030613;
  position: relative;
}

.contact-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.contact-header span {
  color: #ef4b54;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info */

.contact-info {
  background: #0f172a;
  border-radius: 25px;
  padding: 40px 40px 25px;
  height: 100%;
  display: inline-block;
  justify-items: baseline;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-card .icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #ff4c53;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .icon i {
  color: #fff;
  font-size: 22px;
}

.info-card h4 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 20px;
}

.info-card p {
  color: #cbd5e1;
  line-height: 1.7;
}
.info-card a {
  color: #cbd5e1;
  line-height: 1.7;
}
/* Form */

.contact-form {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  width: 100%;
}

.form-group.full-width {
  grid-column: 1/-1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff4c53;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.btn-submit {
  grid-column: 1/-1;
  background: #ff4c53;
  color: #fff;
  border: none;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #2337c6;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form form {
    grid-template-columns: 1fr;
  }
}

.contact-hero {
  padding: 100px 0;
  background: #f8f9fc;
}

.hero-tag-wrapper {
  margin-bottom: 35px;
  display: flex;
  column-gap: 25px;
  margin-top: 10px;
}
.hero-tag-items {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
span.hero-tag-texts {
  color: #fff;
}
svg.lucide.lucide-circle-check-big.w-3\.5.h-3\.5 {
  color: #ff4c53;
}
svg:not(:root) {
  overflow: hidden;
}
.experience-badge {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #ff4c53;
  border-radius: 50px;
  color: #ff4c53;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 25px;
  background: #ffeaec;
}
.our-work {
  padding: 70px 0 70px;
  background: #030613;
}
.blog-post-area {
  padding: 70px 0 70px;
  background: #030613;
}
.blog-post-card .blog-post-text ul li span:hover {
  background-color: var(--mainColor);
  color: #ffffff;
}
.section-title .top-title {
  font-size: 16px;
  font-weight: 600;
  color: #ff4c53;
  font-family: var(--bodyFontFamily);
  display: inline-block;
  margin-bottom: 15px;
}
.blog-post-search .search-form .form-control {
  background: rgb(248 248 248);
}
.recent-posts-card h2 {
  color: #4ac7f0;
}
.blog-post-category h2 {
  color: #4ac7f0;
}
.popular-tags h2 {
  color: #4ac7f0;
}
.recent-posts-card .recent-posts-item .recent-text h3 {
  color: #ff4c53;
}
.blog-post-category ul li a {
  color: #ffa1a1;
}
.recent-posts-card .recent-posts-item .recent-text p {
  color: #d3cbcb;
}

.why-prohance {
  padding: 70px 0 0px;
  background: #030613;
  position: relative;
}

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

.choose-card {
  background: #fff;
  padding: 40px 35px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f7;
}

.choose-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #4ac7f0, #2b469e);
}

.choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  background: #ff4c53;
}

.number {
  font-size: 52px;
  font-weight: 800;
  color: rgba(255, 107, 0, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 15px;
  line-height: 1.4;
}

.choose-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 991px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .why-prohance {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .choose-card {
    padding: 30px;
  }
}

.why-booth-design {
  padding: 70px 0;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.why-booth-design::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.why-booth-design::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f59e0b;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  padding: 35px;
  transition: 0.4s;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #ff4c53;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.icon-box {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ff4c53, #ef4b54);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-box i {
  font-size: 28px;
  color: #fff;
}

.feature-card h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-booth-design {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}

.content-box h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 500px;
  padding-bottom: 10px;
}
.content-box ul li {
  color: #fff;
}

.international-why-choose {
  padding: 70px 0 0px;
  background: #030613;
  position: relative;
}

.international-why-choose .container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.choose-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #0f4cdb;
}

.choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f4cdb, #06b6d4);
}

.number {
  font-size: 42px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 15px;
  line-height: 1;
}

.choose-card h3 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 15px;
}

.choose-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 1200px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .international-why-choose {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
  }

  .choose-card {
    padding: 30px 25px;
  }
}

.about-stall-section,
.booth-design-profile {
  padding: 0px 0 70px;
  background: #030613;
}

.hover-card-effect:hover {
  transform: translateY(-2px);
}

.booth-design-profile {
  padding: 70px 0;
  background: #030613;
}

/* Page-specific: cost calculator */
.ph-calc {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 22px;
  margin: 22px 0;
}
.ph-calc-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ph-calc-row label {
  display: block;
  font-size: 13px;
  color: var(--ph-text-muted);
  margin-bottom: 6px;
}
.ph-calc-row select,
.ph-calc-row input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--ph-border);
  background: #1a1f49;
  color: #fff;
  font-size: 14px;
}
.ph-calc-col {
  flex: 1;
  min-width: 160px;
}
.ph-calc-result {
  background: rgba(240, 84, 63, 0.1);
  border: 1px dashed var(--ph-red);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  color: #fff;
  margin-top: 6px;
}
.ph-calc-result b {
  color: var(--ph-red);
  font-size: 18px;
}

/* ---------- Top bar ---------- */
.ph-topbar {
  background: var(--ph-blue-dark);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.ph-topbar .ph-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ph-topbar a {
  color: #fff;
}
.ph-topbar-left span {
  margin-right: 22px;
}
.ph-topbar-social a {
  margin-left: 10px;
  opacity: 0.9;
}

/* ---------- Header / Nav ---------- */
.ph-header {
  background: #fff;
  color: #15193a;
  padding: 14px 0;
}
.ph-header .ph-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.ph-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ph-blue);
}
.ph-logo span {
  color: var(--ph-red);
}
.ph-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.ph-nav a {
  font-weight: 600;
  font-size: 15px;
  color: #15193a;
}
.ph-nav a:hover {
  color: var(--ph-red);
}
.ph-btn {
  display: inline-block;
  background: #ff4e55;
  color: #fff;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14.5px;
  transition: background 0.2s ease;
}
.ph-btn:hover {
  background: #ff4e55;
  color: #fff;
}
.ph-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.ph-btn-outline:hover {
  background: #fff;
  color: var(--ph-navy);
}
.ph-btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ---------- Hero ---------- */
.ph-hero {
  padding: 70px 0 70px;
  background: linear-gradient(
    90deg,
    rgb(17 28 78) 0%,
    rgb(7 4 52) 50%,
    rgb(1 2 19) 100%
  );
  border-bottom: 1px solid var(--ph-border);
}
.ph-breadcrumb {
  font-size: 13.5px;
  color: var(--ph-text-muted);
  margin-bottom: 18px;
}
.ph-breadcrumb a {
  color: var(--ph-blue-light);
}
.ph-breadcrumb span {
  margin: 0 6px;
}
.ph-hero-tag {
  display: inline-block;
  background: rgba(240, 84, 63, 0.12);
  color: var(--ph-red);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.ph-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  margin: 0 0 16px;
  color: #fff;
}
.ph-hero h1 em {
  font-style: normal;
  color: var(--ph-red);
}
.ph-hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ph-text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.ph-hero-meta b {
  color: #fff;
}

/* Quick answer box */
.ph-quick-answer {
  background: var(--ph-navy-card);
  border-left: 4px solid var(--ph-red);
  border-radius: var(--ph-radius);
  padding: 22px 24px;
  margin: 26px 0;
}
.ph-quick-answer .ph-qa-label {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--ph-red);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.ph-quick-answer p {
  margin: 0;
  color: var(--ph-text-light);
  font-size: 15.5px;
}

/* ---------- Layout: content + sidebar ---------- */
.ph-layout {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 40px;
  padding: 54px 0;
  align-items: start;
  background-color: #030613;
}
@media (max-width: 900px) {
  .ph-layout {
    grid-template-columns: 1fr;
  }
}

.ph-content h2 {
  font-size: 26px;
  color: #fff;
  margin: 42px 0 16px;
  padding-top: 6px;
  border-top: 1px solid var(--ph-border);
  padding-top: 30px;
}
.ph-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.ph-content h3 {
  font-size: 19px;
  color: var(--ph-blue-light);
  margin: 26px 0 10px;
}
.ph-content p {
  color: #d3d7ea;
  font-size: 15.5px;
  margin: 0 0 16px;
}
.ph-content strong {
  color: #fff;
}
.ph-content ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #d3d7ea;
}
.ph-content ul li {
  margin-bottom: 10px;
  font-size: 15.5px;
}
.ph-content ul li::marker {
  color: var(--ph-red);
}

/* stat callout */
.ph-stat-box {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 18px 20px;
  margin: 22px 0;
  font-size: 14.5px;
  color: var(--ph-text-muted);
}
.ph-stat-box b {
  color: var(--ph-blue-light);
}

/* interactive feature note */
.ph-interactive-note {
  background: rgba(21, 71, 201, 0.12);
  border: 1px dashed var(--ph-blue-light);
  border-radius: var(--ph-radius);
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 13.5px;
  color: var(--ph-blue-light);
  font-style: italic;
}

/* CTA strip inside content */
.ph-inline-cta {
  background: linear-gradient(120deg, var(--ph-blue-dark), var(--ph-blue));
  border-radius: var(--ph-radius);
  padding: 24px 26px;
  margin: 26px 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ph-inline-cta p {
  margin: 0;
  color: #eaf0ff;
  font-size: 15px;
  flex: 1;
  min-width: 240px;
}
.ph-inline-cta a.ph-btn {
  white-space: nowrap;
}

/* Tables */
.ph-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border-radius: var(--ph-radius);
  border: 1px solid var(--ph-border);
}
table.ph-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--ph-navy-card);
}
table.ph-table th {
  background: var(--ph-blue-dark);
  color: #fff;
  text-align: left;
  padding: 13px 16px;
  font-size: 14px;
  white-space: nowrap;
}
table.ph-table td {
  padding: 13px 16px;
  font-size: 14.5px;
  color: #d3d7ea;
  border-top: 1px solid var(--ph-border);
}
table.ph-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
table.ph-table td b,
table.ph-table td strong {
  color: #fff;
}

.ph-body a {
  text-decoration: none;
  color: inherit;
}
.ph-body img {
  max-width: 100%;
  display: block;
}
.ph-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* checklist */
.ph-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.ph-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--ph-border);
  font-size: 15px;
  color: #d3d7ea;
}
.ph-checklist li:last-child {
  border-bottom: none;
}
.ph-checklist .ph-check-icon {
  flex: 0 0 22px;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--ph-red);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Pro tip cards */
.ph-tip {
  background: var(--ph-navy-card);
  border-left: 4px solid var(--ph-blue-light);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 14px 0;
  font-size: 14.5px;
  color: #d3d7ea;
}
.ph-tip b {
  color: var(--ph-blue-light);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

/* highlight box big (final CTA in content) */
.ph-content-cta {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 24px;
  margin: 26px 0;
  font-size: 15px;
  color: #d3d7ea;
}
.ph-content-cta a {
  color: var(--ph-red);
  font-weight: 700;
}

/* FAQ */
.ph-faq {
  margin-top: 18px;
}
.ph-faq-item {
  border: 1px solid var(--ph-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--ph-navy-card);
}
.ph-faq-q {
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.ph-faq-q::after {
  content: "+";
  color: var(--ph-red);
  font-size: 20px;
  font-weight: 400;
}
.ph-faq-item.ph-open .ph-faq-q::after {
  content: "\2212";
}
.ph-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 18px;
}
.ph-faq-item.ph-open .ph-faq-a {
  max-height: 400px;
  padding: 0 18px 16px;
}
.ph-faq-a p {
  color: #c4c9e0;
  font-size: 14.5px;
  margin: 0;
}

/* Linked keyword */
.ph-content a.ph-kw {
  color: var(--ph-blue-light);
  text-decoration: underline;
  font-weight: 600;
}
.ph-content a.ph-kw:hover {
  color: var(--ph-red);
}

/* ---------- Sidebar ---------- */
.ph-sidebar > div {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 22px;
  margin-bottom: 24px;
}
.ph-search-box {
  display: flex;
}
.ph-search-box input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  background: #1a1f49;
  color: #fff;
  font-size: 14px;
}
.ph-search-box button {
  background: var(--ph-red);
  border: none;
  color: #fff;
  padding: 0 16px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}
.ph-sidebar h4 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 10px;
}
.ph-sidebar h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--ph-red);
}
.ph-pop-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.ph-pop-post img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.ph-pop-post .ph-pop-date {
  font-size: 11.5px;
  color: var(--ph-text-muted);
}
.ph-pop-post a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ph-red);
  line-height: 1.4;
}
.ph-cat-list a,
.ph-tag-list a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
  color: #c4c9e0;
  border-bottom: 1px solid var(--ph-border);
}
.ph-cat-list a:hover,
.ph-tag-list a:hover {
  color: var(--ph-red);
}
.ph-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ph-tag-list a {
  border: 1px solid var(--ph-border);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12.5px;
}
.ph-sidebar-cta {
  background: linear-gradient(
    150deg,
    var(--ph-blue-dark),
    var(--ph-red-dark)
  ) !important;
  text-align: center;
}
.ph-sidebar-cta p {
  color: #fff;
  font-size: 14px;
  margin: 0 0 14px;
}
.ph-sidebar-cta h4 {
  color: #fff;
}
.ph-sidebar-cta h4::after {
  background: #fff;
}

/* ---------- Related posts strip ---------- */
.ph-related {
  padding: 40px 0 60px;
  border-top: 1px solid var(--ph-border);
}
.ph-related h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 24px;
}
.ph-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .ph-related-grid {
    grid-template-columns: 1fr;
  }
}
.ph-card {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  overflow: hidden;
}
.ph-card img {
  height: 170px;
  object-fit: cover;
  width: 100%;
}
.ph-card-body {
  padding: 18px;
}
.ph-card-tag {
  display: inline-block;
  background: rgba(240, 84, 63, 0.12);
  color: var(--ph-red);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ph-card-body h3 {
  font-size: 16px;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.4;
}
.ph-card-body p {
  font-size: 13.5px;
  color: var(--ph-text-muted);
  margin: 0 0 14px;
}

/* ---------- Final Banner CTA ---------- */
.ph-banner {
  background: linear-gradient(120deg, #5a1fae, var(--ph-blue-dark));
  text-align: center;
  padding: 48px 20px;
  color: #fff;
}
.ph-banner h2 {
  font-size: 26px;
  margin: 0 0 14px;
  color: #ef4b54;
}
.ph-banner p {
  font-size: 15px;
  color: #e7e9fb;
  max-width: 640px;
  margin: 0 auto 22px;
}

/* ---------- Footer ---------- */
.ph-footer {
  background: #05060f;
  padding: 50px 0 0;
}
.ph-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 36px;
}
@media (max-width: 800px) {
  .ph-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ph-footer h5 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 18px;
}
.ph-footer-about p {
  color: var(--ph-text-muted);
  font-size: 14px;
}
.ph-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ph-footer ul li {
  margin-bottom: 10px;
}
.ph-footer ul li a {
  color: var(--ph-text-muted);
  font-size: 14px;
}
.ph-footer ul li a:hover {
  color: var(--ph-red);
}
.ph-footer-contact li {
  display: flex;
  gap: 10px;
  color: var(--ph-text-muted);
  font-size: 14px;
  align-items: flex-start;
}
.ph-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.ph-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ph-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}
.ph-footer-bottom {
  border-top: 1px solid var(--ph-border);
  text-align: center;
  padding: 18px 0;
  color: var(--ph-text-muted);
  font-size: 13px;
}
.ph-footer-bottom a {
  color: var(--ph-red);
}

/* Back to top */
.ph-totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--ph-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: var(--ph-shadow);
  z-index: 50;
}

aside.ph-sidebar {
  margin-top: 25px;
  position: sticky;
  top: 100px;
}

.bottom-content-section {
  background: #f8f9fa;
}

.bottom-content-section .content-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.bottom-content-section h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.bottom-content-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #111;
}

.bottom-content-section p {
  color: #666;
  line-height: 1.8;
}

.venue-list {
  padding-left: 20px;
  margin-top: 20px;
}

.venue-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.contact-strip {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}

.contact-strip a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-strip a:hover {
  color: #f5b400;
}

/* Page-specific: ship vs build decision helper */
.ph-decision {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 22px;
  margin: 22px 0;
}

.ph-decision-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ph-decision-col {
  flex: 1;
  min-width: 180px;
}

.ph-decision-col label {
  display: block;
  font-size: 13px;
  color: var(--ph-text-muted);
  margin-bottom: 6px;
  height: 50px;
}

.ph-decision-col select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--ph-border);
  background: #1a1f49;
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
}

.ph-decision-result {
  background: rgba(21, 71, 201, 0.12);
  border: 1px dashed var(--ph-blue-light);
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  color: #fff;
  margin-top: 6px;
}

.ph-decision-result b {
  color: var(--ph-blue-light);
}

.ph-compliance-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.ph-compliance-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--ph-border);
  font-size: 15px;
  color: #d3d7ea;
}

.ph-compliance-list li:last-child {
  border-bottom: none;
}

.ph-compliance-list .ph-flag {
  flex: 0 0 18px;
  color: var(--ph-red);
}

/* Page-specific: step blocks + printable checklist */
.ph-step {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 24px;
  margin: 24px 0;
}

.ph-step h3 {
  margin-top: 0;
  color: #fff;
  font-size: 19px;
}

.ph-step-checklist {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.ph-step-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 14.5px;
  color: #d3d7ea;
}

.ph-step-checklist .ph-dot {
  flex: 0 0 8px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--ph-red);
  margin-top: 7px;
}

.ph-progress-wrap {
  background: var(--ph-navy-card);
  border: 1px solid var(--ph-border);
  border-radius: 30px;
  height: 14px;
  overflow: hidden;
  margin: 18px 0 24px;
}

.ph-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--ph-blue), var(--ph-red));
  width: 0%;
  transition: width 0.25s ease;
}

.ph-progress-label {
  font-size: 13px;
  color: var(--ph-text-muted);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.ph-master-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ph-master-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid var(--ph-border);
  font-size: 14.5px;
  color: #d3d7ea;
  cursor: pointer;
}

.ph-master-list li:last-child {
  border-bottom: none;
}

.ph-master-list input {
  accent-color: var(--ph-red);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.ph-master-list .ph-phase-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ph-blue-light);
  background: rgba(79, 168, 232, 0.12);
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}

.ph-master-list li.ph-done span:not(.ph-phase-tag) {
  text-decoration: line-through;
  color: var(--ph-text-muted);
}

.ph-timeline-wrap {
  margin: 22px 0;
}

.ph-blog-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) {
  .ph-blog-page-grid {
    grid-template-columns: 1fr;
  }
}

/*=========================================
    Exhibition Content Section
=========================================*/

.exhibition-info-section {
  background: #070b19;
  padding: 70px 0;
  color: #fff;
  position: relative;
  /* font-size: 35px; */
}

.exhibition-info-section .container {
  max-width: 1320px;
}

.exhibition-info-section .row {
  background: #0b1021;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 35px;
  overflow: hidden;
}

.exhibition-info-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 15px;
}

.exhibition-info-section h3 {
  font-size: 30px;
  font-weight: 700;
  color: #ff4d5a;
  margin-bottom: 18px;
}

.title-line {
  width: 70px;
  height: 4px;
  background: #ff4d5a;
  border-radius: 30px;
  margin-bottom: 28px;
}

.content-block {
  margin-bottom: 45px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-block:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-block p {
  color: #d9d9d9 !important;
  line-height: 1.9;
  font-size: 17px;
  text-align: justify;
}

/*=========================
 Right Box
==========================*/

.venue-box-new {
  padding-left: 35px;
}

.venue-box-new h3 {
  color: #ff4b5b !important;
}

.venue-text-new {
  color: #d6d6d6;
  line-height: 1.8;
  margin-bottom: 25px;
}

.venue-list-new {
  padding: 0;
  margin: 0;
  list-style: none;
}

.venue-list-new li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #ffffff;
  font-size: 17px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.venue-list-new li:last-child {
  border-bottom: none;
}

.venue-list-new i {
  color: #ff4d5a;
  font-size: 22px;
  margin-top: 3px;
}

/*=========================
 Contact Strip
==========================*/

.contact-strip {
  margin-top: 70px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  padding: 28px;

  background: rgba(255, 255, 255, 0.02);
}

.contact-item-new {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;
}

.contact-item-new i {
  color: #ff4d5a;

  font-size: 26px;
}

.contact-item-new span {
  color: #fff;

  font-size: 18px;

  font-weight: 500;
}

/*=========================
 Hover
==========================*/

.contact-strip:hover {
  border-color: #ff4d5a;

  transition: 0.4s;
}

.venue-list li:hover {
  color: #ff4d5a;

  transition: 0.3s;

  padding-left: 8px;
}

/*=========================
Stats Box
==========================*/

.stats-box-new {
  margin-top: 40px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  padding: 35px;

  background: rgba(255, 255, 255, 0.02);

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.stat-item-new {
  display: flex;

  align-items: center;

  gap: 20px;
}

.stat-icon-new {
  width: 90px;

  height: 90px;

  border: 2px solid #ff4d5a;

  border-radius: 15px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.stat-icon-new i {
  color: #ff4d5a;

  font-size: 42px;
}

.stat-content-new h2 {
  color: #ff4d5a;

  font-size: 48px;

  margin: 0;

  font-weight: 700;
}

.stat-content-new p {
  color: #ddd;

  margin: 0;

  font-size: 18px;
}

.divider {
  width: 1px;

  height: 90px;

  background: rgba(255, 255, 255, 0.08);
}

/*=========================
Responsive
==========================*/

@media (max-width: 991px) {
  .venue-box {
    padding-left: 0;

    margin-top: 40px;
  }

  .stats-box-new {
    flex-direction: column;

    gap: 30px;
  }

  .divider {
    width: 100%;

    height: 1px;
  }

  .contact-item-new {
    justify-content: flex-start;

    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .exhibition-info-section {
    padding: 70px 0;
  }

  .exhibition-info-section h2 {
    font-size: 32px;
  }

  .exhibition-info-section h3 {
    font-size: 24px;
  }

  .content-block p {
    font-size: 16px;
  }

  .contact-strip {
    padding: 25px;
  }

  .stat-content-new h2 {
    font-size: 36px;
  }
}

.client-btn {
  background: linear-gradient(135deg, #ff4d5a, #ff7b54);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: 0.3s;
}

.client-btn a {
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.client-btn span {
  font-size: 40px;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.client-btn h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.client-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 77, 90, 0.35);
}

/* ============================================================
   PROHANCE EXHIBITION — PRIVACY POLICY
   Palette pulled from the live site:
   navy-deep #0A0E1C (dark section bg), blue #2B3F9E (primary),
   blue-bright #4F72F5 (heading accent), coral #EF4A40 (CTA/accent),
   gray-text #B7BDD1 (copy on dark), gray-light #F5F6FA
   ============================================================ */
:root {
  --phe-navy-deep: #0a0e1c;
  --phe-navy-card: #131a30;
  --phe-blue: #2b3f9e;
  --phe-blue-bright: #4f72f5;
  --phe-coral: #ef4a40;
  --phe-coral-dark: #d63b32;
  --phe-white: #ffffff;
  --phe-gray-text: #b7bdd1;
  --phe-gray-light: #f5f6fa;
  --phe-text-dark: #14192e;
  --phe-line: #232b47;
  --phe-font-display: "Poppins", sans-serif;
  --phe-font-body: "Inter", sans-serif;
}

.phe-page {
  font-family: var(--phe-font-body);
  color: var(--phe-text-dark);
  background: #fff;
}

.phe-page h1,
.phe-page h2,
.phe-page h3,
.phe-page h4 {
  font-family: var(--phe-font-display);
  font-weight: 700;
}

/* ---------- top bar + nav (matches live site) ---------- */
.phe-topbar {
  background: var(--phe-blue);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.phe-topbar a {
  color: #fff;
  text-decoration: none;
}

.phe-topbar .sep {
  opacity: 0.5;
  margin: 0 0.6rem;
}

.phe-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.phe-nav .navbar-brand {
  font-family: var(--phe-font-display);
  font-weight: 800;
  color: var(--phe-blue);
}

.phe-nav .navbar-brand span {
  color: var(--phe-coral);
}

.phe-nav .nav-link {
  color: var(--phe-text-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

.phe-nav .nav-link.active {
  color: var(--phe-coral);
}

.phe-nav .btn-enquire {
  background: var(--phe-coral);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  border: none;
}

.phe-nav .btn-enquire:hover {
  background: var(--phe-coral-dark);
  color: #fff;
}

/* ---------- hero ---------- */
.phe-hero {
  background: #090839;
  color: #fff;
  padding: 100px;
  position: relative;
  overflow: hidden;
}

.phe-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 20%,
    rgba(79, 114, 245, 0.16),
    transparent 55%
  );
}

.phe-hero .crumb {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--phe-gray-text);
}

.phe-hero .crumb a {
  color: var(--phe-gray-text);
  text-decoration: none;
}

.phe-hero .crumb a:hover {
  color: var(--phe-coral);
}

.phe-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 0.6rem 0 0.4rem;
}

.phe-hero h1 .accent {
  color: var(--phe-blue-bright);
}

.phe-hero .eff-date {
  position: relative;
  z-index: 1;
  color: var(--phe-gray-text);
  font-size: 0.92rem;
}

/* ---------- note callout (internal, not end-user copy) ---------- */
.phe-note {
  background: #fff8ee;
  border: 1px dashed #e8a73b;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.86rem;
  color: #7a5a17;
  margin: 1.6rem 0 0;
}

.phe-note strong {
  color: #8c5b0a;
}

/* ---------- body layout ---------- */
.phe-body {
  background: var(--phe-gray-light);
  padding: 3rem 0 4.5rem;
}

.phe-toc {
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 14px;
  padding: 1.2rem;
  position: sticky;
  top: 100px;
}

.phe-toc h6 {
  font-family: var(--phe-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--phe-blue);
  margin-bottom: 0.7rem;
}

.phe-toc a {
  display: block;
  font-size: 0.86rem;
  color: var(--phe-text-dark);
  text-decoration: none;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  border-left: 3px solid transparent;
  margin-bottom: 0.1rem;
  transition: 0.15s;
}

.phe-toc a:hover {
  background: var(--phe-gray-light);
  color: var(--phe-blue);
}

.phe-toc a.is-active {
  background: #eef1fd;
  color: var(--phe-blue);
  border-left-color: var(--phe-coral);
  font-weight: 700;
}

.phe-content {
  background: #fff;
  border: 1px solid #e7e9f2;
  border-radius: 16px;
  padding: 2.2rem;
}

.phe-content > section {
  padding-top: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid #eef0f6;
  scroll-margin-top: 100px;
}

.phe-content > section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.phe-content h2 {
  font-size: 1.28rem;
  color: var(--phe-text-dark);
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.phe-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 4px;
  border-radius: 99px;
  background: var(--phe-coral);
}

.phe-content h3 {
  font-size: 1.02rem;
  color: var(--phe-blue);
  margin: 1.1rem 0 0.5rem;
}

.phe-content p {
  color: #4a5170;
  line-height: 1.75;
  font-size: 0.95rem;
}

.phe-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.phe-content li {
  color: #4a5170;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.phe-content li::marker {
  color: var(--phe-coral);
}

.phe-inline-link {
  color: var(--phe-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(43, 63, 158, 0.3);
}

.phe-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}

.phe-badge {
  background: var(--phe-gray-light);
  color: var(--phe-blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
}

/* contact card */
.phe-contact-card {
  background: var(--phe-navy-deep);
  color: #fff;
  border-radius: 14px;
  padding: 1.6rem;
  margin-top: 0.5rem;
}

.phe-contact-card .name {
  font-family: var(--phe-font-display);
  font-weight: 800;
  color: var(--phe-blue-bright);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.phe-contact-card .row-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--phe-gray-text);
  margin-bottom: 0.55rem;
}

.phe-contact-card .row-item strong {
  color: #fff;
  min-width: 150px;
  display: inline-block;
}

.phe-contact-card a {
  color: var(--phe-coral);
  text-decoration: none;
  font-weight: 600;
}

.phe-contact-card a:hover {
  text-decoration: underline;
}

.phe-placeholder {
  background: rgba(239, 74, 64, 0.15);
  border: 1px dashed var(--phe-coral);
  color: #ffb4ae;
  padding: 0.1rem 0.4rem;
  border-radius: 5px;
  font-size: 0.82rem;
}

/* legal note strip retained from source doc, styled as internal guidance */
.phe-legalnote-wrap {
  background: var(--phe-navy-deep);
  padding-bottom: 0;
}

/* back to top (matches site's existing button) */
.phe-totop {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--phe-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(43, 63, 158, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 60;
}

.phe-totop.show {
  opacity: 1;
  pointer-events: auto;
}

.phe-totop:hover {
  background: var(--phe-coral);
  color: #fff;
}

@media (max-width: 991px) {
  .phe-toc {
    position: static;
    margin-bottom: 1.5rem;
  }

  .phe-content {
    padding: 1.4rem;
  }
}

.work-image {
    overflow: hidden;
    border-radius: 12px;
}

.work-image img {
    width: 100%;
    display: block;
    transition: .4s;
    cursor: pointer;
}

.work-image:hover img {
    transform: scale(1.05);
}