@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;
}

.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);
}

.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: 18px;
  font-weight: 600;
  color: #ff630f;
  font-family: var(--bodyFontFamily);
  display: inline-block;
  margin-bottom: 15px;
}

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

/*================================================
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: #313e4c;
  color: var(--whiteColor);
  font-family: var(--bodyFontFamily);
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  z-index: 1;
  border-radius: 100px;
  padding: 8.5px 26px;
}

.default-btn.btn-style-one {
  background-color: #ff610e;
  padding: 7px 21px;
  border-radius: 100px;
}

.default-btn.btn-style-one::after {
  background-color: var(--mainColor);
}

.default-btn.btn-style-one::before {
  background-color: var(--mainColor);
}

.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: var(--optionalColor);
  z-index: -1;
  transition: var(--transition);
}

.default-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--optionalColor);
  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: #111111;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow: hidden;
}

@media (max-width:768px) {
  .submenu-area {
    background: #111111;
    padding-top: 8px;
    padding-bottom: 0px;
    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: #C0C0C0;
  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: #C0C0C0;
  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: 11px;
  padding-bottom: 18px;
  box-shadow: 0px 0px 10px #e5e8ed;
}

.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: 34px;
}

.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;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.07);
  max-width: 260px;
  z-index: 999;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu .nav-item {
  margin-right: 0;
}

.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%;
}

/* ========================================
Start Banner area
=========================================*/
.hero-slider-item {
  background-image: url(../images/banner/banner-one-bg-img.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 151px;
  padding-bottom: 170px;
  z-index: 1;
}

.hero-slider-item.bg-img-1 {
  background-image: url(../images/banner/banner-one-bg-img.jpg);
}

.hero-slider-item.bg-img-1 .hero-content {
  margin-left: auto;
  max-width: 650px;
}

.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: 715px;
}

.hero-content h1 {
  font-size: 52px;
  color: var(--whiteColor);
  line-height: 54px;
  margin-bottom: 11px;
}

.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;
}

/* ===================================
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);
}

/* ===========================================
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: 16px;
  font-weight: 600;
  font-family: var(--bodyFontFamily);
  color: var(--headingColor);
  background: #FFFFFF;
  border: 1px solid rgba(42, 7, 249, 0.1);
  border-radius: 5px;
  transition: var(--transition);
  padding: 15px 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: var(--optionalColor);
}

.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: rgba(42, 7, 249, 0.05);
  border: 1px solid rgba(42, 7, 249, 0.05);
  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 rgba(42, 7, 249, 0.1);
  border-top: none;
  border-radius: 0px 0px 5px 5px;
  padding: 23px;
}

/* =================================================
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: 18px 20px;
  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;
}

.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: 77px 21px 32px 16px;
  position: relative;
  margin-top: 40px;
  transition: var(--transition);
  margin-bottom: 2px;
  text-align: center;
}

.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: #675358;
  font-size: 48px;
  transition: var(--transition);
  margin: auto;
  margin-top: -70px;
  margin-bottom: 20px;
}

.single-conference-card h3 {
  font-size: 17px;
  margin-bottom: 3px;
}

.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;
  padding-top: 38px;
  padding-bottom: 48px;
}

.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, rgb(255 105 0) 0%, rgb(51 61 73 / 72%) 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: 2;
  position: relative;
  max-width: 725px;
}

.upcoming-area .section-title .top-title {
  color: var(--mainColor);
}

.upcoming-area .section-title h2 {
  color: var(--whiteColor);
}

.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: 0px 0px 10px 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: var(--whiteColor);
}

.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: 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);
}

.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;
}

.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: #F9F9F9;
  position: relative;
  z-index: 1;
}

.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: #ff620e;
  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: #31414e;
}

.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: #AAAAAA;
}

.footer-widget h2 {
  font-size: 17px;
  color: #ff6510;
  font-weight: 400;
  margin-bottom: 14px;
}

.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: 5px;
}

.footer-widget .footer-widget-list li:last-child {
  margin-bottom: 0;
}

.footer-widget .footer-widget-list li a {
  font-size: 14px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  color: #AAAAAA;
  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: 54px;
  padding-top: 17px;
  padding-bottom: 17px;
  border-top: 1px solid rgba(170, 170, 170, 0.3);
}

.copyright-content p {
  color: #AAAAAA;
  font-size: 16px;
  font-weight: 500;
}

.copyright-content p b {
  font-size: 16px;
  color: #AAAAAA;
  font-family: var(--bodyFontFamily);
  font-weight: 600;
}

.copyright-content p a {
  font-size: 15px;
  color: #ff610e;
  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 */








