/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}


@media screen and (max-width:768px) {
  html {
    font-size: 55%;
  }
}



@media screen and (max-width:425px) {
  html {
    font-size: 45%;
  }

}

@media screen and (max-width:320px) {
  html {
    font-size: 35%;
  }

}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  /* line-height: 1.15; 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}


hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --column-gap: 2.13%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}

.full-width {
  width: 100%;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section>.row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  /* padding: 0 1rem; */
}

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

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

body {
  /* line-height: 1.4; */
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  /* font-size: 1rem; */
  /* margin: 0 0 1.4rem; */
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  /* margin: 0 0 1.4rem; */
}

/* Lists */

ul,
ol {
  /* margin: 0 0 1.4rem; */
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* arrow button */

.arrow-icon{
  width: 1.3rem;
  margin-bottom: -0.5rem;    
}
/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%!important;
  font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-image: none;
    background-clip: padding-box;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  padding: 0 20px;
  min-height:50px;
  border-radius:0;
  max-width:100%!important;
   background-color: transparent!important;
  border: none!important;
  border-bottom: 1px solid #6f55b0!important;
  border-radius: 0!important;
    margin:0!important;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



/* custom form */


.EventMax-form_container{
  max-width:700px;
  margin:auto;
  padding:50px;
}
.EventMax-form_container form input[type=text],
.EventMax-form_container form input[type=email], 
.EventMax-form_container form input[type=password],
.EventMax-form_container form input[type=tel],
.EventMax-form_container form input[type=number],
.EventMax-form_container form input[type=file], 
.EventMax-form_container form select, .EventMax-form_container form textarea{
font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-image: none;
    background-clip: padding-box;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  padding: 0 20px;
  min-height:50px;
  border-radius:0;
  max-width:100%!important;
  width:100%!important;
   background-color: transparent!important;
  border: none!important;
  border-bottom: 1px solid #6f55b0!important;
  border-radius: 0!important;
    margin:0!important;
}

.EventMax-form_container form fieldset.form-columns-1 .hs-input, form fieldset.form-columns-1 .hs-input {
    width: 100%;
}

@media(max-width:767px){

.EventMax-form_container form .hs-form-field,form .hs-form-field, .EventMax-form_container form .hs-form-field .hs-input,form .hs-form-field .hs-input{
width:100%!important;
}
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

body.fixed{overflow-y:hidden}
.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__search {
  display: none;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
  width: 100%;
  padding-right: 20.5px;

}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

/* @media (max-width: 767px) {
  .header__container {

    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }
  
  .header__row-1 {
    padding-top: 0;
  }
  
  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
} */

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  max-width: 158px;
  overflow: hidden;

}

@media (max-width: 767px) {
  .header__logo {
    /* margin: 0 auto; */
    /* width: 100%; */
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

/* .header__logo--main {
  padding-top: 1rem;
} */

/* Search bar */

.header__search .hs-search-field__input {
  display: none;
}

.header__search .hs-search-field--open .hs-search-field__input {
  /* border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%; */
  display: none;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;

}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}
@media(max-width:1030px){
.header__logo {
    margin-left: 9px;
}
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */
@media (max-width: 321px) {
  .header__container {
    padding: 0 !important;
  }

  .header__navigation.open,
  .header__language-switcher.open {
    right: 1rem !important;
  }

  .header__logo--main {
    padding: 1rem;
    margin-left: -2rem;
  }

}
@media(max-width:400px){
.menu__submenu .menu__item {
    margin-left: 3rem!important;
  width:70%!important;
}
}
@media (max-width: 990px) {
  .header-button-container .button-wrapper {
    display: none;
  }

  .header__navigation--toggle span i {
    color: white;
    font-size: 2rem;
  }

  .header__row-1 {
    padding-top: 1rem;
  }

/*   .header__container {
    margin: 0 1.25rem !important;
    padding-top: 12.5px !important;
  } */

/*   .header__language-switcher {
    display: none;
    width: 100%;
    padding: 2rem;
  } */
   
  .header__navigation {
/*     display: none; */
/*     width: 100%; */
/*     padding: 2rem; */
     height: 100vh;
    left: 0;
    padding: 23px 10px;
    position: fixed;
    top: 0;
    width: 0%;
    z-index: 9999;
     opacity:0;
     transition: transform 0.8s, width 0.8s, opacity 0.5s;
    transform: translateX(-1000px);
   
  }

  .header__logo {
    margin-left: 10px !important;
  }

  .header__row-2 {
    gap: 2rem !important;
    padding: 10px 0 10px 0rem !important;
    margin-top: -0.4rem;
    width: 3rem;
    float: right;
    border-radius: 0.3rem;
    margin-right: 0.75rem;
    z-index:9999;
    position:relative;
  }

  .header__row-2:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;

  }
  .show-for-sr{display:none;}
  
  .nav-overlay{
    width:0%;
    height:100vh;
    background:rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.1s;
    z-index:999;
    opacity:0;
  }
   .nav-overlay.open{
    width:100%;
     opacity:1;
    transition: opacity 0.1s;
    
  }
  .header__navigation > *{
   transition: all 0.8s;
  }
  .header__navigation.open {

    width: 80%;
    opacity:1;

    transform:translateX(0px);
     transition: transform 0.8s, width 0.8s, opacity 0.5s;
  }

/*   .header__language-switcher.open {
    display: block;
    padding: 23px 10px;
    width: 80%;
    height:100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
  } */

  .header__navigation--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }
  .header__navigation--toggle.hide{
    background-image:url('https://5887777.fs1.hubspotusercontent-na1.net/hubfs/5887777/kickoff-theme/Close.png')
  }
  .header__navigation--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: block;
  }

  .header__language-switcher--toggle.open {
    display: none;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: none;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-size: cover;
    background-image: url(https://5887777.fs1.hubspotusercontent-na1.net/hubfs/5887777/kickoff-theme/icons8-menu.svg);
    height: 25px;
    width: 25px;
    /* background-color: white; */
    margin-right: -5.3rem;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 30px;
    width: 30px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }
}

@media (max-width: 1024px) {
/*   .header__container {
    margin: 0 2rem;
  } */

  .header__row-2 {
    padding: 0;
    gap: 0.2rem;
  }
}

@media (max-width: 1106px) {
  .header__row-2 {
    padding: 0;
    gap: 1rem;
  }
}
.EventMax-footer_menu .hs-menu-wrapper ul {
  gap: 1rem;
  justify-content: center;
  padding: 1.7rem 0;
  list-style: inside;
}

.EventMax-footer_menu .hs-menu-wrapper ul li:nth-child(1) {
  list-style: none;
}

.EventMax-copy-right_container {
  text-align: center;
  margin-bottom: 20px;
}

.EventMax-footer_wrapper {
  text-align: center;
  position: relative;
  margin-top: 15rem;
  padding: 70px;
}

.EventMax-footer_wrapper h2 {
  margin-top: 0.8rem;
  text-transform: capitalize;
}

.EventMax-newsletter-form_container form input[type=text], .EventMax-newsletter-form_container form input[type=email], .EventMax-newsletter-form_container form input[type=password], .EventMax-newsletter-form_container form input[type=tel], .EventMax-newsletter-form_container form input[type=number], .EventMax-newsletter-form_container form input[type=file], .EventMax-newsletter-form_container form select, form textarea {
  background-color: transparent!important;
  border: none!important;
  border-bottom: 1px solid #6f55b0!important;
  border-radius: 0!important;
  max-width: 60%!important;
  height: 50px!important;
  margin-left: 10px!important;
}

.social__links-container {
  margin-top: 3rem;
}

.EventMax-newsletter-form_container {
  position: relative;
}

.EventMax-newsletter-form_container {
  margin-top: 3rem;
}



.EventMax-newsletter-form_container form input[type=email]:focus {
  border-bottom: 1px solid #6f55b0 !important;

}

.overlay {
  position: absolute;
  width: 100%;
  top: 0rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 14, 11, 0.482);
}

