/* @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* Load custom fonts from local folder */
/* Local font */
@font-face {
  font-family: "Runalto";
  src: url("/assets/frontend/fonts/Runalto/Runalto.woff2") format("woff2"),
    url("/assets/frontend/fonts/Runalto/Runalto.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body,
html {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

/* Utility classes for fonts */

body {
  font-family: var(--ThemeFont);
  background: var(--Bg)
}

/* Reset and layout base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.p-0 {
  padding: 0;
}

p {
  color: var(--Gray);
}


.showvideo iframe {
  height: 100%;
}

.toggle-video.close img {
  height: 20px;
}

.toggle-video.close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 21px;
}

.showvideo {
  display: none;
  position: fixed;
  z-index: 9999999999;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: var(--ThemeColor2);
  padding: 50px;
}

.showvideo.main {
  display: block;
}

:root {
  --Black: #000;
  --White: #e7e0d6;
  --Gray: #121212;
  --Gray2: #b8b7b7;
  --Bg: #e7e0d6;
  --ThemeColor: #e63b24;
  --ThemeColor2: #655243;
  --ThemeColor3: #000000;
  --ThemeColor4: #faf7e4;
  --ThemeColor5: #fff6f1;
  --ThemeColor6: #d6cec3;

  --Gradient: linear-gradient(360deg, rgba(61, 71, 73, 1) 0%, #2c3638 100%);
  --CardShadow: 0px 4px 11px rgba(217, 216, 216, 0.6);
  --ThemeFont: "Poppins", sans-serif;
  --ThemeFontTwo: "Bricolage Grotesque", sans-serif;
  --Radius: 20px;
}

.--transition-ease {
  transition: all 0.2s ease-in 0s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.--transition-ease:hover {
  transition: all 0.2s ease-in 0s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.--transition-ease:after {
  transition: all 0.2s ease-in 0s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.--transition-ease:before {
  transition: all 0.2s ease-in 0s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

/*********** start col **********/

/* anky inserted below css */
.multi-select-box {
  position: relative;
  border: 1px solid #2e2f30 !important;
  padding: 16px 16px;
  cursor: pointer;
  background: transparent;
  min-height: 50px;
  margin-top: 5px;
  border-radius: 5px;

}

.selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
}

.selected-tag {
  background-color: #007bff;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.selected-tag .remove-tag {
  margin-left: 8px;
  background: #fff;
  color: #007bff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}

.multi-select-box {
  position: relative;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #3d3e3f;
  border-top: none;
  z-index: 10;
  background-color: #2e2f30;
  display: none;
}

.dropdown-list ul {
  margin: 0 !important;
  display: block !important;
}

.dropdown-list.show {
  display: block;
}

.dropdown-list ul {
  list-style: none;
  padding: 0;
}

.dropdown-list li {
  padding: 8px 10px;
  cursor: pointer;
}

.dropdown-list li.disabled-result {
  cursor: default;
  font-weight: bold;
  background-color: #ce5d1d;
  color: #fff !important;
}

.selected-items {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.selected-item {
  background-color: #e2e2e2;
  padding: 5px 10px;
  border-radius: 3px;
  position: relative;
}

.selected-item .remove-btn {
  margin-left: 5px;
  color: red;
  cursor: pointer;
  font-weight: bold;
}


.dropdown-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-list li {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eeeeee14;
  text-align: left;
  font-size: 14px;
  color: var(--White);
}

.dropdown-list li:hover {
  background-color: #ce5d1d8a;
}

.dropdown-list li.selected {
  background-color: #ce5d1d8a;
}

/* anky inserted above css */

span.error,
label.error {
  color: #d33636 !important;
  font-family: Arial, sans-serif;
  font-size: 12px !important;
  text-transform: capitalize !important;
  font-weight: 200 !important;
}

.text-danger {
  color: #eccb0e !important;
  font-family: Arial, sans-serif;
  font-size: 12px !important;
  text-transform: capitalize !important;
  font-weight: 200 !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.row .rowin {
  padding: 0 12px;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-12 {
  width: 100%;
}

.col-10 {
  width: 83.33333333%;
}

.p-0 {
  padding: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.d-none {
  display: none
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-3 {
  margin-top: 20px !important;
}

.mt-4 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 15px;
}

.mb-3 {
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.m-auto {
  margin: auto;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.text-start {
  text-align: left !important;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.align-center {
  align-items: center;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

h3,
h2,
h1,
h4 {
  font-family: var(--ThemeFontTwo);
}

p b {
  font-weight: 800;
}

p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}

.z-index {
  z-index: 99;
}


/************* end col ************/
.custom-btn img {
  height: 20px;
}

.custom-btn {
  transition: transform 0.2s;
  background-color: var(--ThemeColor4);
  color: var(--ThemeColor2);
  font-size: 18px;
  border-radius: 10px;
  padding: 13px 20px;
  box-shadow: 0 5px 18px #ce5d1d36;
  font-weight: 500;
  min-width: 180px;
  border: 1px solid var(--ThemeColor4) aliceblue;
  text-align: center;
}

.custom-btn:hover {
  transform: scale(1.05);
}

.custom-btn.white_btn {
  border: 1px solid var(--ThemeColor4);
  color: var(--ThemeColor2);
  background: transparent;
  font-weight: 500;
  text-transform: unset;
}

.custom-btn.orange_bg {
  border: 1px solid var(--ThemeColor);
  color: var(--White);
  background: var(--ThemeColor);
  font-weight: 500;
  text-transform: unset;
}

/*  */
.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

.container-fluid {
  padding: 0 20px;
  margin: 0 auto;
}

.heading h2 {
  font-size: 56px;
  margin-top: 25px;
  line-height: 65px;
  text-transform: uppercase;
}

.heading h2 img {
  height: 40px;
}

.heading {
  font-size: 55px;
  margin-top: 25px;
  line-height: 56px;
  font-weight: 600;
  color: var(--ThemeColor2);
}

.heading span {
  color: var(--ThemeColor);
  font-weight: 600;
}

.afterbg::after {
  background: #00000045;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  opacity: 0.6;
}


.heading_boss .row {
  align-items: center;
}

.heading_boss h6 {
  font-size: 18px;
  color: var(--ThemeColor2);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.heading_boss {
  margin-bottom: 39px;
}

.heading_boss p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 5px;
  background-color: var(--ThemeColor5);
}

::-webkit-scrollbar-track {
  background-color: #ccc;
}

::-webkit-scrollbar-thumb {
  background-color: var(--ThemeColor);
  border-radius: 10px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--ThemeColor) #ccc;
}

.custom-btn.fxdbtn {
  transform: rotate(90deg);
  right: -79px;
  position: fixed;
  bottom: 79px;
  z-index: 9999999;
  border-radius: 10px;
  width: 210px;
  height: 53px;
}

/***************************************************************
********************************* Header ************************
*****************************************************************/
.logoss {
  display: flex;
  gap: 36px;
}

.header-top {
  margin-top: 12px;
  border-radius: 15px;
  padding: 8px 0;
  background: transparent;
}

.header-top img.logo-img {
  width: auto;
  height: 79px;
}

.header-top ul {
  list-style: none;
}

.header-top ul li {
  margin-left: 32px;
}

.header-top ul li a {
  color: var(--White);
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--ThemeFontTwo);
}

.toggle-bar {
  background: transparent;
  border: none;
  display: none;
}

.toggle-bar img {
  width: 30px;
  height: 30px;
  margin-right: 0;
}

header.fixed {
  position: fixed;
  background: var(--ThemeColor2);
  z-index: 9999999;
}

header.fixed .header-top {
  margin: 5px 0;
  padding: 2px 0;
}

header.fixed .header-top img.logo-img {
  height: 79px;
}

header {
  position: absolute;
  z-index: 9999999;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, #000000bd, #826d6d00);
}

.toggleclose {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: var(--White);
  display: none;
}

.dropdown {
  position: relative;
}

.header-top ul li a img {
  height: 5px;
  position: relative;
  top: -3px;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 40px;
  left: 0;
  display: none;
  flex-direction: column;
  background: var(--ThemeColor);
  min-width: 305px;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.dropdown-menu::after {
  height: 15px;
  width: 16px;
  content: "";
  background: var(--ThemeColor);
  position: absolute;
  left: 24px;
  top: -7px;
  transform: rotate(228deg);
}

.header-top ul li .dropdown-menu li {
  margin-left: 0;
  border-radius: 0;
  overflow: hidden;
}

.header-top ul li .dropdown-menu li+li {
  border-top: 1px solid #ffffff26;
}

.dropdown-menu li a {
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  color: #333;
  opacity: .9;
}

.dropdown-menu li a:hover {
  font-weight: 500;
  opacity: 1;
}

.dropdown.open .dropdown-menu {
  display: flex;
  border-radius: 5px;
}






.showmadal.main {
  display: none;
}

.showmadal {
  background: #000000ad;
  position: fixed;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999;
  width: 100%;
  height: 100%;

}

.showmadal img.close_btn {
  height: 46px;
  position: absolute;
  right: 15px;
  top: 15px;
  background: #fbc300a6;
  padding: 11px;
  border-radius: 50%;
}

.showmadal .in {
  background: #f7f4ee;
  position: fixed;
  top: 0;
  padding: 50px;
  z-index: 99999999;
  max-width: 650px;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  border-radius: 20px;
  height: fit-content;
}

.showmadal h2.heading {
  font-size: 37px;
  line-height: 45px;
  margin-bottom: 16px;
  margin-top: 0;
}



.Sanjhheadig .d-flex img {
  width: 130px;
  height: auto !important;
}

.Sanjhheadig .d-flex {
  justify-content: space-between;
  color: #fff;
  align-items: end;
}

.showmadal p {
  margin-bottom: 26px;
}

section.why_exhibit.daysin .table tr:nth-child(even) {
  background-color: #eadcb4;
}

section.why_exhibit.daysin h6 {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

section.why_exhibit.daysin h3.heading {
  font-size: 40px;
  margin: 0;
}

section.why_exhibit.daysin .table td {
  padding: 10px 18px;
  font-size: 16px;
  text-align: left;
  width: 50%;
}

section.sectionSix1.sectionSix12.Supportedssss {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}

.exhibition_profile1.Sanjh1 h3 {
  font-size: 24px;
}

section.sectionSix1.sectionSix12.Supportedssss img {
  max-width: 1000px;
  margin: auto;
}

section.why_exhibit.daysin .maindiv .set {
  border: 1px solid #b7b0a7;
  border-radius: 11px;
  box-shadow: 0px 0 15px #e3b00070;
  padding: 20px 20px;
}

section.why_exhibit.daysin .maindiv p b {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: -14px;
  display: block;
}





section.why_exhibit.daysin .table {
  background: linear-gradient(180deg, rgba(251, 201, 0, 1) 0%, rgba(252, 235, 128, 1) 100%);
}

section.why_exhibit.daysin {
  background: #fbc90029;
}

section.why_exhibit.daysin p.text-start {
  font-size: 20px;
}

.profile_banner img.Sanjhlogo {
  height: 200px;
  min-height: auto;
}

.Sanjh1 .heading span,
section.why_exhibit.daysin .heading span,
.showmadal .in .heading span,
section.sectionSix1.sectionSix12.Supportedssss .heading span {
  color: #e3b000;
  font-weight: 600;
  /* text-shadow: 2px 2px 2px #655243; */
}

.Sanjh1 .custom-btn.gapbtn1,
section.why_exhibit.daysin .custom-btn.gapbtn1,
.showmadal .in .custom-btn.gapbtn1 {
  background: #141616;
}


.profile_banner.Sanjhheadig .cont {
  bottom: 29vh;
}








/***************************************************************
********************************* banner ************************
*****************************************************************/
.banner {
  height: 840px;
  overflow: hidden;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 0;
  background-position: top;
}

.banner .cont h4 {
  color: var(--White);
  font-size: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.banner .container {
  position: relative;
  z-index: 9;
}

.banner .cont {
  padding-top: 2%;
}

.banner .container img {
  margin-top: -200px;
  max-width: 75%;
}

.banner .cont .text {
  margin: 30px 0 35px;
}

.banner .cont h5 {
  font-size: 30px;
  color: var(--White);
  margin-bottom: 0;
  margin-top: 25px;
  line-height: 28px;
}

.banner .cont h4 span {
  background: var(--ThemeColor5);
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  border-radius: 3px;
  box-shadow: 0 0 40px var(--ThemeColor2);
  color: var(--ThemeColor2);
}

.banner .cont h5 span {
  font-size: 20px;
  font-weight: 400;
}

.banner .cont h6 {
  font-size: 52px;
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--White);
}

.banner .ctabtn {
  display: inline-flex;
  gap: 20px;
}

.banner .cont .heading {
  font-size: 60px;
  color: #fff;
  line-height: 68px;
  margin-bottom: 0;
}

.banner .afterbg::after {
  opacity: 0.6;
}

.banner p a {
  background: #fffc;
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 5px 18px #ce5d1d36;
}

.brnds {
  position: absolute;
  bottom: 106px;
  width: 100%;
  left: 0;
  padding: 0 69px;
  z-index: 999999;
}

.banner p {
  margin-top: 10px;
}

.banner p img {
  height: 40px;
  width: auto;
  margin: 0 26px;
}

.banner .custom-btn {
  min-width: 230px;
}

.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 419px;
  top: inherit;
  bottom: -130px;
  left: 0;
  background: linear-gradient(360deg, #655243, #655243, #826d6d00);

  opacity: 1;
  z-index: 99999;
}

.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .cont1 {
  z-index: 9999;
  width: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 100%;
  /* background: #6552436e; */
  padding-top: 200px;
  z-index: 999999;
}


/*************************************************************************
***************************** sectionTwo  ********************************
************************************************************************/
.sectionTwo .cont {
  margin-top: 65px;
  padding: 0 100px;
}

.contdiv_main {
  max-width: 1400px;
  margin: 0 auto 80px;
}

.dasknonenone {
  display: none;
}

.sectionTwo .col-3+.col-3 .set {
  border-left: 1px solid var(--ThemeColor5);
}

.video1 span img {
  border-radius: 0;
  height: auto;
}

.video1 span {
  position: absolute;
  width: 90px;
  height: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}

.incont_img .row {
  align-items: center;
}

.video1 {
  position: relative;
  width: 109%;
}

.sectionTwo .aboutimg {
  height: 540px;
  border-radius: 20px;
  border: 14px solid var(--ThemeColor2);
  box-shadow: 0 0 28px #26211c80;
  object-fit: cover;
  object-position: center;
}

.video1 img {
  border-radius: 20px;
  overflow: hidden;
  height: 640px;
  object-fit: cover;
  object-position: center;
}

.sectionTwo .heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 55px;
  line-height: 56px;
  color: var(--ThemeColor5);
}

.sectionTwo .incont {
  border-top: 1px solid #faf7e452;
  padding-top: 50px;
  padding-bottom: 75px;
}

.sectionTwo .heading span.left {
  color: var(--ThemeColor2);
  margin-left: 21%;
  font-weight: 400;
}

.sectionTwo::after {
  content: "";
  position: absolute;
  background: var(--ThemeColor2);
  width: 100%;
  height: 75%;
  top: 0;
  z-index: -1;
}

.sectionTwo p {
  color: var(--ThemeColor5);
}

.sectionTwo .contdiv p {
  text-align: center;
}

.sectionTwo .cont .set h2 {
  font-size: 55px;
  font-weight: 500;
  line-height: 56px;
  color: var(--ThemeColor5);
  height: 60px;
}

.sectionTwo .cont .set h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--ThemeColor5);
}

.sectionTwo .cont .set p {
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  color: #fff6f194;
}

.sectionTwo .set img {
  height: 224px;
  object-fit: cover;
}

.sectionTwo .cont .set h2 span {
  font-size: 28px;
}

.sectionTwo .arrowbtn img {
  height: 20px;
}

.sectionTwo .arrowbtn {
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  height: 50px;
  max-width: 220px;
}

.sectionTwo .cont .set.img {
  background-size: cover;
  width: 100%;
  height: 224px;
}

.sectionTwo .cont .set {
  position: relative;
  text-align: center;
  padding: 0 39px;
  min-height: 140px;
}

.sectionTwo .contdiv {
  margin: 0 -30px;
}

.sectionTwo .contdiv .rowin {
  padding: 0 30px;
}






.sectionTwo.sectionTwovisttor .cont .set {
  box-shadow: inset 0 0 5px #b8b7b778;
  padding: 20px;
  height: 224px;
  position: relative;
}

.sectionTwo.sectionTwovisttor .cont .set h2 {
  text-align: left;
  color: var(--ThemeColor2);
}

.sectionTwo.sectionTwovisttor .cont .set p {
  position: absolute;
  bottom: 20px;
  color: var(--Black);
}

.sectionTwo.sectionTwo2 {
  margin-bottom: 90px;
}

.sectionTwo.sectionTwo2::after {
  display: none;
}

.sectionTwo.sectionTwo2 .heading {
  color: var(--ThemeColor2);
}

.sectionTwo.sectionTwo2 .cont .set h2 {
  color: var(--ThemeFont);
}

.sectionTwo.sectionTwo2 .cont .set h6 {
  color: var(--Black);
}

.sectionTwo.sectionTwo2 .cont .set p {
  color: var(--Black);
}

.sectionTwo.sectionTwo2 .col-3+.col-3 .set {
  border-left: 1px solid #65524378;
}

.sectionTesti.sectionTesti_profile2 {
  margin-bottom: 80px !important;
}

.sectionTwo.sectionTwo2 .incont {
  border-top: none;
  padding-bottom: 0;
}

.sectionTwo.sectionTwo2 .set {
  border: none !important;
}

/*************************************************************************
***************************** seven_section1  ********************************
***********************************************************************/
/* .sectionThree {margin: 120px 0 70px;}
.sectionThree .set h6 {background: var(--White); align-items: center; padding: 14px 15px; height: 46px; border-radius: 11px; font-size: 15px; margin-right: 11px; min-width: 100px; text-align: center; font-weight: 500;}
.sectionThree .set .img img {height: 35px;}
.sectionThree .set .img {height: 72px; width: 72px; background: var(--ThemeColor6); border-radius: 50%; justify-content: center !important;}
.sectionThree .set h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 53px;
  color: var(--ThemeColor2);
  display: flex;
  gap: 13px;
}
.sectionThree .set h2 span { font-size: 20px;}
.sectionThree .set p {
  font-size: 16px;
  min-height: 54px;
}
.sectionThree .cont {padding: 0 50px; margin-top: 0;}
.sectionThree .cont .heading {margin-bottom: 20px;}
.sectionThree .cont .set, .sectionThree .cont .seth {
  align-items: center;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 9px #00000021;
}
.sectionThree .cont .row .rowin { padding:0;}
.sectionThree .cont .row { margin: 0 0;}
.sectionThree .cont .blnone{border-left:none}
.sectionThree .cont .btnone{border-top:none}
.sectionThree .cont .seth { margin-top: -90px;}

.sectionThree .set .Compressedicon {
  position: absolute;
  right: 0;
  opacity: 0.06;
  top: 12px;
} */





.sectionThree {
  margin: 120px 0 70px;
}

.sectionThree .set h6 {
  background: var(--White);
  align-items: center;
  padding: 14px 15px;
  height: 46px;
  border-radius: 11px;
  font-size: 15px;
  margin-right: 11px;
  min-width: 100px;
  text-align: center;
  font-weight: 500;
}

.sectionThree .set .img img {
  height: 26px;
}

.sectionThree .set .img {
  height: 70px;
  width: 70px;
  background: var(--ThemeColor6);
  border-radius: 50%;
  justify-content: center !important;
}

.sectionThree .set h2 {
  font-size: 55px;
  font-weight: 500;
  line-height: 53px;
  color: var(--ThemeColor2);
  display: flex;
  gap: 13px;
}

.sectionThree .set h2 span {
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
}

.sectionThree .set p {
  font-size: 16px;
}

.sectionThree .cont {
  padding: 0 0;
  margin-top: 60px;
}

.sectionThree .cont .heading {
  margin-bottom: 20px;
}

.sectionThree .cont .set,
.sectionThree .cont .seth {
  border-top: 1px solid #6552434f;
  padding: 30px 40px;
  border-left: 1px solid #6552434f;
  align-items: center;
}

.sectionThree .cont .row .rowin {
  padding: 0;
}

.sectionThree .cont .row {
  margin: 0 0;
}

.sectionThree .cont .blnone {
  border-left: none
}

.sectionThree .cont .btnone {
  border-top: none
}

.sectionThree .cont .seth {
  margin-top: -90px;
}




/*************************************************************************
***************************** sectionFourGall ********************************
************************************************************************/
.sectionFourGall {
  margin: 30px 0 5px;
}

.sectionFourGall .cont .container {
  position: absolute;
  bottom: 38px;
  left: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: end;
  right: 0;
}

.sectionFourGall img {
  height: 700px;
  object-fit: cover;
  height: 700px;
  object-position: top;
}

.sectionFourGall .cont p {
  color: var(--White);
  font-size: 27px;
  max-width: 424px;
  line-height: 36px;
}

.sectionFourGall .owl-carousel {
  overflow: hidden;
}

.sectionFourGall .owl-dots {
  display: none;
}

.sectionFourGall .owl-prev,
.sectionFourGall .owl-next {
  background: #ffffff5c !important;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 40px;
}

.sectionFourGall .owl-next {
  right: 40px;
  left: inherit;
}

.sectionFourGall .owl-prev span,
.sectionFourGall .owl-next span {
  color: var(--ThemeColor);
  font-size: 43px;
  position: relative;
  top: -9px;
}

.sectionFourGall .owl-prev:hover,
.sectionFourGall .owl-next:hover {
  background: var(--White) !important;
}

.sectionFourGall .owl-nav.disabled {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex !important;
  gap: 17px;
  left: 0;
  margin: auto;
  width: 114px;
}



/*************************************************************************
***************************** sectionFour ********************************
************************************************************************/
.sectionFour {
  margin: 130px 0;
}

.sectionFour .cont {
  background-color: var(--ThemeColor6);
  padding: 70px;
  border-radius: 40px;
}

.sectionFour .cont .custom-btn.Contactbtn {
  display: inline-block;
  margin-top: 22px;
}

.sectionFour .main_img {
  display: flex;
  position: absolute;
  right: -200px;
}

.main_img img {
  border-radius: 28px;
  width: 130%;
  min-width: 450px;
  height: 500px;
  object-fit: cover;
}

.main_img img.aboutimg2 {
  position: relative;
  top: 25px;
  left: -200px;
}


.main_img img.aboutimg {
  position: relative;
  top: -135px;
}

.sectionFour p {
  text-align: justify;
}

.custom-btn.Contactbtn {
  justify-content: center;
}

/*************************************************************************
***************************** cta ********************************
************************************************************************/
.cta .custom-btn {
  display: inline-block;
  margin-top: 22px;
}

.cta p {
  max-width: 800px;
  margin: auto;
}

.cta {
  padding: 20px 0 140px;
  max-width: 1920px;
  margin: auto;
}

.cta .cta1 {
  position: absolute;
  left: 0;
  top: -150px;
  width: 250px;
}

.cta .cta2 {
  position: absolute;
  right: 0;
  bottom: -106px;
  width: 415px;
}

.cta.cta_new {
  padding: 100px 0 140px;
}

.cta.cta_new .cta1 {
  top: -100px;
}

.cta.ctadiv .cta1 {
  top: -271px;
}

/*************************************************************************
***************************** section_five ********************************
************************************************************************/


/* .sectionFive { padding: 130px 0 70px; max-width: 1920px; margin: 0 auto 70px; background-position: left; background-repeat: no-repeat;} */
.sectionFive {
  padding: 10px 0 70px;
  max-width: 1920px;
  margin: 0 auto 5px;
  background-position: left;
  background-repeat: no-repeat;
}

/* .sectionFive { padding: 70px 0; max-width: 1920px; margin: 0 auto 70px; background-position: right;} */
.sectionFive .cont {
  border-radius: 35px;
  box-shadow: 0 0 28px #26211c3d;
  padding: 70px;
  display: table-cell;
  background: var(--ThemeColor2);
}

/* .sectionFive .cont { border-radius: 35px; display: table-cell; width: 845px; float: right;} */
/* .sectionFive .aboutimg2 {border-radius: 35px; width: 117%; height: 660px; object-fit: cover; margin-top: -60px;} */
.sectionFive .aboutimg2 {
  border-radius: 35px;
  width: 127%;
  height: 689px;
  object-fit: cover;
  margin-top: -89px;
  object-position: top;
}

.sectionFive ul li {
  color: var(--White);
  width: 50%;
  float: left;
  padding: 5px 0 5px 36px;
  background-image: url(../images/arrow_white.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center left;
}

.sectionFive ul {
  list-style: none;
  margin-top: 26px;
}

.sectionFive .heading {
  color: var(--White);
}

.sectionFive .cont p {
  color: var(--White);
}

.sectionFive.sectionFive_profile.sectionFive_profile2 {
  padding-top: 60px;
}

.sectionFive_profile .bbttnn .custom-btn.white_btn {
  background: var(--ThemeColor4);
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  justify-content: center;
}



/*************************************************************************
***************************** cta ********************************
************************************************************************/
.cta2 .custom-btn {
  display: inline-block;
  margin-top: 22px;
}

.cta2 p {
  max-width: 700px;
  color: var(--White);
}

.cta2 {
  padding: 110px 0;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: right;
}

.cta2 .heading {
  color: var(--Bg);
}

.cta2 .container {
  z-index: 9;
}

.cta2.afterbg::after {
  background: linear-gradient(460deg, #655243, #655243, #826d6d00);
  left: 0;
  width: 60%;
  opacity: 1;
}



/*************************************************************************
***************************** Supported ********************************
************************************************************************/
.Supported {
  padding: 80px 0;
  border-radius: 30px;
  overflow: hidden;
}

.Supported .maintab {
  display: flex;
  justify-content: right;
}

.Supported .heading {
  color: var(--ThemeColor2);
}

.Supported .heading_boss p {
  color: var(--Black);
}

.Supported .tabs {
  padding: 0;
  list-style: none;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  margin-top: -25px;
}

.Supported.afterbg::after {
  background: var(--ThemeColor6);
  opacity: 0.8;
}



/*************************************************************************
***************************** sectionSeven ********************************
************************************************************************/
.sectionSeven {
  padding: 85px 0;
}

.sectionSeven ul {
  list-style: none;
  display: flow-root list-item;
  text-align: center;
  justify-content: center;
  position: relative;
}

.sectionSeven ul li {
  padding: 0 28px;
  margin: 25px 0;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  min-height: 50px;
  color: var(--ThemeColor2);
  font-weight: 500;
}

.sectionSeven ul li span {
  opacity: .75;
}

.sectionSeven ul li span.ing {
  position: relative;
  top: 11px;
}

.sectionSeven ul li:hover span {
  opacity: 1;
}

.sectionSeven ul li+li {
  border-left: 2px solid var(--ThemeColor);
}

.sectionSeven ul.lstul {
  display: flex;
  justify-content: end;
}

.sectionSeven ul.lstul li {
  position: relative !important;
  top: inherit !important;
}

.sectionSeven .side_img3 {
  position: absolute;
  right: 0;
  top: -119px;
  width: 296px;
  z-index: 9;
}


.sectionSeven .cta1 {
  position: absolute;
  left: 0;
  top: -85px;
  width: 225px;
}

/* .sectionSeven ul li:first-child {position: absolute; top: -100px; left: 0;}
.sectionSeven ul li:nth-child(5n+2){  background: #ded6cc;}
.sectionSeven ul li:nth-child(5n+3){  background: #e7cfc4;}
.sectionSeven ul li:nth-child(5n+4){  background: #e3d7bf;}
.sectionSeven ul li:nth-child(5n+5){  background: #d6cbbe;} */


/* ***************************************************
*************************sectionMap ******************
*****************************************************/
.sectionMap {
  position: relative;
  margin-top: 70px;
  z-index: 9;
  background: var(--ThemeColor6);
}

.sectionMap iframe {
  width: 100%;
  height: 600px;
}

.sectionMap .custom-btn {
  display: inline-block;
  margin-top: 18px;
  min-width: 263px;
}

.sectionMap .custom-btn.gapbtn1 {
  margin-left: 0;
}

.sectionMap p img {
  display: block;
  margin: auto;
  height: 45px;
}

.sectionMap .cont {
  padding: 50px 0;
}

/* ***************************************************
*************************footer ******************
*****************************************************/
.footer {
  padding: 80px 0px 0;
  background-color: var(--ThemeColor2);
  background-image: url(../images/side_img1f.png);
  background-repeat: no-repeat;
  border-radius: 50px 50px 0 0;
  margin-top: -48px;
  position: relative;
  z-index: 9;
  background-size: 500px;
  background-position: right bottom;
}

.footer .contact p span {
  background: #57473a;
  width: 54px;
  min-width: 54px;
  height: 54px;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 7px;
  border: 1px solid #948676;
}

.footer .logo-img {
  height: 90px;
}

.footer .contform span.error {
  font-size: 15px !important;
}

.footer .contform {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 0 0 50px;
  border-bottom: 1px solid #948676;
  padding-bottom: 55px;
}

.footer p.text-center {
  color: var(--White);
  border-bottom: 1px solid #948676;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer .foot1 {
  margin-top: 50px;
}

.footer .cont {
  max-width: 730px;
}

.footer .heading {
  color: var(--White);
  margin-top: 0;
}

.footer h3 {
  font-size: 40px;
  margin-bottom: 11px;
  color: var(--White);
  font-weight: 500;
}

.footer p {
  color: var(--White);
}

.footer form {
  min-width: 700px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer p .tel {
  font-size: 25px !important;
  margin-top: 13px;
  display: inline-block;
  margin-bottom: 23px;
  color: var(--White);
  font-weight: 500;
}

.footer h6 {
  color: var(--Gray2);
  font-size: 16px;
}

.footer form input::placeholder {
  color: var(--Gray2);
}

.social_ul {
  text-align: center;
  text-decoration: none;
  display: flex;
  list-style: none;
  gap: 17px;
}

.footer .foot1 {
  margin-top: 50px;
  border-bottom: 1px solid #948676;
  background: #00000021;
  border-top: 1px solid #948676;
  padding: 10px 30px;
}

.footer .foot1 .row {
  align-items: center;
}

.footer .contact {
  padding-left: 20%;
}

.footer-bottom p {
  text-align: center;
  font-size: 18px;
}

.footer-bottom p a {
  color: var(--ThemeColor);
  text-decoration: underline;
}

.footer form input {
  height: 56px;
  padding: 0 20px;
  border: none;
  font-size: 15px;
  width: 100%;
  background: transparent;
  outline: none;
  border: 1px solid #948676;
  border-radius: 10px;
  color: var(--White);
}

.footer-bottom {
  margin-top: 0;
}

.footerimg {
  height: 340px;
  object-position: center;
  object-fit: cover;
  width: 100%;
  margin-top: 60px;
}

.footer-bottom p {
  padding: 26px 0;
}

.footer form button {
  background: var(--ThemeColor);
  height: 56px;
  padding: 0 20px;
  border: none;
  font-size: 15px;
  border-radius: 14px;
  min-width: 190px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 4px;
  color: var(--White);
  font-family: var(--ThemeFont);
}

.footer_menu {
  list-style: none;
  display: inline-flex;
  float: right;
}

.footer_menu li {
  margin-left: 26px;
}

.footer_menu li a {
  padding: 25px 0;
  display: inline-block;
  color: var(--White);
  text-transform: uppercase;
}

.footer .ffot1 {
  margin-top: 60px;
}

.footer .custom-btn.white_btn {
  color: var(--White);
}

.footer_menu li a:hover {
  color: var(--ThemeColor);
}

.footer .contact p a {
  color: var(--White);
  font-size: 20px;
}

.social_ul li a img {
  height: 30px;
}

.footer .contact p img {
  width: 24px;
}

.footer .contact p a {
  color: var(--White);
  font-size: 20px;
}

.footer .contact p {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

.social_ul li a {
  display: flex;
  align-items: center;
}








/* sectionTwovisttor */
.sectionTwovisttor {
  margin-bottom: 0;
  padding: 50px 0 0;
  background: transparent;
}

.sectionTwovisttor .set h2 {
  font-size: 51px;
  color: var(--ThemeColor2);
}

.sectionTwovisttor .heading {
  margin-bottom: 40px;
  color: var(--ThemeColor2);
}

.sectionTwovisttor::after {
  display: none
}

.sectionTwovisttor .set img {
  height: 224px;
  object-fit: cover;
  object-position: center;
}

.sectionTwo.sectionTwovisttor .cont .set h6 {
  text-align: right;
  color: var(--Black);
}

.sectionTwovisttor .set {
  padding: 50px;
  text-align: center;
}

.sectionTwovisttor .rowin.rowin2 {
  padding-right: 80px;
}

.sectionTwovisttor .set img {
  height: 224px;
  object-fit: cover;
}

.sectionTwovisttor .col-4:nth-child(3) .set,
.sectionTwovisttor .col-4:last-child .set {
  border-right: none;
}

.sectionTwovisttor .set {
  padding: 50px;
  text-align: center;
  border-right: 1px solid #6552434a;
  border-bottom: 1px solid #6552434a;
}

.sectionTwovisttor .col-4:nth-child(4) .set,
.sectionTwovisttor .col-4:nth-child(5) .set,
.sectionTwovisttor .col-4:last-child .set {
  border-bottom: none;
}



/***************************************************************
********************************* inner_banner ************************
*****************************************************************/
.sectionThree .set.high {
  border: 1px solid var(--ThemeColor);
  box-shadow: 0 0 15px #ce5d1d3d;
}

.profile_banner .cont {
  position: absolute;
  bottom: 25vh;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 200px;
}

.profile_banner .heading {
  position: absolute;
  bottom: 184px;
  text-align: center;
  right: 0;
  left: 0;
  color: var(--White);
  font-size: 92px;
  text-shadow: 0 0 45px #655243;
  z-index: 9;
}

.profile_banner .cont .heading.heading2 {
  position: relative;
  bottom: 0;
}

.profile_banner,
.profile_banner img {
  height: 75vh;
  min-height: 500px;
  object-fit: cover;
  object-position: top;
}

.profile_banner .cont .row {
  align-items: center;
}

.profile_banner .cont .inst {
  margin: auto;
  text-align: center;
  width: 100%;
  z-index: 99;
  max-width: 900px;
  background: #655243e5;
  padding: 41px;
  height: 200px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.profile_banner.afterbg::after {
  opacity: 1;
  background: #0000007d;
}

.profile_banner .cont .set h2 {
  font-size: 67px;
  color: var(--White);
}

.profile_banner .cont p {
  color: var(--White);
  width: 100%;
  text-align: center;
}

.profile_banner .cont .heading {
  font-size: 70px;
  color: var(--White);
  line-height: inherit;
  margin: 20px 0;
}

.inner_banner {
  min-height: auto !important;
}

.inner_banner img {
  height: 600px;
  object-position: center;
  object-fit: cover;
  width: 100%;
}

.inner_banner .afterbg::after {
  top: -3px;
}

.inner_banner .cont .set {
  padding: 15px 20px;
  border-radius: 6px;
  text-align: center;
}

.inner_banner .cont .set h2 {
  font-size: 55px;
  font-weight: 500;
  line-height: 50px;
  color: var(--ThemeColor);
  margin-bottom: 15px;
}

.inner_banner .inst {
  max-width: 800px;
  border-bottom: 1px solid #ffffff9c;
  border-top: 1px solid #ffffff9c;
  padding: 15px 0;
  margin: 0 auto 30px;
  background: #00000038;
}

.custom-btn.gapbtn1 {
  background: var(--ThemeColor);
  color: var(--White);
  margin-left: 10px;
}




/***************************************************************
********************************* flor_plan ************************
*****************************************************************/
.flor_plan .text p {
  max-width: 850px;
}

.flor_plan .text .custom-btn.gapbtn {
  display: inherit;
  gap: 16px;
  height: 50px;
}

.flor_plan .text {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ccc3b8;
  padding-top: 70px;
}

.flor_plan {
  padding: 0 0 20px;
}








/***************************************************************
********************************* why_exhibit ************************
*****************************************************************/
.why_exhibit {
  background: var(--ThemeColor6);
  padding: 80px 0;
  border-radius: 60px;
}

.why_exhibit h3 {
  font-size: 30px;
  color: var(--Black);
}

.why_exhibit .set h3 {
  font-size: 91px;
  color: var(--ThemeColor);
}

.why_exhibit .set {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 40px;
  border-radius: 0;
  overflow: hidden;
  min-height: 150px;
  height: 100%;
  border: 1px solid #ccc;
}

.why_exhibit .maindiv {
  margin: 40px 0;
}

.why_exhibit .row .col-4+.col-4 .set {
  border-left: 1px solid #65524378;
}

.why_exhibit .set p {
  text-align: left;
  font-size: 18px;
}

.why_exhibit .table th {
  background: #655243;
  padding: 18px;
  font-size: 18px;
  color: var(--White);
}

.why_exhibit .table {
  width: 100%;
  margin: 40px auto;
}

/* .why_exhibit .container{  max-width: 1400px;  margin: auto;} */

.why_exhibit .table td {
  padding: 12px 18px;
  font-size: 16px;
  color: var(--Black);
  border: 1px solid #b7b0a7;
}

.why_exhibit h5 {
  font-size: 20px;
  margin-bottom: 13px;
}

.why_exhibit .set img {
  height: 80px;
}




.sectionThree.Powered {
  margin: 80px 0 80px;
}

.sectionThree.Powered .aboutimg2 {
  height: 488px;
  width: 100%;
  object-fit: cover;
  margin-top: -140px;
  border-radius: 30px;
}

.sectionThree.Powered .set h2 {
  font-size: 46px;
  line-height: 45px;
}



/***************************************************************
********************************* exhibition_profile1 ************************
*****************************************************************/
.exhibition_profile1 .set h2 {
  margin-top: 15px;
  font-size: 42px;
  line-height: 50px;
  color: var(--ThemeColor);
}

.exhibition_profile1 .custom-btn.orange_bg {
  position: relative;
  top: 48px;
}

.exhibition_profile1 .set p {
  min-height: 52px;
}

.exhibition_profile1 .set h2 span {
  display: block;
  font-size: 20px;
  color: var(--ThemeColor);
  font-weight: 500;
}

.exhibition_profile1 .contdiv {
  margin-bottom: 30px;
}

.exhibition_profile1 .headingh3::after {
  height: 2px;
  width: 100px;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ThemeColor);
}

.exhibition_profile1 .headingh3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #655243;
  position: relative;
  padding-bottom: 12px;
}

.exhibition_profile1 .headingh3 img {
  height: 20px;
}

.exhibition_profile1 .heading_boss p {
  -webkit-line-clamp: inherit;
}

.exhibition_profile1 .heading_boss .row {
  align-items: self-start;
}

.exhibition_profile1 {
  margin: 70px 0;
  margin-top: -50px !important;
  background: var(--White);
  border-radius: 50px;
  padding-top: 60px;
  background-repeat: no-repeat;
  background-position: left top 35px;
  background-size: 330px;
}

.exhibition_profile1 .set.setimg div {
  position: relative;
  z-index: 9;
}

.exhibition_profile1 .set.setimg {
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.exhibition_profile1 .rowin_set {
  margin-top: 20px;
  border: 1px solid #65524333;
  padding: 25px;
  border-radius: 10px;
}

.exhibition_profile1 .set.setimg h2,
.exhibition_profile1 .set.setimg p,
.exhibition_profile1 .set.setimg h2 span {
  color: var(--White);
}

.exhibition_profile1 .set.setimg .afterbg::after {
  opacity: 0.7;
}



.sectionThree.exhibition_profile1 .cont .row .rowin {
  padding: 0 12px;
}

.sectionThree.exhibition_profile1 .cont .row {
  margin: 0 -12px;
}


.sectionThree.exhibition_profile1 .set {
  background: var(--bg);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #d6cec3;
}

.sectionThree.exhibition_profile1 .set.high {
  border: 1px solid var(--ThemeColor2);
}


.sectionThree.exhibition_profile1 .set .Compressedicon {
  position: absolute;
  right: 0;
  opacity: 0.06;
  top: 12px;
}

.sectionThree .Stalldiv .set {
  background: var(--ThemeColor6);
}





.cont2 .set2 p span {
  font-weight: 600;
  font-size: 18px;
}

.cont2.p-0 {
  margin-top: 40px;
}

.cont2 .headingh3 {
  color: var(--ThemeColor);
}

.cont2 .set2 h4 {
  margin-bottom: 12px;
  color: var(--ThemeColor2);
  font-size: 50px;
  margin-top: 0;
  font-weight: 500;
}

.cont2 .set2 {
  /* border-bottom: 1px solid #bdbdbd;
  border-top: 1px solid #bdbdbd; */
  padding: 0 0 20px;
}

.cont2 .set2 h4 span {
  display: block;
  font-size: 23px;
  font-weight: 500;
  color: var(--ThemeColor2);
}

.exhibition_profile1 .set .inst h2 {
  font-size: 42px;
  margin-top: 30px;
}


.exhibition_profile1 .set .img img {
  height: 26px;
}

.exhibition_profile1 .set .img {
  height: 70px;
  width: 70px;
  background: var(--ThemeColor6);
  border-radius: 50%;
  justify-content: center !important;
}

/***************************************************************
********************************* exhibition_profile2 ************************
*****************************************************************/
.sectionSeven.exhibition_profile2 .set ul li {
  font-size: 16px;
}

.exhibition_profile2 .container {
  position: relative;
  z-index: 9;
}

.exhibition_profile2 {
  margin-bottom: 0 !important;
  border-radius: 50px 50px 0 0;
  padding: 70px 0 !important;
}

.sectionSeven.exhibition_profile2.afterbg::after {
  opacity: 1;
  background: var(--ThemeColor2);
}

.dark h1 {
  margin: 0;
  font-size: 20vw;
  text-transform: uppercase;
}

.dark h1 {
  color: #fff;
}

.dark img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.dark {
  background: #000;
}

.dark img {
  mix-blend-mode: darken;
}

.sectionSeven.exhibition_profile2 .set {
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
  padding: 0;
  margin-top: 0;
}

.sectionSeven.exhibition_profile2 .row .rowin {
  height: auto;
}

.sectionSeven.exhibition_profile2 .set h1 {
  font-size: 60px;
  color: var(--White);
}

/***************************************************************
********************************* exhibition_profile3 ************************
*****************************************************************/
.exhibition_profile3 h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* .exhibition_profile3 {
  padding: 0 0 70px 0;
  position: relative;
} */
.exhibition_profile3 {
  position: relative;
  border-radius: 50px;
  max-width: 100%;
}

.exhibition_profile3 ul li {
  transition: transform 0.2s;
  padding: 15px 20px;
  margin: 14px -5px 14px 0;
  min-width: auto;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 400;
  color: var(--White);
}

.exhibition_profile3 ul {
  list-style: none;
  margin-top: 0px;
}

.exhibition_profile3 ul.ssp li {
  font-weight: 600;
  display: flex;
  background: var(--White);
}

.exhibition_profile3 ul.ssp {
  position: relative;
  z-index: 99;
  max-width: 448px;
}

.exhibition_profile3 .ing_img {
  position: absolute;
  right: -59px;
  width: 460px;
  bottom: -240px;
  z-index: 1;
}

.exhibition_profile2 .heading {
  color: #fff;
  text-align: center;
}

.exhibition_profile3 ul {
  text-align: center !important;
  max-width: 1200px;
  margin: auto;
  position: relative;
}


.exhibition_profile3 p {
  color: var(--White);
  margin-top: 16px;
  text-align: center;
}

/* .exhibition_profile3 ul li:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px #655243;
  border: 2px solid #655243;
  color: #e63b24;
} */
/***************************************************************
********************************* vistor_profile3 ************************
*****************************************************************/
.vistor_profile3 ul li {
  padding: 18px;
  margin: 4px 10px 4px 0;
  border-radius: 11px;
  min-width: 220px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 19px #0000001f;
  text-align: center;
  justify-content: center;
  font-weight: 400;
}

.vistor_profile3 .ing_img {
  right: 190px;
}

/***************************************************************
********************************* video ************************
*****************************************************************/
.video video {
  border-radius: 50px;
}

/***************************************************************
********************************* exhibition_registration ************************
*****************************************************************/
.exhibition_registration .heading_boss .heading {
  color: #655243;
  margin-bottom: 25px;
  font-size: 46px;
  line-height: 53px;
  margin-top: 0;
}

.exhibition_registration .main_img2 {
  position: relative;
  display: flex;
  margin-top: 110px;
}

.exhibition_registration .main_img2 img {
  border-radius: 25px;
  min-width: 370px;
  height: 420px;
  object-fit: cover;
  object-position: top;
}

.exhibition_registration .main_img2 img.aboutimg {
  margin-top: -77px;
}

.inner_banner.reg,
.inner_banner.reg img {
  height: 120px;
}

.exhibition_registration .main_img2 img.aboutimg2 {
  position: relative;
  top: 25px;
  left: -120px;
}

.exhibition_registration .cta2 {
  position: absolute;
  right: -100px;
  bottom: -67px;
  padding: 0;
  width: 320px;
}

.exhibition_registration ul {
  text-align: center;
  text-decoration: none;
  display: flex;
  list-style: none;
  margin: 90px 0 0;
  gap: 17px;
}

.exhibition_registration ul li a img {
  width: 26px;
  height: auto !important;
  object-fit: scale-down;
}

.exhibition_registration ul li a {
  background: var(--ThemeColor2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}


.exhibition_registration .row .exhibitionform .row .rowin {
  padding: 0 15px;
}

.exhibition_registration .row .exhibitionform .row {
  margin: 0 -15px;
}

.exhibition_registration .row .exhibitionform .row::after {
  display: none;
}




/* .exhibition_registration .row {
    align-items: center;
} */
.exhibition_registration .heading_boss p {
  color: color: var(--Gray);
}

.exhibition_registration {
  z-index: 9;
  position: relative;
  margin-bottom: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 0 0 50px 50px;
}

.exhibition_registration .container {
  z-index: 99;
}

.exhibition_registration .form-group label {
  font-weight: 500;
  color: var(--ThemeColor2);
  font-size: 15px;
}

.exhibition_registration .form-group span.error,
.exhibition_registration .form-group label.error {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -15px;
}

.exhibition_registration .form-group .form-control.whatsapp_codecontrol {
  display: flex;
  gap: 10px;
}

.exhibition_registration .form-group .form-control.whatsapp_codecontrol select,
.exhibition_registration .form-group .form-control.whatsapp_codecontrol input {
  border: none;
  background: transparent;
  outline: none;
  box-shadow: none;
  color: var(--ThemeColor2);
}

.exhibition_registration .form-group .form-control.whatsapp_codecontrol select {
  border-right: 1px solid #655243;
  max-width: 70px;
  padding-right: 10px;
}

.exhibition_registration .form-group .form-control::placeholder,
.exhibition_registration .form-group select {
  color: var(--ThemeColor2);
}

.swal2-container.swal2-top-end.swal2-backdrop-show {
  z-index: 9999999999;
}

.exhibition_registration .form-group .form-control {
  width: 100%;
  padding: 14px 16px;
  box-shadow: 0 3px 5px #27322a17;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 14px;
  background: transparent;
  outline: none;
  color: var(--ThemeColor2);
  border: 1px solid var(--ThemeColor2);
}

.exhibition_registration .form-group label.coa_no span {
  float: inherit;
  color: #655243b8;
}

.exhibition_registration .form-group .flex.int {
  display: flex;
  gap: 11px;
}

.exhibition_registration .form-group .flex.int select.form-control {
  max-width: max-content;
  padding: 14px 10px !important;
}






.exhibition_registration .form-group .form-control#name {
  text-transform: capitalize;
}

.exhibition_registration .row .row {
  position: relative;
  margin: 0 -40px;
}

.exhibition_registration .row .row .rowin {
  padding: 0 40px;
}

.exhibition_registration .row .row::after {
  background: #2d2f30;
  content: "";
  width: 1px;
  height: 513px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 15px;
}

.exhibition_registration .form-group {
  margin-bottom: 16px;
  position: relative;
  display: block;
}

.exhibition_registration h3 {
  font-size: 30px;
  margin-bottom: 13px;
  font-weight: 400;
  color: var(--ThemeColor);
}

.registration2 .cont {
  border-radius: 50px;
  overflow: hidden;
}


.exhibition_registration .searchForm {
  padding: 40px 45px;
  width: 92%;
  float: right;
  margin-bottom: 30px;
  background: transparent;
  border: 1px solid #6552433d;
}






.exhibition_registration form {
  padding: 45px;
  border-radius: 15px;
  background: var(--ThemeColor6);
  width: 92%;
  float: right;
  position: relative;
  z-index: 9;
}

.exhibition_registration .custom-btn {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  border-radius: 5px;
  padding: 16px 20px;
  box-shadow: 0 7px 20px #00000082;
  text-transform: uppercase;
  margin-top: 10px;
  background: #655243;
  color: var(--White);
}

.inner_banner2 img {
  height: 420px;
}

.exhibition_registration .form-group label b {
  color: var(--ThemeColor);
}

.exhibition_registration .form-group label span {
  font-size: 13px;
  float: right;
  color: var(--ThemeColor);
}

.social-icons ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.social-icons ul li a {
  background: var(--ThemeColor2);
  width: 60px;
  height: 60px;
  display: flex;
  padding: 10px;
  border-radius: 50%;
  justify-content: center;
}

.social-icons ul li a img {
  width: 26px;
  height: auto !important;
  object-fit: scale-down;
}

.exhibition_registration ul li a img {
  height: 28px;
}


.sanjh_registration .heading span,
.sanjh_registration h3 {
  color: #e3b000;
}

.sanjh_registration form {
  background: #e8dab1;
}

.exhibition_registration .form-group .form-control:disabled {
  opacity: .4;
}

.sanjh_registration .custom-btn {
  background: #141616;
}

.sanjhicons .Sanjhlogo {
  height: 100px;
}

.sanjhicons {
  margin: 20px 0
}

.sanjhicons h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.sanjhicons div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  flex: 1;
}

.sanjh_registration .heading_boss h6 {
  font-size: 40px;
}

/***************************************************************
********************************* sectionNine ************************
*****************************************************************/
.sectionNine {
  padding: 80px 0 100px;
  background-repeat: no-repeat;
  background-position: right top 41px;
  background-size: 290px;
}

.sectionNine .owl-carousel {
  margin: 40px auto 0;
  max-width: 1000px;
}

.sectionNine .owl-carousel .owl-item img {
  height: 100px;
  width: auto !important;
  margin: auto;
}

/***************************************************************
********************************* sectionSix1 ************************
*****************************************************************/
.sectionSix1 p a {
  font-size: 16px;
  color: var(--ThemeColor2);
  text-decoration: underline;
}

.sectionSix1 {
  margin-bottom: 70px;
  position: relative;
}

.sectionSix1 .owl-carousel .owl-stage {
  display: flex;
}

.sponsors .cont.afterbg::after {
  opacity: 0.4;
}

.sectionSix1.Supported .owl-carousel .owl-item {
  padding: 20px 20px;
  background: var(--ThemeColor6);
  border-radius: 10px;
}

.sectionSix1 .owl-carousel .owl-item {
  padding: 20px 20px;
  background: transparent;
  border-radius: 10px;
}

.sectionSix1 .owl-carousel .owl-item img {
  display: block;
  width: auto;
  height: 95px;
  margin: auto;
  max-width: 100%;
  object-fit: scale-down;
}

.sectionSix1 .owl-dots {
  display: none;
}

.sectionSix1 .container {
  display: flex;
  align-items: center;
}

.sectionSix1 .heading_boss {
  min-width: 438px;
  margin-bottom: 0;
}








/***************************************************************
********************************* sponsors ************************
*****************************************************************/
.sponsors {
  margin-bottom: 80px;
  background-repeat: no-repeat;
  background-position: left top 0px;
  background-size: 290px;
}

.sponsors .heading span {
  font-size: 100px;
  display: block;
  line-height: 100px;
}

.sponsors .cont {
  padding: 80px 65px 60px;
  text-align: center;
  background-position: center;
  background-size: cover;
  border-radius: 31px 0px 0px 31px;
  overflow: hidden;
  position: relative;
  right: 0;
  width: 112%;
  background-attachment: fixed;
}

.sponsors .heading .heading_boss p {
  font-size: 24px;
  line-height: 32px;
}

.sponsors .set {
  margin: 20px 0;
  border: 1px solid #ce5d1d78;
  padding: 20px;
  height: 250px;
  border-radius: 20px;
  box-shadow: 0 0 35px #000;
  background: var(--White);
  line-height: 250px;
  display: flex;
  align-items: center;
}

.sponsors .set img {
  height: 200px;
  margin: auto;
  object-fit: contain;
}

.sponsors .set h3 {
  font-size: 40px;
  color: var(--White);
  text-align: left;
}

.sponsors .set p {
  color: var(--White);
  padding: 0 20px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  text-align: right;
}

.sponsors .row {
  align-items: center;
}

.sponsors .cont .row {
  z-index: 99;
}

.sponsors .cta {
  display: inline-flex;
  gap: 20px;
}

.sponsors .cta .custom-btn {
  display: inline-flex;
  gap: 16px;
}

.sponsors .tab-menu ul {
  display: flex;
  list-style: none;
  gap: 26px;
  justify-content: center;
  margin-bottom: 20px;
}

.sponsors .tab-menu ul li a {
  color: var(--White);
  font-size: 28px;
}

.sponsors .tab-menu ul li a.active {
  color: var(--ThemeColor);
  font-weight: 600;
  text-decoration: underline;
}

.sponsors .owl-dots {
  display: none;
}

.sponsors .tab-menu {
  position: relative;
  z-index: 999;
}



/***************************************************************
********************************* sectionTesti ************************
*****************************************************************/
.sectionTesti .owl-dots .owl-dot.active {
  height: 10px;
  width: 50px;
  background: var(--ThemeColor) !important;
}

/* .sectionTesti .item img.userimg {
  width: 75px;
  height: 75px;
  border-radius: 50%;
} */
.sectionTesti .owl-dots .owl-dot {
  height: 6px;
  width: 25px;
  background: #ce5d1d6b !important;
  border-radius: 0;
}

.sectionTesti .owl-dots {
  margin-top: 30px;
  justify-content: center;
  display: flex;
  gap: 14px;
  align-items: center;
}

.sectionTesti .cont p img {
  width: auto;
  height: 50px;
  opacity: .3;
}

.sectionTesti .owl-stage {
  display: flex !important;
  align-items: stretch;
}

.sectionTesti .cont h6 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 3px;
}

/* .sectionTesti .cont p {
  margin: 40px 0;
  font-size: 32px;
  line-height: 38px;
  font-family: var(--ThemeFontTwo);
} */
.sectionTesti .cont p {
  margin: 30px 0;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--ThemeFontTwo);
  font-style: italic;
  font-weight: 300;
}

.sectionTesti .cont {
  padding-bottom: 50px;
  display: flex;
}

.sectionTesti .cont h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--ThemeColor2);
}

.sectionTesti .item {
  padding: 30px 40px 40px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  background: var(--ThemeColor6);
}

.sectionTesti .item img {
  height: 368px;
  object-fit: cover;
}

.sectionTesti .item .user {
  border-left: 1px solid #65524391;
  padding-left: 20px;
  margin-top: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sectionTesti.sectionTesti_profile {
  margin-bottom: 70px;
  margin-top: 70px;
}

/***************************************************************
********************************* visitorFive ************************
*****************************************************************/

.sectionSix1.sectionSix12.sectionSixhome {
  margin-bottom: 20px;
}

.sectionSix1.sectionSix12.sectionSix1Visitor {
  background: var(--ThemeColor6);
  padding: 83px 0 70px;
  border-radius: 50px;
}

.sectionSix.sectionEight1 .custom-btn.white_btn {
  margin-top: 57px;
}

/***************************************************************
********************************* sectionSix12 ************************
*****************************************************************/
/*



*/
.sectionSix12 .tabs {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  margin-top: -25px;
  gap: 43px;
}

.sectionSix12 .tabs .active-tab {
  position: relative;
  border-radius: 10px 10px 0 0;
  font-weight: 500;
}

.sectionSix12 .tabs .active-tab:after {
  width: 100%;
  height: 2px;
  position: absolute;
  content: "";
  bottom: -0.1em;
  left: 0;
  background: whitesmoke;
}

.sectionSix12 .tabs li {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  font-weight: 400;
  color: var(--White);
}

.sectionSix12 .tabs li:first-child {
  margin-left: 10px;
}

.sectionSix12 .tab {
  list-style: none;
}

.sectionSix12 .tabs-content {
  margin: 30px 0 20px;
  padding: 0;
  list-style: none;
}

.sectionSix12 .tabs-content li {
  display: none;
}

/***************************************************************
********************************* contact_page ************************
*****************************************************************/
.contact_page {
  margin-top: -50px;
  background: var(--White);
  border-radius: 50px;
  padding-top: 50px;
  margin-bottom: 120px;
  position: relative;
}

.contact_page form .form-group .form-control {
  width: 100%;
  padding: 19px 16px;
  box-shadow: 0 3px 5px #27322a17;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 14px;
  border: 1px solid var(--ThemeColor3);
  background: #e7e0d6;
}

.contact_page form .form-group textarea.form-control {
  min-height: 134px;
  font-family: var(--ThemeFont);
}

.contact_page form .form-group label {
  font-size: 16px;
  color: var(--ThemeColor2);
  font-weight: 500;
}

.contact_page form .custom-btn {
  border: none;
  background: var(--ThemeColor);
  color: var(--White);
  padding: 16px 28px;
  min-width: 250px;
  justify-content: center;
}

.contact_page form .form-group {
  margin-bottom: 16px;
}

.contact_page form {
  margin-top: 25px;
}

.contact_page .text {
  margin-bottom: 28px;
}

.contact_page .text.textinfo {
  background-color: var(--ThemeColor6);
  padding: 28px 28px 5px;
  border-radius: 15px;
  height: 100%;
}

.contact_page .text.textinfo img {
  width: 54px;
}

.contact_page .text h6 {
  color: var(--ThemeColor2);
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact_page .text a {
  color: var(--ThemeColor2);
}


.contact_page .iframemap {
  width: 94%;
  border: 1px solid #6552434f !important;
  border-radius: 10px;
  padding: 12px;
  height: 100%;
  margin-left: 6%;
  max-height: 1006px;
}

.contact_page .iframemap iframe {
  width: 100%;
  height: 100%;
}

.contact_page .info {
  border-left: aliceblue;
  padding-left: 0;
  margin-left: 0;

}

.contact_page .info.info1 {
  margin-top: 30px;
}


.contact_page h4 {
  font-size: 34px;
  margin-bottom: 16px;
  color: var(--ThemeColor2);
}

/***************************************************************
********************************* gallery ************************
*****************************************************************/
/* .inner_banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 419px;
  top: inherit;
  bottom: -130px;
  left: 0;
  background: linear-gradient(360deg, #655243, #655243, #826d6d00);
  opacity: 1;
} */
.inner_banner,
.inner_banner img {
  height: 450px;
}

.inner_banner .cont {
  position: absolute;
  bottom: 90px;
  z-index: 99;
  right: 0;
  left: 0;
  margin: auto;
}

.inner_banner .cont p {
  color: var(--White);
}

.inner_banner .cont .heading {
  color: var(--White);
}

/* .intpage::after {
  content: "";
  position: absolute;
  background: var(--ThemeColor6);
  width: 100%;
  height: 47%;
  top: 0;
  z-index: 9;
}
.intpage .container{position: relative;
z-index: 99;} */

.gallery .heading_boss {
  max-width: 800px;
  margin-bottom: 24px;
}


.gallery {
  margin-top: -50px;
  background: var(--White);
  position: relative;
  padding-top: 1px;
  margin-bottom: 120px;
  border-radius: 50px;
}

.mansory-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border: 1px solid #beb3a8;
  margin-top: -2px;
}

.gallery .heading_boss {
  margin-bottom: 15px;
  margin-top: 60px;
}

.mansory-gallery .column img.img2 {
  height: 465px;
  object-fit: cover;
}

.mansory-gallery .column {
  flex: 25%;
  border: 1px solid #beb3a8;
}

.mansory-gallery .column img {
  border: 12px solid #e7e0d6;
  border-radius: 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
}

.gallery .heading {
  font-size: 46px;
  line-height: 50px;
}

/***************************************************************
********************************* videos ************************
*****************************************************************/
.videos .set {
  padding: 10px 10px 6px 10px;
  border-radius: 10px;
  background: var(--ThemeColor6);
}

.gallery.videos {
  padding-top: 50px;
}

/***************************************************************
********************************* blogs ************************
*****************************************************************/




.blogs {
  margin: 50px 0 70px;
}

.blogs .col-10 {
  margin: auto;
}

.main_blogs.single_blogs {
  margin-top: -120px;
}

.main_blogs {
  position: relative;
}

.main_blogs img {
  border-radius: 20px;
  margin: auto;
  height: 700px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.blogs .cont p,
.left_blog .cont ul li {
  line-height: 28px;
  text-align: justify;
  font-size: 20px;
}

.main_blogs.single_blogs.main_news img {
  object-position: top;
}

.main_blogs.single_blogs.main_news {
  background: var(--White);
}

.main_blogs .text {
  position: absolute;
  bottom: 0;
  padding: 250px 0 40px;
  background: linear-gradient(0deg, #001421, #0b223100) !important;
  width: 100%;
  left: 0;
}

.carousel_blog .owl-nav .owl-prev,
.carousel_blog .owl-nav .owl-next {
  border: 1px solid var(--Gray) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.carousel_blog .owl-nav .owl-next {
  right: 30px;
  position: relative;
}

.carousel_blog .owl-nav .owl-prev {
  left: 30px;
  position: relative;
}

.carousel_blog .owl-nav.disabled span {
  color: var(--White);
  font-size: 35px;
  position: relative;
  top: -4px;
}

.carousel_blog .owl-nav.disabled {
  display: flex !important;
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 100%;
  height: 50px;
  justify-content: space-between;
}

.carousel_blog {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 0;
  box-shadow: 0 8px 13px #0b223124;
}

.carousel_blog .owl-dots {
  display: none;
}

.main_blogs .text .text_in {
  padding: 0 100px;
}

.main_blogs .text .text_in h6 {
  color: var(--White);
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.main_blogs .text .text_in h6 span {
  margin-left: 15px;
  color: #ffffffdb;
  font-weight: 400;
  font-style: italic;
}

.main_blogs .text .text_in h6 i {
  margin-right: 8px;
  color: var(--ThemeColor);
  font-size: 22px;
}

.main_blogs h3 {
  font-size: 36px;
  margin: 0 0 15px;
  color: var(--White);
}

.main_blogs p {
  margin: 0 0 15px;
  color: var(--White);
}

.main_blogs .btn {
  color: var(--White);
  background: top;
  text-decoration: none;
  font-weight: 600;
  margin-top: 31px;
  border: 1px solid var(--White);
}

.right_blogs_main {
  background: var(--ThemeColor4);
  border-radius: 20px;
  height: 100%;
  padding: 25px;
}

.right_blogs_in {
  padding-left: 25px;
}

.blogs p {
  line-height: 24px;
  text-align: justify;
}

.blogs .set img {
  width: 190px;
  border-radius: 10px;
  height: 108px;
  object-fit: cover;
  object-position: center;
}

.blogs .set a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--TextColor);
}

.blogs .set {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 20px;
  background: var(--off-white);
  border-radius: 13px;
}

.blogs .set h3 {
  margin: 0 0 10px;
  color: var(--TextColor);
  font-size: 18px;
  font-weight: 500;
}

.recent_blogs p {
  line-height: 24px;
}

.recent_blogs .set h6 a {
  text-decoration: none;
}

.recent_blogs .set h6 {
  line-height: 24px;
  text-align: justify;
  font-size: 15px;
  color: var(--Black);
  margin: 0;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.recent_blogs .set p {
  line-height: 24px;
  text-align: justify;
  font-size: 15px;
  color: var(--ThemeColor);
  margin: 14px 0;
}

.recent_blogs {
  margin-bottom: 70px;
}

.recent_blogs .main_heading {
  max-width: 820px;
  margin: 0 auto 25px;
}

.recent_blogs .set img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
}

.recent_blogs .set a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--TextColor);
}

.recent_blogs .set {
  margin-bottom: 40px;
}

.recent_blogs .set h6 i {
  margin-right: 8px;
  color: var(--ThemeColor2);
}

.recent_blogs .set h6 span {
  font-style: italic;
  color: var(--ThemeColor2);
}

.recent_blogs .set h3 {
  margin: 8px 0 10px;
  color: var(--Black);
  font-size: 22px;
  font-weight: 500;
}

.single_blogs p {
  font-weight: 400;
  font-size: 15px;
}

.single_blogs h4 {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--ThemeColor2);
}

.single_blogs .main_blogs {
  margin-top: -98px;
}

.blogs .right_blogs .hdn {
  font-size: 28px;
  margin-top: 8px;
  padding-bottom: 10px;
  position: relative;
}

.blogs .right_blogs .hdn::after {
  background: var(--ThemeColor);
  width: 100px;
  height: 2px;
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
}

.single_main_blogs {
  margin-top: 40px;
}

.banner_inner h6 {
  color: var(--White);
  font-size: 15px;
  margin-top: 15px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}

.banner_inner h6 span {
  margin-left: 15px;
  color: #ffffffdb;
  font-weight: 400;
  font-style: italic;
}

.banner_inner h6 i {
  margin-right: 8px;
  color: var(--ThemeColor2);
}

.single_blogs .right_blogs_cta {
  padding: 20px 0;
}

.single_blogs .right_blogs_cta .heading {
  font-size: 30px;
  line-height: 41px;
  margin-bottom: 20px;
}

.single_blogs .social {
  width: 53px;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 174px;
  left: -1px;
  background: var(--Gradient);
  padding: 15px 10px;
  box-shadow: 0 0 20px #07080996;
  border-radius: 0 12px 12px 0;
  border: 1px solid #ffffff82;
  z-index: 9;
}

.single_blogs .social li a:hover {
  background: var(--ThemeColor2);
  color: var(--White);
  border: 1px solid var(--ThemeColor2);
}

.single_blogs .social li {
  margin-bottom: 12px;
}

.single_blogs .social li a {
  color: var(--ThemeColor2);
  font-size: 25px;
  border: 1px solid #cccccc94;
  width: 48px;
  height: 48px;
  display: flex;
  text-align: center;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}


/* sectionSix.sectionEight1 */
.sectionSix.sectionEight1 {
  margin-bottom: 80px;
}

.sectionSix.sectionEight1 .heading_boss p {
  -webkit-line-clamp: inherit;
}

.sectionSix.sectionEight1 .set h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  text-align: right;
}

.sectionSix.sectionEight1 .set h3 {
  font-size: 56px;
  color: var(--ThemeColor2);
  font-weight: 300;
  margin-top: 12px;
}

.sectionSix.sectionEight1 .set {
  text-align: left;
  padding: 20px 20px;
  box-shadow: inset 0 0 5px #b8b7b778;
  margin: 6px 0;
}

.sectionSix.sectionEight1 .set.settop {
  position: relative;
  top: 50px;
}

.sectionSix.sectionEight1 .row {
  align-items: center;
}




.thanku .check {
  height: 180px;
  width: auto !important;
  margin-bottom: 27px;
}

.thanku p {
  max-width: 700px;
  margin: auto;
}

.thanku .heading span {
  display: block;
  font-size: 24px;
  margin-top: 15px;
}

.thanku .heading {
  font-size: 100px;
  font-weight: 200;
}









@media (max-width: 768px) {
  .mansory-gallery .column {
    flex: 50%;
  }
}

@media (max-width: 500px) {
  .mansory-gallery .column {
    flex: 100%;
  }
}

@media only screen and (max-width: 1799px) {
  .footer::after {
    height: 240px;
    top: -240px;
  }

  .footer_menu li {
    margin-left: 25px;
  }

  .sectionFourGall img {
    height: 600px;
  }

  .main_img img {
    min-width: 430px;
  }

  .exhibition_registration .main_img2 img {
    max-width: 380px;
  }

  .profile_banner,
  .profile_banner img {
    height: 60vh;
    min-height: 420px;
  }

  .profile_banner .cont {
    bottom: 15vh;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont .row .rowin {
    padding: 0 6px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont .row {
    margin: 0 -6px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .set .img {
    height: 55px;
    width: 55px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .set h6 {
    padding: 14px 0;
  }

  .profile_banner img.Sanjhlogo {
    height: 166px;
  }

  .profile_banner.Sanjhheadig .cont {
    bottom: 25vh;
  }
}

/*************************************************************************
********* @media only screen and (max-width: 1599px)  *********************
***********************************************************************/

@media only screen and (max-width: 1599px) {
  header.fixed .header-top img.logo-img {
    height: 65px;
  }

  .header-top img.logo-img {
    width: auto;
    height: 65px;
  }

  .header-top ul li {
    margin-left: 22px;
  }

  .profile_banner.Sanjhheadig .cont {
    bottom: 20vh;
  }

  .profile_banner img.Sanjhlogo {
    height: 160px;
  }

  .Sanjhheadig .d-flex img {
    width: 100px;
    height: auto !important;
  }

  .thanku .heading {
    font-size: 75px;
  }

  .exhibition_registration .main_img2 img {
    min-width: 335px;
  }

  .inner_banner,
  .inner_banner img {
    height: 340px;
  }

  .sectionSeven .cta1 {
    top: -70px;
    width: 204px;
  }

  .container {
    max-width: 1320px;
  }

  .exhibition_registration .row .row .rowin {
    padding: 0 30px;
  }

  .exhibition_registration h3 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .exhibition_registration {
    margin-bottom: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* .exhibition_registration .form-group .form-control {
  padding: 10px 15px;
} */
  .exhibition_registration .main_img2 img {
    max-width: 340px;
    border-radius: 20px;
  }

  .sectionFourGall img {
    height: 500px;
  }

  .banner .cont .heading {
    font-size: 58px;
    line-height: 62px;
  }

  .banner .cont1 {
    padding-top: 170px;
  }

  .sectionTwo .cont {
    padding: 0 50px;
  }

  .video1 img {
    height: 510px;
  }

  .sectionSix1 {
    padding: 0 0;
  }

  .sectionSeven ul li {
    margin: 15px 0;
  }

  .sectionSeven {
    padding: 70px 0;
  }

  .sectionSix1.sectionSix12.Supported {
    padding: 50px 0;
  }

  .banner {
    height: 720px;
  }

  #thumbs .item img {
    height: 310px;
  }

  #thumbs .item h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 6px;
  }

  #thumbs .item p {
    font-size: 16px;
  }

  .banner .cont h6 {
    font-size: 20px;
  }

  .sectionTwo .heading {
    margin-bottom: 30px;
    font-size: 50px;
    line-height: 53px;
  }

  .sectionTwo .cont .set h2 {
    font-size: 48px;
    line-height: 48px;
    height: 55px;
  }

  .sectionTwo .cont .set {
    padding: 15px;
  }

  .sectionTwo .col-4 {
    width: 28%;
  }

  .sectionTwo .col-8 {
    width: 72%;
  }

  .sectionThree .set h2 {
    font-size: 44px;
    line-height: 47px;
  }

  .heading {
    font-size: 46px;
    line-height: 52px;
  }

  .sectionSix {
    padding-top: 30px;
    background-size: 320px;
  }

  /* .footer_menu li a {
        padding: 25px 17px;
    } */
  .footer_menu li a {
    font-size: 15px;
  }

  .footer_menu li {
    margin-left: 15px;
  }

  .footer p .tel {
    font-size: 22px !important;
  }

  .footer::after {
    height: 215px;
    top: -215px;
  }

  .banner .cont h4 {
    font-size: 24px;
  }

  .banner .cont h4 span {
    width: 50px;
    height: 50px;
  }

  .banner .cont h5 {
    font-size: 22px;
  }

  .banner .cont h5 span {
    font-size: 16px;
  }

  .banner .cont {
    height: 510px;
  }

  .mainthumbs {
    height: 430px;
  }

  #thumbs .item h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  #big .item {
    min-height: 800px;
  }

  .sectionThree .set p,
  .sectionFive ul li {
    font-size: 15px;
  }

  .sectionSix1 .owl-carousel .owl-item img {
    height: 60px;
  }

  .sponsors .set h3 {
    font-size: 32px;
  }

  .sectionNine {
    padding: 60px 0 70px;
  }

  /* .sectionSix1 {
        padding: 40px 0;
    } */
  .cta .cta2 {
    width: 350px;
  }

  .footer-bottom p {
    font-size: 16px;
  }

  .main_img img {
    min-width: 396px;
    height: 484px;
  }

  p {
    font-size: 15px;
  }

  .sectionFour .cont {
    padding: 50px;
    border-radius: 20px;
  }

  .sectionTesti .heading {
    margin-bottom: 12px;
  }

  .sponsors .cont {
    padding: 54px 50px;
    right: -20px;
    width: 100%;
  }

  .sponsors .heading span {
    font-size: 90px;
    line-height: 80px;
  }

  .sectionTesti .item img {
    height: 330px;
  }

  .sectionNine .owl-carousel .owl-item img {
    height: 70px;
  }

  .sectionNine .owl-carousel {
    margin: 30px auto 0;
    max-width: 800px;
  }

  .sponsors .set {
    margin: 0px 0;
    padding: 15px;
    height: 260px;
    border-radius: 12px;
  }

  .sponsors {
    margin-bottom: 70px;
  }

  .profile_banner .cont .inst {
    max-width: 760px;
  }

  .profile_banner .cont .set h2 {
    font-size: 50px;
  }

  .profile_banner .cont .heading {
    font-size: 58px;
  }

  .exhibition_profile1 .set h2 {
    font-size: 34px;
    line-height: 45px;
  }

  .exhibition_profile3 .ing_img {
    width: 347px;
    bottom: -157px;
  }

  .exhibition_profile2 .heading_boss {
    margin-bottom: 10px;
  }

  .exhibition_profile3 ul li {
    padding: 10px 20px;
    margin: 10px 0;
  }

  .exhibition_profile3 ul {
    max-width: 1000px;
  }

  .exhibition_profile3 .ing_img {
    width: 284px;
  }

  .profile_banner .heading {
    font-size: 50px;
    position: relative;
    z-index: 9;
  }

  .profile_banner,
  .profile_banner img {
    height: 66vh;
    min-height: 451px;
  }

  .profile_banner .cont {
    bottom: 20vh;
  }

  .sectionThree.Powered .cont .set,
  .sectionThree.Powered .cont .seth {
    padding: 20px 20px;
  }

  .sectionThree.Powered .set h2 {
    font-size: 42px;
    line-height: 45px;
  }

  .why_exhibit {
    padding: 60px 0;
  }

  .sectionThree.Powered {
    margin: 80px 0 60px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .rowin_set {
    padding: 18px;
  }

  .exhibition_profile1 .set .inst h2 {
    font-size: 38px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .set2 h4 {
    font-size: 40px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont {
    margin-top: 0;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont .heading {
    margin-top: 0;
  }

  .sanjhicons h3 {
    font-size: 18px !important;
  }
}

/*************************************************************************
********* @media only screen and (max-width: 1399px)  *********************
***********************************************************************/
@media only screen and (max-width: 1399px) {

  header .custom-btn.Contactbtn {
    min-width: 125px;
  }

  .logoss {
    gap: 26px;
  }

  .header-top ul li {
    margin-left: 15px;
  }

  .profile_banner img.Sanjhlogo {
    height: 130px;
  }

  /* .banner .cont1 {
  background: #6552436e;
} */
  .exhibition_registration .main_img2 img {
    min-width: 300px;
  }

  .container {
    max-width: 1140px;
  }

  .why_exhibit .set h3 {
    font-size: 85px;
  }

  .sectionThree.Powered .cont .set,
  .sectionThree.Powered .cont .seth {
    padding: 20px 15px;
  }

  .sectionThree.Powered .set h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .sectionTesti .cont p {
    margin: 15px 0;
  }

  .sectionTesti.sectionTesti_profile {

    margin-top: 50px;
  }

  .sectionThree.Powered .aboutimg2 {
    border-radius: 20px;
  }

  .why_exhibit .set img {
    height: 70px;
  }

  .cta.ctadiv .cta1 {
    top: -187px;
  }

  .why_exhibit .set {
    gap: 20px;
    padding: 20px 20px;
    min-height: 150px;
  }

  .profile_banner .cont {
    bottom: 16vh;
  }

  .sectionSeven .side_img3 {
    width: 220px;
  }

  .profile_banner .heading {
    font-size: 40px;

  }

  .contact_page .col-7,
  .contact_page .col-5 {

    width: 100%;
  }

  .contact_page .iframemap {
    width: 100%;
    border: 1px solid #6552434f !important;
    border-radius: 10px;
    padding: 12px;
    height: 400px;
    margin-left: 0;
    max-height: 1006px;
  }

  .exhibition_registration .cta2 {
    right: -74px;
    width: 170px;
  }

  .header-top ul li a {
    font-size: 16px;
  }

  .footer::after {
    height: 235px;
    top: -235px;
    width: 100%;
    background-size: cover;
    background-position: center;
  }

  .custom-btn {
    font-size: 16px;
    min-width: 176px;
  }

  body,
  p {
    font-size: 15px;
  }

  .sectionMap .cont ul {
    margin-top: 60px;
    margin-left: 15%;
  }

  .footer .row .rowin {
    padding: 0 30px;
  }

  .footer .row {
    margin: 0 -30px;
  }





  /* .heading br {display: none;} */
  .sectionSix .set h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .sectionSeven {
    margin-bottom: 00px;
    padding: 60px 0;
    border-radius: 35px;
  }

  .sectionTesti {
    margin-top: 60px;
  }

  /* .sectionTesti .cont p {
  margin: 30px 0;
  font-size: 34px;
  line-height: 36px;
} */

  .sectionFour .owl-carousel {
    border-radius: 35px;
  }

  .heading {
    font-size: 42px;
    line-height: 46px;
  }

  /* .heading_boss .col-7 { width: 60%;}
.heading_boss .col-5 { width: 40%;} */
  .sectionFour img {
    height: 500px;
    height: 500px;
  }

  .sectionThree .set h2 span {
    font-size: 18px;
    line-height: 20px;
  }

  .sectionThree .set h2 {
    margin-top: 0;
    font-size: 32px;
    line-height: 42px;
  }

  .sectionTwo .map_about {
    width: 150% !important;
  }

  .sectionThree {
    margin: 120px 0 60px;
  }

  .sectionTwo .cont .set p {
    font-size: 14px;
    line-height: 24px;
  }

  .sectionThree .cont .set,
  .sectionThree .cont .seth {
    padding: 25px 30px;
  }

  .sectionThree .cont {
    padding: 0 30px;
  }

  .sectionTwo .cont .set h6 {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .sectionTwo .col-4 {
    width: 26%;
  }

  .sectionTwo .col-8 {
    width: 74%;
  }

  .banner {
    height: 650px;
  }

  .banner .cont .heading {
    font-size: 60px;
    line-height: 60px;
  }

  .banner .cont h6 {
    font-size: 17px;
  }

  #thumbs .item img {
    height: 260px;
  }

  .sectionTwo .heading {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 45px;
  }

  .container {
    padding: 0 20px;
  }

  .mainthumbs {
    right: -10px;
    height: 375px;
    bottom: 60px;
  }

  #big .item {
    min-height: 700px;
  }

  .banner .cont {
    height: 488px;
  }

  .sponsors .cont {
    padding: 45px 35px;
    right: -20px;
    width: 100%;
    border-radius: 20px 0px 0px 20px;
  }

  .sponsors .heading span {
    font-size: 70px;
    line-height: 70px;
  }

  .sectionThree .set p {
    font-size: 14px;
    min-height: 40px;
    line-height: 20px;
  }

  .sectionSix.sectionEight .set h3 {
    font-size: 49px;
  }

  .sectionSix.sectionEight .set h3::after {
    top: 62px;
  }

  .sectionTesti .cont h3 {
    font-size: 18px;
  }

  .sectionTesti .item {
    padding: 30px 30px 35px;
    border-radius: 15px;
  }

  .sectionTwo .cont .set {
    height: 190px;
    overflow: hidden;
  }

  .sectionTesti .item img {
    height: 280px;
  }

  .banner .brnd h5 {
    font-size: 20px;
  }

  .banner p img {
    height: 32px;
    margin: 0 15px;
  }

  .sponsors .set {
    height: 210px;
  }

  .sectionThree.exhibition_profile1 .set .inst h2 {
    font-size: 32px;
  }

  .exhibition_profile3 ul li {
    padding: 10px 20px;
    min-height: 46px;
  }

  .exhibition_profile3 ul {
    max-width: 900px;
  }

  /* .exhibition_profile3 .ing_img {
        width: 480px;
        bottom: 54px;
    } */
  .exhibition_profile3 .ing_img {
    right: -118px;
  }

  .exhibition_profile1 .headingh3 {
    font-size: 20px;
  }

  .sectionSeven .set h4 {
    font-size: 18px;
  }

  .sectionSeven.exhibition_profile2 .set h1 {
    font-size: 45px;
  }

  .inner_banner img {
    height: 500px;
  }

  .inner_banner .cont .set h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 6px;
  }

  .inner_banner .cont .set {
    padding: 0px 0;
  }

  .contact_page form .form-group .form-control {
    padding: 14px 15px;
  }

  /* .contact_page iframe {
  width: 100%;
  height: 100%;
  border: 1px solid black !important;
  padding: 15px;
  border-radius: 11px; */
  /* } */
  .contact_page .text {
    margin-bottom: 20px;
  }

  .exhibition_registration .main_img2 img {
    max-width: 300px;
  }

  .exhibition_registration .heading_boss .heading {
    font-size: 40px;
  }

  /* .exhibition_registration {
        margin-bottom: 60px;
        padding-top: 120px;
        padding-bottom: 60px;
    } */
  .exhibition_registration form {
    padding: 28px;
  }

  .exhibition_registration .row .row .rowin {
    padding: 0 25px;
  }

  .exhibition_registration .row .row {
    margin: 0 -25px;
  }

  .exhibition_registration .custom-btn {
    font-size: 18px;
    padding: 12px 20px;
    margin-top: 10px;
  }

  .gallery .heading {
    font-size: 34px;
  }

  .gallery .heading_boss {
    margin-top: 40px;
  }


  .banner .cont1 {
    padding-top: 150px;
  }

  .banner .cont h5 {
    margin-top: 15px;
  }

  .banner .container img {
    max-width: 95%;
  }

  .banner .cont .heading {
    font-size: 48px;
    line-height: 52px;
  }

  .banner .cont .text {
    margin: 20px 0 25px;
  }

  .banner .cont h4 span {
    width: 60px;
    height: 60px;
  }

  .banner .cont h4 {
    font-size: 32px;
  }

  .sectionTwo .aboutimg {
    height: 380px;
  }

  .sectionFive {
    margin: 0 auto 30px;
  }

  .video1 img {
    height: 400px;
  }

  .cta .cta1 {
    top: -111px;
    width: 165px;
  }

  .cta .cta2 {
    bottom: -55px;
    width: 268px;
  }

  .flor_plan .bbttnn {
    width: 344px;
  }

  .profile_banner,
  .profile_banner img {
    height: 537px;
    min-height: 470px;
    object-fit: cover;
  }

  .sectionFourGall img {
    height: 430px;
  }

  .main_img img.aboutimg2 {
    top: 78px;
  }

  .main_img img.aboutimg {
    top: -90px;
  }

  .main_img img {
    min-width: 300px;
    height: 440px;
  }

  .sectionFour .cont {
    padding: 42px;
    border-radius: 30px;
  }

  .sectionSix1 {
    margin-bottom: 20px;
  }

  .cta2 {
    padding: 75px 0;
  }

  .sectionFour {
    margin: 90px 0;
  }

  .sectionFive {
    padding-bottom: 40px;
  }

  .sectionFive .cont {
    border-radius: 30px;
    padding: 46px;
  }

  .sectionMap iframe {
    height: 480px;
  }

  .exhibition_profile1 .set h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .exhibition_profile1 .set p {
    min-height: auto;
    line-height: 24px;
    font-size: 14px;
  }

  .exhibition_profile1 .set .inst h2 {
    margin-top: 10px;
  }

  /* .sectionThree.exhibition_profile1.commercials_profile .cont2 .set2 p {
  min-height: 52px;
} */

  /* *************************
**********footer ************
***************************/
  .footer .foot1 {
    padding: 30px 30px 5px;
  }

  .footer {
    padding: 60px 0px 0;
  }

  .footer .foot1 .col-3,
  .footer .foot1 .col-9 {
    width: 100%;
  }

  .social_ul {
    justify-content: center;
  }

  .footer_menu {
    float: inherit;
    justify-content: center;
    display: flex;
  }

  .footer_menu li a {
    padding: 20px 16px;
  }

  .footer .contact {
    padding-left: 0;
  }

  .footer_menu li {
    margin-left: 0;
  }

  /***********************
*******end footer ********
**************************/
  .gallery .col-3 {
    width: 33.33%;
  }

  .profile_banner .cont .set h2 {
    font-size: 40px;
  }

  .profile_banner .cont .heading {
    font-size: 50px;
  }

  .profile_banner .cont .inst {
    max-width: 685px;
    padding: 34px;
    height: 170px;
  }

  .exhibition_profile1 .rowin_set {
    margin-top: 15px;
    padding: 20px;

  }

  .sectionThree.exhibition_profile1.commercials_profile .col-6 {
    width: 100%;
  }

  .sectionTwo.sectionTwovisttor .cont .set {
    height: 200px;
  }

  .sectionSix.sectionEight1 .set h3 {
    font-size: 45px;
  }

  .sectionSix.sectionEight1 .set h4 {
    font-size: 14px;
  }

  .sectionSix.sectionEight1 .set {
    padding: 15px;

  }

  .sectionSix.sectionEight1 {
    margin-bottom: 50px;
  }

  .sectionSeven .cta1 {
    position: absolute;
    left: 0;
    top: -60px;
    width: 204px;
  }

  .sanjhicons h3 {
    font-size: 18px !important;
  }

  .sanjhicons .Sanjhlogo {
    height: 80px;
  }
}

/*************************************************************************
********* @media only screen and (max-width: 1199px)  *********************
***********************************************************************/
@media only screen and (max-width: 1199px) {
  header.fixed .header-top img.logo-img {
    height: 45px;
  }

  .sanjhicons div {
    display: block;
  }

  .sanjhicons {
    justify-content: center;
    gap: 30px;
  }

  .sanjhicons h3 {
    font-size: 18px !important;
  }

  .exhibition_profile1.Sanjh1 {
    text-align: center;
  }

  .showmadal .in {
    padding: 35px;
    max-width: 550px;
    width: 95%;
  }

  .showmadal h2.heading {
    font-size: 32px;
    line-height: 36px;
  }

  .banner video {
    height: 600px;
  }

  .sectionSeven .cta1 {
    display: none
  }

  .inner_banner,
  .inner_banner img {
    height: 300px;
  }

  .exhibition_registration .searchForm {
    width: 100%;
    margin-bottom: 00px;
  }

  .sectionSix.sectionEight1 .col-4,
  .sectionSix.sectionEight1 .col-8 {
    width: 100%;
  }

  .sectionSix.sectionEight1 .heading_boss {
    margin: 0 auto 30px;
    max-width: 800px;
    text-align: center
  }

  .container {
    max-width: 960px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
  }

  body {
    font-size: 14px;
  }

  .custom-btn {
    font-size: 16px;
    padding: 12px 17px;
  }

  .header-top img.logo-img {
    width: auto;
    height: 45px;
  }

  .logoss {
    gap: 20px;
  }

  .banner {
    height: 600px;
  }

  .header-top ul li {
    margin-left: 14px;
  }

  header .custom-btn.Contactbtn {
    min-width: 120px;
    padding: 12px 15px;
  }

  /* header.fixed .header-top img.logo-img {
  width: 110px;
} */
  .banner .cont1 {
    padding-top: 130px;
  }


  /* *************************
**********banner ************
***************************/
  .banner .cont .heading {
    font-size: 40px;
    line-height: 46px;
  }

  .banner .cont h4 span {
    width: 52px;
    height: 52px;
  }

  .banner .cta .custom-btn {
    padding: 15px 16px;
  }

  .banner .cont {
    height: 450px;
  }

  .banner .container img {
    margin-top: -130px;
  }

  /* *************************
**********end banner ************
***************************/
  .contdiv_main {
    margin: 0 auto 50px;
  }

  .sectionTwo .incont {
    padding-bottom: 55px;
  }





  #big .item {
    min-height: 600px;
  }

  .sectionSix .set {
    gap: 16px;
    margin: 15px 0;
    padding: 0 12px;
  }

  .sectionMap .cont {
    padding: 20px 35px 30px;
    border-radius: 30px;
    max-width: 100%;
  }

  .sectionSeven .row {
    margin: 0 -5px;
  }

  .sectionSeven .row .rowin {
    padding: 0 5px;
  }

  .footer-bottom ul {
    margin: 18px 0;
  }

  .sectionThree .cont {
    padding: 0 00px;
  }

  .sectionFour img {
    height: 430px;
    height: 388px;
    min-width: 315px;
  }

  .main_img img.aboutimg {
    top: -70px;
  }

  .main_img img.aboutimg2 {
    top: 135px;
  }

  .sectionThree .set h2 {
    font-size: 48px;
    line-height: 50px;
  }

  .sectionFour {
    margin: 50px 0;
  }

  .sectionSix1 {
    padding: 30px 0;
  }

  /* .sectionTesti .cont p {
    margin: 20px 0;
    font-size: 30px;
    line-height: 34px;
  } */
  .sectionTesti .item {
    padding: 30px 26px 30px;
    border-radius: 20px;

  }




  .sectionFive .cont {
    border-radius: 20px;
    padding: 35px;
  }

  .cta p {
    max-width: 650px;
  }

  .cta .cta1 {
    top: -51px;
    width: 124px;
    position: absolute;
    left: 15px;
  }



  .sectionThree.Powered .col-8,
  .sectionThree.Powered .col-4 {
    width: 100%;
  }

  .sectionThree.Powered .aboutimg2 {
    margin-top: 35px;
    border-radius: 20px;
  }

  .sectionSeven .set h4 {
    font-size: 20px;
  }

  .sectionSeven .set ul li {
    font-size: 14px;
    margin: 10px 0;
    padding-left: 27px;
  }

  .sectionSeven .set {
    padding: 25px;
  }

  .header-top ul li a {
    font-size: 15px;
  }

  /* .header-top ul li {
        margin-left: 20px;
    } */

  .sectionTwo .cont {
    padding: 0;
  }

  .sectionTwo .cont .set h2 {
    font-size: 38px;
    line-height: 34px;
    height: 34px;
  }

  .sectionTwo .col-8 {
    width: 100%;
  }

  .sectionTwo .heading {
    font-size: 40px;
    line-height: 40px;
  }

  .sectionTwo .map_about {
    width: 280px !important;
    position: absolute;
    margin-left: 20px;
    margin-top: -24px;
  }

  .sectionTwo .contdiv {
    padding-left: 0;
  }

  .heading {
    font-size: 36px;
    line-height: 40px;
  }

  .sectionTwo .cont {
    margin-top: 40px;
  }

  .sectionTwo .set img,
  .sectionTwo .cont .set,
  .sectionTwo .cont .set.img {
    height: 160px;
  }

  .sectionTwo .aboutimg {
    height: 320px;
  }

  .sectionTwo .arrowbtn img {
    height: 20px !important;
  }

  /* .banner .cont {width:60%;} */
  .mainthumbs {
    max-width: 40%;
  }

  #thumbs .item img {
    height: 180px;
  }

  #big.owl-theme .owl-prev,
  #big.owl-theme .owl-next {
    background: #fff;
    display: inline-block;
  }

  .sponsors .set h3 {
    font-size: 24px;
  }

  .sponsors .cont {
    padding: 40px 20px;
  }

  .sponsors .set p {
    padding: 0 15px;
  }

  .footer form {
    min-width: 600px;
  }

  .footer .contform h3 {
    font-size: 34px;
  }


  .sectionMap .heading span {
    font-size: 60px;
  }

  .sectionThree .set h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .sectionFour .cont {
    padding: 35px;
    border-radius: 20px;
  }

  .exhibition_profile1 .rowin_set {
    padding: 15px;
  }

  .exhibition_profile1 .set h6 {
    background: #d6cec3;
    padding: 11px 15px;
    height: 46px;
    font-size: 14px;
  }

  .sectionThree .cont .set,
  .sectionThree .cont .seth {
    padding: 20px 16px;
  }

  .sectionThree .set h6 {
    padding: 11px 10px;
    height: 46px;
    border-radius: 7px;
    font-size: 12px;
    margin-right: 11px;
    min-width: 112px;
  }

  .sectionThree .set .img {
    height: 40px;
    width: 40px;
  }

  .sectionThree .set .img img {
    height: 20px;
  }

  .exhibition_profile1 {
    border-radius: 30px;
  }

  .exhibition_profile1 .headingh3 {
    font-size: 21px;
  }

  .sectionThree.exhibition_profile1 .set .inst h2 {
    font-size: 28px;
  }

  /* .exhibition_profile3 .ing_img {
        width: 370px;
        bottom: 54px;
    } */
  .exhibition_profile3 ul li {
    padding: 15px;
    margin: 4px 8px 4px 0;
  }

  .sectionTesti.sectionTesti_exh {
    padding: 60px 0;
  }

  .exhibition_registration .col-5,
  .exhibition_registration .col-7 {
    width: 100%;
  }

  .exhibition_registration .heading_boss {
    text-align: center;
    max-width: 700px;
    margin: auto;
  }

  .exhibition_registration ul {
    justify-content: center;
  }


  .videos iframe {
    height: 180px;
  }

  .exhibition_registration .heading_boss .heading {
    font-size: 42px;
    line-height: 42px;
  }

  .gallery .heading_boss {
    margin-top: 20px;
  }





  /**************************
********** cta2 *********
***************************/
  .cta2 .heading {
    font-size: 45px;
    line-height: 48px;
  }

  .cta2 {
    padding: 71px 0;
    border-radius: 20px;
  }

  .cta2 p {
    max-width: 550px;
  }

  /**************************
********** cta2 *********
***************************/


  /**************************
********** footer *********
***************************/
  .footer .row .rowin {
    padding: 0 12px;
  }

  .footer .row {
    margin: 0 -12px;
  }

  .footer_menu {
    display: block;
    padding: 10px 0;
  }

  .footer_menu li {
    display: inline-block;
  }

  .footer_menu li a {
    padding: 9px 6px;
  }

  .footer p .tel {
    font-size: 19px !important;
    margin-bottom: 8px;
  }

  .footer .logo-img {
    height: 100px;
  }

  .footer .foot1 {
    padding: 30px 10px 5px;
  }

  .footerimg {
    height: 300px;
    margin-top: 42px;
  }

  /**************************
********** footer *********
***************************/


  .exhibition_registration form {
    margin-top: 25px;
    width: 100%;
  }

  .exhibition_registration .main_aaa {
    display: none
  }

  .exhibition_registration .main_mob {
    margin: auto;
    display: block !important
  }

  .mansory-gallery .column img.img2 {
    height: 280px;
  }


  .flor_plan .text {
    display: block;
    text-align: center;
  }

  .flor_plan .bbttnn {
    width: 344px;
    display: inline-flex;
    margin-top: 20px;
  }

  .flor_plan .text {
    padding-top: 50px;
  }

  .flor_plan {
    padding: 0 0 0;
  }

  .exhibition_profile1 .rowin_set {
    padding: 15px;
  }

  .exhibition_profile1 .col-6 {
    width: 100%;
  }

  .exhibition_profile1 .col-3 {
    width: 50%;
    margin-top: 20px;
  }

  .exhibition_profile1 .rowin_set .col-6 {
    width: 50%;
  }

  .exhibition_profile1 .col-3 .rowin_set {
    margin: 0;
  }

  .exhibition_profile2 {
    padding: 50px 0 !important;
  }

  .exhibition_profile3 ul {
    max-width: 785px;
  }

  .profile_banner .col-5,
  .profile_banner .col-7 {
    width: 100%;
  }

  .profile_banner .cont .inst .col-5,
  .profile_banner .cont .inst .col-7 {
    width: 50%;
  }

  .profile_banner .cont .inst {
    max-width: 685px;
    padding: 20px;
    height: auto;
    position: relative;
  }

  .profile_banner .cont .heading.heading2 {
    text-align: center !important;
  }

  .profile_banner .cont {
    bottom: 18vh;
  }

  .sectionTwovisttor .set {
    padding: 15px;
  }

  .sectionTwovisttor .set h2 {
    font-size: 40px;
  }

  .sectionTwovisttor {
    padding: 0 0;
  }

  .sectionTwovisttor .heading {
    margin-top: 0;
  }

  .sectionSeven .side_img3 {
    width: 200px;
    top: -145px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .col-3 {
    width: 25%;
    margin: 0;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .set2 h4 {
    font-size: 32px;
  }

  .cont2 .set2 {
    padding: 15px 0;
  }

  .exhibition_profile1 .custom-btn.orange_bg {
    top: 0;
    margin-top: 20px;
  }
}


/*************************************************************************
********* @media only screen and (max-width: 991px)  *********************
***********************************************************************/
@media only screen and (max-width: 991px) {

  .banner_bg.w-100 {
    position: absolute;
    height: 116vh;
    object-position: center;
    object-fit: cover;
  }

  header.fixed .header-top img.logo-img {
    height: 55px;
  }

  .header-top img.logo-img {
    width: auto;
    height: 55px;
  }

  section.why_exhibit.daysin .maindiv .col-6 {
    width: 100%;
    margin-bottom: 12px;
  }

  section.why_exhibit.daysin .maindiv .set {
    display: block;
  }

  section.why_exhibit.daysin .col-6 {
    width: 100%;
  }

  .Sanjhheadig .d-flex {
    margin-top: 20px;
  }

  .footer .contact p.nmber lb {
    display: none;
  }

  .dropdown-menu::after {
    display: none
  }

  .thanku .check {
    height: 140px;
  }

  .thanku .heading {
    font-size: 60px;
  }

  .container {
    max-width: 720px;
  }

  p {
    font-size: 14px
  }

  .container {
    padding: 0 20px;
  }

  .heading_boss .col-6 {
    width: 100%;
  }


  .sectionTwovisttor .rowin.rowin2 {
    padding-right: 0;
  }

  /*****************************
************ header **********
******************************/
  .mobnone {
    display: none;
  }

  .toggle-bar {
    display: block;
    position: absolute;
    right: 0;
  }

  .nav {
    display: none;
    opacity: 0;
    position: fixed;
    transition: all 0.5s;
    -webkit-transition: all 0.25s;
    display: block;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 99999;
    left: -600px;
    background: var(--ThemeColor2);
    padding-top: 50px;
  }

  .header-top ul {
    margin-left: 0;
    display: block;
  }

  .header-top ul li a {
    font-size: 18px;
    padding: 16px 0;
    display: block;
  }

  .nav.main {
    opacity: 1;
    left: 0;
    box-shadow: 0 0 67px var(--Black);
  }

  .header-top .custom-btn {
    margin-right: 50px;
  }

  /*******************************
************ end header ********
********************************/


  /*******************************
*************** banner *********
********************************/
  .banner {
    height: auto;
    background-size: cover;
  }

  .banner .cont {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    max-width: 500px;
    margin: auto;
  }

  .banner .cont .heading {
    font-size: 38px;
    line-height: 44px;
  }

  .banner .cont .text {
    margin: 20px 0;
  }

  .banner .col-7 {
    order: 2;
  }

  .banner .col-7,
  .banner .col-5 {
    width: 100%;
    text-align: center;
  }

  .banner .cont h4 {
    justify-content: center;
  }

  .banner .container img {
    max-width: 320px;
  }

  .sectionTwo .cont .row .rowin {
    padding: 0 0;
  }

  /*******************************
************ end banner ********
********************************/


  /***************************
************ sectionTwo ********
***************************/
  .video1 img {
    height: 320px;
  }

  .sectionTwo .aboutimg {
    height: 280px;
    border-radius: 12px;
    border: 10px solid var(--ThemeColor2);
  }

  .sectionTwo .cont .set h6 {
    font-size: 14px;
  }

  .sectionTwo .cont .set p {
    font-size: 14px !important;
    line-height: 22px;
  }

  .sectionTwo {
    border-radius: 30px;
  }

  .sectionTwo .contdiv {
    padding-left: 00;
  }

  .sectionTwo .contdiv .rowin {
    padding: 0 100px;
  }

  .sectionTwo .cont {
    margin-top: 20px;
  }

  .sectionTwo .contdiv.row {
    margin: 0 -100px;
  }

  .sectionTwo .map_about {
    position: relative;
    margin-left: 0;
    margin-top: 0;
  }

  /***************************
************end sectionTwo ********
***************************/


  /***************************
************ sectionThree ********
***************************/
  .sectionThree .cont .set,
  .sectionThree .cont .seth {
    padding: 15px 15px;
  }

  .sectionThree .set h6 {
    padding: 10px 15px;
    height: 42px;
    border-radius: 10px;
    font-size: 14px;
    margin-right: 10px;
    min-width: 85px;
  }

  .sectionThree .set h2 {
    line-height: 32px;
    margin-top: 0;
    display: block;
  }

  .sectionThree .set h2 span {
    font-size: 18px;
    display: block;
  }

  .sectionThree .set h2 span {
    font-size: 16px;
    line-height: 25px;
  }

  /***************************
************end sectionThree ********
***************************/
  .sectionFourGall img {
    height: 360px;
  }

  /***************************
************ sectionFour ********
***************************/
  .sectionFour .cont .col-6 {
    width: 100%;
    text-align: center;
  }

  .main_img img {
    border-radius: 15px;
    min-width: inherit;
  }

  .sectionFour img {
    height: 380px;
    height: 380px;
  }

  .main_img img.aboutimg {
    top: 0;
  }

  .sectionFour .main_img {
    right: 0;
    gap: 15px;
    position: relative;
    margin-top: 20px;
  }

  .main_img img.aboutimg2 {
    top: 0;
    left: 0;
  }

  .sectionFour .cont {
    padding: 35px 25px 25px;
    border-radius: 15px;
  }

  /***************************
************end sectionFour ********
***************************/


  /***************************
************ cta **********
***************************/
  .cta p {
    max-width: 450px;
  }

  .cta {
    padding: 20px 0 120px;
  }

  .cta .cta2 {
    bottom: 0px;
    width: 234px;
  }

  .cta2 {
    padding: 55px 0;
    border-radius: 15px;
  }

  .cta2 .heading {
    font-size: 38px;
    line-height: 40px;
  }

  /***************************
************end cta ********
***************************/


  /***************************
************ sectionFive **********
***************************/
  .sectionFive .cont {
    border-radius: 15px;
    padding: 30px;
    position: relative;
    top: -44px;
    width: 95%;
    display: block;
    margin: auto;
  }

  .sectionFive .col-4,
  .sectionFive .col-8 {
    width: 100%;
  }

  .sectionFive .aboutimg2 {
    border-radius: 15px;
    height: 520px;
    margin-top: -0;
    width: 100%;
  }

  .sectionFive ul {
    display: table-cell;
  }

  .sectionFive {
    padding-bottom: 0;
  }

  /***************************
************end sectionFive ********
***************************/



  /***************************
************ sectionSix1 **********
***************************/
  .sectionSix1 .heading_boss {
    min-width: 100%;
    margin-bottom: 0;
  }

  .sectionSix1 .heading_boss {
    width: 100%;
    margin-bottom: 0;
    text-align: center !important;
    max-width: 500px;
  }

  .sectionSix1.sectionSix12 {
    padding: 40px 0;
    border-radius: 15px;
  }

  .sectionSix12 .tabs-content {
    margin: 20px 0 0px;
  }

  .sectionSix1.sectionSix12 {
    padding: 0 0 30px;
    border-radius: 15px;
  }

  .sectionSix1.sectionSix12 .heading.mt-0.mb-3 {
    margin-bottom: 4px;
  }

  /***************************
************end sectionSix1 ********
***************************/



  /***************************
************ sectionSeven **********
***************************/
  .sectionSeven ul.lstul {
    justify-content: center;
  }

  .sectionSeven ul li:first-child {
    position: relative;
    top: 0;
    left: 0;
  }

  .sectionSeven .col-4 {
    width: 100%;
    margin: 6px 0;
  }

  .sectionSeven ul li {
    padding: 0 15px;
  }

  /***************************
************end sectionSeven ********
***************************/



  /***************************
************ footer **********
***************************/
  footer {
    border-radius: 35px 35px 0 0;
  }

  .footer .contform {
    display: block;
  }

  .footer .contact p.nmber {
    display: block;
  }

  .footer {
    padding: 50px 0px 0;
  }

  .footer .logo-img {
    height: 70px;
  }

  .footer_menu li a {
    padding: 5px 9px;
  }

  .footer p .tel {
    font-size: 20px !important;
    margin: 4px 0;
  }

  .footer-bottom {
    margin-top: 0;
  }

  .sectionThree .set h2 span br {
    display: none;
  }

  .sectionTwo .set img,
  .sectionTwo .cont .set,
  .sectionTwo .cont .set.img {
    height: 146px;
  }

  .sectionTwo.sectionTwovisttor .set img {
    height: 100%
  }

  .sectionTwo .cont .set {
    padding: 0 15px;
  }

  /* .footer .contact p span {
  margin: 0 0 8px;
} */

  .footer .contact p {
    max-width: 385px;
    margin: 0 auto 20px;
  }

  .why_exhibit .table th {
    padding: 15px;
    font-size: 15px;
  }

  .why_exhibit .table td {
    padding: 12px 15px;
    font-size: 15px;
  }

  .why_exhibit .set {
    display: inline-grid;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
    min-height: auto;
  }

  .why_exhibit .set h3 {
    font-size: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .sectionThree.Powered .cont .set,
  .sectionThree.Powered .cont .seth {
    padding: 20px 11px;
  }

  .sectionThree.Powered .set h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .profile_banner .cont .col-7 .col-7 .set p br {
    display: none;
  }

  .sectionThree.Powered .cont .col-3 {
    width: 25%;
  }

  .why_exhibit {
    padding: 55px 0;
    border-radius: 30px;
  }

  .why_exhibit .set img {
    margin: auto;
    margin-bottom: 20px;
  }

  .why_exhibit .set p {
    font-size: 15px;
    text-align: center;
    order: 1;
  }

  .cta.ctadiv .cta1 {
    display: none;
  }




  /***************************
************end footer ********
***************************/
  .sectionMap .col-7,
  .sectionMap .col-5 {
    width: 100%;
  }

  .sectionMap .col-7 {
    order: 2;
  }

  .exhibition_registration .main_aaa {
    display: none;
  }

  .exhibition_registration form {
    margin-top: 20px;
  }

  .Supported .heading {
    margin-bottom: 10px !important;
  }




  #big .item {
    min-height: 500px;
    height: 600px;
  }

  .mainthumbs {
    position: relative;
    right: 0;
    bottom: 120px;
    z-index: 9;
    display: none;
  }

  .dasknonenone {
    display: block;
    text-align: center;
  }

  .sectionTwo .heading span.left {
    margin-left: 0;
  }

  .sectionTwo .heading {
    font-size: 34px;
    line-height: 39px;
    text-align: center;
  }

  .heading_boss .col-7,
  .heading_boss .col-5,
  .heading_boss .col-8,
  .heading_boss .col-4 {
    width: 100%;
  }

  .heading_boss {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 20px;
  }

  .sectionSix.sectionEight .cont {
    margin-top: 0;
  }

  .sectionSix .set {
    padding: 0;
  }

  .sectionMap .cont ul li {
    font-size: 14px;
  }

  .sectionFour .owl-carousel {
    border-radius: 20px;
  }

  .sectionMap .cont ul {
    margin-top: 30px;
    margin-left: 10%;
  }

  .sectionMap img.w-100 {
    width: 150%;
    margin-left: -46%;
    margin-top: 64px;
  }

  .heading_boss .custom-btn {
    display: none;
  }


  .sectionThree .set p {
    height: 45px;
    line-height: 22px;
  }

  .brnds {
    display: none;
  }

  .sectionTwo .contdiv.row {
    margin: 0 -20px;
  }

  .sectionTwo .contdiv .rowin {
    padding: 0 20px;
  }

  .sectionThree .cont .col-3 {
    width: 50%;
    margin-bottom: 12px;
  }

  .exhibition_registration {
    /* margin-bottom: 40px;
        padding-top: 120px;
        padding-bottom: 60px; */
    border-radius: 0 0 30px 30px;
  }

  .sponsors .col-4,
  .sponsors .col-8 {
    width: 100%;
  }



  .contact_page,
  .gallery {
    border-radius: 30px;
  }

  .sectionSeven {
    padding: 50px 0;
    border-radius: 30px;
  }

  .contform {
    display: block;
    text-align: center;
  }

  .footer .contform h3 br {
    display: none;
  }

  .footer .col-4 {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .exhibition_profile1 .col-6 {
    width: 100%;
  }

  .exhibition_profile1 .col-6 .col-6 {
    width: 50%;
  }

  .heading_boss .col-7,
  .heading_boss .col-5,
  .heading_boss .col-8,
  .heading_boss .col-4 {
    width: 100%;
  }

  .exhibition_profile1 .heading_boss {
    max-width: 100%;
  }

  .header-top ul .dropdown-menu {
    top: 0;
    position: relative;
    display: none;
    background: #ffffff12;
  }

  .header-top ul .dropdown-menu li a {
    padding: 14px;
    color: #e1e1e1;
  }

  .contact_page form .form-group .form-control {
    padding: 12px 15px;
  }

  .formlist .col-6 {
    width: 100%;
  }

  /* .contact_page .info {
        padding-left: 35px;
        margin-left: 15px;
    } */
  .contact_page h4 {
    font-size: 24px;
  }

  .barcode {
    width: 150px;
    padding: 10px;
    height: 150px;
    border-radius: 6px;
  }

  .exhibition_registration .col-6 {
    width: 100%;
  }

  .exhibition_registration .row .row::after {
    display: none;
  }


  .gallery .heading {
    font-size: 30px;
    line-height: 34px;
  }

  .videos iframe {
    height: 300px;
  }



  .inner_banner .cont .col-7,
  .inner_banner .cont .col-5 {
    width: 100%;
    text-align: center;
  }

  .inner_banner .cont .heading {
    text-align: center !important;
  }

  .inner_banner .cont p {
    text-align: center !important;
    margin-top: 12px;
  }

  .gallery .col-3 {
    width: 50%;
  }

  .sectionMap .cont {
    padding: 40px 0;
  }

  .exhibition_profile3 ul li {
    min-height: 34px;
  }

  .exhibition_profile3 ul {
    max-width: 500px;
  }

  .exhibition_profile3 .ing_img {
    right: -155px;
  }

  .cta .cta1 {
    top: -70px;
    width: 135px;
    left: 0;
  }

  .cta .cta2 {
    padding: 0;
    margin: 0;
  }


  .sectionFive_profile .rowin.text-end {
    text-align: center;
  }

  .sectionFive_profile .col-12.position-relative.mt-4 {
    margin: 0 !important;
  }

  .sectionFive.sectionFive_profile {
    margin-bottom: 50px !important;
  }

  .sectionSeven .side_img3 {
    width: 145px;
    top: -93px;
  }

  .exhibition_profile1 .custom-btn.orange_bg {
    top: 0;
    margin-top: 20px;
  }

  .exhibition_profile1 {
    margin: 60px 0 0;
  }

  .sectionFive.sectionFive_profile.sectionFive_profile2 {
    padding-top: 40px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont .set {
    text-align: center;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont .set .d-flex {
    justify-content: space-between;
  }

  .sectionThree.exhibition_profile1.commercials_profile .set p {
    height: auto;
    line-height: 22px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .set h6 {
    padding: 8px 3px;
    border-radius: 6px;
    font-size: 13px;
    height: 36px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .set .img {
    height: 48px;
    width: 48px;
  }

  .cont2 .set2 h4 span {
    font-size: 18px;
  }

  .exhibition_profile1 .headingh3 {
    font-size: 18px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .set2 p {
    /* min-height: 50px; */
    font-size: 12px;
    line-height: 20px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .set2 h4 {
    font-size: 23px;
  }

  .sectionThree.exhibition_profile1.commercials_profile {
    margin: 50px 0
  }

  .sectionTwo.sectionTwovisttor .cont .set {
    padding: 15px;
  }

  .sectionTwovisttor {
    padding: 40px 0 0;
  }

  .sectionSix.sectionEight1 .set h3 {
    font-size: 40px;
  }

  .sectionSix.sectionEight1 .set h4 {
    font-size: 16px;
  }


  .sectionSix.sectionEight1 .set {
    margin: 6px 0;
  }

  .sectionSix.sectionEight1 .set h4 {
    font-size: 14px;
  }

  .sectionSix.sectionEight1 .set h3 {
    font-size: 35px;
  }

  .sectionSix.sectionEight1 .cont .col-3 {
    width: 33.33%;
  }

  .sectionSix.sectionEight1 .cont .row .rowin {
    padding: 0 6px;
  }


  .sectionSix.sectionEight1 .cont .row {
    margin: 0 -6px;
  }

  .banner .cont1 {
    position: relative;
  }
}

/*************************************************************************
********* @media only screen and (max-width: 767px)  *********************
***********************************************************************/
@media only screen and (max-width: 767px) {
  .banner_bg.w-100 {
    height: 100vh;
  }

  header.fixed .header-top img.logo-img {
    height: 50px;
  }

  .header-top img.logo-img {
    width: auto;
    height: 50px;
  }

  section.why_exhibit.daysin .col-6 {
    width: 100%;
  }

  .showvideo {
    padding: 20px;
  }

  .footer p .tel {
    margin: 8px 0;
  }

  .sectionSix.sectionEight1 .cont .col-3 {
    width: 50%;
  }

  .container {
    max-width: 540px;
  }

  .contdiv_main {
    margin: 0 auto 30px;
  }

  .exhibition_profile1 {
    text-align: center
  }

  .exhibition_profile1 .cont .col-8,
  .exhibition_profile1 .cont .col-4 {
    width: 100%;
    text-align: center
  }

  .exhibition_profile1 .headingh3 {
    justify-content: center;
  }

  .exhibition_profile1 .headingh3::after {
    right: 0;
    margin: auto;
  }

  .exhibition_profile1 .custom-btn.orange_bg {
    position: relative;
    top: 0;
    margin-bottom: 0;
    display: inline-table;
  }

  .exhibition_profile1 .rowin_set .set div {
    justify-content: center;
  }

  .exhibition_profile1 {
    margin: 50px 0;
  }

  .gallery.videos {
    padding-top: 30px;
    margin-bottom: 70px;
  }

  .video1 {
    position: relative;
    width: 120%;
  }

  .sectionTwo .cont .set {
    padding: 15px;
  }




  /****************************
********* sectionTwo *******
******************************/
  .sectionTwo .col-3+.col-3 .set {
    border-left: 1px solid var(--ThemeColor5);
    border-bottom: 1px solid var(--ThemeColor5);
  }

  .sectionTwo .row .col-3:nth-child(3) .set {
    border-left: none;
    border-bottom: none;
  }

  .sectionTwo .row .col-3:last-child .set {
    border-bottom: none;
  }

  .sectionTwo .row .col-3:first-child .set {
    border-bottom: 1px solid var(--ThemeColor5);
  }

  .sectionTwo::after {
    height: 88%;
  }

  /****************************
********* end sectionTwo *******
******************************/


  /****************************
********* sectionThree *******
******************************/
  .sectionThree .set h2 {
    font-size: 26px;
    line-height: 40px;
  }

  /****************************
********* end sectionThree *******
******************************/


  /****************************
********* sectionFour *******
******************************/
  .sectionFour img {
    height: 316px;
    min-width: 47%;
  }

  /****************************
********* end sectionFour *******
******************************/



  /****************************
********* cta *******
******************************/
  .cta .cta1 {
    width: 120px;
  }

  .cta p {
    max-width: 360px;
  }

  .cta .cta2 {
    width: 200px;
    right: 0;
  }

  .cta .heading {
    padding: 0 85px;
  }

  .cta .heading br {
    display: none
  }

  .cta {
    padding: 20px 0 140px;
  }

  /****************************
********* end cta *******
******************************/

  .sectionFive {
    margin: 0 auto 15px;
  }

  .sectionFive .cont {
    padding: 30px 25px;
  }

  .sectionSeven ul li {
    margin: 8px 0;
  }

  /****************************
********* sectionSix12 *******
******************************/
  .sectionSix1.sectionSix12 {
    padding: 0px 0 20px;
    border-radius: 15px;
    margin-bottom: 0;
  }

  .sectionSix1.sectionSix12.Supported {
    padding: 40px 0;
  }

  /****************************
********* end sectionSix12 *******
******************************/



  /****************************
********* footer *******
******************************/
  .footer .col-7,
  .footer .col-5 {
    width: 100%;
  }

  .footer {
    text-align: center;
  }

  .footer .contact {
    margin-top: 24px;
  }

  .footer p .tel {
    font-size: 25px !important;
    display: block;
  }

  .footer .contact p span {
    margin: 0 auto 8px;
  }

  .footer .contact p {
    display: block;
  }

  /****************************
********* end footer *******
******************************/





  .gallery.videos.Media .col-4 {
    width: 50%;
  }

  .owl-nav {
    width: 111px;
    position: absolute;
    bottom: 37px;
    margin: auto;
    left: 0;
    right: 0;
  }

  #big.owl-theme .owl-prev:hover,
  #big.owl-theme .owl-next:hover {
    background: var(--ThemeColor);
    opacity: 1;
  }

  #big.owl-theme .owl-prev,
  #big.owl-theme .owl-next {
    width: 40px;
    border-radius: 50%;
    opacity: 0.5;
  }

  .sectionSix .col-4 {
    width: 100%;
  }

  .sectionSix .set.settop {
    top: 0;
  }

  .sectionSix .row.box {
    max-width: 480px;
    margin: auto;
  }

  .sectionSeven {
    padding: 50px 0;
    border-radius: 25px;
  }

  .sectionSix .set {
    padding: 20px 0;
  }

  .sectionSix.sectionEight .cont {
    max-width: 500px;
    margin: auto;
  }

  .sectionSix.sectionEight .join_div {
    margin-top: 25px !important;
  }

  .sectionMap .col-7,
  .sectionMap .col-5 {
    width: 100%;
  }

  .footer .col-4 {
    width: 100%;
    text-align: center;
  }

  .footer h3 {
    margin-top: 20px;
  }

  .sectionMap img.w-100 {
    width: 100%;
    margin-left: 0;
    margin-top: 13px;
  }

  .sectionMap .cont {
    padding: 20px 25px 22px;
    border-radius: 20px;
    max-width: 100%;
  }

  .sectionThree .cont .col-3 {
    width: 50%;
    margin: 7px 0;
  }

  .sectionTwo .row .col-3 {
    width: 50% !important;
  }

  .banner .cont .heading {
    font-size: 48px;
    line-height: 48px;
  }

  .banner .cta .custom-btn {
    min-width: 260px;
  }

  .sectionTwo .contdiv.row .col-6 {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .sectionThree .col-12.text-end {
    text-align: center;
  }

  .sectionFour .owl-nav.disabled {
    width: 200px;
  }

  .sectionFour .owl-prev {
    left: 0;
    position: relative;
  }

  .sectionFour .owl-next {
    right: 0 !important;
    position: relative;
  }

  .sectionFour .owl-nav.disabled {
    width: 115px;
    display: flex !important;
  }

  .inner_banner .cont .set h2 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 6px;
  }

  .exhibition_profile1 .col-6 .col-6 {
    width: 100%;
    margin-bottom: 15px;
  }

  .sectionThree.exhibition_profile1 .set .d-flex.align-center {
    justify-content: space-between;
  }

  .exhibition_profile3 .col-9,
  .exhibition_profile2 .col-9,
  .exhibition_profile3 .col-3 {
    width: 100%;
  }

  .exhibition_profile2 {
    text-align: center;
  }

  .sectionSeven.exhibition_profile2 .set {
    text-align: center;
  }

  .cont2 .set2 h4 {
    font-size: 40px;
  }

  .cont2 .set2 {
    padding: 15px 0;
    text-align: center;
  }

  .exhibition_profile3 ul li {
    padding: 15px 25px;
    min-width: auto;
  }

  .exhibition_profile3 .ing_img {
    display: none;
  }

  /* .exhibition_profile2 {
        padding: 60px 0 120px !important;
        border-radius: 30px 30px 0 0;
    } */



  .exhibition_profile1 .headingh3 {
    font-size: 18px;
  }

  .exhibition_profile1 .headingh3 img {
    height: 15px;
  }

  .footer .contact p {
    gap: 10px;
  }

  .inner_banner.visitor_banner img {
    height: 366px;
  }

  .cont2 .set2 p {
    line-height: 22px;
    min-height: 44px;
  }

  .sectionTesti.sectionTesti_exh {
    padding: 50px 0;
  }

  .exhibition_profile1 {
    padding-top: 30px;
  }

  /* .contact_page .info {
        padding-left: 30px;
        margin-left: 7px;
    } */
  .social-icons ul li a img {
    width: 22px;
  }

  .social-icons ul li a {
    width: 46px;
    height: 46px;
  }

  .contact_page {
    margin-bottom: 35px;
  }

  .inner_banner {
    height: auto !important;
  }

  .sectionMap .cont p {
    padding-right: 0%;
  }

  .gallery .heading_boss {
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .mansory-gallery .column img {
    border: 4px solid #fff;
    border-bottom: 0.5rem solid #fff;
    border-top: 0.5rem solid #fff;
  }

  .videos iframe {
    height: 200px;
  }

  .banner .cont .heading {
    font-size: 35px;
    line-height: 42px;
  }

  .sectionMap {
    text-align: center;
  }

  .sectionMap p {
    justify-content: center;
    margin: 0 auto 0;
  }

  .sectionMap .col-7 {
    margin-top: 20px;
  }

  .sectionMap iframe {
    height: 400px;
  }

  .sectionNine .owl-carousel .owl-item img {
    height: 50px;
  }

  .sectionSix.sectionEight .set.settop {
    top: 0;
  }

  .sectionSix.sectionEight .set {
    padding: 0;
    margin: 10px 0;
  }

  .sectionSeven ul li {
    padding: 8px 12px;
    min-height: 60px;
  }

  .footer {
    padding: 30px 0px 0;
    border-radius: 40px 40px 0 0;
  }

  .footer_menu li a {
    padding: 6px 8px;
  }

  .footer-bottom p {
    font-size: 14px;
  }


  .contact_page .text.textinfo {
    padding: 20px 20px 5px;
  }


  .contact_page .info.info1 .col-4 {
    width: 100%;
    text-align: center;
  }

  .contact_page .text.textinfo {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact_page .text h6 {
    margin-bottom: 10px;
    text-align: center;
  }

  .contact_page h4 {
    text-align: center;
  }



  .gallery.videos .col-4 {
    width: 50%;
  }

  .exhibition_profile2 ul li {
    min-height: auto;
  }

  .sectionMap .container {
    padding: 0;
  }

  .footer form {
    min-width: 510px;
  }

  .sectionFive ul {
    display: table-cell;
    padding-top: 25px;
  }

  .sectionTwovisttor .col-8,
  .sectionTwovisttor .col-4 {
    width: 100%;
  }

  .sectionTwovisttor .col-8 .col-4 {
    width: 33.33%
  }

  .sectionTwovisttor img {
    margin-top: 27px;
  }

  .sectionTwovisttor .rowin.rowin2 {
    padding-right: 12px;
  }

  .exhibition_profile1 {
    margin: 50px 0 0;
  }

  .sectionFive.sectionFive_profile.sectionFive_profile2 {
    padding-top: 30px;
  }

  .sectionFive_profile .bbttnn {
    display: inline-grid;
    gap: 15px;
  }

  .sectionFive_profile .bbttnn .custom-btn.gapbtn1 {
    margin-left: 0;
  }

  .why_exhibit .set h3 {
    font-size: 46px;
    height: 55px;
  }

  .why_exhibit .set img {
    height: 48px;
  }

  .sectionThree.Powered .cont .col-9 {
    width: 100%;
    text-align: center;
  }

  .sectionThree.Powered .cont .col-3 {
    width: 100%;
  }

  .sectionThree.Powered .cont .set.blnone {
    border-left: 1px solid #6552434f;
  }

  .sectionThree.Powered .cont .col-3 {
    margin: 0;
    max-width: 400px;
    margin: auto;
  }

  .sectionThree.Powered {
    margin: 50px 0 60px;
  }

  .sectionThree.Powered .cont {
    margin-top: 0;
  }

  .sectionThree.Powered .cont .set,
  .sectionThree.Powered .cont .seth {
    text-align: center !important;
    display: block;
    padding: 14px 12px;
    border: 1px solid #beb3a8;
    margin-top: -1px;
  }

  .sectionThree.Powered .seth.btnone.blnone {
    border: none !important;
  }

  .sectionThree.Powered .cont .set.blnone {
    border-top: none;
  }

  .why_exhibit h3 {
    font-size: 20px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont .set {
    margin-bottom: 10px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .col-9,
  .sectionThree.exhibition_profile1.commercials_profile .cont2 .col-3 {
    width: 100%;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .col-3 {
    margin-top: 30px;
  }

  .sectionThree.exhibition_profile1.commercials_profile .cont2 .set2 p {
    min-height: auto;
  }

  .sectionTwo.sectionTwovisttor .set img {
    margin: 0;
  }

  .sectionSix.sectionEight1 .set.settop {
    top: 0;
  }

  .sectionSix.sectionEight1 .set.settop {
    position: relative;
    top: 0;
  }


  .sectionSix.sectionEight1 .custom-btn.white_btn {
    margin-top: 15px;
  }

  .sectionSix.sectionEight1 {
    margin-bottom: 60px;
  }

  .sectionSix1.sectionSix12.sectionSix1Visitor .col-9 {
    width: 100%;
  }

  .sectionSix1.sectionSix12.sectionSix1Visitor {
    padding: 50px 0 50px;
    border-radius: 18px;
  }

  .sectionSix.sectionEight1 {
    margin-bottom: 60px;
    padding-top: 60px;
  }

  section.why_exhibit.daysin .table td {
    padding: 10px 15px;
    font-size: 15px;
  }

  .profile_banner img.Sanjhlogo {
    height: 120px;
  }

  section.sectionSix1.sectionSix12.Supportedssss .heading_boss {
    margin-bottom: 30px !important;
  }

  section.sectionSix1.sectionSix12.Supportedssss {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

}


/*************************************************************************
********* @media only screen and (max-width: 576px)  *********************
***********************************************************************/
@media only screen and (max-width: 575px) {
  .banner_bg.w-100 {
    height: 860px;
  }

  .thanku .col-9 {
    width: 95%;
  }

  .exhibition_registration.thanku {

    padding-bottom: 60px;
  }

  .thanku .heading {
    font-size: 45px;
    margin: 0 0 31px !important;
  }

  .sanjhicons .Sanjhlogo {
    height: 70px;
  }

  .sanjhicons h3 {
    font-size: 15px !important;
  }

  .sanjhicons {
    margin-bottom: 10px;
  }

  .sanjh_registration .heading_boss h6 {
    font-size: 24px;
  }

  section.sectionSix1.sectionSix12.Supportedssss .heading_boss {
    margin-bottom: 20px !important;
  }

  .profile_banner.Sanjhheadig .cont {
    bottom: 75px;
  }

  section.why_exhibit.daysin .table {
    min-width: 100%;
    margin: 20px auto;
  }


  section.why_exhibit.daysin .table-responsive {
    margin-bottom: 0;
  }

  section.why_exhibit.daysin p.text-start {
    font-size: 16px;
  }

  .profile_banner.Sanjhheadig,
  .profile_banner.Sanjhheadig img {
    height: 440px;
    min-height: 440px;
  }

  .profile_banner img.Sanjhlogo {
    height: 100px;
    min-height: 100px;
  }

  section.why_exhibit.daysin .table td {
    padding: 10px 15px;
    font-size: 14px;
  }

  section.why_exhibit.daysin h3.heading {
    font-size: 35px;
  }

  section.why_exhibit.daysin h6 {
    font-size: 15px;
  }

  .showmadal h1.heading {
    font-size: 28px;
    line-height: 34px;
  }

  /* .banner .cont1 {
    background: #6552436e;
  } */


  .banner .cont1 {
    padding-top: 80px;
  }

  .banner video {
    width: 100%;
    height: 100%;
    object-fit: 100%;
    height: 650px;
    object-fit: unset;
  }

  /* .banner video {
  display:none;
} */
  .banner video {
    height: 570px;
  }

  .banner {
    min-height: 570px;
  }

  /* .banner .cont1 {
    position: relative;
  } */
  .banner .container img {
    max-width: 260px;
  }

  .why_exhibit .maindiv .col-4 {
    width: 100%;
  }

  .why_exhibit .maindiv .set p {
    order: 2;
  }

  .why_exhibit .maindiv .set img {
    order: 1;
    margin-bottom: 0;
  }

  .why_exhibit {
    padding: 50px 0 40px;
    border-radius: 20px;
  }

  .why_exhibit .maindiv {
    margin: 10px 0 40px;
  }

  .why_exhibit .maindiv .set {
    border: none !important;
    display: grid;
    margin-top: 20px;
  }

  .why_exhibit .maindiv .set h3 {
    margin-bottom: 0;
  }

  .sectionFour .main_img img {
    min-height: auto !important;
    height: auto;
  }

  .exhibition_registration .searchForm {
    padding: 25px 18px;
  }

  .thanku .heading {
    font-size: 45px;
  }

  .exhibition_registration.thanku .custom-btn {
    font-size: 16px;
    padding: 10px 17px;
  }

  .thanku .check {
    height: 100px;
    margin-bottom: 15px;
  }

  .thanku .heading span {
    display: block;
    font-size: 19px;
    margin-top: 0;
  }

  .exhibition_registration .searchForm {
    float: inherit;
  }

  .sectionSix.sectionEight1 .col-4 {
    width: 50%;
  }

  .toggle-bar {
    right: 0;
  }

  .sectionSix1Visitor .col-9 {
    width: 100%;
  }

  .sectionSeven .side_img3 {
    width: 107px;
    top: -93px;
  }

  .inner_banner img {
    height: 240px;
  }

  .sectionSeven ul li {
    padding: 6px 11px;
    min-height: 56px;
    font-size: 14px;
  }

  .footer {
    border-radius: 30px 30px 0 0;
  }

  .footer .logo-img {
    height: 70px;
  }

  .sectionSix12 .tabs {
    margin-top: 0;
    gap: 0;
    margin: auto
  }

  .sectionSix1.sectionSix12 {
    padding: 10px 0 30px;
    border-radius: 15px;
  }

  .sectionFive ul li {
    width: 100%;
  }

  /************************
********* cta *************
*************************/
  .cta .cta1 {
    top: -35px;
  }

  .cta2 .heading {
    font-size: 32px;
    line-height: 36px;
  }

  /************************
*********end cta *************
*************************/

  .sectionFive .aboutimg2 {
    height: 370px;
  }

  .sectionFive .cont {
    padding: 20px;
  }

  .sectionFour .cont {
    padding: 35px 20px 20px;
    border-radius: 15px;
  }

  .sectionFive ul li {
    padding: 4px 0 4px 29px;
    background-size: 12px;
  }

  .footer_menu li a {
    padding: 9px 8px;
  }

  .sectionSix1 .heading_boss {
    min-width: 100%;
  }

  .sectionFour {
    margin: 34px 0;
  }

  .sectionMap iframe {
    height: 300px;
  }

  .contact_page .col-6 {
    width: 100%;
  }

  .contact_page .text .social-icons {
    justify-content: center;
  }

  .contact_page .info {
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid #ccccccba;
    border-left: navajowhite;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
  }

  .contact_page {
    margin-bottom: 35px;
    padding-top: 40px;
  }

  .Concurrentcarousel {
    max-width: 400px;
    margin: auto;
  }

  .sectionSix.sectionEight {
    margin-bottom: 50px;
  }

  .sectionNine {
    padding: 50px 0 50px;
  }

  .sectionMap .cont {
    padding: 20px 20px 20px;
  }

  .sectionTwo .contdiv.row .col-6 {
    width: 100%;
  }

  .sectionTwo .map_about {
    margin-top: 00;
  }

  .sectionTwo .contdiv.row p {
    margin-bottom: 15px;
    text-align: center;
  }

  .banner .cta {
    display: block;
    gap: 20px;
  }

  .banner .cta .custom-btn {
    display: inline-flex;
    gap: 16px;
    min-width: 278px;
    margin: 6px auto;
    text-align: center;
    justify-content: center;
  }

  .sectionTwo .row .col-3 {
    width: 50% !important;
  }

  .sectionFour img {
    height: 250px;
    height: 250px;
  }

  .banner .cont .heading {
    font-size: 42px;
    line-height: 50px;
    max-width: 500px;
    margin: 0 auto 13px;
  }

  #big.owl-theme .owl-prev,
  #big.owl-theme .owl-next {
    background: #fff;
  }

  .banner .cont h4 span {
    width: 48px;
    height: 48px;
  }

  .banner .cont h4 {
    font-size: 23px;
    gap: 8px;
  }

  .banner .custom-btn {
    min-width: 256px;
  }

  .banner .ctabtn {
    display: inline-grid;
    gap: 14px;
  }

  .banner .cont h5 {
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 20px;
    line-height: 25px;
  }

  .banner .cont .heading {
    font-size: 40px;
    line-height: 44px;
  }

  .banner .cont {
    padding-top: 25px;
  }

  header.fixed .header-top {
    margin: 10px 0;
    padding: 0px 0;
  }

  header.fixed .header-top img.logo-img {
    height: 44px;
  }

  .header-top img.logo-img {
    height: 44px;
  }

  .inner_banner {
    height: auto !important;
  }

  .inner_banner.visitor_banner .cont {
    height: 88px !important;
  }

  .sectionSix .set {
    padding: 0 0;
    margin: 15px 0;
  }

  .footer .foot1 {
    margin-top: 20px;
  }

  .sectionTwo .cont .set p br {
    display: none;
  }

  .cta2 {
    padding: 45px 0;
    border-radius: 15px;
    text-align: center;
  }

  .heading {
    font-size: 28px;
    line-height: 34px;
  }

  .sectionSix.sectionEight .set.settop {
    top: 0;
  }

  .sectionTwo .heading {
    font-size: 28px;
    line-height: 34px;
  }

  .video1 img {
    height: 260px;
  }

  .sectionTwo .aboutimg {
    height: 224px;

  }

  .sectionTwo .incont {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .banner .cont .text {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .banner .cont .text {
    margin: 0 auto 10px;
  }

  .sectionMap .cont p {
    padding-right: 0;
  }

  .sectionMap .heading span {
    font-size: 40px;
  }

  .sponsors .heading span {
    font-size: 40px;
    line-height: 40px;
  }

  .footer .contform h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
  }

  .contform {
    margin-bottom: 30px;
    padding: 30px 0;
  }

  .footer_menu {
    margin: 15px auto 0;
  }

  .footer .contform {
    margin: 0px 0 40px;
    padding-bottom: 30px;
  }

  .footer form {
    min-width: 100%;
    display: block;
  }

  .footer-bottom {
    margin-top: 0;
  }

  .footer form button {
    min-width: 100%;
    margin-top: 10px;
  }

  .sponsors .cont {
    padding: 40px 20px;
    right: 0;
  }

  .sponsors .tab-menu ul li a {
    font-size: 18px;
  }

  .sponsors .set {
    height: 140px;
  }

  .sponsors .set img {
    height: 140px;
  }

  .sectionSix12 .tabs li {
    font-size: 16px;
    padding: 16px 16px;
  }

  .sectionTesti .item .col-5,
  .sectionTesti .item .col-7 {
    width: 100%;
  }

  .sectionTesti .cont p {
    position: relative;
  }

  .sectionTesti .owl-dots {
    margin-top: 0;
  }

  .sectionSix .set h4 {
    font-size: 18px;
  }

  .sectionSix.sectionEight .set h3 {
    font-size: 35px;
  }

  .sectionSix.sectionEight .set h3::after {
    top: 45px;
  }

  .inner_banner .cont p {
    line-height: 22px;
  }

  .exhibition_profile1 .rowin_set {
    padding: 12px;
  }

  .sectionThree .cont .set,
  .sectionThree .cont .seth {
    padding: 15px 15px;
    text-align: center;
  }

  .sectionTesti.sectionTesti_exh .owl-dots {
    margin-top: 26px;
  }

  .sectionThree .cont .set.blnone {
    border-left: 1px solid #beb3a8;
  }

  .sectionThree .cont .row div:nth-child(2) .set {
    border-top: none !important;
    border-left: none !important;
  }

  .sectionThree .cont .set div {
    width: 100%;
  }

  .sectionThree .cont .row div:nth-child(4) .set {
    border-left: none !important;
  }

  .sectionThree .cont .row div:nth-child(3) .set {
    border-top: none !important;
  }

  .banner .cont .heading {
    font-size: 34px;
    line-height: 40px;
  }

  .inner_banner .cont .set h2 {
    font-size: 29px;
    line-height: 32px;
  }

  .container {
    padding: 0 12px;
  }

  .barcode {
    width: 130px;
    padding: 10px;
    height: 130px;
    border-radius: 10px;
  }

  .cont2 .set2 h4 {
    font-size: 34px;
  }

  .cont2 .set2 h4 span {
    font-size: 17px;
  }

  .footer .contact p {
    display: block;
  }

  .exhibition_registration .heading_boss .heading {
    font-size: 32px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .exhibition_registration form {
    padding: 25px 18px;
  }

  /* .exhibition_registration {margin-bottom: 40px; padding-top: 120px; padding-bottom: 40px; border-radius: 0 0 20px 20px; } */
  .gallery {
    margin-bottom: 45px;
  }

  .sectionTesti .owl-dots {
    margin-top: 20px;
  }

  .sectionSix.sectionEight .heading_boss {
    margin-bottom: 20px !important;
  }




  .sectionThree .cont .col-8 {
    width: 100%;
  }

  .sectionThree .cont .col-4 {
    flex: 0 0 auto;
    width: 50%;
  }

  .custom-btn.fxdbtn {
    right: -86px;
    bottom: 87px;
    width: 223px;
    height: 48px;
  }

  .exhibition_registration .cta2 {
    position: absolute;
    right: -76px;
    bottom: -67px;
    padding: 0;
    width: 170px;
  }

  .exhibition_registration {
    margin-bottom: 40px;
    padding-top: 44px;
    padding-bottom: 143px;
  }

  .exhibition_registration ul li a {
    width: 50px;
    height: 50px;
  }

  .exhibition_registration ul {
    margin: 35px 0 0;
    gap: 5px;
  }

  .gallery .col-3 {
    width: 100%;
  }

  .sectionMap .cont {
    padding: 30px 0;
  }

  .exhibition_profile1 .col-3 {
    width: 100%;
    margin-top: 20px;
  }

  .exhibition_profile1 .set p {
    min-height: auto;
    line-height: 26px;
    font-size: 15px;
  }

  .exhibition_profile3 ul li {
    padding: 8px 10px;
    min-width: auto;
    min-height: auto;
  }


  .sectionFive_profile .bbttnn {
    display: inline-grid;
    gap: 15px;
  }

  .sectionFive_profile .bbttnn .custom-btn.gapbtn1 {
    margin-left: 0;
  }

  .sectionTwovisttor .heading {
    margin-top: 0;
    text-align: center;
  }

  .profile_banner .cont {
    bottom: 72px;
    height: auto;
  }

  .table-responsive {
    overflow-y: auto;
    margin-bottom: 30px;
  }

  .why_exhibit .table {
    min-width: 740px;
    margin-bottom: 0;
  }

  .why_exhibit .table th {
    padding: 12px 15px;
    font-size: 15px;
  }

  .why_exhibit .table td {
    padding: 10px 15px;
  }

  .why_exhibit h3 {
    font-size: 20px;
  }

  .Sanjhheadig .d-flex img {
    width: 90px;
    height: auto !important;
    min-height: auto;
  }

  .banner .cont1 {
    position: relative;
  }
}



/*************************************************************************
********* @media only screen and (max-width: 480px)  *********************
***********************************************************************/
@media only screen and (max-width: 480px) {
  .Sanjhheadig .d-flex img {
    width: 75px;
    height: auto !important;
    min-height: auto;
  }

  .showmadal .ctabtn .custom-btn {
    margin: 4px 0;
  }

  .showmadal .in {
    padding: 50px 20px 20px;
    max-width: 95%;
  }

  .showmadal img.close_btn {
    height: 40px;
    right: 10px;
    top: 10px;
  }

  .showmadal h2.heading {
    font-size: 24px;
    line-height: 28px;
  }

  .banner video {
    height: 626px;
  }

  .sectionSix.sectionEight1 .cont .col-3 {
    width: 100%;
  }

  .sectionTwovisttor .heading {
    margin-bottom: 20px;
  }

  .profile_banner .cont .inst {
    max-width: 360px;
  }

  .profile_banner .cont .heading {
    font-size: 40px;
  }

  .profile_banner .cont .inst .col-5,
  .profile_banner .cont .inst .col-7 {
    width: 100%;
  }

  .profile_banner .cont .inst .set {
    margin: 16px 0;
  }

  .profile_banner .cont .inst {
    padding: 0 15px;
    height: auto;
    position: relative;
    border-radius: 10px;
  }

  .profile_banner .cont .set h2 {
    font-size: 32px;
  }

  .gallery.videos .col-4 {
    width: 100%;
    margin-bottom: 10px;
  }

  /* .sectionMap .custom-btn {
  min-width: 100%;
} */
  .sectionTwo .cont .set {
    min-height: 120px;
  }

  /* .banner {
    height: auto;
    min-height: auto;
  } */
  .videos .col-6 {
    width: 100%;
  }

  .videos iframe {
    height: 230px;
  }

  .sectionSeven .row .col-6 {
    width: 100%;
  }

  .cont2 .set2 p {
    min-height: auto;
  }

  .sectionSeven.exhibition_profile2 .set h1 {
    font-size: 35px;
  }

  .banner .cont .text {
    padding: 6px 15px;
  }

  .sectionThree .cont .row .col-4,
  .cont2 .col-4 {
    width: 100%;
    text-align: center;
  }

  .banner .ctabtn {
    gap: 10px;
  }

  .banner .cont {
    padding-top: 18px;
  }

  .exhibition_profile2 {
    padding: 50px 0 !important;
    border-radius: 30px 30px 0 0;
  }

  .sectionTesti.sectionTesti_profile {
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .sectionThree.exhibition_profile1 .set .inst h2 {
    margin-top: 20px;
  }

  .cont2 .set2 h4 span {
    font-size: 18px;
  }

  .cont2 .set2 h4 {
    font-size: 32px;
  }

  .sectionThree.exhibition_profile1 .set p {
    min-height: auto;
    height: auto;
  }


  .container {
    padding: 0 12px;
  }

  .banner .cont h5 {
    font-size: 18px;
  }

  .banner .cont h5 span {
    font-size: 15px;
  }

  .container {
    padding: 0 15px;
  }

  .sectionTwo .row .col-3 {
    width: 100% !important;
  }

  #big .item {
    min-height: 600px;
    height: 600px;
  }

  .sectionTwo .set img,
  .sectionTwo .cont .set,
  .sectionTwo .cont .set.img {
    height: auto;
  }

  .sectionTwo .cont .set.img,
  .sectionTwo .set img {
    height: 200px;
  }

  .sectionTwo .cont .set {
    padding: 20px;
    border: 1px solid #8e7f6f !important;
    margin: 5px 0;
    border-radius: 10px;
  }

  .sectionTwo .cont {
    margin-top: 0;
  }

  .sectionSeven ul.lstul {
    display: block;
  }

  .sectionTwo .incont {
    padding-bottom: 20px;
  }

  .sectionThree .set h2 {
    font-size: 34px;
    line-height: 31px;
    margin-top: 0;
  }

  .sectionThree .set p {
    height: auto;
    min-height: auto;
  }

  .sectionThree .cont .row {
    margin: 0 -6px;
  }

  .cta .heading {
    padding: 0;
  }



  .sectionThree .cont .row .rowin {
    padding: 0 6px;
  }

  .inner_banner {
    height: auto;
  }

  .gallery.videos.Media .col-4 {
    width: 100%;
  }

  .sectionThree .set h2 {
    font-size: 27px;
    line-height: 31px;
  }

  .sectionTwo .cont .set p {
    bottom: 0;
    position: relative;

  }

  /* .sectionTesti .cont p {
    margin: 20px 0 0;
    font-size: 24px;
    line-height: 30px;
  } */
  .sectionTesti .item .user {
    margin-top: 50px;
  }

  .sectionTesti .cont h3 {
    font-size: 18px;
  }

  .sectionTesti .item {
    padding: 30px 20px 30px;
    border-radius: 15px;
  }

  .sectionTesti .item img.userimg {
    width: 60px;
    height: 60px;
  }

  .cta .cta2 {
    width: 145px;
  }

  .cta .cta1 {
    top: -100px;
  }

  .sectionFour .main_img {
    display: block;
  }

  .cta {
    padding: 20px 0 110px;
  }

  .sectionFour img {
    width: 100%;
  }

  .sectionFour .cont {
    padding: 30px 15px 12px;
  }

  .footerimg {
    height: 200px;
  }

  .banner .cont h4 {
    font-size: 22px;
    gap: 6px;
  }

  .banner .cont h4 span {
    width: 45px;
    height: 45px;
  }

  .footer_menu li a {
    padding: 6px 14px;
  }

  .cta .cta1 {
    display: none;
  }

  .sectionThree .cont .set {
    display: block;
    border: 1px solid #6552434f !important;
    margin: 5px 0;
    height: auto;
    padding: 20px 15px;
    border-radius: 10px;
  }

  .sectionThree {
    margin: 110px 0 40px;
  }

  .sectionThree .cont .row div:nth-child(4) .set {
    border-left: 1px solid #6552434f !important;
  }

  .incont_img .col-6 {
    width: 100%;
  }

  .video1 {
    position: relative;
    width: 100%;
  }

  .sectionTwo::after {
    height: 92%;
  }

  header.fixed .header-top img.logo-img {
    height: 44px;
  }

  /* .header-top img.logo-img {
    width: 100px;
  } */
  .sectionThree .cont .btnone {
    border-top: navajowhite;
  }

  .sectionThree .cont .row div:nth-child(3) .set,
  .sectionThree .cont .row div:nth-child(2) .set {
    border-top: 1px solid #6552434f !important;
    border-left: 1px solid #6552434f !important;
  }

  .header-top .custom-btn {
    font-size: 15px;
    padding: 12px 12px;
    min-width: 163px;
  }

  .banner .container img {
    max-width: 186px;
    margin-top: -82px;
  }

  .banner .cont .heading {
    font-size: 32px;
    line-height: 36px;
  }

  .header-top .custom-btn {
    display: none;
  }

  .contdiv_main {
    margin: 0 auto 10px;
  }

  .sectionFive {
    margin: 0;
  }

  .sectionSix1.sectionSix12 {
    padding: 0;
  }

  .sectionSeven ul li {
    margin: 5px 0;
  }

  .sectionFourGall img {
    height: 240px;
  }

  .exhibition_profile1 .headingh3 {
    margin-bottom: 15px;
  }

  .sectionTwovisttor .col-8 .col-4 {
    width: 100%;
  }

  .sectionTwovisttor .set {
    padding: 15px;
    border: 1px solid #65524342 !important;
    margin: 5px 0;
    border-radius: 10px;
  }

  .sectionSeven .side_img3 {
    width: 84px;
    top: -58px;
  }

  .sectionTesti .owl-dots .owl-dot.active {
    width: 30px;
  }

  .sectionTesti .owl-dots .owl-dot {
    width: 15px;
  }

  .sectionSix.sectionEight1 .col-4 {
    width: 100%;
  }

  .Sanjhheadig .custom-btn {
    font-size: 15px;
    min-width: 130px;
    padding: 12px 14px;
  }

  .Sanjhheadig .d-flex h3 {
    font-size: 12px;
    max-width: 72px;
    margin: auto;
    min-height: 43px;
  }

}

.iaa_membership {
  display: flex;
  gap: 10px;
}