.model-form {
  border: 1px solid #313F4B;
  transition: all 0.3s ease;
}

.model-form:focus {
  border-color: #dc3545;
  box-shadow: 0 0 6px rgba(220, 53, 69, 0.25);
}



@media (max-width: 768px) {
  .follow {
    display: none;
  }
}





.uniform-img {
  width: 461px;
  /* ya jo size chahiye */
  height: 250px;
  /* ya jo size chahiye */
  object-fit: cover;
  /* image ko crop karke fit karega */
}





/* Extra CSS for breadcrumb separator  */

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: white;
  margin: 0 8px;
  font-weight: bold;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
  color: #ffd700;
}





/* event page */


/* Image Size Maintain */
.img-wrapper {
  height: 250px;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Professional Hover Effect */
.event-card {
  transition: all 0.4s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-card:hover img {
  transform: scale(1.08);
}



/* blog page */
/* Blog Image Box */
.blog-img-box {
  height: 230px;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Blog Card */
.blog-box-card {
  transition: all 0.4s ease;
  background: #fff;
}

/* Hover Effect */
.blog-box-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-box-card:hover .blog-img-box img {
  transform: scale(1.08);
}

/* Date Badge */
.blog-box-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #dc3545;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 30px;
  z-index: 2;
}

/* Read More Button */
.blog-read-more {
  text-decoration: none;
  font-weight: 600;
  color: #dc3545;
  transition: 0.3s;
}

.blog-read-more:hover {
  letter-spacing: 1px;
}




/* event overview page */

/* Section Padding */
.event-overview-section {
  position: relative;
}

/* Feature List */
.event-feature-list li {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.event-feature-list i {
  color: #dc3545;
  font-size: 18px;
}

.event-overview-image {
  overflow: hidden;
  border-radius: 1.5rem;
  /* same as rounded-4 */
}

/* Image Hover Effect */
.event-overview-image img {
  height: 50%;
  transition: transform 0.5s ease;

}

.event-overview-image:hover img {
  transform: scale(1.05);

}

/* Button Hover */
.event-overview-content .btn {
  transition: all 0.3s ease;
}

.event-overview-content .btn:hover {
  background-color: #bb2d3b;
}







/* mision $ vision page */
.vision-card,
.mission-card {
  background: #fff;
  transition: all 0.3s ease;
  border: #e6dfdf 1px solid;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}






/* location advantage page */

.lp-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.lp-title {
  font-size: 32px;
  letter-spacing: 1px;
}

.lp-subtitle {
  color: #6c757d;
  font-size: 16px;
}

.lp-content-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
  font-size: 16px;
  border: #AEAEAE 1px solid;
}

.lp-highlight-wrapper {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: #AEAEAE 1px solid;
}

.lp-icon {
  width: 45px;
  height: 45px;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.lp-item {
  transition: 0.3s ease;
}

.lp-item:hover {
  transform: translateX(6px);
}







/* media gelery page */

.media-gallery-section {
  background: #f8f9fa;
}

.mg-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.mg-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 12px;
}

.mg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 12px;
}

.mg-overlay a {
  color: #fff;
  font-size: 28px;
}

.mg-item:hover img {
  transform: scale(1.05);
}

.mg-item:hover .mg-overlay {
  opacity: 1;
}





/* coporate event page */

.service-card {
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  background: #fff;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #f3e5f5;
  color: #7b1fa2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}









/* trade exhibition page */


.tx-hero-section {
  background: linear-gradient(rgba(20, 30, 48, 0.8), rgba(36, 59, 85, 0.8)), url('images/image1.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
  border-bottom: 5px solid #ff2e63;
}

.tx-content-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: -50px;
}

.tx-feature-icon {
  font-size: 2.5rem;
  color: #ff2e63;
  margin-bottom: 15px;
}

.tx-status-badge {
  background: #ff2e63;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
}

.tx-info-card {
  border-left: 4px solid #ff2e63;
  background: #f8f9fa;
  padding: 20px;
  height: 100%;
}

.tx-gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.tx-gallery-img:hover {
  transform: scale(1.05);
}





/* party location page */

.plx-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.plx-badge {
  background: #ffe5e5;
  color: #dc3545;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plx-title {
  font-size: 42px;
  line-height: 1.3;
  color: #111;
}

.plx-description {
  font-size: 18px;
  color: #6c757d;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.plx-card {
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
  background: #fff;
}

.plx-icon {
  font-size: 26px;
  color: #dc3545;
}

.plx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.plx-card:hover .plx-icon {
  transform: scale(1.1);
  transition: 0.3s;
}






/* weekend destination page */

/* Card Base */
.wdx-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 25px solid #ffffff;
}

/* Card Hover */
.wdx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* Image */
.wdx-img-wrapper {
  height: 200px;
  /* Card chhota kar diya */
  overflow: hidden;
}

.wdx-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 8px;
}

.wdx-card:hover .wdx-img-wrapper img {
  transform: scale(1.05);
}

/* Body */
.wdx-body {
  padding: 20px 15px;
}

/* Icon */
.wdx-icon i {
  font-size: 22px;
  color: #b88a44;
}

/* Title */
.wdx-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Text */
.wdx-text {
  font-size: 13px;
  color: #6c757d;
}







/* footer page */

.anx-footer {
  font-size: 17px;
}

.anx-links li {
  margin-bottom: 8px;
}

.anx-links a {
  text-decoration: none;
  color: #d3d9de;
  transition: 0.3s ease;
}

.anx-links a:hover {
  color: #dc3545;
  padding-left: 4px;
}

.anx-social {
  width: 38px;
  height: 38px;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

.anx-social:hover {
  background: #dc3545;
  transform: translateY(-3px);
}

.anx-contact-link {
  text-decoration: none;
  color: #d3d9de;
  transition: 0.3s ease;
}

.anx-contact-link:hover {
  color: #dc3545;
}


.location-top {
  margin-top: -9px !important;
}


.responsive-line {
  width: 25%;
}

@media (min-width: 992px) {
  .responsive-line {
    width: 50%;
  }
}







/* ===== Anokha Unique Image Zoom Effect ===== */

.anokha-zoom-wrapper {
  overflow: hidden;
  border-radius: 1.5rem;
  /* same as rounded-4 */
}

.anokha-zoom-img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.anokha-zoom-wrapper:hover .anokha-zoom-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}




/* vision $mission page */

.visionmissionhover {
  transition: all 0.3s ease;
}

.visionmissionhover:hover {
  transform: translateY(-8px) scale(1.03);
  /* हल्का ऊपर उठना और zoom */
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  /* shadow बढ़ा देना */
}





/* our team page */
.team-pro-subtitle {
  color: #0d6efd;
  font-weight: 600;
  letter-spacing: 1px;
}

.team-pro-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

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

.team-pro-img {
  height: 260px;
  overflow: hidden;
}

.team-pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-pro-card:hover {
  transform: scale(1.03);
}

.team-pro-content {
  padding: 25px 20px;
  text-align: center;
}

.team-pro-content h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.team-pro-content p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
}





