@charset "UTF-8";

/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");

:root {
  --black: #000000;
  --blackTint1: #030303;
  --white: #ffffff;
  --orange: #e5672c;
  --orangeText: #e46925;
  --grey: #808080;
  --greyTint1: #ebedef;
  --green: #a19e1b;
  --greenTint1: #dcdec6;
  --lightYellow: #ececd3;
  --lightGrey: #f2f3f5;
}

/* For WebKit/Blink browsers (Chrome, Safari, Edge, Opera) */
::selection {
  background: var(--orange); /* Desired background color for selected text */
  color: var(--white);    /* Desired text color for selected text */
}

/* For Gecko browsers (Firefox) */
::-moz-selection {
  background: var(--orange); /* Desired background color for selected text */
  color: var(--white);    /* Desired text color for selected text */
}

html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
main {
  flex: 1;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5;
    overflow-x: hidden;
    box-sizing: border-box;
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
}
body.scroll {
    overflow: hidden;
}
main,
header,
section,
footer {
  width: 100%;
}
img {
  max-width: 100%;
  vertical-align: middle;
}
a,
button {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
button {
  background: none;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}
a:hover,
a:focus,
a:visited,
button,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input {
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit] {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

*:-webkit-autofill,
*:-webkit-autofill:hover,
*:-webkit-autofill:focus,
*:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  -webkit-text-fill-color: #000000;
  font-weight: 300 !important;
}

/*Number Field*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea:focus,
input:focus,
select:focus,
a:focus,
button:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

p {
  font-size: 20px;
  color: var(--blackTint1);
}
@media screen and (max-width: 1199px) {
  p {
      font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  p {
      font-size: 16px;
  }
}

ul {
  list-style: disc;
}
ul,
ol {
  padding-left: 20px;
  margin: 0;
}
section ul,
section ol {
  margin-bottom: 20px;
}
section ul li + li,
section ol li + li {
  margin-top: 8px;
}

/*Common Padding*/
.commonPY {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
    .commonPY {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .commonPY {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .commonPY {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.commonPT {
  padding-top: 100px;
}
@media (max-width: 1199px) {
    .commonPT {
        padding-top: 80px;
    }
}
@media (max-width: 991px) {
    .commonPT {
        padding-top: 60px;
    }
}
@media (max-width: 767px) {
    .commonPT {
        padding-top: 50px;
    }
}

.commonPB {
  padding-bottom: 100px;
}
@media (max-width: 1199px) {
    .commonPB {
        padding-bottom: 80px;
    }
}
@media (max-width: 991px) {
    .commonPB {
        padding-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .commonPB {
        padding-bottom: 50px;
    }
}


/*Header*/
.header {
  background-color: var(--orange);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
/*   box-shadow: 0 8px 0 0 var(--green); */
  border-bottom: 8px solid var(--green);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.fix-height {
    width: 100%;
}
.headerInner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
}
.logo {
  width: 100%;
  min-width: 285px;
  max-width: 285px;
}
.logo a {
  display: block;
}

.companyLogos {
  display: flex;
  align-items: center;
  gap: 15px 30px;
  margin-left: 40px;
}
.companyLogos img {
    max-width: 85px;
    max-height: 42px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-left: auto;
}
.navigation ul {
  list-style: none;
  padding-left: 0;
}

.infoLinks ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.infoLinks ul li a {
  color: var(--white);
}
.infoLinks ul li a:hover {
  text-decoration: underline;
}

.menuButton {
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.menuButton span {
  background-color: var(--white);
  width: 100%;
  height: 2px;
}
.navBar.opacity::before {
    content: "";
    background-color: rgba(0,0,0,0.4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 101;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.navbarLinks {
  background-color: var(--green);
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  padding-top: 80px;
  padding-inline: 25px;
  padding-bottom: 40px;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  z-index: 102;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 575px) {
  .navbarLinks {
    width: 280px;
  }
}
.navbarLinks.toggle {
  right: 0; 
  opacity: 1;
  pointer-events: all;
}
.closeButton {
  position: absolute;
  top: 30px;
  right: 20px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}
.navbarLinks ul li {
    font-size: 22px;
}
.navbarLinks ul li + li {
  margin-top: 5px;
}
.navbarLinks ul li a {
  color: var(--white);
}
.navbarLinks ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 1399px) {
  .companyLogos {
      gap: 10px 30px;
      margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .logo {
     min-width: 260px;
     max-width: 260px;
  }
  .companyLogos {
      gap: 10px 15px;
      margin-left: 0;
  }
  .companyLogos img {
      max-width: 80px;
      max-height: 35px;
  }
  .navigation {
      gap: 25px;
  }
  .infoLinks ul {
      gap: 20px;
  }
}
@media (max-width: 991px) {
  .logo {
     min-width: 240px;
     max-width: 240px;
  }
  .infoLinks {
    display: none;
  }
  .companyLogos img {
      max-width: 75px;
      max-height: 32px;
  }
}

@media (max-width: 767px) {
  .header .container {
      max-width: 100%;
  }
  .logo {
     min-width: 170px;
     max-width: 170px;
  }
  .companyLogos {
      gap: 10px;
  }
  .companyLogos img {
      max-width: 60px;
      max-height: 28px;
  }
  .menuButton {
      width: 30px;
  }
}
@media (max-width: 575px) {
  .logo {
     min-width: 240px;
     max-width: 240px;
  }
  .companyLogos {
    display: none;
  }
}


/*Banner*/
.banner {
  position: relative;
  min-height: 500px;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 50px;
}

/* @media screen and (max-height: 800px) {
  .banner {
    height: auto;
    min-height: 700px;
    padding-block: 4rem;
  }
} */

@media screen and (max-width: 1499px) and (max-height: 600px) {  
  .banner {
    height: auto;
    min-height: 500px;
  }
}
@media screen and (max-width: 1499px) and (max-height: 700px) {  
  .banner {
    padding-block: 2rem;
  }
}

.bannerImage {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}
.bannerContent {
  max-width: 78vw;
  margin-left: auto;
  position: static;
}
.bannerContentInner {
  background-color: rgba(255,255,255,0.8);
  position: relative;
  padding: 1.5vw 2vw;
}

/*Diamond Shape*/
.diamondShape {
    clip-path: polygon(
    0px 0px,
    calc(100% - 50px) 0px,
    100% 50px,
    100% 100%,
    50px 100%,
    0px calc(100% - 50px)
  );
}
@media (max-width: 575px) {
  .diamondShape {
    clip-path: polygon(
      0px 0px,
      calc(100% - 35px) 0px,
      100% 35px,
      100% 100%,
      35px 100%,
      0px calc(100% - 35px)
    );  
  }
}
.bannerContentInner h1,
.bannerContentInner .h1 {
  font-size: 125px;
  color: var(--orangeText);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.85;
}
.bannerContentInner .h1 {
  font-size: 155px;
}
.bannerContentInner h1 span,
.bannerContentInner .h1 span {
  font-weight: 500;
  color: var(--green);
}
.bannerContentInner h4 {
  font-size: 42px;
  color: var(--orangeText);
  margin-block: 10px;
}
.bannerContentInner p,
.bannerContentInner h6  {
  font-size: 24px;
  font-weight: 500;
  color: var(--orangeText);
}
.bannerGrid {
  margin-top: 15px;
}

/** **/
.bannerContentInner h1 {
  font-size: 5.35vw;
}
.bannerContentInner h1 span {
  font-weight: 500;
  color: var(--green);
}
.bannerContentInner h4 {
  font-size: 1.85vw;
}
.bannerContentInner p,
.bannerContentInner h6  {
  font-size: 1.1vw;
}
.bannerContentInner p {
    margin: 2rem 0;
}
.meetSpeakers .headingText p {
  width: 100%;
  max-width: 700px;
  margin: 20px auto 0;
}
/** **/

@media (min-width: 1300px) {
  .banner .container,
  .banner .container-lg,
  .banner .container-md,
  .banner .container-sm,
  .banner .container-xl,
  .banner .container-xxl {
      max-width: 100%;
  }
  .diamondShape {
    clip-path: polygon(
      0px 0px,
      calc(100% - 2.5vw) 0px,
      100% 2.5vw,
      100% 100%,
      2.5vw 100%,
      0px calc(100% - 2.5vw)
    );  
  }
  .banner .speakerGrid {
      padding: 1vw;
  }
  .banner .speakerSlider {
      padding-inline: 1.85vw;
  }
  .banner .speakerSlider .item {
      padding-inline: 0.1vw;
  }
  .banner .speakerSlider .slick-arrow {
      width: 1.85vw;
      height: 1.85vw;
  }
  .banner .speakerImg {
      width: 3.8vw;
  }
  .banner .speakerContent {
      width: calc(100% - 3.8vw);
      padding-left: 0.6vw;
  }
  .banner .speakerContent h6 {
      font-size: 1vw;
  }
  .banner .speakerContent h4 {
      font-size: 1.3vw;
  }
  .banner .speakerContent p {
      font-size: 0.9vw;
  }
  .banner .buttonArrow {
      font-size: 1vw;
  }
  .banner .buttonArrow img {
      width: 1.5vw;
  }
}

@media (min-width: 1400px) {
  .bannerContent .row {
      --bs-gutter-x: 2vw;
  }
  .banner .speakerContent h6 {
      font-size: 0.8vw;
  }
  .banner .speakerContent h4 {
      font-size: 1vw;
  }
  .banner .speakerContent p {
      font-size: 0.7vw;
  }
  .banner .buttonArrow {
      font-size: 0.8vw;
      margin-top: 1vw;
  }
  .banner .buttonArrow img {
      width: 1.1vw;
  }
}

@media (max-width: 1699px) {
  .bannerContentInner .h1 {
    font-size: 146px;
  }
}
@media (max-width: 1599px) {
  .bannerContentInner .h1 {
    font-size: 140px;
  }
}
@media (max-width: 1499px) {
  .bannerContentInner .h1 {
    font-size: 123px;
  }

}
@media (max-width: 1399px) {
  .bannerContentInner .h1 {
    font-size: 111px;
  }


  /* */
  .bannerContentInner h1 {
    font-size: 4.4vw;
  }
  .bannerContentInner h4 {
    font-size: 1.55vw;
  }
}
@media (max-width: 1299px) {
  .bannerContentInner .h1 {
    font-size: 103px;
  }


  /* */
  .bannerContent {
    max-width: 870px;
  }
  .bannerContentInner {
      padding-inline: 30px;
  }
  .bannerContentInner h1 {
    font-size: 48px;
  }
  .bannerContentInner h4 {
      font-size: 18px;
  }
  .bannerContentInner p, 
  .bannerContentInner h6 {
      font-size: 14px;
  }
}
@media (max-width: 1199px) {

  .bannerContentInner .h1 {
    font-size: 80px;
  }

  /* */
  .banner {
    height: auto;
    padding-block: 3rem;
  }
  .bannerContent {
    max-width: 660px;
  }
  .bannerContentInner h1 {
    font-size: 65px;
  }
  .bannerContentInner h4 {
    font-size: 24px;
  }
  
}
@media (max-width: 991px) {
  .banner {
    height: auto;
    padding-block: 4rem;
  }
  .bannerContentInner .h1 {
    font-size: 86px;
  }

  /* */
  .bannerImage {
    display: none;
  }
  .bannerContent {
    max-width: 100%;
  }
  .bannerContentInner h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {

  .bannerContentInner .h1 {
    font-size: 60px;
  }


  /* */
  .bannerContentInner h1 {
    font-size: 49px;
  }
  .bannerContentInner h4 {
    font-size: 20px;
  }
  .bannerContentInner p, 
  .bannerContentInner h6 {
      font-size: 15px;
  }
}
@media (max-width: 575px) {
  .bannerContentInner .h1 {
    font-size: 12vw;
  }

  /* */
  .banner .container {
    padding-inline: 3vw;
  }
  .bannerContentInner {
    padding-inline: 5vw;
  }
  .bannerContentInner h1 {
    font-size: 9.4vw;
  }
}

/*Heading Text*/
.headingText >* {
  margin-bottom: 0;
}
.headingText h1 {
  font-size: 55px;
}
.headingText h2 {
  font-size: 45px;
}
.headingText h3 {
  font-size: 40px;
}
.headingText h4 {
  font-size: 35px;
}
.headingText p {
  width: 100%;
  /* max-width: 700px; */
  margin: 20px auto 0;
}
.headingText.left p {
  margin-inline: 0;
}
@media (min-width: 1800px) {
  .headingText h1 {
    font-size: 60px;
  }
  .headingText h2 {
    font-size: 50px;
  }
  .headingText h3 {
    font-size: 45px;
  }
  .headingText h4 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
	.headingText.fs-big h2 {
		font-size: 60px;
	}
}
@media (max-width: 991px) {
  .headingText h1 {
    font-size: 50px;
  }
  .headingText h2 {
    font-size: 40px;
  }
  .headingText h3 {
    font-size: 35px;
  }
  .headingText h4 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .headingText br {
    display: none;
  }
  .headingText h1 {
    font-size: 45px;
  }
  .headingText h2 {
    font-size: 35px;
  }
  .headingText h3 {
    font-size: 30px;
  }
  .headingText h4 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .headingText h1 {
    font-size: 40px;
  }
  .headingText h2 {
    font-size: 30px;
  }
  .headingText h3 {
    font-size: 25px;
  }
  .headingText h4 {
    font-size: 20px;
  }
}
@media (max-width: 479px) {
  .headingText h1 {
    font-size: 35px;
  }
  .headingText h2 {
    font-size: 25px;
  }
  .headingText h3 {
    font-size: 22px;
  }
  .headingText h4 {
    font-size: 18px;
  }
}


.headingText h1,
.headingText h2,
.headingText h3,
.headingText h4 {
  color: var(--orangeText);
  font-weight: 700;
}
.headingText.orange * {
  color: var(--orangeText);
}
.headingText.white * {
  color: var(--white);
}
.headingText.medium h2 {
  font-weight: 500;
}
.headingText.mb-2 {
  margin-bottom: 20px;
}
.headingText.mb-3 {
  margin-bottom: 30px;
}
.headingText.mb-4 {
  margin-bottom: 40px;
}
.headingText.mb-5 {
  margin-bottom: 50px;
}

/*Digital Infrastructure*/
.digitalInfrastructure {
  text-align: center;
}


/*Ticket Message*/
.ticketMessage {
  width: 100%;
  margin: 30px auto 0;
}
.ticketMessageInner {
  background-color: var(--lightYellow);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 5px 30px;
}


/*Accordion*/
.accordion-btn {
    width: 100%;
    background-color: var(--lightYellow);
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    color: var(--blackTint1);
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 10px 20px;
}
.accordion-btn.accordion-btn-travel {
  background-color:#D4D5A8;
}
.accordion-btn span {
    display: block;
}
.accordion-btn .icon {
    position: relative;
    font-style: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.accordion-btn .icon::before {
    content: "\2b";
    font-family: "Font Awesome 7 Free";
    font-size: 16px;
    font-weight: 900;
  }
.accordion-btn.active .icon::before {
    content: "\f068";
}

.accordion-btn.active .priceRegistration {
	display: none;
}
.priceRegistration {
	margin-left: auto;
}
.accordion-content {
    padding-top: 50px;
    text-align: left;
}
.pricingInner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.pricingListBody {
  width: 100%;
  max-width: 80%;
}

.pricingListBody a {
  color: #000;
  text-decoration: underline;
}

.pricingListBody a:hover {
  text-decoration: none;
}

.pricingList {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--blackTint1);
}
.pricingList hr {
  opacity: 1;
  margin: 0 0 30px;
}
.pricingList:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.pricingList + .pricingList {
    margin-top: 30px;
}

.pricingList h5 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.pricingList h6 {
  margin-top: 20px;
}
.pricingList h6:first-of-type {
  margin-top: 0;
}
.pricingList p,
.pricingList li {
    font-size: 16px;
}
.pricingAccordion ul,
.pricingAccordion ol {
    padding-left: 20px;
    margin: 10px 0 0;
    list-style: disc;
}
.pricingAccordion ol {
    list-style: decimal;
}

.pricingListHead {
    display: flex;
    gap: 20px;
}
.pricingListTitle {
    width: calc(100% - 100px);  
}
.pricingListTitle h4 {
    margin-bottom: 5px;
}
.pricingListTitle h6 {
    margin-bottom: 0;
}
.pricingListHead .price {
    width: 100px;
    display: flex;
    text-align: center;
    flex-direction: column;
    font-size: 20px;
}
.pricingListHead .price small {
    display: block;
    font-size: 16px;
    text-decoration: line-through;
}

.pricingListFooter {
  margin-top: 30px;
}

.pricingBlock .pricingFooter p a {
  color: #E5672C;
}

.pricingFooter {
    padding: 50px 0 0;
    text-align: center;
}
.pricingFooter p {
  font-size: 16px;
  margin: 15px 0 0;
}

@media screen and (min-width: 992px) {
	.partnerInner .row {
		--bs-gutter-x: 4rem;
	}
}

@media screen and (max-width: 575px) {
  .accordion-btn {
      font-size: 16px;
      gap: 30px;
  }

  .pricingListTitle {
      width: calc(100% - 70px);
  }
  .pricingListHead .price {
      width: 70px;
      font-size: 18px;
  }
}



@media screen and (max-width: 575px) {
  .accordion-btn {
      font-size: 16px;
      gap: 30px;
  }

  .pricingListTitle {
      width: calc(100% - 70px);
  }
  .pricingListHead .price {
      width: 70px;
      font-size: 18px;
  }
}


/*Partner*/
.partners {
  padding-top: 30px;
}
.partners hr {
    border-width: 1px;
    border-color: var(--orange);
    opacity: 1;
    margin: 3rem 0;
}
.partnerCategory + .partnerCategory {
    margin-top: 70px;
}
.partnerLogos {
    display: flex;
    gap: 40px 70px;
    align-items: flex-start;
}
@media screen and (max-width: 991px) {
	.partnerLogos {
		gap: 25px 50px;
	}
	.mobile-mt-5 {
		margin-top: 80px;
		border-top: 1px solid var(--orange);
		padding-top: 80px;
	}
	.partners hr {
		border: 0;
		margin: 1.5rem 0;
	}
}
.partnerLogo {
    flex: 0 0 auto;
}
.partnerCategory .title {
    font-weight: 500;
    color: var(--blackTint1);
    margin-bottom: 25px;
}

@media screen and (min-width: 992px) {
  .assetsLogos .partnerLogoImg {
      height: 90px;
      max-width: 250px;
      display: flex;
      align-items: center;
  }
}
.partnerLogo img {
    max-height: 65px;
    margin: auto;
    max-width: 130px;
}
@media screen and (min-width: 992px) {
  .assetsLogos .partnerLogo img {
      max-height: 100%;
      max-width: 100%;
  }
}
@media (max-width: 767px) {
  .partnerLogo img {
      max-height: 50px;
      max-width: 120px;
  }
}


/*Falls*/
/* .falls {
  position: relative;
}
.falls img {
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
}
.fallCaption {
  width: 100%;
  max-width: 520px;
  position: absolute;
  top: 50%;
  right: 5%;
  text-align: right;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.fallCaption p {
  color: var(--white);
}
@media screen and (max-width: 991px) {
  .fallCaption {
    max-width: 100%;
    right: 0;
    text-align: center;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 479px) { 
  .falls img {
    height: 300px;
  }
} */


.falls {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 13rem 0;
}
.fallCaption {
  width: 100%;
  max-width: 520px;
  text-align: right;
  margin-left: auto;
}
.fallCaption p {
  color: var(--white);
}
@media (min-width: 1800px) {
  .fallCaption {
    max-width: 620px;
  }
  .fallCaption p {
    font-size: 25px;
  }
}
@media screen and (max-width: 991px) {
  .falls {
    padding: 8rem 0;
  }
  .fallCaption {
    max-width: 100%;
    text-align: center;
    padding-inline: 40px;
  }
}


/*Victoria Falls*/
@media screen and (min-width: 1200px) {
  .victoriaFalls .row {
      --bs-gutter-x: 4rem;
  }
}
@media screen and (min-width: 1300px) { 
  .victoriaFalls .row {
      --bs-gutter-x: 5rem;
  }
}
@media screen and (min-width: 1400px) { 
  .victoriaFalls .row {
      --bs-gutter-x: 6rem;
  }
}

/*Contect*/
.contact p {
  font-size: 15px;
}
.contact p a {justify-content: center;
  color: var(--blackTint1);
}
.contact p a:hover {
  color: var(--orangeText);
  text-decoration: underline;
}

/*Footer*/
.footer {
  position: relative;
  background-color: var(--green);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: auto;
  padding: 0 0 20px;
}
.footer::before {
  content: "";
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footerInner {
  padding-block: 50px;
}
.footerLogo a {
  display: inline-block;
}
.footerLinks ul,
.footerLinks ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 50px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.footerLinks li {
    font-size: 18px;
}
.footerLinks li a {
  color: var(--white);
}
.footerLinks li a:hover {
  text-decoration: underline;
}

.copyRight p {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  margin: 0;
}
.copyRight p a {
  color: var(--white);
}
.copyRight p a:hover {
  text-decoration: underline;
}

#victoria-falls
{
scroll-margin-top: 2rem;

}


@media screen and (max-width: 1399px) {
  .footerLinks ul {
    gap: 10px 40px;
  }
  .footerLinks li {
      font-size: 17px;
  }
  .copyRight p {
      font-size: 13px;
  }
}
@media screen and (max-width: 1199px) {
  .footerLinks li {
      font-size: 16px;
  }
  .copyRight p {
      font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .footerInner {
      padding-block: 40px;
  }
  .footerLogo {
    text-align: center;
    margin-bottom: 20px;
  }
  .footerLogo a {
    max-width: 400px;
  }
  .footerLinks ul {
    gap: 10px 25px;
  }
}
@media screen and (max-width: 767px) {
  .footerLogo a {
    max-width: 350px;
  }
  .footerLinks li {
      font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .footerLogo a {
    max-width: 300px;
  }
}

/*Map*/
.videoWrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    video, iframe {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        vertical-align: middle;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
}

/*Program*/
.program {
    height: 100%;
}
.tab-content-outer .headingText {
    margin-top: 50px;
}

/*Common Tabs*/
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  padding-right: 10rem;
}
.tab-btn {
  color: var(--orangeText);
  font-weight: 500;
  padding: 8px 15px;
}
.tab-btn.active,
.tab-btn:hover {
  background-color: var(--green);
  color: var(--white);
}

.tabs-wrapper {
    position: relative;
}
.tab-content-outer {
  padding-top: 30px;
}
.tab-content-outer .headingText h2 {
  font-size: 85px;
}
@media screen and (max-width: 1399px) {
  .tab-content-outer .headingText h2 {
    font-size: 80px;
  }  
}
@media screen and (max-width: 1299px) {
  .tab-content-outer .headingText h2 {
    font-size: 75px;
  }  
}
@media screen and (max-width: 1199px) {
  .tab-content-outer .headingText h2 {
    font-size: 7.5vw;
  }  
}
@media screen and (max-width: 991px) {
  .tab-btn {
    font-size: 14px;
    padding-inline: 10px;
  }  
}


/*Filter Button*/
.filterButton {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  padding: 8px 10px;
}
.filterIcon {
  width: 25px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
}
.filterIcon span {
  position: relative;
  background-color: var(--white);
  width: 100%;
  height: 1px;
}
.filterIcon span::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  margin: auto 0;
}

.filterBadgesList {
  background-color: var(--white);
  position: relative;
  left: 0;
  width: 100vw;
  display: none;
  margin-left: calc(-50vw + 50%);
  padding: 40px 0;
}
.filterBadgesListInner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.filterBadge {
  background-color: var(--greyTint1);
  font-size: 13px;
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filterBadge.selected {
  background-color: var(--orange);
  color: var(--white);
}
.filterBadge .count {
  background-color: var(--blackTint1);
  width: 18px;
  height: 18px;
  font-size: 12px;
  color: var(--white);
  border-radius: 50%;
}
.filterBadge.selected .count {
  background-color: var(--white);
  color: var(--orange);
}
p.program_subtitle{
  margin-bottom: 0px;
  margin-top: 10px;
}
p.program_desc {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
 p.program_desc {
  font-size: 16px;
}
}
/*Schedule*/
.schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 50px;
}
.schedule-head {
  background-color: var(--greenTint1);
  display: flex;
  align-items: center;
  padding: 5px 15px;
}
.schedule-time {
  width: 180px;
  font-weight: 600;
  white-space: nowrap;
}
.schedule-title {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
span.watchlive a {
  color: #e5672c;
}

.schedule-body {
  padding-top: 15px;
}
.schedule-body > .row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 15px;
}
.schedule-body .diamondShape {
  clip-path: polygon(
    0px 0px,
    calc(100% - 35px) 0px,
    100% 35px,
    100% 100%,
    35px 100%,
    0px calc(100% - 35px)
  );  
}
.schedule-body .speakerGrid {
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .schedule-head {
    flex-wrap: wrap;
  }
  .schedule-title {
      flex: auto;
  }
}


/*Schedule Modal*/
.commonModal .modal-dialog {
    --bs-modal-width: 680px;
}
.commonModal.multiSpeakerModal .modal-dialog {
    --bs-modal-width: 800px;
}
.commonModal .modal-content {
  border-radius: 0;
}
.commonModal .btn-close {
  position: absolute;
  top: 10px;
  right: 50px;
  width: 0.3em;
  height: 0.3em;
  opacity: 1;
  cursor: pointer;
  z-index: 1;
}
.commonModal .modal-body {
  display: flex;
  gap: 10px;
  padding-top: 30px;
  padding-bottom: 20px;
/*   justify-content: center; */
}
.commonModal.multiSpeakerModal .modal-body {
  padding: 30px;
}

.commonModal .speakerGrid {
  width: 200px;
  padding: 0;
  gap: 10px;
}

.commonModal.multiSpeakerModal .speakerGrid {
  width: 100%;
  height: auto;
  gap: 0;
  text-align: left;
}
.commonModal.multiSpeakerModal .speakerGrid + .speakerGrid {
  margin-top: 15px;
}

.commonModal .speakerContent h4 {
    font-size: 14px;
    margin-bottom: 5px;
}
.commonModal .speakerTitle {
    font-size: 13px;
    margin-bottom: 5px;
    padding-right: 4rem;
}
.commonModal .speakerTitle.large {
    font-size: 16px;
}

.commonModal .dateTime {
    font-size: 12px;
    color: var(--blackTint1);
}
.commonModal .speakerContent.speakerInfo {
    width: calc(100% - 200px);
    padding-left: 0;
}

.commonModal.multiSpeakerModal .speakerContent.speakerInfo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.commonModal .speakerContent p {
    margin-bottom: 10px;
}
.formPopUp-cntnt p,
.formPopUp-cntnt li {
  font-size: 14px;
}
.formPopUp-cntnt p {
  margin-bottom: 10px;
}
.formPopUp-cntnt ul,
.formPopUp-cntnt ol {
  margin: 10px 0;
}
.formPopUp-cntnt li {
  margin-bottom: 6px;
}
.commonModal .modalButtons {
    margin-top: auto;
}

@media screen and (max-width: 767px) {
  .commonModal .modal-dialog,
  .commonModal.multiSpeakerModal .modal-dialog {
      --bs-modal-width: 90%;
  }
  .commonModal.multiSpeakerModal .speakerContent.speakerInfo {
      text-align: left;
      margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .commonModal .modal-body {
      flex-wrap: wrap;
  }
  .commonModal .speakerGrid,
  .commonModal .speakerContent.speakerInfo {
      width: 100%;
      text-align: center;
  }
  .commonModal .speakerTitle {
      padding-right: 0;
  }  
}

/*Form*/
.form-group {
    margin-top: 20px;
}
.form-group label {
  margin-bottom: 5px;
}
.form-group .form-control {
    width: 100%;
    height: 45px;
    background-color: transparent;
    font-size: 14px;
    color: var(--blackTint1);
    font-weight: 400;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 5px 15px;
    box-shadow: none;
}
.form-group .form-control[type=file] {
    height: 34px;
    padding-inline: 10px;
}
.form-group .hasDatepicker {
    background-image: url("../images/calendar-icon.svg");
    background-position: 96% center;
    background-size: 18px;
    background-repeat: no-repeat;
}
.form-group select {
    background-image: url("../images/select-arrow.svg");
    background-position: 98% center;
    background-size: 10px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.check_label {
    display: block;
    position: relative;
    padding-left: 24px;
    margin: 6px 0;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
}

.check_label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radioMark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.check_label input:checked~.radioMark {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: var(--white) 0 0 0 2px inset;
}

.checkMark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    border-radius: 0;
    background-color: var(--white);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.check_label input:checked~.checkMark {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: var(--white) 0 0 0 1px inset;
}

.check_label input:checked~.checkMark::after {
    content: "";
    display: block;
    opacity: 1;
    border-top: 0px solid transparent;
    border-left: 0px solid transparent;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotateZ(37deg);
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 9px;
}

/*Button Style*/
.btn {
  background-color: var(--green);
  font-size: 18px;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 0;
}
.btn.large {
  font-size: 22px;
  padding: 10px 30px;
}
.btn.small {
    min-width: 85px;
    font-size: 13px;
    padding: 3px 12px;
}
.btn:hover {
  background-color: var(--orange);
  color: var(--white);
}
.btn.grey {
  background-color: var(--greyTint1);
  color: var(--blackTint1);
}
.btn.grey:hover {
  background-color: var(--orange);
  color: var(--white);
}
.btn.orange {
  background-color: var(--orange);
  color: var(--white);
}
.btn.orange:hover {
  background-color: var(--blackTint1);
  color: var(--white);
}

/*Diamond Shape*/
/* .diamondShape {
  clip-path: polygon(
    0px 0px,
    calc(100% - 50px) 0px,
    100% 50px,
    100% 100%,
    50px 100%,
    0px calc(100% - 50px)
  );  
} */
@media (max-width: 575px) {
  .diamondShape {
    clip-path: polygon(
      0px 0px,
      calc(100% - 35px) 0px,
      100% 35px,
      100% 100%,
      35px 100%,
      0px calc(100% - 35px)
    );  
  }
}

.mediumDiamondShape {
  clip-path: polygon(
    0px 0px,
    calc(100% - 40px) 0px,
    100% 40px,
    100% 100%,
    40px 100%,
    0px calc(100% - 40px)
  );  
}

.smallDiamondShape {
  clip-path: polygon(
    0px 0px,
    calc(100% - 1.5vw) 0px,
    100% 1.5vw,
    100% 100%,
    1.5vw 100%,
    0px calc(100% - 1.5vw)
  );  
}

.form-group .iti.iti--allow-dropdown {
	  width: 100%;
}
.form-group .iti .iti__country-container {
    height: 45px;
}
.form-group .iti li {
    margin: 0;
}
.form-group .iti li.iti__divider {
    padding-bottom: 0;
}


/*About Page*/
.about h4 {
    width: 100%;
    background-color: var(--lightYellow);
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--blackTint1);
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    margin: 0 0 10px;
    padding: 10px 20px;
}
.about {
  margin-bottom: 20px;
}
.about p,
.about li,
.about th,
.about td {
  font-size: 16px;
  color: var(--blackTint1);
}
.about-travel-partner p {
  font-size: 14px;
  margin-top: 10px;
}
.about .about-travel-partner a:hover {
  text-decoration: none;
}
.about a {
  color: var(--black);
}
.about a:hover {
  text-decoration: underline;
}
.about table, 
.about th, 
.about td {
  border: 0;
  border-collapse: collapse;
}
.about table {
  margin-bottom: 1rem;
}
.about tbody tr td {
  padding-right: 30px;
}
@media (max-width: 767px) {
  .about h4 {
     font-size: 18px;
  }
}
@media (max-width: 479px) {
  .about th {
    width: auto;
  }
	
	li.page-item {
    --bs-pagination-padding-x: 0.5rem   !important;
}
	
}

.pricingBlock {
    margin-bottom: 10px;
}

/*Meet Speakers*/
.meetSpeakers {
  background-color: var(--orange);
}
.meetSpeakersInner > .row {
  --bs-gutter-y: 30px;
}

/*Speakers*/
.speakerSlider {
    padding-inline: 35px;
}
.speakerSlider .slick-arrow {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    padding: 0;
    text-indent: -1000%;
    overflow: hidden;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.slick-prev {
  background-image: url("../images/left-arrow.png");
  left: 0;
}
.slick-next {
  background-image: url("../images/right-arrow.png");
  right: 0;
}

.assignSpeakers {
	margin-top: 30px;
}
.multiSpeakers {
  background-color: var(--white);
  padding: 20px;
  height:100%;
}
@media (max-width: 1199px) {
  .multiSpeakers .speakerGrid {
      padding-inline: 0;
  }
}
.speakerGrid {
  height: 100%;
  background-color: var(--white);
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  /* clip-path: polygon(50% 0%, 95% 0, 100% 12%, 100% 70%, 100% 100%, 50% 100%, 5% 100%, 0 88%, 0% 35%, 0 0); */
}
.speakerGrid.greyBg {
  background-color: var(--lightGrey);
}
.speakerGrid.transparent {
  background-color: transparent;
  padding-block: 0;
}
.speakerGrid.center {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}
.speakerTitle {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-right: 3rem;
}
.speakerImg {
  width: 70px;
}
.speakerImg.large {
  width: 130px;
}
.speakerImg img {
  width: 100%;
}
.speakerContent {
  width: calc(100% - 70px);
  padding-left: 10px;
}
.speakerGrid.center .speakerContent {
  width: 100%;
  padding-left: 0;
}
.speakerContent h6 {
  font-size: 11px;
  color: var(--green);
}
.speakerContent h4 {
  font-size: 17px;
  color: var(--blackTint1);
}
.speakerContent.large h4 {
  font-size: 22px;
}
.speakerContent h4 a {
  color: var(--blackTint1);
}
.speakerContent h4 a:hover {
  color: var(--orange);
}
.speakerContent p {
  font-size: 12px;
}
.speakerContent.large p {
  font-size: 15px;
}
.buttonArrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 14px;
  color: var(--green);
  padding: 0;
  margin: 30px 0 0;
}
.buttonArrow img {
  width: 19px;
}
.buttonArrow:hover {
  color: var(--blackTint1);
}


/*Profile*/
.topicDescription {
  background-color: var(--lightYellow);
  padding: 20px 25px;
  margin: 0 0 30px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.topicDescription a {
  color: var(--blackTint1);
}
.topicDescription a:hover {
  color: var(--orangeText);
}
.dateTime {
  font-size: 18px;
  color: var(--orangeText);
  font-weight: 500;
}
.profileImg {
  margin-bottom: 30px;
}

@media (max-width: 1499px) {
  .speakerSlider {
      padding-inline: 25px;
  }
  .speakerSlider .slick-arrow {
      width: 22px;
      height: 22px;
  }
  .speakerImg {
      width: 60px;
  }
  .speakerContent {
      width: calc(100% - 60px);
  }
}
@media (max-width: 1199px) {
  .bannerSpeakers {
      margin-top: 30px;
      max-width: 400px;
      margin-left: auto;
  }
}
@media (max-width: 991px) {
  .bannerSpeakers {
      max-width: 100%;
      padding-inline: 20px;
  }
}

.pagination span.page-link.current {
    background: #e5672c;
    border-color: #e5672c;
	color:#fff;
}
.pagination .page-link
{
color: #e5672c;
}

.pagination .page-item.active .page-link:hover{
    background-color: #e5672c;  
}
.lightGreyBg {
    background-color: var(--greyTint1);
}

.aboutContent iframe {
  width: 100%;
  min-height: 400px;
  margin-top: 15px;
}

.programvideo iframe {
  width: 100%;
  min-height: 420px;
  margin-top: 15px;
}

.topic_img
{
height: 100%;
width: 100%;
}

.meet-speaker-button a:hover
{
background-color: #ffffff;
 color: #ed6737;

}
@media screen and (max-width: 1199px) {

  .topic_img {
  height:auto;
}
}

.commonModal .modalButtons {
	display: flex;
	align-items: center;
	gap: 10px;
}
.commonModal .modalButtons .btn-primary {
	background-color: #818488;
	border-color: #818488;
	margin-left:auto;
}
.commonModal .modalButtons .btn-primary:hover {
	background-color:#e5672c;
	border-color: #e5672c;
}