/* custom fonts, colors and background */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');  
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #ea8006;
  --primary-dark-color: #ca3b03;
  --secondary-color: #9a0d1d;
  --secondary-dark-color: #db061c;
  --text-color: #4a4a4c;
  --xxs-font: 0.775rem;
  --xs-font: 0.875rem;
  --sm-font: 1rem;
  --md-font: 1.2rem;
  --lg-font: 2rem;
  --xl-font: 2.5rem;
  --xxl-font: 2.8rem;
  --body-font:"Montserrat", sans-serif;
}

body{ 
  font-family: var(--body-font) !important;
  font-size: var(--xs-font);
  overflow-x: hidden !important;
  position: static;
  top: 0 !important;
  background-image: url(../img/home-bg.jpg) !important;
  background-position: center !important;
  background-repeat: repeat !important;
  background-size: contain !important;
  background-color: rgba(0, 0, 0, 0.623) !important;
  background-blend-mode: soft-light;
}
a{color:inherit; text-decoration: none;}
/* typography */
.text-xxs{font-size: var(--xxs-font);}
.text-xs{font-size: var(--xs-font);}
.text-sm{font-size: var(--sm-font);}
.text-md{font-size: var(--md-font);}
.text-lg{font-size: var(--lg-font);}
.text-xl{font-size: var(--xl-font);}
.text-shadow{
  text-shadow: 2px 2px 4px #000000
}
.text-shadow span{ text-shadow: none;}
input:focus, textarea:focus, select:focus{ background-color: inherit !important;}
input::placeholder, textarea::placeholder{color:white !important;}
/* background color start */
.bg-primary-color{background-color: var(--primary-color);}
.bg-primary-dark-color{background-color: var(--primary-dark-color);}
.bg-secondary-color{background-color: var(--secondary-color);}
.bg-secondary-dark-color{background-color: var(--secondary-dark-color);}
.bg-primary-gradient-color{ background: linear-gradient( 325deg,var(--primary-color) 30%, var(--primary-dark-color) 50%);}
.bg-secondary-gradient-color{ background: linear-gradient( 325deg,var(--secondary-color) 30%, var(--secondary-dark-color) 50%);}
/* .bg-gradient-color{background: radial-gradient(circle at 10% 0%, var(--primary-color), var(--secondary-color));} */

.bg-image { position: relative; text-shadow: 2px 2px 4px #000000;}
.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/bg-image-1.jpeg') center/cover no-repeat;
  background-attachment: fixed;
  filter: blur(8px);
  z-index: -1;
}
/* background color end */
/* color start */
.text-primary-color{color: var(--primary-color)!important;}
.text-primary-dark-color{color: var(--primary-dark-color)}
.text-secondary-color{color: var(--secondary-color) !important;}
/* .text-primary-dark-color{ color: #d4980d; } */
/* color end */
/* border start */
.border-primary-color{ border-color: var(--primary-color) !important;}
.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color:  var(--secondary-color) !important;
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E") !important;
}
.form-check-input:focus {box-shadow: 0 0 0 .25rem rgb(239 49 51 / 10%);}

/* button start */
.primary-button{
  border: none;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.primary-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--secondary-color);
  transition: all 0.5s ease-in-out;
}
.primary-button:hover:after { left: 0; width: 100%;}
.primary-button:hover,.primary-button:focus,.primary-button:active{ color: white;  background-color: var(--primary-color);}

