/* 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 {
  box-sizing: border-box;
}
/*! 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;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

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%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* 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=search],
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;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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

/* 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 */

.header .dnd-section {
  padding: 0;
}

/* Header container */

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

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

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@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;
  margin-right: auto;
  max-width: 200px;
  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 {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


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

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

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* 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: 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: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--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__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

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

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

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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%;
}

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


@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');


@font-face {
    font-family: 'ITC Avant Garde Gothic Pro Demi';
    src: url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-Demi.woff2') format('woff2'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-Demi.woff') format('woff'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-Demi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde Gothic Pro Md';
    src: url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-Md.woff2') format('woff2'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-Md.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic Pro XLt';
    src: url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-XLt.woff2') format('woff2'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/ITCAvantGardeGothicPro-XLt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/SegoeUI-Bold.woff2') format('woff2'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/SegoeUI-Bold.woff') format('woff'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/SegoeUI-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/SegoeUI.woff2') format('woff2'),
        url('https://events.officbeacon.com/hubfs/fonts/SegoeUI.woff') format('woff'),
        url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/fonts/SegoeUI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avant Garde Book BT';
    src: url('../fonts/AvantGardeITCbyBT-Book.woff2') format('woff2'),
        url('../fonts/AvantGardeITCbyBT-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Avant Garde Demi BT';
    src: url('../fonts/AvantGardeITCbyBT-Demi.woff2') format('woff2'),
        url('../fonts/AvantGardeITCbyBT-Demi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Avant Garde Demi Oblique BT';
    src: url('../fonts/AvantGardeITCbyBT-DemiOblique.woff2') format('woff2'),
        url('../fonts/AvantGardeITCbyBT-DemiOblique.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body{overflow-x:hidden;}

ul,li{list-style:none;padding:0;margin:0;}
p{font-size:18px;line-height:24px;}



.bullets li{position:relative;font-size:18px;line-height:24px;padding-bottom:20px;padding-left:20px;}
.bullets li:before{    content: "";position: absolute;background: #425b76;height: 8px;width: 8px;border-radius: 50px;
    top: 8px;left: 0;}

.header__logo--main{padding-top:0;}
.sectionPadding{padding:100px 0;}
.pddtop0{padding-top:0!important;}
.sectionTitle{font-size:40px;line-height:50px;margin-bottom:30px;color:#FFA400;position:relative;display: inline-block;
    font-family: 'ITC Avant Garde Gothic Pro Demi';}
.commanBtn{background: #ffa400;border-radius: 25px;color: #fff;font-size: 18px;font-weight: 700!important; 
  line-height: 24px;padding: 10px 45px;display:inline-block;cursor:pointer;font-family: 'Arimo', sans-serif!important;
  text-transform:uppercase;margin-top:30px;}
.commanBtn:hover{background:#000;color:#fff;font-weight: 700!important; }

.header{background:#12284B!important;padding:20px 0 15px 0;}
.header .header__logo--main{margin:0 auto;}
.header h2{margin:0;color: #FFF;
text-align: center;
font-size: 24px;
font-family: 'ITC Avant Garde Gothic Pro XLt';
font-weight: 300;
line-height: 36px;
letter-spacing: 9.6px;}

.eventListing .eventFilter ul li{flex:inherit;margin:0;margin:0 20px;}
  .eventListing .eventFilter ul li:last-child(){display:none;}
.eventListing .eventFilter ul li a{font-family: 'ITC Avant Garde Gothic Pro Demi';text-transform:uppercase;font-size:24px;line-height:34px;color:rgba(0,0,0,0.40);}
.eventListing .eventFilter{margin-bottom:50px;}
.eventListing .eventFilter ul li.selected a{color:#FFA400;}

.meetusInfo{text-align:center;} 
.meetImg img{height:55px;object-fit:contain;}

.eventListing .eventBox img{width:100%;display: block;border-radius:25px;}
.eventListing .eventBox .eventText .date {font-size:18px;line-height:24px;color:#000;font-weight:700;margin-bottom:5px;}
.eventListing .eventBox .eventText .description{min-height:96px;}
.eventListing .eventBox .eventText .title {font-size:30px;line-height:40px;color:#12274B;font-weight:700;margin-bottom:25px; font-family: 'ITC Avant Garde Gothic Pro Demi';

}
.eventListing .eventBox .eventText p{font-size:16px;line-height:24px;color:#000;font-family: 'Open Sans', sans-serif;margin:0;min-height:72px;}
.eventListing .eventBox .eventText .eventBtn a{background: #ffa400;border-radius: 25px;color: #fff;font-size: 18px;font-weight: 700; 
  line-height: 24px;padding: 10px 45px;display:inline-block}
.eventListing .eventBox .eventText .eventBtn a:hover{background:#000;}
.eventListing .eventBox .eventText{padding:30px 0;}
.eventListing ul{display:flex;align-items:center;flex-wrap:wrap;justify-content:center;}
.eventListing ul li{flex:0 0 50%;max-width:100%;}
.eventListing .eventBox{margin:0 25px 25px}
.eventListing .eventBox .dateSec{display:flex;justify-content: space-between;margin-bottom:0!important;margin-top:30px;}
.eventListing .eventBox .dateSec p{font-family: 'Arimo', sans-serif;margin:0;font-size:24px;line-height:24px;font-weight:700;
  color:#FFA400;text-transform:uppercase;width: 100%;}
.eventListing .eventBox .dateSec p.greenTxt{color:#96C93D;text-transform:capitalize;    width: 100%;
    text-align: right;}


.eventBanner .bannerTitle{font-size:40px;line-height:50px;font-family: 'ITC Avant Garde Gothic Pro Md';color:#12274B;    max-width: 1050px;
    margin: 0 auto;
    text-align: center;margin-bottom:50px;}
.eventBanner p{font-size:24px;line-height:36px;color:#002244;font-weight:400; font-family: 'Segoe UI';    max-width: 800px;
    margin: 0 auto;
    text-align: center;}

.homeBanner {position: relative;}
.homeBanner .bannerImage img{width: 100%; object-fit: cover; display: block;}
.homeBanner .bannerText{position: absolute; bottom: 40px; left: 0; right: 0;}

.homeBanner .bannerText .bannerPara h1{color: #fff; font-size: 25px; font-weight: 500; line-height: 35px; text-align: center; max-width: 60%; margin: 0 auto; margin-bottom: 35px; font-family: 'Avant Garde Book BT'; padding: 10px 0;}
.homeBanner .bannerText p{text-align: center; margin: 0;}
.homeBanner .bannerText p a{background: #FFA400; color: #fff; text-transform: uppercase; padding: 12px 40px; border-radius: 30px; font-weight: 600; font-family: 'Avant Garde Book BT'; font-size: 25px; line-height: 25px;
display:inline-block}

.bannerBox{position:relative;}
.homeBanner .slick-dots{display:none;}

.workvideoSection{background: #1C1E53;text-align:center}
.workvideoSection .videoSlider .videoBox .video iframe{height:200px;}
.workvideoSection .videoSlider .videoBox{margin:0 15px;}
.workvideoSection p.tagline{font-size:18px;line-height:27px;color:#fff;font-family: 'Segoe UI'; text-align:center}

.hmtestimonialsec .textCenter{max-width:1050px;margin:0 auto;text-align: center;}
.hmtestimonialsec{   background: #0868A7;max-width:1366px;margin:0 auto;}
.testiDetail{display:flex;}
.testiDetail li{flex:0 0 25%;max-width:100%;display:flex;}
.testiDetail li .testimonialBox{margin:0 15px;min-height:380px;}
.testiDetail li .testimonialBox > p{min-height:250px;}
.testimonialBox{box-shadow: 0 2px 12px #A0A0A0;padding:15px;background:#2A79BE;border-radius:20px;margin-bottom: 20px;}
.authorInfo {display: flex;align-items: center;padding-top:10px;position:relative;}
.authorInfo .image{flex:0 0 20%;max-width:100%;padding-right: 10px;}
.authorInfo .image img{width: 56px;height: 56px;object-fit: cover;object-position: top center;border-radius:50%;}
.authorInfo .authorTxt{flex:0 0 80%;max-width:100%;}
.authorInfo .authorTxt p{margin:0;font-size:12px;text-align:left;font-family: 'Open Sans', sans-serif;font-weight:400;color:#ffa400}
.testimonialBox p{font-size:18px;color:#fff;line-height:22px;font-family: 'Arimo', sans-serif;text-align:center;font-weight: 700;}
.testimonialBox p:fisrt-child{font-size:16px!important;}
.hmtestimonialsec .slick-slide{padding:0 10px;}
.hmtestimonialsec .sectionTitle:after {
    margin: auto;
    right: 0;
}
.hmtestimonialsec.newwid100{
  max-width:100%;
}
.authorInfo .authorTxt p:last-child{color:#fff;font-style:italic;}
.authorInfo:before{
  content:'';background:url('https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/new_images/line.svg');
      position: absolute;
    height: 3px;
    width: 100%;
    background-size: contain;
    left: 0;
    right: 0;
    margin: auto;top:0;
}
/* .legal-consent-container .hs-richtext{display:none;}
.legal-consent-container > div:nth-child(2){display:none;} */

.legal-consent-container .hs-form-booleancheckbox-display > span, .legal-consent-container .hs-form-booleancheckbox-display > span p{
  margin-left:0!important;font-size:12px;line-height:18px;}


 .eventImage img{width:100%;}
.innerBanner {position:relative;}
/* .innerBanner:before{    content: '';background:rgba(18, 39, 75,0.5);height: 100%;width: 100%;position: absolute;
top: 0;} */
.innerBanner img{width:100%;display:block;height:auto;object-fit:cover;object-position:top;}
.innerBanner .innerBannercontent {position: absolute;top: 0;bottom: 0;margin: auto;display: flex;justify-content: center;
  align-items: center;left:6%;right:6%;max-width:1366px;margin:0 auto;}
.innerBanner .bannerTxt{max-width: 640px;text-align:center}
.innerBanner .bannerTxt p{font-size: 28px;line-height: 35px;color: #fff;font-family: 'ITC Avant Garde Gothic Pro Md';margin: 0;}

.innerBanner .bannerTxt p.tagLine{font-size:16px;margin-bottom:20px;color:#fff;}
/* .innerBanner .bannerTxt h1{font-size: 38px;margin-bottom: 30px;color: #fff;font-weight: 700;} */
/* .innerBanner .innerBannercontent .leftContent {flex: 0 0 55%;max-width:100%;}
.innerBanner .innerBannercontent .rightForm {flex: 0 0 45%;max-width:100%;} */
.innerBanner .bannerTxt .sectionTitle{font-size:40px;line-height:40px;}
.innerBanner  .leftContent{    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
  align-items: center;}
.innerBanner  .rightForm {    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  max-width: 450px;}

.innerBanner  .bannerTxt ul{display:flex;margin-bottom:40px;justify-content: center;}
.innerBanner  .bannerTxt ul li{margin:0 30px;}
.innerBanner  .bannerTxt ul li img{height:auto;object-fit:contain;max-height:120px}

.sportBanner .innerBanner .bannerTxt .vipImg{display:none;}

.innerBanner  .bannerTxt .vipImg{height:30px;width:100%;object-fit:contain;margin-bottom:30px;}

.registerForm{background:#fff;padding:30px;border-radius:20px;box-shadow: 0 10px 20px rgba(0, 0, 0,0.4)}
.registerForm h3{margin:0;}
.registerForm form label{font-size:14px;color:#000;}
.registerForm form .hs-input{font-size:14px;border:none;border-bottom:1px solid #d1d6dc}
.registerForm form .hs-input.hs-fieldtype-textarea{height:48px;font-size:12px;}
.registerForm iframe{min-width: 600px!important;
    height: auto!important;
    width: 100%;
}
.registerForm form .inputs-list>li{margin:0;}
.registerForm form .inputs-list>li label{margin:0;}
.registerForm form .hs-richtext, .registerForm form .hs-richtext p{font-size:14px;}
.registerForm form .hs-button, .registerForm form input[type=submit]{background: #ffa400;border-radius: 25px;color: #fff;font-size: 18px;font-weight: 700; 
  line-height: 24px;padding: 10px 45px;display:inline-block;border:none;margin-top:25px;}
.registerForm  .hs-error-msg{color:#ef6b51;font-size:12px;padding-top:5px;}
.registerForm  .hs-form-field{margin-bottom:20px;}
.registerForm .hs-richtext{margin-bottom:10px;}
.registerForm .hs-richtext p{margin-bottom:10px;}
.registerForm .hs-main-font-element{color: red;}

.meetHostsection{
    background: url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/new_images/Orange%20OB%20Device%20Background.png);
    background-repeat: no-repeat;
    background-position: center center;
  background-size:cover;
}
.hostContent {display: flex;
flex-wrap:wrap;}
.centerJustify{justify-content:center;}
.hostMainBox{display: flex;flex: 0 0 47% ;max-width: 100% ;background:#fff;padding:25px;border-radius:20px;margin:0 15px;}
.meetHostsection .sectionTitle{color:#fff;}
.meetHostsection .textCenter{text-align:center;}
.hostMainBox .hostBox{flex: 0 0 30%;max-width: 100%;margin:0px !important;}
.hostMainBox .hostBox img{width:100%;border-radius:20px;}
.hostMainBox .hostContentBox{flex: 0 0 70%;max-width: 70%;padding-left:30px;}
.hostMainBox  .hostContentBox p{font-size:16px;line-height:27px;margin:0;font-family: 'Inter', sans-serif;}
.hostMainBox svg{height:20px;}
.hostMainBox .hostTxt .name{margin-bottom: 5px;text-align: left;font-size: 22px;color: #12274B;font-weight: bold;
  line-height:30px;font-family: 'Inter', sans-serif;}
.hostMainBox .hostTxt .designation{margin: 0;text-align: left;font-weight: normal;font-family: 'Inter', sans-serif;
font-size:12px;line-height:20px;color:#000000;}
.hostContent.showPopup .popupBox {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}
@media (max-width: 992px)
{
  .hostMainBox .hostContentBox{flex:0 0 70%;max-width:70%;}
  .hostMainBox .hostBox {
    flex: 0 0 30%;max-width: 30%;
}
}


.sidelineGamesec .sectionTitle{
      max-width: 860px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
    display: block;color:#12274B;
}

.sidelineGamesec{margin:0 15px;}
.sidelineGamesec ul{display:flex;flex-wrap:wrap;}
.sidelineGamesec ul li{flex:0 0 20%;max-width:100%;}
.sidelineGamesec ul li .gameBox{text-align:center;margin:0 15px;}
.sidelineGamesec ul li .gameBox .weekTxt{
      color: #ffa400;
    font-family: Arimo,sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    text-transform: uppercase;
}

.sidelineGamesec ul li .gameBox .dateTxt {
   color: #96c93d;
    font-family: Arimo,sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    text-transform: capitalize;
}
.sidelineGamesec ul li .gameBox .title {
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-top: 20px;
    color: #12274B;margin-bottom:0;
    text-transform: capitalize;font-family: 'ITC Avant Garde Gothic Pro Md';
}
.sidelineGamesec ul li .gameBox  img{
  width:100%;
}

.sidelineAbt{background: #002244;}
.sidelineAbt.newsideLineAbt{background: #fff;}
.sidelineAbt.newsideLineAbt .rightImagesec p{color:#000;}
.sidelineAbt .rightImagesec .sectionTitle{color:#FFA400;text-align:left;}
.sidelineAbt .rightImagesec p{color:#fff;}

.askedquestionSec{background:#F4EDE1;}
.askedquestionSec .sectionTitle{color:#000;}
.askedquestionSec .textCenter{text-align:center;}
.askedquestionSec .hs-accordion{display:flex;}
.askedquestionSec .row-fluid{ 
  margin: 0 15px;
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 24.872726440429688px 24.872726440429688px 0px rgba(0, 0, 0, 0.04), 0px 49.745452880859375px 62.181819915771484px 0px rgba(0, 0, 0, 0.10);
}
.askedquestionSec .hs-accordion__item{margin:0;padding-bottom: 50px;position:relative;padding-left:45px;}
.askedquestionSec .hs-accordion__item:before{
  content:'';background:url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/new_images/chat.png);    position: absolute;
    height: 33px;
    width: 33px;
    left: 0;
}
.askedquestionSec .hs-accordion__item button{    font-size: 24px;
    line-height: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;position:relative;padding:0;
}

.askedquestionSec  .hs-accordion__item-content{    padding-left: 0;
  padding-top: 40px;}
.askedquestionSec .hs-accordion__item button:before{
  content:'';
    background: #000;
    height: 2px;
    width: 250px;
    position: absolute;
    bottom: -15px;
  left:-45px;
}
.askedquestionSec .hs-accordion__item .hs-accordion__item-icon{left:inherit;right:inherit;padding-left: 10px;}
.askedquestionSec .hs-accordion__item .hs-accordion__item-icon i{font-size:30px;font-weight:bold;}

.downloadSection{position:relative;background-repeat: no-repeat!important;background-size: cover!important;padding: 160px 0;text-align:center;
min-height: 500px;display: flex;align-items: center;justify-content: center;background-position: center center!important;}
.downloadSection:before{content:'';background:rgba(0,0,0,0.4);position:absolute;top:0;height:100%;width:100%;left:0;}
.downloadSection h3{font-size:40px;color:#fff;line-height:54px;position: relative;font-family: 'ITC Avant Garde Gothic Pro Demi';}
.downloadSection .downloadBtn{position:relative;}

.mapSection{position:relative;}
.mapSection iframe{width:100%;height:550px;}
.mapSection .mapBox{background: #fff;left: 3%;padding: 25px;position: absolute;top: 30%;max-width: 500px;text-align: center;border: 2px solid #000;}
.mapSection .mapBox p{color:#000;margin:0;font-family: 'Inter', sans-serif;font-size:17px;line-height:24px;}
.mapSection .mapBox .eventName{font-size:30px;font-weight:700;color:#000;line-height:40px;text-align:center;margin-bottom:20px;font-family: 'Inter', sans-serif;}


.rightImagesec{position:relative;max-width:1366pc;margin:0 auto;}
.rightImagesec .absImg{position:absolute;    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 670px;}
.rightImagesec .absImg img{width: 100%;
    height: 100%;
  object-fit: cover; clip-path: circle(100% at 0% 56%); object-position: top center;}
.rightImagesec .sectionTitle{
    color: #12274B;
    text-align: center;margin: 0 auto;
    display: block;
    margin-bottom: 30px;}

.lifetimeSec p{    color: #fff;
    position: relative;}
.lifetimeSec .lifeTxt{max-width:780px;margin:0 auto;}

.footer img{width:auto;height:100px;object-fit:contain;}
.footer .isoLogo img{height:60px;object-fit:contain;} 
.footer{background-color: #12284B!important;text-align:center;}
.footer .footerTitle{font-size: 30px;color: #fff;line-height: 50px;font-weight: 700;margin-top: 30px;}
.footer .menu__wrapper{display:flex;flex-direction:column;margin-bottom:40px}
.footer .menu__wrapper li{padding:0;}
.footer .menu__wrapper li a , .footer .menu__wrapper li span{font-size:14px;line-height:20px;text-transform:uppercase;color:#fff;font-weight:700;}
.footer .menu__wrapper li a:hover , .footer .menu__wrapper li span:hover{color:#ffa400;}
.footer .copyright{font-size:14px;line-height:20px;color:#fff;font-weight:400;margin:0}


.footerRow{display: flex;justify-content: space-between;align-items: center;}
.footerRow .footerleft{display: flex;align-items: center;    flex-wrap: wrap;justify-content:space-between;}
.footer .menu__wrapper{text-align:left;}
.footerRow .footerright{min-width: 200px;}
.footerRow .footerleft .copyright{flex: 0 0 100%;max-width: 100%;margin-top:30px;text-align: left;}
.footerNav .menu__wrapper{margin-bottom:0px;padding-left:30px;}
.footerright p{color: #fff !important;font-size: 20px;font-weight: 400;line-height: 50px;margin-bottom: 10px;}

.footer.flowzFooter .logoImage img{height:70px;}



.footer.flowzFooter1 .content-wrapper{max-width:1200px;}
.footer.flowzFooter1{background-color:#0060AD !important;    border-left: 30px solid #FFA400;padding:50px 0px;}

.footer.flowzFooter1 .footerRow .footerleft{flex:0 0 40%;max-width:40%;padding-right: 70px;position:relative;}
.footer.flowzFooter1 .footerRow .footerright{flex: 0 0 60%;max-width: 60%;padding-left: 70px;}

.footer.flowzFooter1 .footerRow .footerleft::after{content:'';background: #FFA400;height: 70%;width: 2px;position: absolute;right: 0;top: 0;bottom: 0;margin: auto;}
.footer.flowzFooter1 .footerRow .footerleft .logoImage{display:flex;align-items:center;}
.footer.flowzFooter1 .footerRow .footerleft .logoImage a{margin:0 !important;}
.footer.flowzFooter1 .footerRow .footerleft .logoImage a img{max-width:100%;}
.footer.flowzFooter1 .footerRow .footerleft .logoImage .isoLogo{display:flex;align-items:center;margin-left:20px;}
.footer.flowzFooter1 .footerRow .footerleft .logoImage .isoLogo img{margin:0 5px;}

.footer.flowzFooter1 .footerRow .footerright img{height:auto;margin: 0 12px 20px 12px;} 
.footer.flowzFooter1 .footerRow .footerright .partnerlogoBox{justify-content: flex-start;flex-wrap: nowrap;}
.footer.flowzFooter1 .footerRow .footerright p{font-size: 15px;line-height: 18px;text-align: left;letter-spacing: 2px;margin-left:12px;}
 
.footer.flowzFooter1 .copyright{text-align: left;margin-top: 50px;}
 
.footer.flowzFooter1 .socialMediaLinks{display: flex;justify-content: flex-start;margin-top: 20px;}
.footer.flowzFooter1 .socialMediaLinks a{margin:0 3px;}
.footer.flowzFooter1 .socialMediaLinks a img{margin-bottom:0px;}


.southHeader img{height:70px;object-fit:contain;margin-bottom:10px;width:100%;}
.southHeader h2{text-transform:uppercase;}

.passwordPage h1{color: #12274b;font-family: ITC Avant Garde Gothic Pro Md;font-size: 40px;
  line-height: 50px;margin: 0 auto 20px;max-width: 1050px;text-align: center;}
.passwordPage p{
      color: #024;
    font-family: Segoe UI;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
  margin-bottom:30px;
}

.headerLogobox{display:flex;justify-content:center;flex-wrap:wrap;}
.headerLogobox img{margin:0 15px 15px;width:auto;width:250px;}
  
.passwordPage .hs-button{background: #ffa400;border-radius: 25px;color: #fff;font-size: 18px;font-weight: 700!important; 
  line-height: 24px;padding: 10px 45px;display:inline-block;cursor:pointer;font-family: 'Arimo', sans-serif!important;
  text-transform:uppercase;margin-top:30px;border:none!important;margin:0 auto!important;}
.passwordPage .hs-button:hover{background:#000;color:#fff;font-weight: 700!important; }
.passwordPage #hs-pwd-widget-password{border-radius:50px;font-size:20px;}

/* .innerBanner.infoBanner img{
  height:inherit;} */
.innerBanner.infoBanner .bannerTxt .sectionTitle{margin-bottom:0;margin-top:30px;}
.innerBanner.infoBanner .bannerTxt{text-align:left;}

.innerBanner.infoBanner .bannerTxt .sectionTitle {
    font-size: 50px;
    line-height: 60px;
}
.rightImagesec.whyinfoSec .absImg{position:relative;width:100%;}
.rightImagesec.whyinfoSec .absImg img{clip-path:inherit;height:auto;}
.rightImagesec.whyinfoSec .sectionTitle{text-align:left;margin-bottom:0;}
.rightImagesec.whyinfoSec .sectionTitle p{margin-top:30px;}
.rightImagesec.whyinfoSec .sectionTitle span{display: block;font-size: 20px;line-height: 24px;}
.rightImagesec.whyinfoSec ul li span{display:block;font-size:16px;line-height:20px;padding-top:10px;}
.rightImagesec.whyinfoSec ul li {font-size:20px;line-height:24px;padding-left:30px;}
.rightImagesec.whyinfoSec ul li:before{background:url(https://20926976.fs1.hubspotusercontent-na1.net/hubfs/20926976/verify-1.png) no-repeat;
  height:20px;width:20px;
  background-size:contain;top:4px;}
.interviewformSection .textCenter{text-align:center;}
.interviewformSection .registerForm {max-width: 700px;margin: 0 auto;}
.popularBox {
 
    border-radius: 20px;
    padding: 20px;
  background:#fff
}
.infopopularsec .sectionTitle{text-align:center;display:block;color:#fff}
.popularBox p{font-size:22px;line-height:30px;color:#12274b;font-weight:bold;font-family:'ITC Avant Garde Gothic Pro Demi';    font-size: 21px;

    margin-bottom: 20px;padding-top:40px;}
.popularBox{position:relative;}
.popularBox:before{    background: url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/Fevicon-2.png) no-repeat;
    content: "";
    position: absolute;
    height: 25px;
    width: 40px;
    left: 20px;
    top: 20px;
    background-size: contain;
    background-repeat: no-repeat;}
.infopopularsec .popularlistBox{display:flex;flex-wrap:wrap;}
.infopopularsec .popularlistBox li{flex:0 0 33.33%;max-width:100%;    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;display:flex;}
.infopopularsec .popularlistBox li .popularBox{margin:0 15px 30px;}
.infopopularsec{background:#ffa400}

.workwheelSec{text-align:center;}
.workwheelImg img{width:100%;object-fit:contain;}

.wheelFlx{display:flex;justify-content: center;flex-wrap:wrap;}
.wheelFlx .workwheelBox{
  flex:0 0 50%;max-width:100%;border-right:1px solid #000;padding:0 10px;}
.wheelFlx .workwheelBox:last-child{border-right:0;}

.hs-content-id-137583636632 .wheelFlx .workwheelBox{
  flex:0 0 100%;max-width:100%;}

.promotrainingSec .popularBox:before{ background: url(https://20926976.fs1.hubspotusercontent-na1.net/hubfs/20926976/verify-1.png) no-repeat;
height:32px;width:32px;}

.infoTestimonial ul{justify-content:center;}

.passwordformsec .form-group{position:relative;margin-bottom:30px;}
.passwordformsec .error{position:absolute;font-size:12px;left:0px;top:100%;}
.passwordformsec .sectionTitle::after{display:none !important;}

.passwordformsec{text-align:center;}

.passwordformsec .form-control{
          border-radius: 50px;
    font-size: 16px;
    height: 50px;
    padding: 10px;
    width: 100%;border:2px solid #d1d6dc;
}
.passwordformsec {
    margin: 0 auto;
    max-width: 700px; 
    padding: 3rem 1.4rem;
}

.passwordformsec .hs-button {
    background: #ffa400;
    border: none!important;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Arimo,sans-serif!important;
    font-size: 18px;
    font-weight: 700!important;
    line-height: 24px;
    margin-top: 30px;
    margin: 0 auto!important;
    padding: 10px 45px;
    text-transform: uppercase;margin-top:30px;
}

.partnerlogoBox{display:flex;flex-wrap:wrap;justify-content:center;}
.partnerlogoBox img{margin:0 15px 30px;}

.thankyouPage{text-align:center;}
.thankyouPage .videoSec{max-width:700px;margin:0 auto;}
.thankyouPage .videoSec iframe{height:450px;}

.thankyouPage .thankyouTxt {background:#f2f2f2;}
.thankyouPage .thankyouTxt p{margin:0;font-size:24px; line-height:30px; font-family:'ITC Avant Garde Gothic Pro Demi';} 
.thankyouPage .thankyouTxt .sectionTitle{font-size:60px;line-height:64px;}
.getreadyfor .sectionTitle{color:#000;text-align:center}
  
.getreadyBox .yellowTxt{
  font-family: Verdana;
    font-size: 18px;
    font-weight: 700;
    line-height: 27.09px;
    text-align: left;
    color: #FFA401;
}
.getreadyBox ul{display:flex; flex-wrap:wrap;}
.getreadyBox ul li{flex:0 0 50%;max-width:100%;}
.getreadyBox ul li .getreadyList{margin:0 15px;}


.flowzHeader1{background: #0073CF !important;    display: flex;align-items: center;justify-content: center;}
.rightSeperator{position:relative;padding-right: 30px;margin-right: 30px;}
.rightSeperator::before{content:'';background: #FFB612;height: 100%;width: 2px;position: absolute;right: 0;top: 0;bottom: 0;}
.dispMobBanner{display:none;}

 
.landingWork{background:url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/landing_work_bg.png) no-repeat; position:relative;background-size:cover;}
.landingWork:before{content: "";
    background: #002245E8;
    opacity: 90%;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;}

.landingworkSec p{color:#fff;     font-size: 24px;
    line-height: 30px;
    font-weight: normal;}

.landingworkSec{
 max-width:680px;
      margin: 0 auto;
    text-align: center;
    position: relative;
}

.landingworkSec .sectionTitle span{display:block;color:#fff;}
.landingworkSec .commanBtn{color:#12284C;}
.landingworkSec .commanBtn:hover{color:#fff;}



@media (min-width: 1901px) and  (max-width: 2500px){ 

  .rightImagesec .absImg{position:relative;}
  .rightImagesec .absImg{
    left:-14%;}

}

 @media (min-width: 1400px) and  (max-width: 1800px){
   
   .innerbannerSlider .leftContent{width:4%!important;}
}

@media (min-width: 1200px) and  (max-width: 1250px){ 

  .testiDetail li .testimonialBox>p{min-height:265px;}
  .testiDetail li .testimonialBox{min-height:445px;}

}

@media (max-width: 1199px) {
   .innerBanner .rightForm{    position: relative;
    right: inherit;
    margin: 0 auto;
    padding: 40px 0;justify-content:center}
  .registerForm iframe{min-width:100%!important;}
  
  .rightImagesec.whyinfoSec .absImg{opacity:1;}
  .rightImagesec.whyinfoSec .row-fluid{flex-wrap:wrap;}
  .rightImagesec.whyinfoSec .absImg img{max-width:600px;margin-bottom:30px;}
  
  .innerBanner .bannerTxt ul li img {
    height: 110px;
    object-fit: contain;}
  .innerBanner .bannerTxt{max-width:450px;}
  .innerBanner .rightForm{max-width:500px;}
  .innerBanner .bannerTxt h1{font-size:34px;}

  .eventListing .eventBox .dateSec{margin-bottom:30px;}
  .header__column{display:none;}
  .eventListing .eventBox .eventText{padding-top:0;}
  .testiDetail{flex-wrap:wrap;}
  .testiDetail li {flex: 0 0 50%;max-width: 100%;}
  .testiDetail li .testimonialBox{margin-bottom:30px;}
  
  .rightImagesec .absImg {left: -4%;width: 524px;}
  .hostMainBox{flex:0 0 100%;margin-bottom:30px;}
  .askedquestionSec .row-fluid{padding:40px;}
  
  .rightImagesec .row-fluid .span6{width:100%;}
  .rightImagesec .absImg{
        left: 0;
    width: 100%;
    right: auto;
    opacity: 0.2;
  }
  .rightImagesec .absImg img{clip-path: inherit;}
  .sidelineGamesec ul li {
    flex: 0 0 50%;
    max-width: 100%;}
  .sidelineGamesec ul li .gameBox{margin:0 15px 30px;}
  
  
  .footer.flowzFooter1 .footerRow .footerleft .logoImage a img{height:auto;}
  .footer.flowzFooter1 .footerRow .footerright .partnerlogoBox{flex-wrap:wrap;}
  .footer.flowzFooter1 .footerRow .footerleft .logoImage{justify-content: center;flex-wrap:wrap;}
  .footer.flowzFooter1 .footerRow .footerleft .logoImage a{margin-bottom: 30px !important;}
}


@media screen and (max-width:992px){
    
  
  
  .getreadyBox ul li{flex:0 0 100%;max-width:100%;}
  .infopopularsec .popularlistBox li{flex:0 0 50%;}
  
  .innerBanner.infoBanner .bannerTxt{max-width:450px;}
  .innerBanner.infoBanner img{height:auto;}
  .innerBanner.infoBanner .leftContent {
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;}
  
  .innerBanner img{height:auto;}
  .innerBanner .rightForm{    position: relative;
    right: inherit;
    margin: 0 auto;
    padding: 40px 0;justify-content:center}
  .innerBanner .leftContent{display:block;top:10%;left:0;right:0;}
  .innerBanner .bannerTxt ul{justify-content: center;}
  .innerBanner .bannerTxt{max-width:100%;}
  .innerBanner .bannerTxt h1{margin:0;}
  .askedquestionSec .hs-accordion{flex-wrap:wrap;}
  .hs-accordion .row-fluid{margin-bottom:30px;}
  
  .sectionTitle{font-size:32px;line-height:44px;}
  .sectionPadding{padding:60px 0;}
  .footerRow .footerleft .logoImage img{max-width:250px;}
  .eventListing .eventBox .dateSec p{font-size:18px;}
  .eventListing .eventBox .eventText .title{font-size:22px;line-height:34px;min-height:80px;}
  
  
  
  .flowzFooter1 .footerRow{flex-direction: column;}
  .footer.flowzFooter1 .footerRow .footerleft .logoImage a{margin-bottom: 0px !important;}
  .footer.flowzFooter1 .footerRow .footerleft:after{height: 2px;width: 100%;bottom: 0;top: inherit;}
  .footer.flowzFooter1 .footerRow .footerleft{padding-right: 0;padding-bottom: 50px;margin-bottom: 50px;}
  .footer.flowzFooter1 .footerRow .footerleft, .footer.flowzFooter1 .footerRow .footerright{flex: 0 0 100%;max-width: 100%;}
  .footer.flowzFooter1 .footerRow .footerright{padding-left:0px;}
}

@media screen and (max-width:767px){
  
   .dispMobBanner{display:block;}
  
  .homeBanner .bannerText{position: relative; bottom: inherit; }
  
  
  .innerBanner .leftContent{position:relative;}
  .innerBanner .bannerTxt p{color:#000;}
  .innerBanner .bannerTxt ul{margin-bottom:0;}
  
  .wheelFlx .workwheelBox{
    flex:0 0 100%;border:none;margin-bottom:30px;
  }
  .downloadSection h3 {
    font-size: 28px;
    line-height: 40px;
  }
  
  .eventBanner .bannerTitle{font-size: 25px;line-height: 35px;margin-bottom:30px;}
  .eventBanner p {font-size: 18px;line-height: 30px;}
  .eventListing .eventBox {margin: 0 10px 25px;}
  .eventListing .eventBox .eventText .title{min-height:inherit;}
  .workvideoSection .span4{width:50%;}
  .workvideoSection .videoBox {margin: 0 10px 20px;}
  .workvideoSection .row-fluid{justify-content: center;}
  .eventListing .eventBox .eventText p{font-size:14px;}
  .commanBtn {font-size: 14px;
    line-height: 24px;padding: 6px 20px;}
  .sectionTitle {
    font-size: 28px;
    line-height: 36px;
}
  
  .footerNav .menu__wrapper{flex-direction: revert;padding: 0;margin-top: 20px;}
  .footer .menu__wrapper li a{white-space:nowrap;}
  .hostMainBox .hostContentBox p {
    font-size: 14px;
    line-height: 24px;}
  .askedquestionSec .hs-accordion__item button {
    font-size: 21px;}
  
 .footerRow, .footerRow .footerleft{flex-direction:column;}
  .footerRow .footerleft{flex-direction:column;}
  .footerTop .groupSec .ourStaff .staffText{text-align:center}
  .footerTop .groupSec .ourStaff .staffText h2{padding-right:0;text-align:center}

  .footerTop .groupSec .ourStaff{flex-direction:column;}
  .footerTop .groupSec .ourStaff .staffText{flex:0 0 100%;max-width:100%}
  .footerTop .groupSec .ourStaff .staffList{flex:0 0 100%;max-width:100%;margin-top:50px;}
  .footerTop .ratings .ratingStar{flex-direction:column;}
  .footerTop .ratings .ratingStar .starText h2{font-size:28px; text-align:center; margin:0;}
    .footerNav .menu__wrapper{flex-direction: revert;padding: 0;margin-top: 20px;}
  .footer .menu__wrapper li a{white-space:nowrap;}
  
  
  
}



@media screen and (max-width:480px){
  
   .footerRow .footerleft{justify-content: center;}
  .footerRow .footerleft .copyright{text-align:center;}
  .footerRow .footerleft{margin-top:30px;}
  
  .footerRow{flex-wrap: wrap;justify-content: center;}
  .innerBanner.infoBanner img {
    height: 600px;
    object-position: 72% 0;
    opacity: 0.2;
}
  
  .innerBanner.infoBanner .bannerTxt .sectionTitle {
    font-size: 40px;
    line-height: 60px;
}
  
   .infopopularsec .popularlistBox li{flex:0 0 100%;}
  
   .sidelineGamesec ul li {
    flex: 0 0 100%;
    max-width: 100%;
}
  .sidelineGamesec ul li .gameBox .title{font-size:20px;line-height:24px;padding:0 15px;}
  
  .innerBanner .bannerTxt p {
    font-size: 20px;
    line-height: 35px;
}
.innerBanner .bannerTxt .sectionTitle {
    font-size: 28px;
    line-height: 40px;
}
  
    .hostMainBox{flex-wrap:wrap;}
    .hostSection .hostContent>div{flex-wrap:wrap;}
.hostSection .hostContent .hostBox img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: contain;
}
  .hostMainBox .hostContentBox{padding-left:0;}
.hostMainBox .hostContentBox{flex:0 0 100%;max-width:100%;padding-top:0;}
  .hostMainBox .hostBox {
    flex: 0 0 100%;max-width: 100%;border-right:0;
}
  .hostMainBox .hostContentBox p{margin-bottom:20px;}
  
  .askedquestionSec .hs-accordion__item .hs-accordion__item-icon i {
    font-size: 20px;
    font-weight: 700;
}
  
  .askedquestionSec .hs-accordion__item button {
    font-size: 16px;
}
  .hs-accordion .row-fluid{margin: 0;
    padding: 20px;margin-bottom:30px;}

  
  .mapSection .mapBox .eventName{font-size:22px;}

  .eventListing .eventFilter ul li a{font-size: 18px;line-height: 34px;}
  .eventListing ul li {flex: 0 0 100%;max-width: 100%;}
 .workvideoSection .span4 {width: 100%;}
  .testiDetail li {flex: 0 0 100%;max-width: 100%;}
  .footerright{order:-1;}
  .footerRow .footerleft{justify-content: center;}
  .footerRow .footerleft .copyright{text-align:center;}
  .footerRow .footerleft{margin-top:30px;}
  
  .footerRow{flex-wrap: wrap;justify-content: center;}


}


.loaderBox{
  position: fixed;
    background: #000000ad;
    height: 100vh;
    left: 0;
    width: 100%;
    top: 0;
    bottom: 0;display: flex;
    align-items: center;
    justify-content: center;z-index:99999999;
}

[class*=loader-] {
  display: inline-block;
  width: 4em;
  height: 4em;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}

.loader-37 {
  border-right: 0.3em solid #fff;
  border-radius: 100%;
  -webkit-animation: loader-37 800ms linear infinite;
          animation: loader-37 800ms linear infinite;
}
.loader-37:before, .loader-37:after {
  content: "";
  width: 2.4em;
  height: 2.4em;
  display: block;
  position: absolute;
  top: calc(50% - 1.2em);
  left: calc(50% - 1.2em);
  border-left: 0.08em solid #fff;
  border-radius: 100%;
  animation: loader-37 400ms linear infinite reverse;color: #fff;
}
.loader-37:after {
  width: 1.8em;
  height: 1.8em;
  top: calc(50% - .9em);
  left: calc(50% - .9em);
  border: 0;
  border-right: 0.05em solid #fff;
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes loader-37 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes loader-37 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
img{width:100%;}

  .dnd-section {
    padding: 0!important;
}
.dnd-section .dnd-column{
  padding: 0!important;}
  .dnd-section>.row-fluid{max-width:100%!important;}
.newFooterFlowz{
  background: linear-gradient(90deg, rgba(233,150,18,1) 0%, rgba(9,9,121,1) 35%) !important; padding: 50px 0px; padding-bottom:30px;}
.newFooterFlowz .newFooterSec .footerSec{display: flex; flex-wrap: wrap; justify-content: center; align-items: center;}
.newFooterFlowz .newFooterSec .footerSec .leftLogos{flex: 0 0 40%; max-width: 100%;}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo{flex: 0 0 40%; max-width:100%;}
.newFooterFlowz .newFooterSec .footerSec .leftLogos ul{display: flex; position: relative;}
.newFooterFlowz .newFooterSec .footerSec .leftLogos ul:before{content:''; position: absolute; background: #EC9810; width: 2px; height: 100%; right: 0;}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo ul{display: flex;justify-content: center; }
.newFooterFlowz .newFooterSec .footerSec .leftLogos ul li{margin-right:30px;}
.newFooterFlowz .newFooterSec .footerSec .leftLogos ul li a img{height: 50px !important;}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo ul li img{height: 50px !important;}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo ul li{margin-right: 30px}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo .partnerTitle{font-size: 15px; line-height: 15px; margin-bottom: 5px; color: #fff; text-align: left; margin-left: 13%;}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo .socialLinks{margin-left: -19%}
.newFooterFlowz .newFooterSec .footerSec .partnerLogo .socialLinks li img{height: 20px !important;}
.newFooterFlowz .copyrightSec p{margin-bottom: 0px; margin-top: 35px; text-align: left; margin-left: 10%; color: #fff; font-size: 15px; line-height: 15px;} 


.landingvideo{background:url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/landing_work_bg.png) no-repeat; position:relative;background-size:cover;}
.landingvideo:before{content: "";
    background: #002245E8;
    opacity: 90%;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;}
.landingvideo .videoBox{background:#fff; padding:15px; max-width:800px; margin:auto;border-radius:30px;}
.landingvideo .videoBox .videoTitle{display:flex; align-items:center; justify-content:center;position:relative;}
.landingvideo .videoBox .videoTitle .volumeText{margin-left:10px;}
.landingvideo .videoBox .videoTitle .volumeText p{margin-bottom:0px; font-size:16px; line-height:18px;color:#fff; font-weight:700;font-family:"Inter", sans-serif;}
.landingvideo .videoBox .volumeImage{height:30px;}
.landingvideo .videoBox .volumeImage img{height:30px; object-fit:contain;position:relative;}
.landingvideo .youtubeBox{position:relative; margin-top:10px;text-align:center;}
.landingvideo .youtubeBox iframe{height:400px;object-fit:cover; width:750px;}
.landingvideo .txtSec{max-width:650px;margin:auto; position:relative;margin-top:30px;text-align:center;}
.landingvideo .txtSec p{font-size:24px; line-height:30px;font-weight:400;color:#fff;text-align:center;}
.landingvideo .commonBtn{background: #FFB219; padding: 20px 50px; border-radius: 50px; color: #12284C; font-size: 28px;line-height: 28px;font-weight: 700;display: inline-block;font-family:"Inter", sans-serif;}

.landingCalendly{background:url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/landing_work_bg.png) no-repeat; position:relative;background-size:cover;}
.landingCalendly:before{content: "";
    background: #002245E8;
    opacity: 90%;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;}

.subSectionTitle{font-size:35px; line-height:45px; color:#002244; text-align:center; font-family: 'ITC Avant Garde Gothic Pro Demi';
margin-bottom:40px; letter-spacing:1.5px}
.exclusiveOfferSec .desc{font-size:25px; line-height:40px; color:#004882; font-family: 'ITC Avant Garde Gothic Pro XLt';
font-weight:600; letter-spacing:1.5px;}
.exclusiveOfferSec .desc span{font-weight:bold; display:block; font-family: 'ITC Avant Garde Gothic Pro Demi';}
.callBtn{text-align:center;}
.offerBtn{margin-bottom: 0; background: #1C85C7; padding: 13px 40px;
    border-radius: 12px; text-align: left; font-size: 24px;line-height: 34px;
    color: #fff; font-family: ITC Avant Garde Gothic Pro Demi; letter-spacing:2px; font-weight:700}


.eventWork2025{padding-bottom:0px !important;}

/* Homepage January 2025 */

@media screen and (min-width:1800px){
  .eventPageJan25 .content-wrapper{max-width:1640px;;}
}


.commanBtn1{background:#ffb612}
.commanBtn1:hover {
    background: #000;
}
.header.headerJan25 .header__logo--main{margin:0px;}
.header.headerJan25 .seperator{background:#FFB612;height:70px;width:2px;margin:0 40px}
.header.headerJan25 .header__container {display: flex;align-items: center;justify-content: center;}
.header.headerJan25 .trustPilot{text-align:center}

.logoTitle{color: #fff;font-family: ITC Avant Garde Gothic Pro XLt;font-size: 24px;font-weight: 300;letter-spacing: 9.6px;line-height: 36px;margin: 0;text-align: center;}

.eventBanner2025{position:relative;overflow:hidden}
.eventBanner2025 .eventImage{display: flex;position:relative;}
.eventBanner2025 .bannerTitle{max-width: 500px;
    position: absolute;top: 15%;top: 20%;left: 8%;
    bottom: inherit;margin: auto;display: flex;flex-direction: column;justify-content: center;align-items: center;}
.eventBanner2025 .bannerTitle a{}
.eventBanner2025 .bannerTitle h1{margin:0px;color:#fff;font-family: ITC Avant Garde Gothic Pro Md;font-size: 70px;font-weight: 700;line-height: 90px;letter-spacing: 0.05em;text-align: center;}
.eventBanner2025 .bannerTagline{position: absolute;left: 0;right: 0;bottom: 0;background: rgb(0 34 68 / 60%);padding:20px;}
.eventBanner2025 .bannerTagline p{font-family:"Inter", sans-serif;font-size: 30px;font-weight: 400;line-height: 45px;
  letter-spacing: 0.05em;text-align: center;color:#fff;margin:0px;max-width:1100px;margin:0 auto;}


.eventWork2025{text-align: center;}
.eventWork2025 .eventTitle{
  color: #004882;text-align:center;display: inline-block;font-family: ITC Avant Garde Gothic Pro Md;font-size: 40px;line-height: 50px;margin-bottom: 30px;position: relative;
}
.eventWork2025 .eventTitle strong{font-family: ITC Avant Garde Gothic Pro Demi;}
.eventWork2025 .desc{max-width:1200px;margin:0 auto;text-align:center;font-family: "Inter", sans-serif;font-size: 25px;font-weight: 400;line-height: 40px;letter-spacing: 0.05em;text-align: center;}
.eventWork2025 .subItemsList{display:flex;margin-bottom:80px;}
.eventWork2025 .subItemsList li{flex:0 0 33.3%;max-width:33.3%;padding: 0 8px;margin-top:25px;}
.eventWork2025 .subItemsList li .subBox{background: #12284C;border-radius:20px;padding:20px;height:100%;text-align:center;}
.eventWork2025 .subItemsList li .subBox .number{font-size: 41px;font-weight: 700;line-height: 48.87px;text-align: center;color: #FFB612;border: 1px solid #ffffff;border-radius: 50%;height: 55px;width: 55px;
    margin-bottom: 12px;display: inline-flex;align-items: center;justify-content: center;}
.eventWork2025 .subItemsList li .subBox p{font-family: "Inter", sans-serif;font-size: 18px;font-weight: 400;line-height: 22px;text-align: left;color:#fff;margin:0px;}
.eventWork2025 .subItemsList li .subBox .title{
  color:#FFB612;letter-spacing:0.5px;
  font-family: ITC Avant Garde Gothic Pro XLt;font-size: 25px;font-weight: 700;line-height: 30px;text-align: center;margin-bottom:15px;
}

.eventPregameBanner2025 .content-wrapper{display:flex;align-items:center;}
.eventPregameBanner2025 .pregameText .bannerTitle{
  color:#fff;max-width: 765px;
  font-family: ITC Avant Garde Gothic Pro Md;font-size: 80px;font-weight: 400;line-height: 90px;letter-spacing: 0.075em;text-align: left;
}
.eventPregameBanner2025 .pregameText p{
  font-family: "Inter", sans-serif;font-size: 32px;font-weight: 400;line-height: 40px;letter-spacing: 0.028em;text-align: left;max-width:425px;
  color:#fff;    margin: 0;
}
.eventPregameBanner2025 .pregameText .bannerTitle strong{font-family:ITC Avant Garde Gothic Pro Demi;}

.logoList{display:flex;flex-wrap:wrap;align-items:center}
.logoList li{flex:0 0 16.6%;max-width:16.6%;padding:0 10px;}
.logoList li img{max-height: 80px;object-fit: contain;}

.eventFiltersJan25.eventListing .teamListing{align-items:inherit;}
.eventFiltersJan25.eventListing .teamListing li {flex: 0 0 33.3%;max-width: 100%;}
.eventFiltersJan25.eventListing .eventBox{text-align:center;margin: 0 8px 25px;}
.eventFiltersJan25.eventListing .eventBox .eventText .title{    
  margin: 0;display:block;color: #0073CF;font-family:ITC Avant Garde Gothic Pro Md;font-size: 30px;font-weight: 400;
  line-height: 42px;text-align: center;letter-spacing: 0.5px;}
.eventFiltersJan25 .commanBtn{background:#ffb612}
.eventFiltersJan25 .commanBtn:hover {background: #000;}
.eventFiltersJan25.eventListing .eventBox{background: #F5F5F5;border-radius: 30px;overflow: hidden;position:relative;}
.eventFiltersJan25.eventListing .eventBox img{border-radius:0px;}
.eventFiltersJan25.eventListing .eventBox .eventText{padding:30px;}
.eventFiltersJan25.eventListing .eventBox .dateSec{background: #0073CF;padding: 10px;margin: 0;color:#fff;}
.eventFiltersJan25.eventListing .eventBox .eventText p{display:none;}
.eventFiltersJan25.eventListing .eventBox .catName{margin: 0;position: absolute;background: #0073CF;color: #fff;font-size: 30px;top: 0;left: 0;padding: 60px 55px 15px 55px;transform: rotate(-45deg) translate(-35px, -60px);}
.eventFiltersJan25.eventListing .dateSec p.greenTxt{display:block;color:#fff;text-align:center;text-transform:uppercase;}

.eventFiltersJan25 form {display: flex;column-gap: 24px;}
.eventFiltersJan25 form select{
  border-color: #12284C;border-radius: 8px;background: #FAFAFA;
  font-family: "Inter", sans-serif;font-size: 28px;font-weight: 400;line-height: 33.88px;letter-spacing: 0.05em;text-align: left;
  appearance:none;background:url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/dropdown.png) no-repeat #FAFAFA;
  background-position: 98% center;background-size: 30px;padding-right:42px;
}
.eventFiltersJan25 input#monthPicker {border:2px solid #12284c !important;}
.eventFiltersJan25 input#monthPicker { 
  border-color: #12284c;border-radius: 8px;background: #FAFAFA;
  font-family: "Inter", sans-serif;font-size: 28px;font-weight: 400;line-height: 33.88px;letter-spacing: 0.05em;text-align: left;
  appearance:none;border: 2px solid red;color: #425b76;    padding: .7rem;
}
.eventFiltersJan25 .applyBtn{background: #12284C;min-width: 250px;
  font-size: 28px;font-weight: 700;line-height: 33.37px;letter-spacing: 0.05em;
} 


.eventCtaJan25{text-align:center;padding-bottom: 50px !important;}
.eventCtaJan25 .title{
  color:#0073CF;font-family: "Inter", sans-serif;font-size: 55px;font-weight: 400;line-height: 75px;text-align: center;
  max-width: 950px;margin: 0 auto;
}
.eventCtaJan25 .commanBtn{padding: 15px 40px;border-radius: 60px;    margin: 0;margin-top: 50px;}

.eventDataListJan25{border-top:4px solid #FFB612;display: flex;justify-content: space-between;align-items: center;}
.eventDataListJan25 li{flex:0 0 25%;max-width:25%;text-align: center;}
.eventDataListJan25 li img{max-height: 120px;object-fit: contain;margin-bottom: 25px;}
.eventDataListJan25 li p{   text-transform:uppercase; margin: 0;color:#002244;font-family:"Inter", sans-serif;font-size: 20px;font-weight: 400;line-height: 25px;text-align: center;}
.eventDataListJan25 li span{color:#002244;font-size: 40px;font-weight: 800;line-height: 25px;text-align: center;}

.footerJan25{padding:50px 0px;}
.footerJan25 .footerRow .footerleft{text-align:left;flex: 0 0 70%;max-width: 70%;}
.footerJan25 .footerRow .footerleft .logoImage a img{height:80px;object-fit:contain;object-position:left;margin-bottom:30px;}
.footerJan25 .footerRow .isoLogo img{height:auto;}

.footerJan25 .footerright .footLabel{margin-bottom:8px;font-family: "Inter";font-size: 24px;font-weight: 400;line-height: 29.05px;text-align: left;}
.footerJan25 .footerright .footerNav ul{flex-direction: column;text-align: left;}
.footerJan25 .footerright .footerNav ul li a{font-family: "Inter";color:#fff;font-size: 18px;font-weight: 400;line-height: 22px;text-align: left;position:relative;padding-left:25px;}
.footerJan25 .footerright .footerNav ul li a::before{
  content: "";background:url(https://23629617.fs1.hubspotusercontent-na1.net/hubfs/23629617/arrow-1.png) no-repeat;
  width: 15px;height: 18px;display: block;position: absolute;left: 0;top: 4px;background-size: contain;
}
.footerJan25 .footerright .mt30{margin-top:30px;}
.footerJan25 .footerright {display:flex;flex: 0 0 30%;max-width: 30%;justify-content:space-between;}
.footerJan25 .footerright .footerContact{font-family: "Inter";font-size: 18px;font-weight: 400;line-height: 24px;text-align: left;color: #fff;padding-left:30px;}


.listenToCustomersJan25{background: #12284C;padding:70px 0px;text-align:center;}


.networkeventSec img{display:flex;}
.networkeventSec{margin:20px 0px;}


.darkBg .hmtestimonialsec {background: #12284c;}
.darkBg .testimonialBox{background: #12284c;box-shadow: 0 2px 12px #ffffff21;}

@media screen and (max-width:1800px){
  .eventWork2025 .subItemsList li .subBox .number{transform: scale(0.8);}
  .eventWork2025 .subItemsList li .subBox .title{font-size: 22px;letter-spacing: 0.5px;font-weight: 700;line-height: 30px;}
  .eventWork2025 .subItemsList li .subBox p{font-size: 16px;font-weight: 300;line-height: 24px;}
  .eventWork2025 .subItemsList{margin-bottom: 60px;}
  
  .eventPregameBanner2025 .pregameText p{line-height: 38px;font-size: 30px;    max-width: 400px;}
  .eventPregameBanner2025 .pregameText .bannerTitle{    font-size: 72px;line-height: 80px;}
  
  .eventFiltersJan25 form select, .eventFiltersJan25 input#monthPicker{font-size: 22px;line-height: 30px;}
  .eventFiltersJan25 .applyBtn{font-size: 22px;}
  .eventFiltersJan25.eventListing .dateSec p.greenTxt{font-size: 22px;line-height: 30px;}
  .eventFiltersJan25.eventListing .eventBox .eventText .title{font-size: 26px;line-height: 36px;}
  .eventFiltersJan25.eventListing .eventBox .catName{min-width:200px;font-size:22px;padding-top:50px;}
  .sayBox .testimonialBox p{min-height:50px;}
 
}

@media screen and (max-width:1600px){
  .eventBanner2025 .bannerTitle{max-width:450px;}
  .eventBanner2025 .bannerTitle h1{font-size: 60px;line-height: 77px;}
  .eventBanner2025 .bannerTagline p{font-size: 26px;line-height: 38px;max-width: 1000px;}

  .eventCtaJan25 .title{max-width: 950px;}
}
@media screen and (max-width:1400px){
.offerBtn{padding: 13px 23px !important; font-size:16px !important;}
  .sectionPadding{padding:80px 0px;}
}
@media screen and (max-width:1199px){
  .eventPageJan25 .sectionPadding{padding:40px 0px;}  
  
  .eventBanner2025 .bannerTitle{max-width:350px;}
  .eventBanner2025 .bannerTitle h1{font-size: 40px;line-height: 50px;}
  .eventBanner2025 .bannerTagline p{font-size: 18px;line-height: 24px;max-width: 650px;}
  
  
  .eventPregameBanner2025 {padding:50px 0px;}
  .eventPregameBanner2025 .pregameText .bannerTitle {font-size: 52px;line-height: 62px;}
  .eventPregameBanner2025 .pregameText p {font-size: 22px;line-height: 30px;max-width: 300px;margin-top: 10px;}
  
  .eventFiltersJan25.eventListing .dateSec p.greenTxt {font-size: 20px;line-height: 26px;}
  .eventFiltersJan25.eventListing .eventBox .eventText .title {font-size: 22px;line-height: 30px;min-height: inherit;}
  
  .eventCtaJan25 .title {font-size: 38px;line-height: 50px;max-width: 800px;}
  
  .eventDataListJan25 li img{max-height:65px;}
  .eventDataListJan25 li span{font-size:30px;}
  .eventDataListJan25 li p{font-size:18px;}
    
  .footerJan25 .footerRow .footerleft{flex: 0 0 65%;max-width: 65%;}
  .footerJan25 .footerright {flex: 0 0 35%;max-width: 35%;}
  .footerJan25 .footerright .footerNav ul li a{font-size: 16px;line-height: 20px;}
  .footerJan25 .footerright .footLabel{font-size: 20px;line-height: 28px;}
  .footerJan25 .footerright .footerContact{font-size: 16px;line-height: 20px;}
  .subSectionTitle{margin-bottom:30px !important;}
  .vistagebookSec{padding:40px 0px !important;}
  .chairaskSec{padding:40px 0px !important;}
  .testimonialBox{padding: 30px 15px !important;margin-bottom: 0px;}
  .offerBtn{padding:13px !important; font-size:13px !important; text-align:center;}
}

@media screen and (max-width:991px){
    
  .eventBanner2025 .bannerTitle {max-width: 250px;}
  .eventBanner2025 .bannerTitle h1{font-size: 30px;line-height: 40px;}
  .eventBanner2025 .bannerTagline p{font-size: 16px;line-height: 22px;max-width: 550px;}
  .eventBanner2025 .commanBtn{margin-top: 20px;padding: 10px 20px;font-size: 16px;line-height: 22px;}
   
  .eventWork2025 .eventTitle{font-size: 32px;line-height: 42px;margin-bottom: 20px;}
  .eventWork2025 .desc{font-size: 22px;line-height: 32px;}
  .eventWork2025 .subItemsList li .subBox .number {transform: scale(1);height: 45px;width: 45px;font-size: 22px;}
  .eventWork2025 .subItemsList li .subBox .title {font-size: 20px;line-height: 30px;}
  .eventWork2025 .subItemsList li .subBox p {font-size: 14px;line-height: 20px;}
  .eventWork2025 .commanBtn{margin-top: 10px;}
  
  .eventPregameBanner2025 .pregameText .bannerTitle {font-size: 42px;line-height: 52px;}
  .eventPregameBanner2025 .pregameText p {font-size: 20px;line-height: 26px;max-width: 250px;}
  
  .logoList{justify-content: center;}
  .logoList li {flex: 0 0 25%;max-width: 25%;padding: 10px 15px;}
  .logoList li img {max-height: 70px;}
  
  .eventFiltersJan25 form select , .eventFiltersJan25 input#monthPicker{font-size: 18px;line-height: 22px;padding: 10px;height: auto;min-height: auto;}
  .eventFiltersJan25 .applyBtn {font-size: 20px;height: auto;padding: 10px 35px;min-width: auto;}
  .eventFiltersJan25.eventListing .teamListing li{flex: 0 0 50%;max-width: 100%;}
  .eventFiltersJan25.eventListing .eventBox .catName {font-size: 18px;min-width: 180px;padding-top: 40px;padding-bottom: 10px;transform: rotate(-45deg) translate(-35px, -50px); }
  
  .eventCtaJan25 .title {font-size: 32px;line-height: 42px;max-width: 650px;}
  
  .eventDataListJan25 li img {max-height: 50px;margin-bottom: 15px;}
  
  .footerJan25 .footerRow .isoLogo img{max-width: 100%;padding-right: 30px;}
  .footerJan25 .footerRow .footerleft{flex: 0 0 60%;max-width: 60%;}
  .footerJan25 .footerright {flex: 0 0 40%;max-width: 40%;}
  .footerJan25 .footerright .footerContact{padding-left:10px;}
}

@media screen and (max-width:767px){
  .eventPageJan25 .sectionPadding{padding:50px 0px;}
  
  .header.headerJan25 .header__container{flex-direction: row;padding: 0;} 
  .header.headerJan25 .seperator{height: 55px;margin: 0 25px;}
  .logoTitle{font-size: 22px;letter-spacing: 5px;line-height: 30px;} 
  
  .eventBanner2025 .eventImage img{height:350px;object-fit: cover;object-position: 25%;}
  .eventBanner2025 .bannerTitle {max-width: 200px;}
  .eventBanner2025 .bannerTitle h1 {font-size: 26px;line-height: 32px;}
  .eventBanner2025 .commanBtn {font-size: 14px;line-height: 18px;margin-top: 15px;padding: 8px 20px;}
  
  .eventWork2025 .eventTitle {font-size: 28px;line-height: 34px;margin-bottom: 15px;}
  .eventWork2025 .desc {font-size: 18px;line-height: 24px;}
  .eventWork2025 .subItemsList li {flex: 0 0 50%;max-width: 50%;}
  .eventWork2025 .subItemsList {margin-bottom: 30px;flex-wrap:wrap;}
  
  .eventPregameBanner2025 .pregameText .bannerTitle {font-size: 35px;line-height: 40px;}
  .eventPregameBanner2025 .pregameText p {font-size: 18px;line-height: 22px;max-width: 220px;}
  .eventPregameBanner2025 .pregameText .commanBtn{margin-top:20px;}
  
  .eventFiltersJan25 form select, .eventFiltersJan25 input#monthPicker {font-size: 16px;line-height: 20px;padding: 10px;}
  .eventFiltersJan25 .applyBtn {font-size: 16px;line-height: 20px;}
  .eventFiltersJan25 form {column-gap: 16px;}
  .eventFiltersJan25.eventListing .dateSec p.greenTxt {font-size: 18px;line-height: 24px;}
  .eventFiltersJan25.eventListing .eventBox .eventText {padding: 20px;}
  .eventFiltersJan25.eventListing .eventBox .eventText .title {font-size: 20px;line-height: 26px;}
  .eventFiltersJan25 .commanBtn{    margin-top: 15px;}
  
  .eventCtaJan25 .commanBtn{    padding: 10px 30px; margin-top: 20px;}
  .eventCtaJan25 .title {font-size: 24px;line-height: 36px;max-width: 500px;}
  
  .eventDataListJan25 li{padding:0 6px;}
  .eventDataListJan25 li img{max-height: 42px;margin-bottom: 5px;}
  .eventDataListJan25 li span{font-size:24px;}
  .eventDataListJan25 li p{font-size:16px;line-height:20px;}
  
  .footerJan25 .footerRow .footerleft{flex: 0 0 100%;max-width: 100%;margin-bottom:40px;}
  .footerJan25 .footerright {flex: 0 0 100%;max-width: 100%;}
  .footerJan25 .footerRow{align-items:inherit;}
  .footerJan25 .footerright .footerNav{flex: 0 0 50%;max-width: 50%;}
  .footerJan25 .footerright .footerNav ul li a{font-size: 14px;line-height: 20px;}
  .footerJan25 .footerright .footLabel{font-size: 18px;line-height: 28px;}
  .footerJan25 .footerright .footerContact{font-size: 14px;line-height: 20px;flex: 0 0 50%;max-width: 50%;}
  .footerJan25 .footerRow .isoLogo img{padding:0px;}
  .vistagesponserSec .btnSec{text-align:center; margin-bottom:40px;}
  .vistagesponserSec .btnSec a{margin-top:0px;}
  .vistageTitle{padding-top:40px !important;}
  .offerBtn{margin-bottom:40px !important;}
  .testimonialSlider .slick-dots{bottom:-40px;}
  .testimonialSlider .slick-dots li button{background: #ffb612; font-size: 0;}
  .testimonialSlider .slick-dots li.slick-active button{background: #004882;}
  .footerJan25 .footerright .footLabel{text-align:center;}
  .footerJan25 .footerright .footerNav ul{text-align:center;}
  .footerJan25 .footerright .footerContact{text-align:center;}
}

@media screen and (max-width:567px){
  .headerJan25{padding:10px;}
  .header.headerJan25 .seperator{display:none;}
  .header.headerJan25 .header__container {flex-direction: column;justify-content: center;align-items: center;text-align: center;}
  .header.headerJan25 .header__logo--main{margin-bottom: 5px;}
  
  .eventWork2025 .eventTitle {font-size: 24px;line-height: 30px;}
  .eventWork2025 .subItemsList li {flex: 0 0 100%;max-width: 100%;}
  
  .eventPregameBanner2025 .pregameImage{max-width: 200px;}
  .eventPregameBanner2025 .pregameText .bannerTitle {font-size: 28px;line-height: 32px;}
  .eventPregameBanner2025 .pregameText p {font-size: 14px;line-height: 20px;}
  
  .eventFiltersJan25.eventListing .teamListing li {flex: 0 0 100%;max-width: 100%;}
  .eventFiltersJan25 form{flex-direction:column;}
  .eventFiltersJan25 .applyBtn, .eventFiltersJan25 form select, .eventFiltersJan25 input#monthPicker{margin:5px 0px;}
  .eventFiltersJan25.eventListing .eventBox .catName{min-width:150px;}
  
  .eventPageJan25 .eventDataListJan25.sectionPadding {flex-wrap:wrap;}
  .eventDataListJan25 li{flex:0 0 50%;max-width:50%;}
  .eventDataListJan25 li .iconBox {margin: 12px 0px;}
  .eventDataListJan25 li img{max-height: 35px;}
  .eventDataListJan25 li span{font-size:20px;}
  .eventDataListJan25 li p{font-size:14px;line-height:20px;}
  
  .footerJan25 .footerRow{flex-direction:column-reverse;}
  .vistage_banner .bannerTagline p{font-size:22px !important; line-height:22px !important;letter-spacing:1.5px;}
  .subSectionTitle{font-size:30px; line-height:40px; margin-bottom:15px;}
  .eventPageJan25 .sectionPadding{padding:30px 0px;}
  .footerJan25 .footerRow .footerleft{margin-bottom:0px !important; margin-top:30px !important;}
}