/* trade exibition blog details */


/* Blog Content */
.blog-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .blog-main-img {
    height: 250px;
  }
}


.blog-meta {
  font-size: 14px;
  color: #777;
}

.blog-content h3 {
  font-weight: 700;
  margin-top: 30px;
}

.blog-content p {
  color: #555;
  line-height: 1.8;
}

/* Sidebar */
.blog-sidebar {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
}

.blog-sidebar h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-sidebar a {
  text-decoration: none;
  color: #333;
  display: block;
  margin-bottom: 10px;
  transition: .3s;
}

.blog-sidebar a:hover {
  color: #dc3545;
}

/* CTA */
.blog-cta {
  background: #111;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
}

.blog-cta a {
  background: #dc3545;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.blog-cta a:hover {
  background: #fff;
  color: #dc3545;
}




/* grand corporate blog details */


.blog-details-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.blog-meta-info {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 25px;
}

.blog-details-card img {
  border-radius: 15px;
  margin: 25px 0;
}

.blog-details-card h3 {
  margin-top: 30px;
  font-weight: 700;
}

.blog-details-card p {
  line-height: 1.8;
  color: #555;
}

.blog-highlight-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  margin: 30px 0;
}

.blog-contact-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: .3s;
}

.blog-contact-btn:hover {
  background: #dc3545;
  color: #fff;
}