.secondary-button{
  border: none;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  transition: 0.5s;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.secondary-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.secondary-button:hover:after { left: 0; width: 100%;}
.secondary-button:hover,.secondary-button:focus,.secondary-button:active{ color: white;  background-color: var(--secondary-color);}
.glass {
  background: rgb(49 49 49 / 63%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.glass-card {
  background: rgb(49 49 49 / 63%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(250, 221, 0, 0.2);
}
.countdown.bg-gradient-color {
  background: linear-gradient(-120deg, transparent 59%, white 30%);
}
/* Glass card style */
/* heading css start */
.heading-1 .top-strip {
  position: absolute;
  top: -5px;
  left: 0px;
  width: 100%;
  height: 80%;
  z-index: -1;
  background: #9a0d1d99;
  clip-path: polygon(0 0, 84% 31%, 83% 100%, 0 100%);
}
.heading-1 span {
  background: linear-gradient( to top, var(--secondary-color), var(--secondary-dark-color));
  clip-path: polygon(0 15%, 100% 0, 95% 100%, 0 100%);
  z-index: 0;
  padding: 0.3rem 2rem;
}
.heading-2 .top-strip {
  position: absolute;
  top: -5px;
  left: 0px;
  width: 100%;
  height: 80%;
  z-index: -1;
  background: #ca3b03cd;
  clip-path: polygon(0 0, 84% 31%, 83% 100%, 0 100%);
}
.heading-2 span {
  background: linear-gradient( to top, var(--primary-dark-color), var(--primary-color));
  clip-path: polygon(0 15%, 100% 0, 95% 100%, 0 100%);
  z-index: 0;
  padding: 0.3rem 2rem;
}

/* Left small dark cut */
@media (max-width: 600px) {
  .banner {
    padding: 12px 50px;
  }

  .banner span {
    font-size: 22px;
  }
}
/* heading css end */
#flipdown {
  padding: 10px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.073);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border:1px solid rgba(255, 255, 255, 0.075);
}
.flipdown .rotor-group-heading:before { color:white !important; height: 33px; line-height: 1 !important;}
.flipdown .rotor:after { height: 33px; }
.flipdown .rotor { font-size: 3rem; height: 66px; }
.flipdown .rotor-leaf { height: 66px; }
.flipdown .rotor-leaf-front, .flipdown .rotor-leaf-rear, .flipdown .rotor-top, .flipdown .rotor-bottom { height: 33px; }
.flipdown .rotor-leaf-front, .flipdown .rotor-top{ line-height: 65px;}
.flipdown .rotor-group:nth-child(n+2):nth-child(-n+3):after { bottom: 35px; }
.flipdown.flipdown__theme-dark .rotor, .flipdown.flipdown__theme-dark .rotor-top, .flipdown.flipdown__theme-dark .rotor-leaf-front { background-color: #343333; }
/*  */

/* navbar start */
/* .bg-custom{ background-color: #B89345;} */
.topbar{ background: var(--primary-dark-color); }
.navbar-brand{ width: 8rem; }
.nav-item.dropdown .dropdown-menu{ animation: downOut 500ms ease-in-out forwards; transform-origin: center center;}
.nav-item.dropdown:hover .dropdown-menu{ 
  display: flex !important; 
  top: 100%; 
  background-color: white;
  width: 12rem;
}
.nav-item.dropdown:hover .dropdown-menu li .dropdown-item:hover{ 
  padding-left: 25px;
  transition: all .3s ease-in-out;
}
.home .nav-link{ color: white}
@-moz-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-webkit-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@-o-keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}
@keyframes downOut {
  0% {
    transform: translateZ(200px) transLateY(40px);
  }
  80% {
    transform: translateZ(-10px) transLateY(0px);
  }
  100% {
    transform: translateZ(0px) transLateY(0px);
  }
}

.navbar .nav-link{ color: white }
.navbar .nav-link.active, .navbar .nav-link:hover{ color: white; background-color: var(--primary-color) }
.navbar .dropdown-menu li .dropdown-item:hover, .navbar .dropdown-menu li .dropdown-item.active {
  background-color: #9a0d1d !important;
  color: white
}
.nav-link.light-button, .light-button{
  border: none;
  color: var(--secondary-color) !important;
  background-color: white ;
  transition: 0.5s;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.nav-link.light-button::after, .light-button::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: var(--primary-color);
  transition: all 0.5s ease-in-out;
}
.nav-link.light-button:hover:after, .light-button:hover:after { left: 0; width: 100%;}
.nav-link.light-button:hover, .light-button:hover, .nav-link.light-button:focus, .light-button:focus, .nav-link.light-button:active, .light-button:active{ color: white !important;  background-color:white;}

/* button end */

/* home banner css start */
/* .home-banner, .home-banner .carousel-item{ height: calc(100vh - 120px) !important; overflow: hidden;} */
.home-banner .carousel-control-prev, .carousel-control-next {
  border: 1px solid white;
  width: 3rem;
  height: 3rem;
  top: auto;
  bottom: 3%;
  opacity: 1;
}
.home-banner .carousel-control-prev { left: 88%; }
.home-banner .carousel-control-next { right: 4%; }
/* home banner css end */
/* quick number css start */
.quick-number-box p{ font-size: 12px;}
.quick-number-box > div{ border-bottom-right-radius: 15px; border-top-left-radius: 33%; border-bottom-left-radius: 32%; height: 3.4rem;}
.quick-number-box::after{
  content: '';
  background-color: #3498db;
  position: absolute;
  top: 2px;
  left: 3px;
  height: 3.7rem;
  width: 100%;
  z-index: 0;
  border-bottom-right-radius: 15px;
  transform: rotate(5deg);
  border-top-left-radius: 50% !important; border-bottom-left-radius: 35% !important;
}
.quick-number-box::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -8px;
  height: 4.2rem;
  width: 4.2rem;
  z-index: 0;
  border-radius: 50%;
  border: 6px solid #3498db;
  background-color: #fff;
  transform: rotate(3deg);
}
.quick-number-box h6.text-md{font-size: 1.5rem;}
.quick-number-box.box-1::after{ background-color: var(--primary-color) !important; }
.quick-number-box.box-1::before { border: 6px solid var(--primary-dark-color); }
.quick-number-box.box-2::after{ background-color: #2699a3 !important; }
.quick-number-box.box-2::before { border: 6px solid #2699a3; }
.quick-number-box.box-3::after{ background-color: #3d7b2c !important; }
.quick-number-box.box-3::before { border: 6px solid #3d7b2c; }
.quick-number-box.box-4::after{ background-color: #2a444a !important; }
.quick-number-box.box-4::before { border: 6px solid #2a444a; }
.quick-number-box.box-1 h6, .quick-number-box.box-1 p{ color: #f4551e; line-height: 100%; }
.quick-number-box.box-2 h6, .quick-number-box.box-2 p{ color: #2699a3; line-height: 100%; }
.quick-number-box.box-3 h6, .quick-number-box.box-3 p{ color: #3d7b2c; line-height: 100%; }
.quick-number-box.box-4 h6, .quick-number-box.box-4 p{ color: #2a444a; line-height: 100%; }
/* quick number css end */

/* dignity section css start */
.dignity-profile-img {
  height: 11rem !important;
  width: 100%;
  position: relative;
  z-index: 2;
}
/* dignity section css end */
/* two marketing section start */
.icon-img-width { width: 6rem; height: 5rem; }
/* about image start */
.about-main-image{
  height: 25rem;
  width: 75%;
  overflow: hidden;
  margin-left: auto;
}
.about-icon-list{ width: 48%; }
.about-icon-list:hover{ box-shadow: 2px 2px 2px #f9c349; }
.text-content{ width:90%;}
.about-icon-box{
  width: 4rem;
  height: 4rem;
}
.about-small-img {
  width: 56%;
  height: 12rem; 
  left: 36%;
  top: 70%;
}
/* appreciation letter css start */
.appreciation-letter { height: 9rem; }
/* appreciation letter css end */
/* logos */
.logos-container{  width: 100%; min-height: 7rem;}
.logos-box {
  width: 100%;
  height: 5.3rem;
}
/*  */
/* why section css start*/
.why-image { width: 100%; height: 6rem;}
/* about page css start */
.about-img img {
  width: 580px!important;
  height: 440px !important;
  animation: border-radius-ani 4.5s linear infinite alternate;
}
.about-icon-box{ width: 4rem ; height: 4rem;}
@-webkit-keyframes border-radius-ani {
  0% {
      border-radius: 48% 52% 57% 43% / 34% 44% 56% 66%;
  }
  25% {
      border-radius: 62% 38% 64% 36% / 34% 55% 45% 66%;
  }
  50% {
      border-radius: 43% 57% 51% 49% / 33% 42% 58% 67%;
  }
  100% {
      border-radius: 40% 60% 43% 57% / 52% 32% 68% 48%;
  }
}
@keyframes border-radius-ani {
  0% {
      border-radius: 48% 52% 57% 43% / 34% 44% 56% 66%;
  }
  25% {
      border-radius: 62% 38% 64% 36% / 34% 55% 45% 66%;
  }
  50% {
      border-radius: 43% 57% 51% 49% / 33% 42% 58% 67%;
  }
  100% {
      border-radius: 40% 60% 43% 57% / 52% 32% 68% 48%;
  }
}
.about-icon-list { width: 48%; }
.about-icon-list:hover { box-shadow: 2px 2px 2px var(--primary-dark-color); }
.heading-section span{ color:white; font: 1.2rem; font-weight: 700; }
.heading-section ul li{ color:white; font-size: 0.875rem;  margin: 5px 0; }
/* about page css end */
/* exhibit profile css start */
.profile-list li{ width: 48%;  transition: all 300ms ease;}
.profile-list li:hover{ transform: translateY(-4px);}
.profile-list li::before {
  transition: all 300ms ease;
  position: absolute;
  content: "✔";
  top: 0;
  left: -2%;
  color: white;
  font-size: 0.8rem;
  border: 1.2px solid white;
  border-radius: 50%;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ul-list li{position: relative; padding-left: 1.8rem; margin: 5px 0;}
.ul-list li::before {
  position: absolute;
  content: "✧";
  top: -4px;
  left: 0;
  color: white;
  font-size: 1.2rem;
}
/* gallery css start */

.outer-container {
  width: 100%;
  height: 12rem;
  transition: 0.6s all ease-in-out;
}
.outer-container:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.outer-container:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  content: '';
  z-index: 2;
  background-color: white;
  transition: 0.6s all ease-in-out;
}
.outer-container:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  z-index: 2;
  background-color: white;
  transition: 0.6s all ease-in-out;
}

.inner-content-box {
  width: 100%;
  height: 12rem;
  cursor: pointer;
  border: 5px solid var(--primary-color);
  transition: 0.6s all ease-in-out;
}
.inner-content-box:before {
  position: absolute;
  width: 5px;
  height: 100%;
  content: '';
  bottom: 0;
  right: -5px;
  transition: 0.6s all ease-in-out;
  background-color: white;
}
.inner-content-box:after {
  position: absolute;
  width: 5px;
  height: 100%;
  content: '';
  top: 0;
  left: -5px;
  transition: 0.6s all ease-in-out;
  background-color: white;
}
.outer-container:hover .inner-content-box:before, .outer-container:hover .inner-content-box:after { height: 0; }
.outer-container:hover:before, .outer-container:hover:after { width: 0; }
/* gallery css end */
/* profile page css start */
.service-box:hover{ transform: translateY(-10px); transition: .3s all ease-in-out;}
.profile-image{ height: 12rem;}
.ul-list ul{ padding-left: 0.1rem !important;}
.ul-list li{ list-style: none;}
/* exhibitor logos css start */
.exhibitor-logo-container{ width: 100%; height: 6rem; transition: 0.6s all ease-in-out; }
.exhibitor-logo-container:hover { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
.exhibitor-logo-container .exhibitors-logo-box{ width: 100%; height: 6rem;  cursor: pointer;
  border: 5px solid #eba90f;
  transition: 0.6s all ease-in-out; 
}
.exhibitor-logo-container:before{
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  content: '';
  z-index: 2;
  background-color: white;
   transition: 0.6s all ease-in-out; 
}
.exhibitor-logo-container:after{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  z-index: 2;
  background-color: white;
   transition: 0.6s all ease-in-out;  
}
.exhibitor-logo-container:hover:before,.exhibitor-logo-container:hover:after{ width: 0; }

.exhibitor-logo-container .exhibitors-logo-box:before{
  position: absolute;
  width: 5px;
  height: 100%;
  content: '';
  bottom: 0;
  right: -5px;
  transition: 0.6s all ease-in-out; 
  background-color: white; 
}
.exhibitor-logo-container .exhibitors-logo-box:after{
  position: absolute;
  width: 5px;
  height: 100%;
  content: '';
  top: 0;
  left: -5px;
  transition: 0.6s all ease-in-out; 
  background-color: white; 
}
.exhibitor-logo-container:hover .exhibitors-logo-box:before, .exhibitor-logo-container:hover .exhibitors-logo-box:after{ height: 0; }
/* exhibitor logos css end */
/* visitor profile page css start */
.exhibit-profile-card{ transition: all 0.3s ease-in-out;}
.exhibit-profile-img{border-bottom: 3px solid var(--primary-color); height: 12rem; transform: scale(1);}
.exhibit-profile-card:hover .exhibit-profile-img{ transform: scale(1.05);}
.exhibit-profile-card:hover{ border-color: var(--primary-color); box-shadow: 1px 1px 3px var(--primary-color) !important; }
.exhibit-profile-card p {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .visitor-profile-card:hover h5{ color: white;} */
.visitor-profile-card::before {
  content: '';
  position: absolute;
  right: -55px;
  width: 95px;
  height: 95px;
  bottom: -50px;
  border-radius: 15px;
  background: linear-gradient(268deg, #e5a91e17, #0f0f0f21) !important;
  -webkit-transition: all .6s ease-in-out; 
  transition: all .6s ease-in-out; 
  z-index: -1;
}
.visitor-profile-card:hover:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #eb661f;
}
/* visitor profile page css end */
/* footer css start */
footer {
  clip-path: polygon(31% 15%, 100% 0, 100% 100%, 0 100%, 0 0);  
  position: relative;
  /* text-shadow: 2px 2px 4px #000000 */
}
footer::after{
  content: '';
  position: absolute; 
  inset: 0;
  width: 100%;
  /* background-image: url('../img/bg-image-4.jpg');
  background-attachment: fixed; */
   background: rgb(49 49 49 / 63%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(250, 221, 0, 0.2);
  filter: blur(3px);
}
/* footer css end */

@media (max-width: 900px) {
  .masonry-container { column-count: 3; }
}

@media (max-width: 600px) {
  .masonry-container { column-count: 2; }
}

@media (max-width: 400px) {
  .masonry-container { column-count: 1;}
}
/*  */
/* ================================== *\
    Media queries
\* ================================== */

@media (max-width: 767px) {
  .text-xxs{font-size: var(--xxs-font);}
  .text-xs{font-size: var(--xs-font);}
  .text-sm{font-size: var(--xxs-font);}
  .text-md{font-size: var(--xs-font);}
  .text-lg{font-size: var(--sm-font);}
  .text-xl{font-size: var(--md-font);}
  .offcanvas.show:not(.hiding), .offcanvas.showing { background-color: #9a0d1d; }
  .nav-item.dropdown:hover .dropdown-menu { width: 100%; }
  .navbar .nav-link { padding: 0.5rem 1rem !important; border-radius: 0.2rem; }
  .countdown.bg-gradient-color {  background: linear-gradient(360deg, transparent 64%, white 30%); }
  footer{ clip-path: polygon(31% 8%, 100% 0, 100% 100%, 0 100%, 0 0);}
  /* .quick-number-box{ width: 80%;} */
  .quick-number-box::before {height: 5rem; width: 5rem; }
  .quick-number-box > div { height: 3.9rem; }
  .quick-number-box.box-4::before { border: 4px solid #2a444a; }
  .quick-number-box p{ font-size: 12px;}
}