.EventMax-footer-section {
  position: absolute;
  top: -145px;
  left: 0;
  padding: 100px 0px 200px 0px;

}

.EventMax-footer_buyticket-wrapper {
  position: relative;

}

.EventMax-footer_buyticket-container {
  text-align: center;
}

.EventMax-footer_buyticket-container .animate__animated {
  opacity: 1;
}

.EventMax-footer_buyticket-container h2 {
  margin: 1rem 0;
}

.EventMax-footer_buyticket-container span,
.EventMax-footer_wrapper span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
}

.EventMax-footer_wrapper h3 {
  text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
  ;
}

.EventMax-footer_buyticket-btn_container {
  text-align: center;
  margin: 3rem 0 1.75rem 0;
}

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-links__icon {
  border-radius: 50%;
  display: inline-flex;
  height: 2.75rem;
  margin: 0 0.35rem;
  position: relative;
  width: 2.75rem;
}

.social-links__icon svg {
  fill: #FFF;
  height: 1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg {
  fill: #FFF;
}



@media (max-width:426px) {
  .EventMax-footer_menu .hs-menu-wrapper ul {
    flex-direction: row;
  }

  .EventMax-newsletter-form_container form input[type=email] {
    margin-left: -7rem;
    width: 50%;
  }
}

@media (max-width:580px) {
  .EventMax-footer_wrapper {
    padding: 25px;
  }
}


@media (max-width:768px) {
  .EventMax-newsletter-form_container form input[type=email] {
    margin-left: -5rem;
    width: 100%;
    width: 80%;
    right: 0px;
  }

  .EventMax-footer_menu .hs-menu-wrapper ul {
    flex-direction: row;
  }

  .EventMax-newsletter-form_container form input[type=submit] {
    right: 0px;
  }

  .EventMax-newsletter-form_container form input[type=email] {
    margin-left: -5rem;
    max-width: 100%;
    width: 80%;
    right: 0px;
  }

  .EventMax-footer_menu .hs-menu-wrapper ul {
    flex-direction: row;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.section-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    position: absolute;
}

.EventMax-banner_button-container,
.heading-title,
.section_bg,
.count-down {
    position: relative;
}

.count-down {
    width: 80%;
    align-items: center;
    display: flex;
    margin-bottom: 3.5rem;
    gap: 1rem;
}

.count_days,
.count_hours,
.count_minutes,
.count_seconds {
    text-align: center;
}

.count_days,
.count_hours,
.count_seconds,
.count_minutes {
    width: 20%;
    border: none;
    background-repeat: no-repeat;
    background-size: cover;
}



.days,
.hours,
.seconds,
.minutes {
    font-weight: 700;
    padding-top: 20px;
    font-size: 64px;
}

.EventMax-count-down_wrapper {
    padding: 250px 20px 100px 20px;
}

.text {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.625em;
    letter-spacing: 2.5px;
}




.heading-title p {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 60px 0;
}

.heading-title h1 {
    line-height: 75px;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
    margin: 0 0 40px 0;
    font-weight: 800;
}

/* section title i.e heading and subheading */

.EventMax-section-title-area{
  margin-bottom:80px;
  position:relative;
}




/* responsive */
@media(max-width:1030px) {
    .EventMax-count-down_wrapper {
        padding: 250px 0 100px 75px;
    }

    .count-down {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
}



@media (max-width:845px) {
    .EventMax-count-down_wrapper {
        padding: 250px 0 100px 40px;
    }
}


@media(max-width: 1024px){
 .heading-title h1{
       font-size: 48px;
   
  }
}

@media(max-width:768px) {

    .count_days,
    .count_hours,
    .count_minutes,
    .count_seconds {
        width: 45%;
        margin-bottom: 38px;
    }
 .heading-title h1{
       font-size: 30px;
    line-height: 40px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/



.EventMax_schedule_banner{
  width:100%;
  min-height:400px;
  position:relative;
  top: -4px;
}

.EventMax_schedule_Text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction:column;
/*   padding: 4rem 30px; */
}

.EventMax_banner_title{
  padding-top: 6rem;
  text-transform:uppercase;
  text-align:center;
  position: relative;
    width: 100%;
}

.EventMax_banner_breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
  gap: 15px;
  width:100%;
}
.EventMax_banner_breadcrumb .hs_cos_wrapper_type_simple_menu{position:relative;width:100%;}

.EventMax_banner_breadcrumb ul{list-style:none;justify-content: center;}

.EventMax_banner_breadcrumb ul li:not(:last-child) a{padding-right: 20px;position:relative;}
.EventMax_banner_breadcrumb ul li:not(:last-child) a::before{
    content:"/";
  right: 7px;
    position: absolute;
      }
@media (max-width:990px) {
    .EventMax_schedule_banner {
        top: -80px;
    }
  .EventMax_banner_breadcrumb .hs_cos_wrapper_type_simple_menu ul{flex-direction: row;}
  .EventMax_banner_title{padding-top:10rem;}
  
}

@media (max-width:446px) {
    .EventMax_banner_title h1 {
        font-size:30px;
    }
}

@media (max-width: 321px){
.EventMax_schedule_banner {
    top: -99px;
}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.EventMax-section-title-area {
	text-align: center;
}

.eventMax_content_container {
	width: 100%;
	display: flex;
	gap: 50px;
}
.eventMax_content_container.left .eventMax_content-image_col{order:1;}
.eventMax_content_container.left .eventMax_content_col.left-col{order:2;}
.eventMax_content_container.left .eventMax_content_col.right-col{order:3;}
.eventMax_content_container.center .eventMax_content-image_col{order:2;}
.eventMax_content_container.center .eventMax_content_col.left-col{order:1;}
.eventMax_content_container.center .eventMax_content_col.right-col{order:3;}
.eventMax_content_container.right .eventMax_content-image_col{order:3;}
.eventMax_content_container.right .eventMax_content_col.left-col{order:1;}
.eventMax_content_container.right .eventMax_content_col.right-col{order:2;}
.eventMax_content_col-card>div {
	margin-bottom: 20px;
}

.eventMax_content_col-card {
	padding: 0 25px;
}

.eventMax_content_col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.eventmax_left_content h1,
.eventmax_left_content h2,
.eventmax_left_content h3,
.eventmax_left_content h4,
.eventmax_left_content h5,
.eventmax_left_content h6 {
	margin-bottom: 20px;
}

.eventMax_content-image_col {
	position: relative;
}

.eventMax_content-image_col .eventMax_content_BG,
.eventMax_content-image_col .eventMax_content_BG img {
	width: 100%;
	position: relative;
	height: 100%;
	object-fit: cover;
}



.eventmax_content_icon svg, .eventmax_content_icon img {
	max-width: 65px;
  max-height: 65px;
}

.eventMax_content-image_col-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	z-index: 10;
	cursor: pointer;
}

.eventMax_content-image_col-play-button svg {
	fill: #fff;
}


@media(max-width:1024px) {
	.eventMax_content_container {
		flex-direction: column
	}

	.eventMax_content-image_col .eventMax_content_BG,
	.eventMax_content-image_col .eventMax_content_BG img {
		max-height: 500px;
	}
  .eventMax_content_col-card{text-align:center!important;}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.hidden {
  display: none;
}

.styles {
  padding-bottom:10px;
  position:relative;
}

.styles:after{ 

  
  position: absolute;
    left: 0;
    top: 26.5px;
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-color: #e7015e;
    border-width: 2px;
    border-style: solid;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
    background: #fff;
    transition: all 0.4s ease;
  
}
.EventMax_reach_us_columns {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  gap:50px;
}

.EventMax_reach_us_columns.mapleft{
flex-direction:row-reverse;
}
.EventMax_content-column {
  width: 50%;
  padding: 0px 10px;
}

.EventMax_headings {
  width: 100%;
}

.EventMax-Venue_title {
  display: flex;
  margin: 20px 0px;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.EventMax_venue_location {
  overflow: hidden;
  width: 100%;
  position: relative;
}


.EventMax_address_columns {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: flex-start;
  margin: 25px 0px;
}

.EventMax_map_column {
  overflow:hidden;
}


.EventMax_ticket-info, .EventMax_programme_details ,.EventMax_address_line {
    line-height: 30px;
} 

.line_space h3{
margin-bottom: 15px;
}



.EventMax_address_line h5{
color:black;
}

.EventMax_address h6{
font-weight:600;
}



.EventMax-Venue_title::before {
  position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    content: "";
    background: #f5f5f5;
    width: 75%;
    height: 2px;

}

#Title1,#Title2,#Title3 {
    padding-right: 36px;
      padding-left: 30px;
}

@media(max-width:992px){

  .EventMax_reach_us_columns {
    flex-wrap:wrap;
    margin-left: auto;
    margin-right: auto;
   
  }
  
  .EventMax_reach_us_columns.mapleft{
flex-direction:column-reverse;
}
  
  .EventMax-Venue_title, .EventMax_address_columns{justify-content:center;}
  
  .EventMax_venue_location {
    width: 100%;
  }

  .EventMax-Venue_title::before {
    position: absolute;
    left: 50%;
    bottom: 0%;
    top: auto;
    content: "";
    width: 35%;
    height: 2px;
    transform: translate(-50%, 0%);
}
  
  .EventMax_address_columns {
    flex-wrap:wrap;
    gap: 2.5rem;
  }

  .EventMax_map_column {
    width:100%;
    overflow:hidden;
  }
  .EventMax_map_column iframe{width:100%;}
  .EventMax_content-column {
    width: 100%;
    text-align:center;
  }

}


@media(max-width:550px){
#Title1, #Title2, #Title3 {
    padding-left: 15px;
    padding-right: 20px;
}

}


@media(max-width:450px){
#Title1, #Title2, #Title3 {
    padding-left:0px;
    padding-right:0px;
}
.EventMax-Venue_title {
 
    gap: 20px;
}

}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/



.EventMax_col-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.EventMax_col-container.columnLeft {
flex-direction:row-reverse;
}

.EventMax_col-01,
.EventMax_col-02 {
  width: 50%;
}

.EventMax_col-01 {
  padding: 0px 50px 70px 15px;
 
}



.EventMax_col-01 h3 {
  margin: 15px 0px;
}

.EventMax_col-02 {
  padding: 0px 15px 0px 15px;

}


.border-left {
  border-left: 3px solid #FF0000;
}

.para {
  margin: 9px 13px 25px 30px;
}

.EventMax-event-contents {
  padding-top: 30px;
  margin-bottom: 20px;
}

.EventMax-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}

@supports not (gap: 50px) {
.EventMax-wrap {
    margin: 25px 0;
  }
}

.EventMax-icon-event {
  width: 23.5%;

}
.EventMax-icon-event img{
  width: 100%;
  max-width:100%;

}

.EventMax-event_outcomes span {
  letter-spacing: 1.4px;
}

@media(max-width: 768px) {
  .EventMax_col-container {
    flex-direction: column;
    gap:50px;
  }
  .EventMax_col-01{}
  .EventMax_col-01,
  .EventMax_col-02 {
    padding: 0px 15px;
    width: 100%;
  }
  .EventMax-wrap {
    flex-direction: column;
}
  .EventMax-icon {
  width: 23.5%;
}
  .EventMax-eventoutcome_button {
    display: flex;
    /* align-items: center; */
    justify-content: center;
}
}

.EventMax-line svg, .EventMax-line img{
 
   max-width: 100px!important;
    width: 100%;
  display: inline-block;
}


.EventMax-section-description {margin-top:25px;}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.EventMax_numb{
  width:100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.EventMax-Numbers{
  display:flex;
  gap: 50px;
  flex-wrap: wrap;
  text-align: left;
  justify-content: center;
}

.counter-numbers{
  padding-bottom:12.5px;
  font-weight: 600;
/*   width: 66%; */
}



span.counter-numbers {
  font-size: 4em;
}
.EventMax_countersymbol{
    color: #fff;
    font-size: 3.75em;
}


@media(min-width:768px) and (max-width:1024px){
  .EventMax-Numbers-container{
  width:45%;
  }
  
}
@media(max-width:767px){
  .EventMax-Numbers-container{
  width:100%;
    text-align:center;
  }
  
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.EventMax-section-title-area {
	text-align: center;
}

.EventMax_speakers {
	position: relative;
	text-align: center;
	margin-bottom: 55px;
	overflow: hidden;
  min-width:300px;
	/*   background: rgba(59, 29, 130, 0.5); */
}

.EventMax_speaker_image {
	width: 255px;
	height: 255px;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	margin: auto auto 20px;


}


.EventMax_speaker_image::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(59, 29, 130, 0.5);
	transition: all 0.4s ease;
	opacity: 0;
	z-index: 1;
  border-radius:50%;
}

.EventMax_speaker_image img {
	width: 100%;
	transition: 0.2s ease-in;
  border-radius:50%;
  height: 100%;
    object-fit: cover;
}

.EventMax_speakers:hover .EventMax_speaker_image img {
	transform: scale(1.2);
}

.EventMax_speakers:hover .EventMax_speaker_image::before {
	opacity: 1;

}

.EventMax_popUp_close {
	top: 15px;
	cursor: pointer;
	position: absolute;
	z-index: 5;
	right: 15px;
	width: 33px;
}

.pop_window-overlay{height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
}

.popup_div {
	background-color: red;
}

.EventMax_pop_icon {
	position: absolute;
	width: 40px;
	bottom: 6rem;
	left: 6.5rem;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
	transform: translateY(25px);
	transition: 0.2s ease-in;
}

.EventMax_speakers:hover .EventMax_pop_icon {
	opacity: 1;
	transform: translateY(0px);
}

.EventMax-eventSpeaker_info {
	display: flex;
	justify-content: center;
	gap: 2rem;
	width: 100%;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
}

.EventMax_pop_window {
	display: none;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.9);
}

.EventMax_pop_window.show {
	display: block;
}


.EventMax_pop_cont {
	display: flex;
	justify-content: center;
	width: 100%;
  max-width:1140px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.EventMax_pop_col1,
.EventMax_pop_col2 {
	width: 50%;
}

.EventMax_pop_col2 {
	background-color: white;
	/*   padding: 60px 40px; */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0px 30px;
  position:relative;
}

.EventMax_pop_col1 img {
	width: 100%;
  height: 100%;
	display: block;
}


.EventMax-pop-social-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	margin-top: 25px;
}

.EventMax-pop-social-icon svg {
	width: 23px;
}

.EventMax_pop_name,
.EventMax_pop_designation {
	padding-bottom: 25px;
}

.EventMax-creative {
	padding-bottom: 30px;
}
.EventMax-creative img {
	max-width: 150px;
}

.EventMax_pop_name {
	font-size: 28px;
	font-weight: 700;
}

.popup_close-div {
	position: relative;
	height: 100%;
	width: 100%;
}

@media(max-width:992px) {
	.EventMax_pop_cont {
		width: 100%;
    max-width:600px;
		padding:50px 25px;
		flex-direction: column;
		align-items: center;
		margin-top: 0rem;
	}
  .EventMax_pop_col1 img{
   max-height:300px;
    object-fit:cover;
  }
  
  .EventMax_pop_name,
.EventMax_pop_designation,.EventMax-creative {
	padding-bottom: 10px;
}
  .EventMax-creative img{
  max-height:100px;
  }

	.EventMax_pop_col1,
	.EventMax_pop_col2 {
		width: 100%;
	}

	.EventMax_pop_window {
		overflow: auto;
	}

	.EventMax_pop_col2 {
		padding: 30px;
	}



}


@media(max-width:390px) {

	.koff_pop_cont {
		width: 100%;
	}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.EventMax_tickect,
.EventMax-get_ticket {
  position: relative;
}




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


.EventMax-pricing_card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  position: relative;
}

.dot-img {
  position: relative;
  top: 4px;
  width: 100%;
}

.dot-img-down {
  position: relative;
  width: 100%;
  top: -6px;
}

.EventMax_pricing_header h2 {
  font-weight: 900;
}

.EventMax_pricing_header h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.dot-img img,
.dot-img-down img {
  width: 100%;
}

.EventMax-porgress_bar {
  width: 100%;
  height: 10px;
  background: #ebedf4;
  margin-bottom: 10px;
}


.EventMax-buy_ticket {
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.EventMax-buy_ticket::before {
  position: absolute;
  left: -14px;
  top: 0;
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  background: #fff;
  border-radius: 50%;
  bottom: 0;
  margin: auto;
}


.EventMax-buy_ticket::after {
  position: absolute;
  left: auto;
  top: 0;
  right: -14px;
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  background: #fff;
  border-radius: 50%;
  bottom: 0;
  margin: auto;
}

.EventMax_pricing_header {
  margin-bottom: 20px;
}

.EventMax-vat_text {
  padding-bottom: 20px;
}

.EventMax_porgress_value,
.EventMax_promotional_code {
  margin-bottom: 25px;
}

.EventMax-contain {
  width: 95%;
  display: flex;
  flex-wrap:wrap;
  gap: 40px;
  margin-left: auto;
  justify-content: center;
  margin-right: auto;
}

@media(max-width:992px) {
  .EventMax-contain {
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }
}

@media(max-width:767px){
  .EventMax-contain {
  gap: 80px;}
}

@supports not (gap: 80px) {
.EventMax-wrap {
    margin: 40px 0;
  }
}
@supports not (gap: 40px) {
.EventMax-wrap {
    margin: 20px 0;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.eventMax-contact-card_container {
   display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    gap: 25px;
}
.eventMax-contact-card_wrapper {
  width:calc(100% / 3.2);
  box-shadow: none;
    border: 1px solid #eeeeee;
    border-radius: 0;
  overflow: hidden;
    position: relative;
    background: #ffffff;
    z-index: 2;
  padding:40px 45px 40px 40px;
}

.eventMax-contact-card_wrapper h3{
margin-bottom: 20px;
}
.eventMax-contact-card_wrapper p{margin-bottom: 10px;}

.contact-card-icon-wrapper {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    color: #ffffff;
    display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    padding: 25px 30px;
}

.contact-card-icon-wrapper span {
    position: relative;
    height: 40px;
    width: 40px;
    display: inline-block;
    object-fit: cover;
    margin-left: -15px;
}
.eventMax-contact-card_wrapper span svg{fill:#fff;}

@media(max-width:990px){
  .eventMax-contact-card_container{flex-direction:column;}
  .eventMax-contact-card_wrapper {width:100%;}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.EventMax-our-sponsors-wrapper {
    text-align: center;
}

.EventMax-our-sponsors-section {
    margin-bottom: 2rem;
}

.EventMax-our-sponsors-list_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 50px 0px
}

.EventMax-our-sponsors-list_wrapper img {
    padding: 10px;
  max-width:175px;
}

.EventMax-our-sponsors-container {
    padding-bottom: 4rem;
    padding-top: 1rem;
}

.EventMax-our-sponsors-container span svg {
    margin: 2rem 0;
}

.EventMax-our-sponsors-container span {
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.EventMax-our-sponsors-container h2{
    text-transform: capitalize;
    margin-top: 0.5rem;
}

.EventMax-sponsors_page_button-container{margin-top:30px;}

.EventMax-our-sponsors_page-title-container{margin:50px 0px;}

@media (max-width:426px){
    
.EventMax-our-sponsors-list_container {

    flex-direction: column;
  justify-content: center;
    align-items: center;
}
  
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.schedule-slot-tabs_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.schedule_slot--button-wrapper button {
    padding: 25px 60px;
    text-align: center;
    border-radius: 0;
}

.speaker_image_container a img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
  object-fit:cover;
}

.speaker_event--details {
    width: 50%;
    padding-right: 3rem;
    display: flex;
    position: relative;
    gap: 2.4rem;
    padding-bottom: 3rem;
}

.speaker_event_main--container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    flex-direction: column;
    margin-top: 2rem;
}

.speaker_event--details:nth-child(even) {
    margin-left: auto;
    padding-left: 2.9rem;
    padding-top: 2.5rem;
}

.speaker_event--details:nth-child(odd) {
    display: flex;
    flex-direction: row-reverse;
    text-align: right;
    padding-top: 2.5rem;

}

.speaker_event--details::before {
    position: absolute;
    bottom: 0;
    height: 100%;
    top: 0;
    margin-top: -1rem;
    content: "";
    width: 2px;
    opacity: 0;
}

.speaker_slot_time {
    margin-bottom: 0.5rem;
}

.active::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    opacity: 1;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;

}

.schedule_slot--button-wrapper button {
    border: none;
}

.schedule_slot--button-wrapper {
    position: relative;

}

.schedule_slot_about_topic-container {
    margin-top: 1.4rem;
}

.speaker_event--details:hover::before {
    opacity: 1;
}

.animated::before {
    position: absolute;
    top: 0px;
    width: 2px;
    left: 50%;
    height: 93%;
    content: "";
}


.speaker_event--details:nth-child(odd)::before {
    right: -2px;
}

.speaker_event--details:nth-child(even)::before {
    left: 0px;
}

.speaker_event--details:nth-child(odd)::after {
    right: -6px;
}

.speaker_event--details:nth-child(even):after {
    left: -4px;
}

.speaker_event--details::after {
    position: absolute;
    width: 10px;
    top:71px;
    height: 10px;
    content: "";
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
}

.speaker_name-wrapper {
    display: flex;
    flex-direction: column;
}

.koff-schedule-slot-button_container {
    text-align: center;
}

/* #list1 {
    display: block;
}

#list2,
#list3,
#list4,
#list5 {
    display: none;
} */


.listhide{
display:none;
}
.animated{
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    
 }


@keyframes fadeInRight {
    0% {
       opacity: 0;
       transform: translateX(20px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
 }
 

@media (max-width:768px) {

    .speaker_event--details::before,
    .animated::before,
    .speaker_event--details::after {
        display: none;
    }

    .speaker_event--details {
        width: 100%;
    }

    .speaker_event--details:nth-child(even) {
        padding-left: 10px;
    }

    .speaker_event--details:nth-child(odd) {
        margin-top: 1.5rem;
        padding-left: 0.7rem;
    }


}


@media (max-width:425px) {

    .schedule_slot--button-wrapper button {
        border-radius: 0;
        padding: 14px 30px;
        text-align: center;
    }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

table {
  border-collapse: collapse;
  width: 100%;
}


td {
  text-align: left;
  padding: 8px;
}

/* 
.EventMax_td2{
  background-color: #FFFFFF;
  border: 1px dashed #e5e5e5;
  border-left:none;
} */

.EventMax_tb_container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color:#ffffff;
}

.EventMax_tb_image {
  width: 12%;
}

.EventMax_tb_image img{
  width: 80px;
  border-radius:50%;
  height:80px;
  object-fit:cover;
}

td{
  padding: 29px;
}

.EventMax_td1 {
  vertical-align:middle;
  min-width:175px;
  color: white;
  border: solid transparent;
}


.EventMax_heading {
    text-align: center;
    margin-bottom: 30px;
}

.EventMax_title h3{
    font-size: 36px;
    margin-bottom: 1.5rem;
}


.EventMax-schedule_button-container.section {
    display: flex;
    align-items: center;
    justify-content: center;
  padding:40px 0 80px;
}
.EventMax-schedule_button-container.section:last-child{padding:40px 0px 0px!important;}

@media(max-width:992px){
  td{
  display:block;
  }
  
  table {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
  .EventMax_tb_container {
    flex-wrap: wrap;
}
  .EventMax_tb_image {
    width: 20%;
    margin-right: auto;
}
   .EventMax_tb_image img {
  height: 80px;
    width: 80px;
  }
  
  .EventMax_td1 {
    padding-top: 36px;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.EventMax-gala-icons {
    display: flex;
    align-items: center;
    gap:2rem;
  padding:1rem 0;
  
}

.EventMax_gala_icons_02,.EventMax_gala_icons_01 {
    display: flex;
    align-items: center;
    justify-content: center;
}


.EventMax_headerIcon svg{
width:60%
}



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

.EventMax_card_footer {
  padding: 2rem 0;
}

.EventMax_card_footer a {
  font-weight: 800;
}

.EventMax-gala_cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 5%);
  border-radius: 5px;
  background: #ffffff;
  /*   transition: transform .2s; */
  transition: all 0.4s ease
}

.EventMax-gala_cards:hover {
  transform: scale(1.007);
  box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 10%);
}


.EventMax-gala-img {
  width: 100%;
}

.EventMax-gala-img img {
  width: 100%;
}



.EventMax-card_container {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-evenly;
}

.EventMax-text {
  padding: 25px 25px 0;
  line-height: 1.5;
}

.EventMax_card_continue {
  display: flex;
  padding-bottom: 30px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


.anchor_text {
  font-weight: 700;
  font-size: 1.5em;
}

.EventMax-News h2 {
  margin-bottom: 15px;
}

@media(max-width:992px) {
  .EventMax-card_container {
    flex-wrap: wrap;
  }

  .EventMax-gala-img {
    width: 70%;
  }

  .EventMax-text {
    padding-left: 1.5rem;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.EventMax-two-column-wrapper {
    background-color: transparent;
    background-image: linear-gradient(100deg, #13007F 61%, #AF0387 100%);
    overflow: hidden;
}

.EventMax-two-column-section {
    min-height: 480px;
}


.EventMax-two-column-container.image-right {
    flex-direction: row-reverse;

}

.EventMax-two-column-container.image-left,
.EventMax-two-column-container.image-right {
    display: flex;
    width: 100%;
}


.EventMax-two-column-text {    width: 50%;   padding-left:80px!important;padding-right:80px!important;
}

.EventMax-two-column-image {
    width: 50%;
    height: auto;
}

.EventMax-two-column-text div h2 {
    margin: 1rem 0 2rem 0;
}

.EventMax-two-column-text div span,
.EventMax-two-column-text div p {
    line-height: 26px;
}

.EventMax-two-column-text div h2 {
    line-height: 42px;
}

.EventMax-two-column-text div span {
    letter-spacing: 1.4px;
    font-weight: 500;
}

.EventMax-eventoutcome_button{margin-top:30px;}

@media (max-width:992px) {

    .EventMax-two-column-container.image-left {
        flex-direction: column;
    }

    .EventMax-two-column-container.image-right {
        flex-direction: column-reverse;
    }

    .EventMax-two-column-text {
        width: 100%;
        padding-right: 70px;
    }

    .EventMax-two-column-image {
        width: 100%;
        padding: 150px 0px 150px 0px;
    }
}
@media (max-width:767px) {
  .EventMax-two-column-text{ padding-left:30px!important;padding-right:30px!important;}

}
.eventmax-twocolumn-text_container.left,
.eventmax-twocolumn-text_container.right {
    display: flex;
}

.eventmax-twocolumn-text_container.left {
    flex-direction: row-reverse;
}

.EventMax-twocolumn-text-wrapper {
    display: flex;
    width: 50%;
    gap: 1rem;
    flex-direction: column;
    padding: 0 2.5rem 0 0;
}
.eventmax-twocolumn-image-container{width:50%;}

.eventmax-twocolumn-image-container img {
    width: 100%;
}

.evnetmax-twocolumn-text_title--contianer h2 {
    margin: 0.5rem 0 1rem 0;
    text-transform: capitalize;

}

.evnetmax-twocolumn-text_title--contianer span {
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

@media (max-width:1024px) {

    .eventmax-twocolumn-text_container.left,
    .eventmax-twocolumn-text_container.right {
        flex-direction: column;
    }

    .eventmax-twocolumn-text_container.left{
        flex-direction: column-reverse;
    }

    .EventMax-twocolumn-text-wrapper,.eventmax-twocolumn-image-container {
        width: 100%;
    }

    .eventmax-twocolumn-image-container img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding-top: 2rem;
    }
}

@media (max-width:426px) {
    .evnetmax-twocolumn-text_title--contianer{
        text-align: center;

    }

}

@media (max-width:768px) {
    .eventmax-twocolumn-image-container img {
        width: 100%;
        padding:2rem 2rem 0 2rem;
    }

}
.eventmax-stay-facilities_wrapper h2 {
    margin: 1rem 0;
    text-transform: capitalize;
}

.eventmax-stay-facilities_wrapper span {
    text-transform: uppercase;
    letter-spacing: 1.4px;
}
.EventMax-section-description span {
text-transform:inherit;
  letter-spacing: inherit;
}
.eventMax-facilities-card_container {
    display: flex;
    text-align: center;
    gap: 10rem;
    width: 100%;
}

.eventMax-facilities-card_wrapper span svg, .eventMax-facilities-card_wrapper span img{
 
    display: inline-block;
   width: 65px;
  height:65px;
}

.eventMax-facilities-card_wrapper h3 {
    padding: 1rem 0;
}

.eventMax-facilities-card_wrapper p {
    padding: 1rem 0;
}

.eventMax-facilities-card_wrapper {
    margin-bottom: 30px;
}

.eventmax-read-more-button_container {
    margin-top: 2rem;
}

@media (max-width:1024px) {
    .eventMax-facilities-card_container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4rem;
        width: 100%;
    }
}
.eventmax-image-gallery-container {
    display: flex;
    gap: 1rem;

}
.eventmax-image-gallery-container .popup-gallery{
width:calc(100% / 4.2);
}

.popup-gallery a img:hover {
    filter: opacity(0.7);
}

.popup-gallery a img {
    transition: filter 0.2s ease-in;
    width: 100%;
    height: 100%;

}

.mfp-arrow:hover {
    background-color: transparent !important;
}

.mfp-container {
    overflow: hidden;
}

.mfp-img {
    padding: 0 !important;
}

/* .mfp-close {
    top: 0 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    text-align: center !important;
} */

.mfp-image-holder .mfp-close {
    position: fixed;
    top: 20px;
    right: 20px;
}

.mfp-image-holder .mfp-close:hover,.mfp-image-holder .mfp-close:focus{
font-family: revert;
  background-color:transparent;
  cursor:pointer
}





.mfp-image-holder button.mfp-close:hover,.mfp-image-holder button.mfp-close:active{
    background-color: transparent !important;
}

img.mfp-img{
    width: 280px;
    height: 448px;


}



@media (max-width:767px) {
    .eventmax-image-gallery-container  {
        flex-direction:column;
      justify-content: center;
    align-items: center;
     
    }
  .eventmax-image-gallery-container .popup-gallery{
width:calc(100% / 2.2);
     min-width:300px;
}

 
}




/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}



@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}