/* weekend destination blog details page */

.wg-text {
  color: #555;
  line-height: 1.8;
}

.wg-list {
  padding-left: 18px;
}

.wg-list li {
  margin-bottom: 6px;
}

.wg-side a:hover {
  color: #dc3545 !important;
}





/* private celebration blog page details */

/* Minimal Unique CSS */
.pc-text {
  color: #555;
  line-height: 1.8;
}

.pc-list {
  padding-left: 18px;
}

.pc-list li {
  margin-bottom: 8px;
}

.pc-side a:hover {
  color: #dc3545 !important;
}





/* open ground mega event blog page details */


/* Minimal Unique CSS */
.ogm-text {
  color: #555;
  line-height: 1.85;
}

.ogm-highlight {
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
}

.ogm-sidebar a:hover {
  color: #dc3545 !important;
}




/* dream destination blog details page */

/* Minimal Unique CSS */
.wed-text {
  color: #555;
  line-height: 1.9;
}

.wed-feature-box {
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
}

.wed-cta {
  background: #dc3545;
  transition: 0.3s ease;
}

.wed-cta:hover {
  background: #000;
  transform: translateY(-3px);
}

.wed-side a:hover {
  color: #dc3545 !important;
}







/* blog details page slider */

.ogm-blog-sidebar {
  position: sticky;
  top: 120px;
}

.ogm-sidebar-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ogm-sidebar-title {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.ogm-sidebar-title::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #dc3545;
  display: block;
  margin-top: 6px;
  border-radius: 5px;
}



/* Wrapper Scroll Area */
.ogm-recent-wrapper {
  max-height: 280px;
  /* Height fix */
  overflow-y: auto;
  /* Vertical scroll */
  padding-right: 5px;
}

/* Scrollbar Styling (Optional Premium Look) */
.ogm-recent-wrapper::-webkit-scrollbar {
  width: 6px;
}

.ogm-recent-wrapper::-webkit-scrollbar-thumb {
  background: #dc3545;
  border-radius: 10px;
}

.ogm-recent-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}





.ogm-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: 0.3s ease;
}

.ogm-post-item img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 12px;
}

.ogm-post-item h6 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  transition: 0.3s;
}

.ogm-post-item span {
  font-size: 13px;
  color: #888;
}

.ogm-post-item:hover h6 {
  color: #dc3545;
}

/* Form */
.ogm-sidebar-input {
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 14px;
}

.ogm-sidebar-input:focus {
  box-shadow: none;
  border-color: #dc3545;
}

.ogm-post-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 18px;
  align-items: center;
}

/* Thumbnail Wrapper */
.ogm-thumb {
  width: 75px;
  height: 75px;
  overflow: hidden;
  /* IMPORTANT */
  border-radius: 12px;
  flex-shrink: 0;
}

/* Image */
.ogm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Zoom */
.ogm-post-item:hover .ogm-thumb img {
  transform: scale(1.12);
}

/* Title */
.ogm-post-content h6 {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
  transition: 0.3s;
}

.ogm-post-item:hover h6 {
  color: #dc3545;
}




/* contact upe page whats up botton */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  /* Official WhatsApp Green */
  color: #fff;
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.whatsapp-btn i {
  font-size: 18px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}






/* servic slider sticky */
.service-slider-sticky {
  position: sticky;
  top: 120px;
}