/*	12 COLUMN : RESPONSIVE GRID SYSTEM
	DEVELOPER : DENIS LEBLANC
	URL : http://responsive.gs
	VERSION : 3.0
	LICENSE : GPL & MIT */
/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*	MAIN CONTAINER 
	Set the width to whatever you want the width of your site to be. */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}
/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after,
.col:after,
.clr:after,
.group:after {
  content: "";
  display: table;
  clear: both;
}
/* 	DEFAULT ROW STYLES 
	Set bottom padding according to preference */
.row {
  padding-bottom: 0em;
}
@media (max-width: 767px) {
  /* FULL WIDTH COLUMN STYLES */
  .col {
    display: block;
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
  }
}
.col {
  display: block;
  float: left;
  width: 100%;
}
.gutters .col {
  margin-left: 2%;
}
.gutters .col:first-child {
  margin-left: 0;
}
.span_1 {
  width: 8.33333333%;
}
.span_2 {
  width: 16.66666667%;
}
.span_3 {
  width: 25%;
}
.span_4 {
  width: 33.33333333%;
}
.span_5 {
  width: 41.66666667%;
}
.span_6 {
  width: 50%;
}
.span_7 {
  width: 58.33333333%;
}
.span_8 {
  width: 66.66666667%;
}
.span_9 {
  width: 75%;
}
.span_10 {
  width: 83.33333333%;
}
.span_11 {
  width: 91.66666667%;
}
.span_12 {
  width: 100%;
}
.gutters .span_1 {
  width: 6.5%;
}
.gutters .span_2 {
  width: 15%;
}
.gutters .span_3 {
  width: 23.5%;
}
.gutters .span_4 {
  width: 32%;
}
.gutters .span_5 {
  width: 40.5%;
}
.gutters .span_6 {
  width: 49%;
}
.gutters .span_7 {
  width: 57.5%;
}
.gutters .span_8 {
  width: 66%;
}
.gutters .span_9 {
  width: 74.5%;
}
.gutters .span_10 {
  width: 83%;
}
.gutters .span_11 {
  width: 91.5%;
}
.gutters .span_12 {
  width: 100%;
}
.push_1 {
  margin-left: 8.33333333%;
}
.push_2 {
  margin-left: 16.66666667%;
}
.push_3 {
  margin-left: 25%;
}
.push_4 {
  margin-left: 33.33333333%;
}
.push_5 {
  margin-left: 41.66666667%;
}
.push_6 {
  margin-left: 50%;
}
.push_7 {
  margin-left: 58.33333333%;
}
.push_8 {
  margin-left: 66.66666667%;
}
.push_9 {
  margin-left: 75%;
}
.push_10 {
  margin-left: 83.33333333%;
}
.push_11 {
  margin-left: 91.66666667%;
}
.push_12 {
  margin-left: 100%;
}
/*	COLUMN WIDTH ON DISPLAYS +768px 
	You might need to play with media queries here to suite your design. */
@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
.dev-row {
  margin: 0 0 20px 0;
}
.dev-col {
  background: #eee;
  min-height: 50px;
}
.gutters .col {
  margin-left: 4%;
}
.gutters .col:first-child {
  margin-left: 0;
}
.gutters .span_1 {
  width: 4.66666667%;
}
.gutters .span_2 {
  width: 13.33333333%;
}
.gutters .span_3 {
  width: 22%;
}
.gutters .span_4 {
  width: 30.66666667%;
}
.gutters .span_5 {
  width: 39.33333333%;
}
.gutters .span_6 {
  width: 48%;
}
.gutters .span_7 {
  width: 56.66666667%;
}
.gutters .span_8 {
  width: 65.33333333%;
}
.gutters .span_9 {
  width: 74%;
}
.gutters .span_10 {
  width: 82.66666667%;
}
.gutters .span_11 {
  width: 91.33333333%;
}
.gutters .span_12 {
  width: 100%;
}
.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 45px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 0;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
  -webkit-box-shadow: 0 2px 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 0 2px rgba(0, 0, 0, 0.2);
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 0;
  border-radius: 0;
  font-size: 1.8em;
  line-height: 45px;
  color: #565d64;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 45px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 8px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: 0 -1px 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -1px 0 2px rgba(0, 0, 0, 0.2);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f6f6f6;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffffff), to(#eeeeee));
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#ffffff));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #E03E52;
}
/* Overrides */
.select2-container {
  outline: none;
}
.select2-container * {
  outline: none;
}
.select2-container.select2-container--open .select2-selection__arrow b {
  border: 1px solid #696969 !important;
  border-bottom: 0 !important;
  border-left: 0 !important;
  margin-top: 0 !important;
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}
.select2-container .select2-selection {
  border: 1px solid #d2d2d2;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 1.4em;
}
.select2-container .select2-selection:hover,
.select2-container .select2-selection:focus,
.select2-container .select2-selection:active {
  border: 1px solid #999;
}
.select2-container .select2-selection.select2-selection--single {
  line-height: 47px;
  min-height: 47px;
}
.select2-container .select2-selection .select2-selection__rendered {
  padding-left: 19px;
  padding-right: 30px;
}
.select2-container .select2-selection .select2-selection__arrow {
  width: 30px;
}
.select2-container .select2-selection .select2-selection__arrow b {
  background: none;
  border: 1px solid #696969;
  border-left: 0;
  border-top: 0;
  height: 8px;
  left: 10px;
  margin-left: 0;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
}
.select2-container .select2-dropdown {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #999;
}
.select2-container .select2-dropdown li {
  font-size: 1.4em;
  padding-left: 19px;
}
.select2-container .select2-dropdown li.select2-results__option--highlighted {
  background: #E03E52;
}
.styled-radio-bg {
  display: inline-block;
  position: relative;
  border-radius: 16px;
  border: 1px solid #16316f;
  width: 16px;
  height: 16px;
  background-color: #fff;
  padding: 5px;
  cursor: pointer;
}
.styled-radio-bg.checked {
  background-color: #fff;
  border: 1px solid #E03E52;
}
.styled-radio-bg.checked:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  left: 3px;
  top: 3px;
  background-color: #E03E52;
}
.styled-checkbox-bg {
  display: block;
  float: left;
  border: 1px solid #16316f;
  width: 16px;
  height: 16px;
  background-color: #fff;
  padding: 4px;
  position: relative;
  cursor: pointer;
  top: 3px;
  border-radius: 2px;
  box-shadow: inset 0px 0px 2px -1px #EDEAEA;
  -webkit-box-shadow: inset 0px 0px 2px -1px #EDEAEA;
  -moz-box-shadow: inset 0px 0px 2px -1px #EDEAEA;
  -o-box-shadow: inset 0px 0px 2px -1px #EDEAEA;
}
.styled-checkbox-bg.disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.styled-checkbox-bg:hover,
.styled-checkbox-bg:focus,
.styled-checkbox-bg:active {
  border-color: #999;
}
.styled-checkbox-bg.checked {
  background-color: #E03E52;
  border: 1px solid #E03E52;
}
.styled-checkbox-bg.checked:before {
  display: none;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  left: 1px;
  top: 1px;
  background: url('../img//styled-checkable-sprite-3.png') no-repeat -2px -69px;
}
.js:not(.lt-ie9) .styled-radios,
.js:not(.lt-ie9) .styled-checkboxes {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  left: -500em;
}
.lt-ie9.js .styled-radio-bg,
.lt-ie9.js .styled-checkbox-bg {
  display: none;
}
.skip-links {
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.skip-links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.skip-links ul li {
  font-size: 1.4em;
  margin: 0;
  padding: 0;
}
.skip-links ul li a {
  background-color: #fff;
  color: #000;
  display: block;
  left: 0;
  outline: none;
  padding: 10px 20px;
  position: absolute;
  text-decoration: none;
  top: -500em;
  width: 100%;
  z-index: 1000;
}
.skip-links ul li a:active,
.skip-links ul li a:focus {
  top: 0;
}
/* * * * * * * * * * * * * VARIABLES * * * * * * * * * * * */
/* * * * * * * Font weights * * * * * * */
/* * * * * * * Main color palette * * * * * * * * */
/* * * * * * *  Secondary color palette* * * * * * * * */
/* * * * * * Social Media colors * * * * * */
/* * * * * * *  Distances * * * * * * * * * * */
/* * * * * * * Linear Gradients * * * * * * * */
/* * * * * * * Transitions * * * * * * * */
/* * * * * * * Breakpoint Widths * * * * * * */
/* * * * * * * Breaking Points * * * * * * */
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
a {
  color: #E03E52;
}
div.hr,
hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  height: 1px;
  margin: 0 0 10px 0;
}
div.hr hr,
hr hr {
  display: none;
}
abbr,
acronym {
  border: 0;
  text-decoration: none;
}
img.responsive {
  height: auto;
  width: 100%;
}
p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.0225rem;
  margin: 0 0 1.25rem 0;
}
p.article-date {
  margin: 0 0 15px 0;
}
li {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.0225rem;
  margin: 0 0 0.25rem 0;
}
h1 {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 10px 0;
}
h2 {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.28px;
  margin: 0 0 2rem 0;
}
h3 {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 32px 0;
  letter-spacing: 0.22px;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px 0;
  letter-spacing: 0.36px;
}
ul {
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
}
ul.links {
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
}
ul.links li {
  margin: 0;
  padding: 0;
}
span.category {
  display: block;
  font-size: 1.2em;
  font-weight: 900;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
span.category a {
  color: #E03E52;
  text-decoration: none;
}
blockquote {
  border-left: 5px solid #E03E52;
  font-family: 'Poppins', serif;
  margin: 0 0 10px 20px;
  padding: 0 0 0 20px;
}
blockquote p {
  font-size: 1.4em;
  font-style: italic;
  font-weight: 700;
  margin: 0;
  padding: 8px 0 10px 0;
}
input,
select {
  font-family: 'Poppins', sans-serif;
}
textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 62.5%;
}
/*@media ( min-width : 768px ){
    div.hr {
        margin: 0 0 20px 0;
    }
    h1 {
        font-size: 5.8em;
        margin: 0 0 20px 0;
    }

    h2 {
        font-size: 2.8em;
        margin: 0 0 20px 0;
    }

    h3 {
        font-size: 2.2em;
        margin: 0 0 20px 0;
    }

    p {
        font-size: 1.7em;
        line-height: 1.7;
        margin: 0 0 20px 0;

        &.article-date {
            margin: 0 0 30px 0;
        }
    }

    ul {
        margin: 0 0 40px 0;

        &.links {
            margin: 0 0 40px 0;
        }
    }

    li {
        font-size: 1.7em;
        line-height: 1.7;
    }

    span.category {
        font-size: 1.4em;
    }

    blockquote {
        margin:0 0 30px 50px;
        padding:0 50px;
        p {
            font-size: 2em;
            margin: 0;
            padding:16px 0 20px 0;
        }
    }

    }*/
.scores {
  font-weight: 700;
}
.scores .set {
  margin: 0 5px 0 0;
}
.scores sup {
  display: inline-block;
  font-size: 0.75rem;
  margin: -3px 2px 0 0;
  position: relative;
  vertical-align: top;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes collapse {
  0% {
    background-color: unset;
    height: unset;
    min-height: 0;
    overflow: hidden;
    border: unset;
  }
  100% {
    background-color: #16234C;
    height: 0px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
  }
}
@keyframes collapse {
  0% {
    background-color: unset;
    height: unset;
    min-height: 0;
    overflow: hidden;
    border: unset;
  }
  100% {
    background-color: #16234C;
    height: 0px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: none;
  }
}
/* * * * * * *  Container * * * * * * */
.container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 0 20px;
}
@media (min-width:1270px) {
  .container {
    padding: 0;
  }
}
.container--small {
  max-width: 1032px;
}
/* * * * * * *  Sticky * * * * * * */
@media (min-width:768px) {
  .sticky {
    position: sticky;
    top: 15px;
    margin-bottom: 30px;
  }
}
/* * * * * * *  Padding * * * * * * */
.padding {
  padding: 4em 0;
}
@media (min-width:768px) {
  .padding {
    padding: 10em 0;
  }
}
.vertical-padding {
  padding: 40px 0;
}
@media (min-width:768px) {
  .vertical-padding {
    padding: 60px 0;
  }
}
.pt-4 {
  padding-top: 4px !important;
}
/* * * * * * *  Vertical Content * * * * * * */
.vertical-content-wrapper {
  display: inline-block;
  height: 100%;
  width: 40px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 10px;
}
.vertical-content-wrapper.right {
  left: unset;
  right: 0;
}
.vertical-content-wrapper .vertical-content {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  -webkit-transform: rotate(-90deg) translate(-100%, 0);
          transform: rotate(-90deg) translate(-100%, 0);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width:768px) {
  .vertical-content-wrapper .vertical-content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.vertical-content-wrapper .vertical-content.middle {
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(-90deg) translate(-50%, 0);
          transform: rotate(-90deg) translate(-50%, 0);
}
.vertical-content-wrapper .vertical-content.vertical-white {
  color: #ffffff;
}
.vertical-content-wrapper .vertical-content.vertical-white .vertical-line {
  background: #ffffff;
}
.vertical-content-wrapper .vertical-content .vertical-text {
  margin-left: 30px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width:768px) {
  .vertical-content-wrapper .vertical-content .vertical-text {
    font-size: 1.3em;
  }
}
.vertical-content-wrapper .vertical-content .vertical-line {
  height: 3px;
  background: #E03E52;
  width: 300px;
}
/* * * * * * Center content * * * * * */
.center-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width:768px) {
  .direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.margin-auto {
  margin: auto;
}
.align-self {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.min-height-minus-nav {
  min-height: calc(100vh - 385px);
}
/* * * * * * *  Clearfix * * * * * * */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* * * * * * *  Home first Image * * * * * * */
.img-margin-btm-mobile {
  margin-bottom: 2rem;
}
@media (min-width:768px) {
  .img-margin-btm-mobile {
    margin-bottom: 0;
  }
}
.home-img-1 {
  margin-top: 2rem;
}
@media (min-width:768px) {
  .home-img-1 {
    margin-top: 0;
  }
}
/* * * * * * *  Home Image position absolute * * * * * * */
img.responsive.tennis-player {
  margin-bottom: 2em;
}
@media (min-width:768px) {
  img.responsive.tennis-player {
    position: absolute;
    bottom: -120px;
    left: -290px;
  }
}
@media (min-width: 1300px) {
  img.responsive.tennis-player {
    left: -240px;
  }
}
/* * * * * * *  Align center mobile only * * * * * * */
.align-center-mobile {
  text-align: center;
}
@media (min-width:768px) {
  .align-center-mobile {
    text-align: left;
  }
}
/* * * * * * * * home-page buttons * * * * * * * */
.home-page .btn {
  margin-top: 16px;
}
/* * * ** * * * * Overflow-hidden * * * ** * * * */
.overflow-hidden {
  overflow: hidden;
}
/* * **  * ** * *  Custom Checkmark * * * * ** *  **/
span.c-checkbox {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 2px solid #dadce0;
  top: 1px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
@media (min-width:768px) {
  span.c-checkbox {
    top: 4px;
    width: 20px;
    height: 20px;
  }
}
span.c-checkbox:after {
  display: none;
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* * * * * *  row gutters * * * * * * */
.row.gutters {
  margin-top: 25px;
}
.row.gutters .span_9 p span {
  word-break: break-all;
}
/* * * * * * Customize social media Share btns * * * * * * */
.addthis_inline_share_toolbox {
  margin-bottom: 20px;
}
#at15pf {
  display: none !important;
}
#at-expanded-menu-host .at-branding-info.at-expanded-menu-branding,
#at-expanded-menu-host .at-branding-logo.at-expanded-menu-branding {
  display: none !important;
}
/* * * * * * Add gradient background * * * * * */
.bg-gradient {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(6%, #e03e50), color-stop(86%, #003a70));
  background: linear-gradient(180deg, #e03e50 6%, #003a70 86%);
}
.bg-blue {
  background: #003A70;
}
.bg-form {
  background: url(../img/holding-page-form-bg-rebrand.jpg) no-repeat center center;
  background-size: cover;
}
/* * * * * * Text color/position * * * * * */
.display-none {
  display: none;
}
.hidden {
  visibility: hidden;
}
.text-white {
  color: #ffffff;
}
.text-center {
  text-align: center;
}
.margin-p-above-list {
  margin-bottom: 12px;
}
.position-relative {
  position: relative;
}
.no-margin {
  margin: 0;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}
.margin-bottom-24 {
  margin-bottom: 24px;
}
.margin-bottom-28 {
  margin-bottom: 28px;
}
.border-bottom {
  border-bottom: 1px solid #ebedef;
}
.last-p-margin_0 p:last-of-type {
  margin: 0;
}
@media (min-width:768px) {
  .col-reverse-tablet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width:768px) {
  .padding-50-tablet {
    padding: 50px;
  }
}
@media (min-width:768px) {
  .padding-right-50-tablet {
    padding-right: 50px;
  }
}
/* * * * * * Section * * * * * */
.section-title {
  text-align: center;
  margin-bottom: 28px;
}
@media (min-width:768px) {
  .section-title {
    margin-bottom: 40px;
  }
}
body,
html {
  overflow: auto;
}
body.mobile-nav-active,
html.mobile-nav-active {
  overflow: hidden;
}
body {
  color: #16234C;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}
main#page-content {
  min-height: 358px;
  padding-top: var(--header-total-height, 90px);
  -webkit-transition: padding-top 0.3s ease;
  transition: padding-top 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}
.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}
.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #E03E52;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.9;
  -webkit-transition: opacity 0s linear;
  transition: opacity 0s linear;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
button {
  cursor: pointer;
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Poppins', sans-serif;
  background: #E03E52;
  border: 2px solid #E03E52;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 50px;
  margin: 0;
  padding: 11px 28px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border-radius: 40px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.32px;
  width: 100%;
  -webkit-appearance: none;
}
@media (min-width:480px) {
  .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.btn svg {
  margin-right: 4px;
}
.btn:hover,
.btn:focus,
.btn:active {
  background: #cc2d2d;
  color: #fff;
  border-color: #cc2d2d;
  -webkit-appearance: none;
}
.btn.style-2 {
  background: transparent;
  border: 2px solid #16234C;
  color: #16234C;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.btn.style-2:hover,
.btn.style-2:focus,
.btn.style-2:active {
  background: #16234C;
  color: #fff;
}
.btn.btn-secondary {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #ffffff;
  background: transparent;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.32px;
  padding: 11px 28px;
  -webkit-appearance: none;
}
.btn.btn-secondary.btn-signup svg path {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.btn.btn-secondary svg {
  margin-right: 4px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.btn.btn-secondary svg path {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  stroke: white;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
  background: #ffffff;
  color: #16234C;
}
.btn.btn-secondary:hover svg path,
.btn.btn-secondary:focus svg path,
.btn.btn-secondary:active svg path {
  stroke: #16234C;
}
.btn.btn-secondary:hover.btn-signup svg path,
.btn.btn-secondary:focus.btn-signup svg path,
.btn.btn-secondary:active.btn-signup svg path {
  stroke: #16234C !important;
}
.btn.btn-secondary-positive {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #003A70;
  background: #fff;
  color: #003A70;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.32px;
  padding: 11px 28px;
  -webkit-appearance: none;
}
.btn.btn-secondary-positive svg path {
  stroke: #16234C;
}
.btn.btn-secondary-positive.btn-watch-video svg path {
  fill: #16234C;
}
.btn.btn-secondary-positive:hover,
.btn.btn-secondary-positive:focus,
.btn.btn-secondary-positive:active {
  background: #003A70;
  color: #fff;
}
.btn.btn-secondary-positive:hover svg path,
.btn.btn-secondary-positive:focus svg path,
.btn.btn-secondary-positive:active svg path {
  stroke: white;
}
.btn.btn-secondary-positive:hover.btn-watch-video svg path,
.btn.btn-secondary-positive:focus.btn-watch-video svg path,
.btn.btn-secondary-positive:active.btn-watch-video svg path {
  fill: white;
}
.btn.btn-testimonials {
  margin-top: 32px;
}
.btn-play {
  width: 80px;
  height: 80px;
  background-color: #dc3741;
  border: none;
  border-radius: 50%;
}
.btn-play svg {
  width: 57px;
  height: 57px;
}
.btn-play svg path {
  stroke: white;
  fill: white;
}
.btn-play__grey {
  background-color: white;
}
.btn-play__grey svg path {
  stroke: #16234C;
  fill: #16234C;
}
.btn-play__centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn.home-banner-btn {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11px 24px;
  margin-top: 26px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-appearance: none;
}
.btn.home-banner-btn svg {
  margin-right: 4px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.btn.home-banner-btn svg path {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  stroke: white;
}
.btn.home-banner-btn:hover svg path,
.btn.home-banner-btn:focus svg path,
.btn.home-banner-btn:active svg path {
  stroke: #16234C;
}
.btn.btn-signup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn.btn-signup img {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
.btn.btn-signup svg {
  width: 26px;
  height: 26px;
  margin-right: 4px;
}
.btn.btn-signup--nav {
  font-size: 14px;
  padding: 7px 18px;
}
.btn.btn-signup--nav img {
  width: 22px;
  height: 22px;
}
.btn.btn-signup--mobile-nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .btn {
    font-size: 16px;
  }
}
body {
  --wtn-navbar-height: 68px;
}
.header {
  height: 68px;
  max-height: 68px;
}
.header .container {
  position: relative;
}
.header .logo {
  float: left;
  line-height: 68px;
}
.header .logo a {
  display: inline-block;
}
.header .logo a img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
.header ul.nav {
  float: left;
  margin: 0;
  padding: 0;
}
.header ul.nav.nav-secondary > li {
  line-height: 100px;
}
.header ul.nav > li {
  float: left;
  list-style-type: none;
  margin: 0 25px 0 0;
  padding: 0;
  width: auto;
}
.header ul.nav > li:last-child {
  margin-right: 0;
}
.header ul.nav > li .nav-link {
  border-bottom: 1px solid transparent;
  color: #16234C;
  font-weight: 700;
  padding: 5px 0;
  text-decoration: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  text-transform: capitalize;
}
.header ul.nav > li .nav-link.selected {
  color: #E03E52;
}
.header ul.nav > li .nav-link:hover,
.header ul.nav > li .nav-link:active,
.header ul.nav > li .nav-link:focus {
  color: #E03E52;
}
.header ul.nav > li .nav-link .icon-search {
  width: 19px;
  height: 19px;
  display: inline-block;
  top: 4px;
  position: relative;
}
.header ul.nav .nav-divider {
  display: inline;
  border-left: 3px solid #16234C;
}
.header ul.nav .btn-container {
  display: none;
  height: 90px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width:1100px) {
  .header ul.nav .btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .mobile-nav-signup {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin-right: -9px;
  margin-left: 11px;
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.header .mobile-nav-signup img {
  width: 40px;
  height: 40px;
}
@media (max-width: 340px) {
  .header .mobile-nav-signup {
    display: none;
  }
}
@media (min-width:1100px) {
  .header .mobile-nav-signup {
    display: none;
  }
}
@media (min-width: 1270px) {
  body {
    --wtn-navbar-height: 90px;
  }
  .header {
    height: 90px;
    max-height: 90px;
  }
  .header .logo {
    width: 235px;
  }
  .header .logo a img {
    height: 90px;
  }
  .header ul.nav {
    float: right;
    width: auto;
  }
  .header ul.nav li {
    margin: 0 0 0 25px;
  }
  .header ul.nav li.divider-parent {
    display: inline;
  }
  .header ul.nav li a {
    text-transform: uppercase;
  }
}
.header ul.nav li.has-dropdown {
  display: none;
  position: relative;
  float: right;
  font-weight: 700;
  list-style-type: none;
  padding: 0;
}
@media (min-width:1100px) {
  .header ul.nav li.has-dropdown {
    display: block;
    clear: none;
  }
}
.header ul.nav li.has-dropdown:last-child ul.dropdown {
  right: -4px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header ul.nav li.has-dropdown > a {
  padding: 5px 17px 5px 0;
  text-decoration: none;
}
.header ul.nav li.has-dropdown > a:hover,
.header ul.nav li.has-dropdown > a:active,
.header ul.nav li.has-dropdown > a:focus {
  color: #E03E52;
}
.header ul.nav li.has-dropdown > a.selector {
  position: relative;
  font-size: 1em;
}
@media (min-width:1100px) {
  .header ul.nav li.has-dropdown > a.selector::after {
    border-bottom: 2px solid #16234C;
    border-left: 2px solid #16234C;
    content: " ";
    height: 6px;
    margin: -3px 0 0 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    width: 6px;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.header ul.nav li.has-dropdown > a.selector:hover:after,
.header ul.nav li.has-dropdown > a.selector:active:after,
.header ul.nav li.has-dropdown > a.selector:focus:after {
  border-color: #E03E52;
}
body.is-loggedin .header ul.nav li.has-dropdown.nav-profile {
  display: inline-block;
}
.header ul.nav li.has-dropdown.nav-profile > a {
  display: inline-block;
  padding: 0;
  position: relative;
  padding-right: 18px;
}
.header ul.nav li.has-dropdown.nav-profile > a .profile-icon {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 0;
  left: 0;
}
.header ul.nav li.has-dropdown.nav-profile > a .profile-icon path {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
@media (min-width: 601px) and (max-width: 768px) {
  .header ul.nav li.has-dropdown.nav-language input.toggle-dropdown {
    top: 25px;
  }
}
.header ul.nav li.has-dropdown input.toggle-dropdown {
  position: absolute;
  top: -5px;
  left: 0px;
  width: 25px;
  height: 40px;
  z-index: 5;
  background: none;
  opacity: 0;
  cursor: pointer;
}
@media (min-width:1100px) {
  .header ul.nav li.has-dropdown input.toggle-dropdown {
    width: 40px;
  }
}
.header ul.nav li.has-dropdown input.toggle-dropdown:hover ~ a.selector svg path,
.header ul.nav li.has-dropdown input.toggle-dropdown:active ~ a.selector svg path,
.header ul.nav li.has-dropdown input.toggle-dropdown:focus ~ a.selector svg path {
  stroke: #E03E52;
}
.header ul.nav li.has-dropdown input.toggle-dropdown:hover ~ a.selector::after,
.header ul.nav li.has-dropdown input.toggle-dropdown:active ~ a.selector::after,
.header ul.nav li.has-dropdown input.toggle-dropdown:focus ~ a.selector::after {
  border-color: #E03E52;
}
.header ul.nav li.has-dropdown input.toggle-dropdown:checked ~ a.selector {
  color: #16234C;
}
@media (min-width:1100px) {
  .header ul.nav li.has-dropdown input.toggle-dropdown:checked ~ a.selector::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    margin-top: -2px;
  }
}
.header ul.nav li.has-dropdown input.toggle-dropdown:checked ~ ul.dropdown {
  opacity: 1;
}
.header ul.nav li.has-dropdown input.toggle-dropdown:checked ~ ul.dropdown::before {
  opacity: 1;
}
.header ul.nav li.has-dropdown input.toggle-dropdown:not(:checked) ~ ul.dropdown {
  z-index: -5;
  opacity: 0;
  pointer-events: none;
}
.header ul.nav ul.dropdown {
  z-index: 998;
  position: absolute;
  top: 37px;
  right: 0;
  left: unset;
  bottom: unset;
  background: #fff;
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 17px 28px 16px 28px;
  font-size: 1em;
  list-style-type: none;
  margin: 0;
  min-width: 200px;
  pointer-events: all;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  opacity: 0;
}
@media (min-width:1270px) {
  .header ul.nav ul.dropdown {
    top: 48px;
  }
}
.header ul.nav ul.dropdown::before {
  z-index: 1000;
  content: '';
  position: absolute;
  top: 0px;
  right: 13px;
  border: 6px solid white;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  opacity: 0;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  pointer-events: none;
}
@media (min-width:1100px) {
  .header ul.nav ul.dropdown::before {
    right: 28px;
  }
}
.header ul.nav ul.dropdown li {
  font-size: 1em;
  line-height: normal;
  padding: 16px 0;
  float: none;
}
@media (min-width:768px) {
  .header ul.nav ul.dropdown li {
    padding: 8px 0;
  }
}
.header ul.nav ul.dropdown li:last-child {
  margin-bottom: 0;
}
.header ul.nav ul.dropdown li.account-menu--short {
  display: none;
}
@media (min-width:768px) {
  .header ul.nav ul.dropdown li.account-menu--short {
    display: block;
  }
}
.header ul.nav ul.dropdown li.account-menu--extended {
  display: block;
}
@media (min-width:768px) {
  .header ul.nav ul.dropdown li.account-menu--extended {
    display: none;
  }
}
.header ul.nav ul.dropdown a {
  padding: 0 18px 5px 0;
  white-space: nowrap;
  display: block;
  text-transform: none !important;
}
@media (min-width:1100px) {
  .header ul.nav ul.dropdown a {
    text-transform: none !important;
  }
}
.header ul.nav ul.dropdown a.selected {
  background: url(../img/icon-tick.svg) 102% 2px no-repeat;
  color: #E03E52;
}
.dropdown--elevated {
  border-radius: 6px;
  -webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.home-page .page-title h1 {
  font-size: 2.4em;
}
@media (min-width:768px) {
  .home-page .page-title h1 {
    font-size: 7em;
  }
}
.page-title {
  padding: 20px 0;
  position: relative;
}
.page-title:after {
  clear: both;
  content: " ";
  display: table;
}
.page-title h1 {
  margin: 0;
}
.page-title .page-scroll {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -60px;
  left: 50%;
  cursor: pointer;
  z-index: 99;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #E03E52;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
}
.page-title .page-scroll svg {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.page-title .page-scroll:hover svg {
  -webkit-transform: translate(0, 12px);
          transform: translate(0, 12px);
}
.page-title.style-2 {
  background: url(../img/holding-page-bg-rebrand.jpg) center center no-repeat;
  background-size: cover;
  margin: 0 0 15px 0;
  padding: 0;
}
.page-title.style-2 .col.col-text .text {
  min-height: 150px;
}
.flexbox .page-title.style-2 .col.col-text .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-title.style-2 .col.col-image {
  display: none;
}
.page-title.style-2 h1,
.page-title.style-2 p,
.page-title.style-2 span {
  color: #fff;
}
.page-title.style-2 span.label {
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .page-title {
    padding: 5em 0 40px 0;
  }
  .page-title.style-2 .col {
    float: left;
    width: 100%;
  }
  .page-title.style-2 .col.col-text .text {
    min-height: 500px;
  }
  .page-title.style-2 .col.col-text .text.gap {
    margin-left: 87.5px;
  }
  .page-title.style-2 .col.col-image {
    display: block;
  }
  .page-title.style-2 .col.col-image .image {
    background: url(../img/contact-us-i1.jpg) top left no-repeat;
    background-size: cover;
    min-height: 289px;
  }
  .page-title.style-2 span.label {
    font-size: 1.5em;
    margin: 0 0 20px 0;
  }
  .page-title.style-2 {
    margin-bottom: 0;
  }
  .page-title .page-scroll {
    width: 80px;
    height: 80px;
    bottom: -80px;
  }
}
.section-nav {
  background: #003A70;
  margin: 0 0 20px 0;
  overflow: hidden;
  padding: 13px 15px;
  position: relative;
  z-index: 10;
}
.section-nav:after {
  display: none;
  background: #E03E52;
  bottom: -120px;
  content: " ";
  height: 300px;
  position: absolute;
  right: -200px;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
  width: 300px;
  z-index: -1;
}
.section-nav h2 {
  color: #fff;
  font-size: 1.6em;
  margin: 0 0 10px 0;
}
.section-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.section-nav ul li {
  border-bottom: 1px solid #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.section-nav ul li:last-child {
  border: 0;
}
.section-nav ul li a {
  color: #fff;
  display: block;
  outline: none;
  padding: 10px 0;
  position: relative;
  text-decoration: none;
}
.section-nav ul li a:before {
  display: none;
  background: #fff;
  content: " ";
  height: 10px;
  line-height: 10px;
  margin: -6px 0 0 0;
  position: absolute;
  right: 4px;
  text-align: right;
  top: 50%;
  width: 2px;
}
.section-nav ul li a:after {
  display: none;
  background: #fff;
  content: " ";
  height: 2px;
  line-height: 10px;
  margin: -2px 0 0 0;
  position: absolute;
  right: 0;
  text-align: right;
  top: 50%;
  width: 10px;
}
.section-nav ul li a.ui-state-active:before {
  display: none;
}
.section-nav ul li a.ui-state-active:after {
  background: #fff;
  content: " ";
  height: 2px;
  line-height: 10px;
  margin: -2px 0 0 0;
  position: absolute;
  right: 0;
  text-align: right;
  top: 50%;
  width: 10px;
}
.section-nav ul ul {
  font-size: 1em;
  margin: 0 20px 5px 20px;
}
.section-nav ul ul li {
  border: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
.section-nav ul ul li a {
  padding: 0 0 10px 0;
}
.section-nav ul ul li a:before,
.section-nav ul ul li a:after {
  display: none;
}
@media (min-width: 768px) {
  .section-nav {
    padding: 26px 30px;
  }
  .section-nav h2 {
    font-size: 2.2em;
  }
  .section-nav ul {
    max-height: calc(100vh - 95px);
  }
  .section-nav ul li {
    font-size: 0.875rem;
  }
  .section-nav ul li a {
    padding: 20px 20px 20px 0;
  }
  .section-nav ul ul {
    margin: 0 40px 0 20px;
  }
  .section-nav ul ul li a {
    padding: 0 0 20px 0;
  }
}
.panel {
  border: 1px solid #e5e5e5;
  margin: 0 0 20px 0;
  padding: 13px 15px;
  position: relative;
}
.panel:before {
  display: none;
  background: #E03E52;
  content: " ";
  height: 8px;
  left: 0;
  position: absolute;
  top: -8px;
  width: 100%;
}
.panel h2 {
  margin: 0 0 8px 0;
}
.panel p {
  font-size: 1.2em;
}
.panel p:last-child {
  margin: 0;
}
.panel a {
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .panel {
    padding: 40px;
  }
  .panel p {
    font-size: 1.6em;
  }
}
.cta {
  background: #f4f4f4;
  padding: 20px 0;
}
.cta h2 {
  color: #E03E52;
  line-height: 1.3;
  margin: 0 0 10px 0;
}
.cta p {
  margin: 0 0 10px 0;
  padding: 0;
}
@media (min-width: 768px) {
  .cta {
    padding: 48px 0;
  }
  .cta h2 {
    font-size: 3.2em;
    margin: 0 0 10px 0;
  }
}
/* What is WTN section*/
.world-tennis-section {
  width: 100%;
  padding-bottom: 50px;
}
.wtn-text-content {
  text-align: center;
  padding: 62px 32px;
}
.wtn-heading h2,
.wtn-heading p {
  font-family: Poppins;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #1f1f1f;
  margin: 0;
}
.image-container {
  position: relative;
  height: auto;
  margin-bottom: 80px;
}
.main-image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 25% center;
     object-position: 25% center;
  display: block;
}
.stats-card {
  position: absolute;
  width: min(310px, 80%);
  padding: 28px;
  background: #003a70;
  border-radius: 20px;
  left: 50%;
  bottom: -100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}
.player-count {
  height: 48px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-family: Poppins;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-align: center;
}
.players-label {
  font-size: 16px;
  margin-bottom: 24px;
}
.desktop-search,
.desktop-only {
  display: none;
}
.mobile-search {
  width: 100%;
  height: 44px;
  border: 1.5px solid #fff;
  border-radius: 2000px;
  background: transparent;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .world-tennis-section {
    padding: 60px 50px;
  }
  .main-image {
    width: auto;
    height: 400px;
  }
  .content-container {
    gap: 50px;
  }
  .wtn-text-content {
    text-align: left;
  }
  .image-container {
    margin-bottom: 0;
  }
  .stats-card {
    width: 276px;
    left: calc(50% - 138px);
    bottom: -30px;
    -webkit-transform: none;
            transform: none;
  }
}
@media (min-width: 1101px) {
  .world-tennis-section {
    width: 100%;
    padding: 80px 100px;
    background-color: #fff;
    margin: 0px;
  }
  .content-container {
    max-width: 1440px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.8fr 60px 1.2fr;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wtn-text-content {
    padding: 0;
    text-align: left;
    margin-right: 40px;
  }
  .wtn-heading h2,
  .wtn-heading p {
    font-size: 48px;
    margin-bottom: 40px;
    padding-right: 80px;
  }
  .image-container {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  .main-image {
    width: 100%;
    height: auto;
    max-height: 460px;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .stats-card {
    width: 276px;
    height: 204px;
    left: -140px;
    bottom: -20px;
    -webkit-transform: none;
            transform: none;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wtn-logo {
    width: 89px;
    height: 44px;
  }
  .desktop-search {
    display: block;
    width: 198px;
    height: 44px;
    font-weight: bold;
    border: 2px solid #1f1f1f;
    border-radius: 2000px;
    background: transparent;
    color: #1f1f1f;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .desktop-search:hover {
    background-color: #f3f4f7;
  }
  .desktop-only {
    display: block;
  }
  .mobile-search {
    display: none;
  }
}
/* Latest News section */
.featured-latest-news {
  background-color: #f3f4f7;
  padding: 60px 0px 80px 0px;
}
.featured-view-more-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.featured-view-more-button {
  width: 136px;
  height: 44px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2000px;
  border: solid 1.5px #1f1f1f;
  font-family: Poppins;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.featured-view-more-button:hover {
  background-color: #f3f4f7;
  text-decoration: none;
  color: #1f1f1f;
}
@media screen and (max-width: 768px) {
  .featured-view-more-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
    border-radius: 2000px;
  }
  .featured-view-more-button {
    width: 88px;
    height: 26px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    border: none;
    padding: 0;
  }
}
.featured-news-container {
  margin: 0 0 60px 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  list-style: none;
}
.featured-news-container--latest-news {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.featured-news-card {
  width: 100%;
}
.featured-news-card__desktop-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.featured-news-card__mobile-layout {
  display: none;
}
.featured-news-card--latest {
  width: 100%;
  max-width: 380px;
  height: 444px;
  padding: 0;
  border-radius: 4px;
  border: solid 1px #e1e3e5;
  background-color: white;
  overflow: hidden;
}
.featured-news-card:hover a {
  text-decoration: none;
}
.featured-news-card:hover .featured-news-card__text__title {
  text-decoration: underline;
}
.featured-news-card__image-container {
  width: 100%;
  overflow: hidden;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 40px 20px 40px;
}
.featured-news-card__image {
  width: 100%;
  height: 248px;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-news-card__text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 0 40px;
}
.featured-news-card__text__title {
  height: 58px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-family: Poppins;
  font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  margin: 0;
  color: #1f1f1f;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.featured-news-card__text__info {
  width: auto;
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-family: Poppins;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.6;
  color: #1f1f1f;
}
@media screen and (max-width: 768px) {
  .featured-latest-news {
    padding: 60px 0px 60px 0px;
  }
  .featured-news-container {
    margin: 0 0 40px 0;
  }
  .featured-news-card__desktop-layout {
    display: none;
  }
  .featured-news-card__mobile-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .featured-news-container--latest-news {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .featured-news-card--latest {
    height: 120px;
    padding: 16px 20px;
    max-width: 100%;
  }
  .featured-news-card__image-container {
    border-radius: 4px;
    width: 88px;
    height: 88px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0;
  }
  .featured-news-card__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .featured-news-card__text-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 8px;
    padding: 0;
    min-width: 0;
  }
  .featured-news-card__text__title {
    height: inherit;
    font-size: 14px;
    font-weight: bold;
    color: #292929;
  }
  .featured-news-card--latest:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 768px) {
  .featured-news-container {
    gap: 48px;
  }
}
@media (min-width: 872px) {
  .featured-news-container--latest-news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news__title {
  margin-bottom: 20px;
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .news__title {
    font-size: 2.25rem;
  }
}
.news__back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
}
.news__back-link img {
  width: 24px;
  height: 24px;
}
.news-container {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  list-style: none;
}
@media (min-width: 768px) {
  .news-container {
    gap: 48px;
  }
}
.news-container--latest-news {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 872px) {
  .news-container--latest-news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news-card {
  width: 100%;
}
@media (min-width: 576px) {
  .news-card {
    width: calc(50% - 24px);
    max-width: 384px;
  }
}
@media (min-width: 872px) {
  .news-card {
    width: calc(33.33% - 32px);
  }
}
.news-card:hover a {
  text-decoration: none;
}
.news-card:hover .news-card__text__title {
  text-decoration: underline;
}
.news-card--latest-news {
  width: 100%;
  max-width: 518px;
}
@media (min-width: 872px) {
  .news-card--latest-news {
    width: calc(33.33% - 32px);
  }
}
.news-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card__image-container {
  height: 248px;
  overflow-y: hidden;
}
.news-card__text__intro {
  text-transform: uppercase;
  color: #dc3741;
  font-size: 0.75rem;
  font-weight: 600;
}
.news-card__text__title {
  margin: 12px 0;
  color: #16234C;
  text-transform: none;
  font-size: 1.125rem;
  font-weight: 600;
}
.news-card__text__info {
  color: #737680;
  font-size: 0.75rem;
}
.news-card__text-container {
  padding-top: 12px;
}
.news-card--sidebar {
  width: 100%;
  margin-bottom: 28px;
}
.news-article__banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-article__banner-container {
  margin-bottom: 12px;
  width: 100%;
  height: 360px;
  overflow-y: hidden;
}
.news-article__banner-credit {
  display: block;
  margin-bottom: 28px;
  color: #737680;
  font-size: 0.75rem;
  font-style: italic;
}
.news-article__main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media (min-width: 768px) {
  .news-article__main-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 872px) {
  .news-article__main-container {
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
  }
}
.news-article__sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 384px;
}
@media (min-width: 768px) {
  .news-article__sidebar {
    min-width: 200px;
  }
}
.news-article__sidebar__cards-container {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
}
.news-article__sidebar__title {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .news-article__sidebar__title {
    font-size: 1.75rem;
  }
}
.news-article__body {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 0px;
}
.news-article__body__info {
  margin-bottom: 24px;
  padding: 16.5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 13px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  border-top: 1px solid #ebedef;
  border-bottom: 1px solid #ebedef;
  color: #737680;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .news-article__body__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.news-article__body__info__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-article__body__info__detail img {
  margin-right: 6px;
  width: 16px;
  height: 16px;
}
.news-article__body__title {
  margin-bottom: 24px;
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .news-article__body__title {
    font-size: 2.25rem;
  }
}
.news-article__body__content img {
  max-width: 100%;
  height: auto !important;
}
.news-article__body__content > *:last-child {
  margin-bottom: 0;
}
.news-article__share__text {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .news-article__share__text {
    font-size: 1.75rem;
  }
}
.news-article__share__links-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-article__share__links-list li {
  margin: 0;
  margin-right: 20px;
  width: 32px;
  height: 32px;
  display: inline-block;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.news-article__share__links-list li:hover {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}
.news-article__share__link img {
  width: 32px;
  height: 32px;
}
.news-article .divider {
  margin: 28px 0;
  border-top: 1px solid #ebedef;
}
@media (min-width: 768px) {
  .news-article .divider {
    margin: 40px 0;
  }
}
.news-article .hide-on-tablet {
  display: none;
}
@media (min-width: 768px) {
  .news-article .hide-on-tablet {
    display: block;
  }
}
@media (min-width: 768px) {
  .news-article .hide-on-desktop {
    display: none;
  }
}
.latest-news {
  background-color: #F2F5F8;
}
/* Explore section */
.explore-generic {
  position: relative;
  height: 480px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.explore-background {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.explore-background img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.explore-copy-and-cta {
  position: absolute;
  left: 120px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  color: #ffffff;
}
.explore-copy-and-cta h1 p {
  height: 48px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-family: Poppins;
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-align: left;
  margin-bottom: 40px;
}
.explore-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 24px;
  height: 44px;
  background-color: #ffffff;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 2000px;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.explore-button:hover {
  background-color: #e1e3e5;
  text-decoration: none;
  color: #1f1f1f;
  -webkit-transform: none;
          transform: none;
}
@media (min-width: 1024px) {
  .explore-background {
    position: relative;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .explore-background img {
    -o-object-fit: unset;
       object-fit: unset;
    margin-bottom: 100px;
    width: 100%;
  }
  .explore-generic {
    position: relative;
    height: 480px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .explore-generic {
    width: 100%;
    height: 568px;
    margin: 0 auto;
  }
  .explore-content {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .explore-background {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
  }
  .explore-background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .explore-copy-and-cta {
    position: absolute;
    left: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
    padding-right: 20px;
  }
  .explore-copy-and-cta h1 p {
    font-size: clamp(32px, 3.5vw, 40px);
    margin-bottom: 30px;
  }
  .explore-button {
    padding: 0 20px;
    height: 44px;
  }
}
@media (max-width: 767px) {
  .explore-generic {
    width: 100%;
    height: 460px;
    margin: 0;
    overflow: hidden;
  }
  .explore-background {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .explore-background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70% center;
       object-position: 70% center;
  }
  .explore-copy-and-cta {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 120px 32px 40px;
    z-index: 2;
    left: 0;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
  .explore-copy-and-cta h1 p {
    height: 102px;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    font-family: Poppins;
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.28px;
    text-align: left;
    color: #ffffff;
    margin: 120px 0 20px 0px;
    word-spacing: 100vw;
    white-space: pre-wrap;
  }
  .explore-button {
    height: 44px;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    border-radius: 2000px;
    background-color: #ffffff;
    text-decoration: none;
    font-family: Poppins;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: center;
    color: #1f1f1f;
  }
}
.explore-overlay {
  width: 986px;
  height: 500px;
  opacity: 0.6;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(100%, rgba(41, 41, 41, 0)), color-stop(1%, #292929));
  background-image: linear-gradient(to left, rgba(41, 41, 41, 0) 100%, #292929 1%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .explore-overlay {
    width: 100%;
    height: 300px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    opacity: 0.7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 41, 41, 0)), to(#292929));
    background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0), #292929);
    position: absolute;
    top: calc(100% - 300px);
    left: 0;
    z-index: 1;
  }
}
/* How WTN works section*/
.wtn-section {
  position: relative;
  width: 100%;
  height: 640px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  background-color: #f3f4f7;
}
.content-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.image-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.player-image {
  height: 460px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 720px;
  display: block;
}
.scale-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 261px;
  height: 263px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 40px;
  z-index: 2;
}
.text-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.heading p {
  font-family: Poppins;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: #1f1f1f;
  margin-bottom: 24px;
}
.description p {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin-bottom: 40px;
  max-width: 480px;
}
.discover-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 24px;
  height: 44px;
  background-color: transparent;
  border: 2px solid #1f1f1f;
  color: #1f1f1f;
  text-decoration: none;
  border-radius: 2000px;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.discover-button:hover {
  background-color: #f3f4f7;
  text-decoration: none;
  color: #1f1f1f;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .heading p {
    font-size: clamp(32px, 3.5vw, 40px);
  }
  .player-image {
    max-width: 100%;
  }
  .scale-image {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 767px) {
  .wtn-section {
    height: auto;
    min-height: 460px;
    margin-top: 60px;
  }
  .content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-section {
    height: 369px;
    width: 100%;
    position: relative;
  }
  .main-image-container {
    height: 100%;
    position: relative;
  }
  .player-image {
    height: 100%;
    width: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .scale-image {
    width: 215px;
    height: 217px;
    right: 0px;
    bottom: -90px;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  .text-content {
    padding: 60px 32px;
    text-align: left;
  }
  .heading p {
    font-size: 28px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
    color: #1f1f1f;
  }
  .description p {
    margin-bottom: 32px;
  }
  .discover-button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*Register section*/
.hero-generic {
  height: 480px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  -webkit-transition: margin-top 0.3s ease;
  transition: margin-top 0.3s ease;
}
.hero-generic .container {
  position: relative;
}
.bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}
.wtn-shoot-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
  -o-object-position: center 0%;
     object-position: center 0%;
  width: 100%;
  height: 100%;
  scale: 1.1;
}
.blue-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(41, 41, 41, 0)), to(#292929));
  background-image: linear-gradient(to left, rgba(41, 41, 41, 0) 0%, #292929 100%);
  z-index: 1;
}
.copy-and-cta {
  margin-left: 200px;
  position: absolute;
  width: 521px;
  height: 228px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.hero-heading-text,
.hero-heading-text p {
  width: 550px;
  font-family: Poppins;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-align: left;
  color: #ffffff;
  margin: 0;
}
.master-button {
  width: auto;
  min-width: 149px;
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
  border-radius: 2000px;
  background-color: #d2394d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-family: inherit;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.master-button:hover {
  background-color: #b3283a;
}
@media screen and (max-width: 767px) {
  .hero-generic {
    width: 100%;
    height: 480px;
    padding: 0;
    margin-top: -20px !important;
  }
  .bg {
    width: 110%;
    height: 110%;
    top: 0px;
    left: -110px;
    -webkit-transform: none;
            transform: none;
    position: initial;
    margin: 0;
    padding: 0;
  }
  .wtn-shoot-image {
    height: 100%;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 60% center;
       object-position: 60% center;
    top: 20px;
    scale: 1;
  }
  .blue-bg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 41, 41, 0)), to(#292929));
    background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0), #292929);
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
  }
  .copy-and-cta {
    width: 100%;
    position: absolute;
    margin: 40px 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    z-index: 10;
  }
  .hero-heading-text,
  .hero-heading-text p {
    width: 100%;
    font-size: 36px;
    letter-spacing: 0.36px;
    text-align: center;
    line-height: 1.4;
    margin: 0;
  }
  .master-button {
    width: calc(100% - 64px);
    height: 44px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    min-width: 280px;
  }
}
/* Our Partners page */
.our-partners-intro__content {
  padding: 40px 0 32px 0;
}
.our-partners-intro__content h1 {
  margin-bottom: 1rem;
}
@media (min-width:768px) {
  .our-partners-intro__content h1 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width:768px) {
  .our-partners-intro__content {
    padding: 60px 0 40px 0;
  }
}
.our-partners-intro .divider {
  border-bottom: 1px solid #ebedef;
}
.our-partners-container {
  margin-top: 40px;
}
.our-partners__continent {
  margin-bottom: 28px;
}
.our-partners__continent-title {
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.our-partners__continent-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  row-gap: 20px;
}
.our-partners__continent.hidden {
  display: none;
}
.our-partners__na {
  min-height: 94px;
  width: 50%;
  min-width: 128px;
  margin: 0;
  padding: 0 4px;
}
@media (min-width:480px) {
  .our-partners__na {
    width: 33.33%;
  }
}
@media (min-width:576px) {
  .our-partners__na {
    width: 25%;
  }
}
@media (min-width:768px) {
  .our-partners__na {
    width: 12.5%;
  }
}
.our-partners__na__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.our-partners__na__link:hover {
  text-decoration: underline;
  color: #16234C;
}
.our-partners__na__no-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.our-partners__na__name {
  text-align: center;
  color: #16234C;
  font-size: 0.875rem;
  font-weight: bold;
}
.our-partners__na__logo {
  max-width: 50%;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.our-partners__na.hidden {
  display: none;
}
.our-partners__search-wrapper {
  margin-top: 32px;
}
@media (min-width:768px) {
  .our-partners__search-wrapper {
    margin-top: 40px;
  }
}
.our-partners__search-wrapper .search-field__label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.32px;
  margin-bottom: 8px;
}
@media (min-width:768px) {
  .our-partners__search-wrapper .search-field__label {
    margin-bottom: 13px;
  }
}
.partner-search-section {
  padding-bottom: 18px;
}
.In-partnership-with {
  height: 26px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-family: Poppins;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  color: #1f1f1f;
}
/* Partner logos section - auto-scroll */
.partner-logos {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 24px 0 0 0;
  padding: 20px 0;
}
.partner-logos-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.partner-logos__partner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
}
.partner-logos__partner img {
  height: 96px;
  max-width: 145px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .partner-logos__partner {
    width: 120px;
    padding: 0 18px;
  }
  .partner-logos__partner img {
    height: 80px;
    max-width: 100px;
  }
}
.partners {
  padding: 0 1rem;
}
.container {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .In-partnership-with {
    height: 26px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    font-family: Poppins;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: center;
    color: #1f1f1f;
  }
}
@media screen and (min-width: 769px) {
  .partner-logos::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff));
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
    z-index: 1;
  }
  .partner-logos::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#ffffff));
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
    z-index: 1;
  }
}
/*Language Header*/
.header-language-block {
  height: 92px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  background-color: #f3f4f7;
  z-index: 10000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.language-header--hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  pointer-events: none;
}
.language-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
.language-inner.container:after {
  display: none;
}
.language-inner p {
  height: 44px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: Poppins;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #1f1f1f;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.header-language-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header-language-selector-wrapper {
  position: relative;
  z-index: 10001;
}
.header-input-boxes {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  width: 172px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 11px 26px 11px 24px;
  border-radius: 4px;
  border: solid 1px #cbcdd1;
  background-color: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.header-input-boxes img.flag {
  width: 24px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-input-boxes .dropdown-text {
  font-family: Poppins;
  font-size: 14px;
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header-input-boxes img.header-dropdown-arrow {
  width: 10px;
  height: 10px;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-language-dropdown {
  display: none;
  position: fixed;
  width: 172px;
  max-height: 258px;
  background: #FFFFFF;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #cbcdd1;
  padding: 8px 0;
  z-index: 20000;
  overflow-y: auto;
}
.header-language-dropdown.show {
  display: block;
}
.header-language-dropdown li {
  height: 38px;
  width: 100%;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-language-dropdown a {
  width: 100%;
  height: 100%;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-family: Poppins;
  font-size: 14px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.header-language-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.header-language-dropdown a.no-hover:hover {
  color: #333 !important;
  text-decoration: none !important;
  background-color: rgba(0, 0, 0, 0.04);
}
.header-language-dropdown .header-flag-icon {
  width: 24px;
  height: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-language-dropdown::-webkit-scrollbar {
  width: 4px;
}
.header-language-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.header-language-dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
.header-language-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.language-box-text:hover {
  color: #1f1f1f !important;
  text-decoration: none !important;
}
.language-box-text,
.language-box-text * {
  color: #1f1f1f !important;
  text-decoration: none !important;
}
.header-update-button {
  width: 109px;
  height: 44px;
  padding: 0 24px;
  border-radius: 2000px;
  background-color: #1E1E1E;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-update-button .Text {
  font-family: Poppins;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
}
.right-icon-holder {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.right-icon-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-nav {
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
  position: fixed;
  z-index: 9999;
}
.main-nav--hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  top: 0 !important;
}
.main-nav--lifted {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .header-language-block {
    padding: 20px 0px;
    height: auto;
    position: fixed;
  }
  .container {
    padding: 0 20px;
  }
  .language-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    position: relative;
  }
  .language-inner p {
    text-align: start;
    font-size: 14px;
    margin-bottom: 10px;
    height: auto;
    padding-right: 28px;
  }
  .header-language-controls {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .header-language-selector-wrapper {
    max-width: 48%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header-input-boxes {
    padding: 10px 15px;
  }
  .header-update-button {
    width: 109px;
    height: 44px;
    padding: 0 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    margin-left: auto;
  }
  .right-icon-holder {
    position: absolute;
    top: 0;
    right: 20px;
    width: 24px;
    height: 24px;
    z-index: 2;
  }
  .header-language-dropdown {
    width: 100%;
    max-width: 172px;
  }
}
/*Breadcrumb*/
.breadcrumb-container {
  background: #fff;
  padding-top: 28px;
}
.breadcrumb-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.breadcrumb-link {
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #d2394d;
  text-decoration: none;
}
.breadcrumb-separator {
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 4px;
}
.breadcrumb-current {
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #1f1f1f;
}
/* Breadcrumb Responsive */
/* Tablet view */
@media (min-width: 921px) and (max-width: 1024px) {
  .breadcrumb-wrapper {
    max-width: 650px;
    padding: 0 100px 0;
    margin: 0;
  }
}
@media (min-width: 501px) and (max-width: 920px) {
  .breadcrumb-wrapper {
    padding: 0 32px;
    margin: 0;
  }
}
/* Mobile view */
@media (max-width: 500px) {
  .breadcrumb-container {
    padding: 40px 0 0 0;
  }
  .breadcrumb-wrapper {
    max-width: 311px;
    padding-left: 32px;
    margin: 0;
  }
}
@media (max-width: 900px) {
  .breadcrumb-container {
    margin-top: 0;
  }
}
/* Extends the slick carousel - restyles the dots */
.carousel-dots,
.carousel-dots-hero {
  padding: 0 0 20px 0;
  margin: 0 0 28px 0;
  position: relative;
}
.carousel-dots .slick-dots,
.carousel-dots-hero .slick-dots {
  line-height: 1;
  bottom: auto;
  left: 0;
  top: 0;
}
.carousel-dots .slick-dots li,
.carousel-dots-hero .slick-dots li {
  display: inline-block;
  height: 16.6px;
  margin: 0 13.4px 0 0;
  width: 16.6px;
}
.carousel-dots .slick-dots li:first-of-type,
.carousel-dots-hero .slick-dots li:first-of-type {
  margin-left: 13.4px;
}
.carousel-dots .slick-dots li.slick-active button,
.carousel-dots-hero .slick-dots li.slick-active button {
  opacity: 1;
  background: #ffffff;
}
.carousel-dots .slick-dots li button,
.carousel-dots-hero .slick-dots li button {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  width: 16.6px;
  height: 16.6px;
  opacity: 0.7;
}
.carousel-dots .slick-dots li button:focus,
.carousel-dots-hero .slick-dots li button:focus,
.carousel-dots .slick-dots li button:active,
.carousel-dots-hero .slick-dots li button:active,
.carousel-dots .slick-dots li button:hover,
.carousel-dots-hero .slick-dots li button:hover {
  opacity: 1;
  background: #ffffff;
}
.carousel-dots .slick-dots li button:before,
.carousel-dots-hero .slick-dots li button:before {
  display: none;
}
.carousel-container {
  width: 100%;
  position: relative;
  height: 380px;
  min-height: 380px;
  overflow: hidden;
}
@media (min-width:768px) {
  .carousel-container {
    height: 420px;
    min-height: 420px;
  }
}
.carousel-container .slick-track {
  min-height: 380px;
}
@media (min-width:768px) {
  .carousel-container .slick-track {
    min-height: 420px;
  }
}
.carousel-container .carousel-dots-hero {
  width: 100%;
  position: absolute;
  bottom: 0px;
}
.carousel-container .slick-prev {
  top: 50%;
  left: 20px;
}
@media (min-width:1270px) {
  .carousel-container .slick-prev {
    left: calc((100% - 1250px) / 2);
  }
}
.carousel-container .slick-next {
  top: 50%;
  right: 20px;
}
@media (min-width:1270px) {
  .carousel-container .slick-next {
    right: calc((100% - 1250px) / 2);
  }
}
@media (min-width: 768px) {
  .carousel-dots {
    margin: 20px 0 60px 0;
  }
}
/* Umbraco form overrides */
.umbraco-forms-form {
  padding: 0;
}
.umbraco-forms-form form .umbraco-forms-field {
  margin: 0 0 30px 0;
}
.umbraco-forms-form form .umbraco-forms-field.checkbox {
  position: relative;
}
.umbraco-forms-form form .umbraco-forms-field.checkbox label {
  display: block;
  padding-left: 30px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.36px;
}
.umbraco-forms-form form .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper {
  left: 0;
  top: 0;
  width: 100%;
}
.umbraco-forms-form form .umbraco-forms-field.checkbox input[type="checkbox"] {
  height: 18px !important;
  margin: 1px 0 0 0 !important;
  width: 18px !important;
}
.umbraco-forms-form form .umbraco-forms-field-wrapper {
  width: 100%;
}
.umbraco-forms-form form span.field-validation-error {
  color: #dc3741 !important;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.umbraco-forms-form form legend {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.24px;
  text-align: left;
  color: #737680;
}
.umbraco-forms-form form label {
  display: block;
  font-size: 1rem;
  margin: 0 0 10px 0;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.32px;
}
.umbraco-forms-form form select {
  border: 1px solid #d2d2d2;
  border-radius: 0px;
  font-size: 1.5em !important;
  line-height: 48px;
  margin: 0;
  min-height: 48px;
  padding: 0 6px;
  width: 100%;
}
.umbraco-forms-form form select:hover,
.umbraco-forms-form form select:active,
.umbraco-forms-form form select:focus {
  border-color: #ccc;
}
.umbraco-forms-form form input.text,
.umbraco-forms-form form textarea {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  font-size: 1.5em !important;
  margin: 0 0 5px 0;
  max-width: 100% !important;
  outline: none;
  padding: 0 10px;
  width: 100%;
  color: #16234C;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.umbraco-forms-form form input.text:hover,
.umbraco-forms-form form textarea:hover {
  border-color: #8F99B7;
}
.umbraco-forms-form form input.text:active,
.umbraco-forms-form form textarea:active,
.umbraco-forms-form form input.text:focus,
.umbraco-forms-form form textarea:focus {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 58, 112, 0.3);
          box-shadow: 0 0 5px 0 rgba(0, 58, 112, 0.3);
  border-color: #003A70;
}
.umbraco-forms-form form input.text {
  border-radius: 8px;
  line-height: 48px;
}
.umbraco-forms-form form textarea {
  line-height: 1.4;
  padding-top: 10px;
}
/*
.select2-container {
    background: #f00;
    box-shadow: none;
    display: block !important;
    outline: none;
    padding: 0;


    &.select2-dropdown-open {

        a.select2-choice {
            .select2-arrow {
                b {
                    &:before {
                        margin: -4px 0 0 0;
                        transform: rotate(135deg);
                        transition: all 250ms;
                    }
                }
            }
        }
    }

    a.select2-choice {
        background: #fff;
        border: 1px solid #d2d2d2 !important;
        border-radius: 0;
        box-shadow: none;
        height: 50px;
        margin: 0;
        min-height: 50px;
        outline: none;
        padding-left: 10px;

        &:hover, &:active, &:focus {
            border-color: #ccc !important;
        }

        .select2-arrow {
            background: #fff;
            border: 0;
            border-radius: 0;
            height: 48px;

            b {
                background: transparent;
                position: relative;

                &:before {
                    border-left: 2px solid #54565a;
                    border-bottom: 2px solid #54565a;
                    content: " ";
                    height: 6px;
                    left: 0;
                    margin: -5px 0 0 0;
                    position: absolute;
                    top: 50%;
                    transform: rotate(-45deg);
                    transition: all 250ms;
                    width: 6px;
                }
            }
        }
    }

    .select2-chosen {
        font-size: 16px;
        line-height: 48px;
        min-height: 48px;
    }
}


.select2-drop {

    .select2-results {
        margin:0 !important;
        padding: 0 !important;

        li {
            font-size: 16px !important;
            line-height: 35px;
                
            .select2-result-label{
            padding-left:10px;
            }
        }
    }

    .select2-highlighted {
        background-color: #008567 !important;
    }

    &.select2-drop-active {
        border-color: #d2d2d2 !important;
        border-radius: 0 !important;
        box-shadow: none !important;

    }
}
*/
@media (min-width: 768px) {
  .umbraco-forms-form form .umbraco-forms-field-wrapper {
    width: 75%;
  }
}
.umbraco-forms-field.checkbox {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.umbraco-forms-field.checkbox .umbraco-forms-field-wrapper input[type="checkbox"] {
  visibility: hidden;
}
.umbraco-forms-field.checkbox:hover .umbraco-forms-field-wrapper .c-checkbox {
  border-color: #003A70;
}
.umbraco-forms-field.checkbox.selected .umbraco-forms-field-wrapper {
  background-position: -3px -112px;
}
.umbraco-forms-field.checkbox.selected .umbraco-forms-field-wrapper .c-checkbox {
  background: #16234C;
  border-color: #16234C;
}
.umbraco-forms-field.checkbox.selected .umbraco-forms-field-wrapper .c-checkbox:after {
  display: block;
}
.lt-ie9.js .styled-radio-bg,
.lt-ie9.js .styled-checkbox-bg {
  display: none;
}
.lt-ie9 label.styled-checkbox {
  padding: 0;
  margin: 0;
}
.lt-ie9 label.styled-checkbox input[type=checkbox] {
  position: relative;
  left: 0;
}
.hidden {
  display: none;
}
.modal {
  background: #fff;
  border-radius: 0;
  height: 100%;
  left: 0;
  margin: 0;
  overflow: auto;
  padding: 40px 16px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  vertical-align: top;
  z-index: 999999;
}
.modal p.error {
  color: #e22f2f;
  font-weight: 600;
}
.modal a.close {
  background: #fff;
  display: block;
  height: 20px;
  position: absolute;
  right: 16px;
  text-indent: -500em;
  top: 10px;
  width: 20px;
  z-index: 10;
}
.modal a.close:before {
  background: #333;
  content: " ";
  height: 2px;
  left: 3px;
  position: absolute;
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 16px;
}
.modal a.close:after {
  background: #333;
  content: " ";
  height: 2px;
  left: 3px;
  position: absolute;
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 16px;
}
.modal .actions {
  margin: 20px 0 0 0;
  text-align: left;
}
.modal .actions .buttons {
  margin-right: 10px;
  min-width: 120px;
}
@media only screen and (min-width: 767px) {
  .modal {
    background: #fff;
    border-radius: 10px;
    height: auto;
    left: 50%;
    margin: 0 0 0 -385px;
    max-height: 90%;
    max-width: 90%;
    min-height: 300px;
    overflow: auto;
    padding: 60px 40px;
    position: absolute;
    text-align: center;
    top: 100px;
    width: 770px;
    vertical-align: top;
    z-index: 1001;
  }
  .modal a.close {
    right: 20px;
    top: 20px;
  }
}
.loading .loading-graphic {
  visibility: visible !important;
}
.loading .loading-graphic img {
  display: block;
  height: 64px;
  margin: 0 auto;
  visibility: visible !important;
  width: 64px;
}
.loading * {
  visibility: hidden !important;
}
.loading.modal .loading-graphic {
  left: 0;
  margin-top: -64px;
  position: absolute;
  top: 50%;
  width: 100%;
}
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #ffffff;
  z-index: 99999;
  width: 100%;
  border-top: 1px solid #EBEBEB;
}
#cookie-bar p {
  margin: 0 auto;
  max-width: 1250px;
  padding: 15px 20px;
}
@media only screen and (min-width:992px) {
  #cookie-bar p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#cookie-bar p .cb-policy {
  margin-left: 5px;
}
#cookie-bar p .cb-enable {
  margin-left: auto;
}
section.banner,
div.banner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 380px;
}
@media (min-width:768px) {
  section.banner,
  div.banner {
    height: 420px;
  }
}
section.banner.banner--shallow,
div.banner.banner--shallow {
  height: 360px;
}
section.banner.home-banner,
div.banner.home-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-position: 81% top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  height: auto;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
@media (min-width:768px) {
  section.banner.home-banner,
  div.banner.home-banner {
    background-position: center center;
    min-height: 420px;
  }
}
section.banner.home-banner picture,
div.banner.home-banner picture {
  position: absolute;
  inset: 0;
}
section.banner.home-banner picture img,
div.banner.home-banner picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 81% top;
     object-position: 81% top;
}
section.banner.home-banner .container,
div.banner.home-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  padding-bottom: 60px;
}
section.banner.home-banner .container h1,
div.banner.home-banner .container h1 {
  text-transform: none;
  font-size: 1.75rem;
}
@media (min-width:768px) {
  section.banner.home-banner .container h1,
  div.banner.home-banner .container h1 {
    font-size: 2.25rem;
  }
}
section.banner.home-banner .container h1,
div.banner.home-banner .container h1,
section.banner.home-banner .container h2,
div.banner.home-banner .container h2 {
  margin-bottom: 0.5rem;
}
section.banner.home-banner .container p,
div.banner.home-banner .container p {
  margin: 0;
}
section.banner.home-banner .container button,
div.banner.home-banner .container button {
  margin-top: 26px;
}
section.banner.home-banner .banner-content,
div.banner.home-banner .banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 100%;
}
@media (min-width:768px) {
  section.banner.home-banner .banner-content,
  div.banner.home-banner .banner-content {
    padding: 0 80px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
@media (min-width:992px) {
  section.banner.home-banner .banner-content,
  div.banner.home-banner .banner-content {
    padding: 0 108px;
  }
}
section.banner.home-banner .banner-title,
div.banner.home-banner .banner-title {
  font-size: 2.25rem;
}
section.banner.home-banner--0,
div.banner.home-banner--0 {
  background-image: url(../img/Home/Home-banner-one-mobile_3x.jpg);
}
@media (min-width:768px) {
  section.banner.home-banner--0,
  div.banner.home-banner--0 {
    background-image: url(../img/Home/Home-banner-one_2x-right.jpg);
    background-position: 70% top;
  }
}
@media (min-width:992px) {
  section.banner.home-banner--0,
  div.banner.home-banner--0 {
    background-image: url(../img/Home/Home-banner-one_3x-right.jpg);
  }
}
section.banner.home-banner--1,
div.banner.home-banner--1 {
  background-image: url(../img/Home/Home-banner-two-mobile_3x.jpg);
}
@media (min-width:768px) {
  section.banner.home-banner--1,
  div.banner.home-banner--1 {
    background-image: url(../img/Home/Home-banner-two_2x-right.jpg);
  }
}
@media (min-width:992px) {
  section.banner.home-banner--1,
  div.banner.home-banner--1 {
    background-image: url(../img/Home/Home-banner-two_3x-right.jpg);
  }
}
section.banner.home-banner--2,
div.banner.home-banner--2 {
  background-image: url(../img/Home/Home-banner-three-mobile_3x.jpg);
}
@media (min-width:768px) {
  section.banner.home-banner--2,
  div.banner.home-banner--2 {
    background-image: url(../img/Home/Home-banner-three_2x.jpg);
  }
}
@media (min-width:992px) {
  section.banner.home-banner--2,
  div.banner.home-banner--2 {
    background-image: url(../img/Home/Home-banner-three_3x.jpg);
  }
}
section.banner.your-number-banner,
div.banner.your-number-banner {
  background-image: url(../img/YourNumber/discover-bg_mobile.jpg);
  background-position: 78% top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
@media (min-width:768px) {
  section.banner.your-number-banner,
  div.banner.your-number-banner {
    background-image: url(../img/YourNumber/discover-bg_2x.jpg);
    background-position: center center;
    background-size: cover;
  }
}
@media (min-width:992px) {
  section.banner.your-number-banner,
  div.banner.your-number-banner {
    background-image: url(../img/YourNumber/discover-bg_3x.jpg);
  }
}
section.banner.our-partners-banner,
div.banner.our-partners-banner {
  background-image: url(../img/OurPartners/Our-partners-banner_mobile.jpg);
  background-position: 78% center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
@media (min-width:768px) {
  section.banner.our-partners-banner,
  div.banner.our-partners-banner {
    background-image: url(../img/OurPartners/Our-partners-banner_3x.jpg);
    background-position: center center;
    background-size: cover;
  }
}
@media (min-width:992px) {
  section.banner.our-partners-banner,
  div.banner.our-partners-banner {
    background-image: url(../img/OurPartners/Our-partners-banner_3x.jpg);
  }
}
section.banner.head-to-head-banner,
div.banner.head-to-head-banner {
  background-image: url(../img/your-number-banner-shape-mobile.svg), url(../img/head-to-head-banner.jpg);
  background-position: 78% center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
@media (min-width:768px) {
  section.banner.head-to-head-banner,
  div.banner.head-to-head-banner {
    background-image: url(../img/Your-number-banner-shape.svg), url(../img/head-to-head-banner.jpg);
    background-position: center center;
    background-size: 100% 420px,cover;
  }
}
section.banner.contact-us-banner,
div.banner.contact-us-banner {
  background-image: url(../img/ContactUs/Contact-us-banner_mobile.jpg);
  background-position: 50% top;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
@media (min-width:768px) {
  section.banner.contact-us-banner,
  div.banner.contact-us-banner {
    background-image: url(../img/ContactUs/Contact-us-banner_2x.jpg);
    background-position: center center;
    background-size: cover;
  }
}
@media (min-width:992px) {
  section.banner.contact-us-banner,
  div.banner.contact-us-banner {
    background-image: url(../img/ContactUs/Contact-us-banner_3x.jpg);
    background-position: center center;
    background-size: cover;
  }
}
section.banner.contact-us-banner .container,
div.banner.contact-us-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.banner.contact-us-banner .container h1,
div.banner.contact-us-banner .container h1,
section.banner.contact-us-banner .container h2,
div.banner.contact-us-banner .container h2 {
  margin-bottom: 0.5rem;
}
section.banner.contact-us-banner .container p,
div.banner.contact-us-banner .container p {
  margin: 0;
  font-size: 1.125rem;
}
.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}
@media (min-width:768px) {
  .row-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 60px 0;
  }
}
@media (min-width:768px) {
  .row-flex.row-reverse-tablet {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.col-flex_1_of_1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.col-flex_1_of_2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width:768px) {
  .col-flex_1_of_2 {
    width: calc(50% - 24px);
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.features-section {
  background-color: #003A70;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width:768px) {
  .features-section {
    background-color: none;
    background-image: url('/Content/img/Home/Home-features-bg.jpg');
  }
}
.features-section .row-flex {
  padding: 40px 0;
}
@media (min-width:768px) {
  .features-section .row-flex {
    padding: 60px 0;
  }
}
.features-section .features-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width:768px) {
  .features-section .features-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.features-section .features-wrapper .feature {
  background: #ffffff;
  color: #16234C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 20px;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width:768px) {
  .features-section .features-wrapper .feature {
    margin-bottom: 0;
    padding: 40px 32px;
    width: calc(33.33333% - 18.66px);
  }
}
.features-section .features-wrapper .feature img {
  margin-bottom: 32px;
}
@media (min-width:768px) {
  .features-section .features-wrapper .feature img {
    margin-bottom: 32px;
  }
}
.players-count-section {
  background-image: url('/Content/img/Home/Home-bg-players-count-mobile.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width:480px) {
  .players-count-section {
    background-image: url('/Content/img/Home/Home-bg-players-count.svg');
  }
}
.players-count-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.players-count-section .players-count-content {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (min-width:768px) {
  .players-count-section .players-count-content {
    padding: 60px 0;
  }
}
.players-count-section .players-count-content h2 {
  margin-bottom: 12px;
  font-size: 2.37rem;
}
@media (min-width:768px) {
  .players-count-section .players-count-content h2 {
    font-size: 2.5rem;
  }
}
.players-count-section .players-count-content p {
  margin-bottom: 0;
}
.players-count-section .players-count-content .players-count-icon {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 52px;
  height: 52px;
  background-color: #003A70;
  border-radius: 50%;
}
.players-count-section .players-count-content .players-count-icon img {
  width: 28px;
  height: 28px;
}
.players-count-section .players-count-content .players-count-case {
  position: relative;
  color: transparent;
}
.players-count-section .players-count-content #players-count {
  position: absolute;
  right: 0;
  color: #16234C;
}
.how-to-steps-section {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/Content/img/Home/Home-how-to-bg-mobile.jpg');
}
@media (min-width:480px) {
  .how-to-steps-section {
    background-position: 30% bottom;
    background-image: url('/Content/img/Home/Home-how-to-bg.jpg');
  }
}
.how-to-steps-section .hts-content-container {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width:768px) {
  .how-to-steps-section .hts-content-container {
    padding: 60px 0;
  }
}
.how-to-steps-section .hts-steps-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width:768px) {
  .how-to-steps-section .hts-steps-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.how-to-steps-section .hts-steps-container h4 {
  font-size: 1.125rem;
}
.how-to-steps-section .hts-steps-container p {
  margin-bottom: 16px;
}
.how-to-steps-section .hts-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 280px;
  text-align: center;
}
@media (min-width:768px) {
  .how-to-steps-section .hts-step {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.how-to-steps-section .hts-step a {
  color: #fff;
  text-decoration: underline;
}
.how-to-steps-section .hts-arrow {
  margin-bottom: 12px;
}
.how-to-steps-section .hts-arrow img {
  width: 44px;
  height: 44px;
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}
@media (min-width:768px) {
  .how-to-steps-section .hts-arrow img {
    width: 60px;
    height: 60px;
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
}
.how-to-steps-section .hts-number {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: #003A70;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: white;
}
.content-section p {
  margin-bottom: 20px;
}
.content-section p:last-of-type {
  margin-bottom: 28px;
}
.content-section p a {
  font-weight: 600;
}
.content-section ul {
  margin-left: 10px;
}
.content-section li {
  margin-bottom: 8px;
}
@media (min-width:768px) {
  .content-section li {
    margin-bottom: 8px;
  }
}
.content-section .container {
  padding-block: 40px;
}
@media (min-width:768px) {
  .content-section .container {
    padding-block: 60px;
  }
}
.content-section .container:after {
  display: none;
}
.content-section .split-2 {
  gap: 28px;
}
@media (min-width:768px) {
  .content-section .split-2 {
    gap: 48px;
  }
}
.content-section .split-2.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width:768px) {
  .content-section .split-2.flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.jquery-modal {
  z-index: 10000 !important;
}
.jquery-modal.blocker {
  padding: 0;
  overflow: unset;
}
@media (min-width:768px) {
  .jquery-modal.blocker {
    overflow: unset;
  }
}
#subscribe-modal-close-btn {
  padding: 0;
  position: absolute;
  right: 20px;
  top: 14px;
  background: transparent url(../img/icn_close.svg) no-repeat center;
  height: 14px;
  width: 14px;
  border: none;
}
@media (min-width:768px) {
  #subscribe-modal-close-btn {
    right: 20px;
    top: 20px;
    height: 20px;
    width: 20px;
  }
}
#subscribe-modal {
  z-index: 10000 !important;
  position: absolute;
  inset: 0;
  background-color: white;
  padding: 28px 0 0 0;
  border-radius: 0px !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
}
@media (min-width:768px) {
  #subscribe-modal {
    position: absolute;
    top: 0;
    margin: auto;
    margin-top: 40px;
    padding: 40px 0;
    border-radius: 20px !important;
    max-width: 600px !important;
    height: 100% !important;
    max-height: 90vh;
  }
}
#subscribe-modal .subscribe-modal-content-wrapper {
  max-height: 100%;
  overflow-y: scroll;
}
#subscribe-modal .header-wrapper {
  margin-bottom: 24px;
  width: 100%;
  max-width: 600px;
  padding: 0px 20px;
  padding-bottom: 0;
}
@media (min-width:768px) {
  #subscribe-modal .header-wrapper {
    padding: 0px 40px;
    padding-bottom: 0;
  }
}
#subscribe-modal .header-wrapper h2 {
  margin: 0;
  text-align: start;
}
#subscribe-modal .onFormSubmittedFeedback {
  height: 467px !important;
}
#subscribe-modal .onFormSubmittedFeedbackButtonSuccess {
  display: none;
}
#subscribe-modal form.marketingForm {
  padding: 0 20px 20px 20px;
}
@media (min-width:768px) {
  #subscribe-modal form.marketingForm {
    border-radius: 20px !important;
    padding: 0 40px 10px 40px;
  }
}
#subscribe-modal form.marketingForm * {
  font-family: 'Poppins', sans-serif;
}
#subscribe-modal form.marketingForm > div {
  max-width: unset !important;
  margin: 0 !important;
}
#subscribe-modal form.marketingForm .outer {
  width: unset !important;
}
#subscribe-modal form.marketingForm .inner {
  padding: 0 !important;
}
#subscribe-modal form.marketingForm .inner > div:first-child {
  margin-inline: 0px !important;
}
#subscribe-modal form.marketingForm .inner > div {
  margin: 0 !important;
  padding: 0;
  gap: 8px;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock {
  padding: 0 !important;
  margin-bottom: 32px !important;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div input {
  margin-top: 3px;
  margin-bottom: 0;
  height: 20px;
  accent-color: #16234C;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div input:hover {
  accent-color: #003A70 !important;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div label {
  margin: 0;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div label:after {
  display: none;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div p br {
  display: none;
}
#subscribe-modal form.marketingForm .inner > div.consentBlock > div p:after {
  width: 12px;
  display: inline-block;
  line-height: 22px;
  text-align: center;
  color: #c33400;
  content: "*";
}
#subscribe-modal form.marketingForm .inner > div.lookupFormFieldBlock {
  position: relative;
}
#subscribe-modal form.marketingForm .inner p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.0225rem;
  margin: 0 0 1.25rem 0;
  color: #16234C;
}
#subscribe-modal form.marketingForm .inner label {
  font-size: 1rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.32px;
  color: #16234C;
}
#subscribe-modal form.marketingForm .inner label p {
  margin: 0;
}
#subscribe-modal form.marketingForm .inner label:after {
  width: 12px;
}
#subscribe-modal form.marketingForm .inner input {
  margin-bottom: 32px;
  height: 52px;
  padding: 13px 24px 13px 24px;
  border-radius: 8px;
  border: solid 1px #dadce0;
  background-color: #fff;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-filter: none;
          filter: none;
  border-width: 1px !important;
  max-width: 554px;
}
#subscribe-modal form.marketingForm .inner input:hover,
#subscribe-modal form.marketingForm .inner input:focus {
  border: solid 1px #003A70;
  outline: none;
}
#subscribe-modal form.marketingForm .inner input.lookup-behavior {
  padding: 13px 50px 13px 59px;
  background: url(/Content/img/icn-search.svg) no-repeat scroll 12px 5px;
}
#subscribe-modal form.marketingForm button[type="submit"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Poppins', sans-serif;
  background: #E03E52 !important;
  border: 2px solid #E03E52;
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  line-height: 50px;
  margin: 0;
  padding: 11px 28px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border-radius: 40px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.32px;
  width: 100%;
  -webkit-appearance: none;
}
#subscribe-modal form.marketingForm button[type="submit"]:hover,
#subscribe-modal form.marketingForm button[type="submit"]:focus,
#subscribe-modal form.marketingForm button[type="submit"]:active {
  background: #cc2d2d;
  color: #fff;
  border-color: #cc2d2d;
  -webkit-appearance: none;
}
#subscribe-modal form.marketingForm div[data-editorblocktype="Divider"] {
  margin: 30px 0 20px 0 !important;
}
@media (min-width:768px) {
  #subscribe-modal form.marketingForm div[data-editorblocktype="Divider"] {
    margin-bottom: 30px !important;
  }
}
#subscribe-modal form.marketingForm div[data-editorblocktype="Divider"] table td {
  border-bottom-width: 1px !important;
  border-bottom-style: solid !important;
  border-bottom-color: #ebedef !important;
}
#subscribe-modal form.marketingForm div[data-editorblocktype="SubmitButtonBlock"] p {
  margin: 0;
}
#subscribe-modal form.marketingForm div[data-editorblocktype="Captcha"] input {
  padding: 13px 24px 13px 24px !important;
}
#subscribe-modal form.marketingForm div[data-editorblocktype="Captcha"] table tr td:first-of-type {
  width: 0px;
}
#subscribe-modal form.marketingForm div[data-editorblocktype="Captcha"] table tr td b {
  font-weight: normal;
  margin: 0 4px;
}
#subscribe-modal form.marketingForm .columnContainer > div:last-of-type {
  margin-top: 20px;
}
#subscribe-modal form.marketingForm .columnContainer > div:last-of-type p {
  margin: 0;
}
#subscribe-modal form.marketingForm .ui-selectmenu-menu {
  margin-top: 4px;
  border-radius: 8px !important;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #ebedef;
  background-color: #fff;
}
#subscribe-modal form.marketingForm .ui-selectmenu-menu ul {
  border-radius: 8px !important;
  border: none;
}
#subscribe-modal form.marketingForm .ui-selectmenu-menu ul li.ui-menu-item:hover,
#subscribe-modal form.marketingForm .ui-selectmenu-menu ul li.ui-menu-item:focus,
#subscribe-modal form.marketingForm .ui-selectmenu-menu ul li.ui-menu-item:active,
#subscribe-modal form.marketingForm .ui-selectmenu-menu ul li.ui-menu-item.ui-state-active {
  color: #16234C;
  border: none;
  background-color: #F9FAFA;
}
header.header .mobile-navigation__wrapper {
  display: block;
  overflow-y: scroll;
  position: fixed;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: -10;
}
@media (min-width:1100px) {
  header.header .mobile-navigation__wrapper {
    display: none;
  }
}
header.header .mobile-navigation__wrapper.open {
  opacity: 1;
  z-index: 999;
}
header.header .mobile-navigation__wrapper.open .mobile-navigation__menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width:1100px) {
  header.header .mobile-navigation__wrapper#mobile-menu-account {
    display: none;
  }
}
header.header .mobile-navigation__toggle {
  margin-left: 20px;
}
header.header .mobile-navigation__toggle.hide-on-mobile {
  display: none;
}
@media (min-width:1100px) {
  header.header .mobile-navigation__toggle.hide-on-mobile {
    display: block;
  }
}
header.header .mobile-navigation__toggle.hide-on-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width:1100px) {
  header.header .mobile-navigation__toggle.hide-on-desktop {
    display: none;
  }
}
header.header .mobile-navigation__toggle--main {
  padding: 8px 0;
  background: none;
  border: none;
  outline: none;
}
@media (min-width:1100px) {
  header.header .mobile-navigation__toggle--main {
    display: none;
  }
}
header.header .mobile-navigation__toggle--main:hover,
header.header .mobile-navigation__toggle--main:active,
header.header .mobile-navigation__toggle--main:focus {
  outline: none;
}
header.header .mobile-navigation__toggle--main:hover #burger span,
header.header .mobile-navigation__toggle--main:active #burger span,
header.header .mobile-navigation__toggle--main:focus #burger span {
  background: #E03E52;
}
header.header .mobile-navigation__toggle--main.pressed #burger span {
  background: #E03E52;
}
header.header .mobile-navigation__toggle--main.pressed #burger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1px;
  left: 5px;
}
header.header .mobile-navigation__toggle--main.pressed #burger span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
header.header .mobile-navigation__toggle--main.pressed #burger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
  left: 5px;
}
header.header .mobile-navigation__toggle--main #burger {
  width: 24px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header.header .mobile-navigation__toggle--main #burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #16234C;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.1s ease-in, background 0.8s;
  transition: all 0.1s ease-in, background 0.8s;
}
header.header .mobile-navigation__toggle--main #burger span:nth-child(1) {
  top: 1px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
header.header .mobile-navigation__toggle--main #burger span:nth-child(2) {
  top: 9px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
header.header .mobile-navigation__toggle--main #burger span:nth-child(3) {
  bottom: 1px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
header.header .mobile-navigation__toggle--account {
  padding: 0;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background-color: transparent;
}
header.header .mobile-navigation__toggle--account:hover .mobile-navigation__icon-open path,
header.header .mobile-navigation__toggle--account:active .mobile-navigation__icon-open path,
header.header .mobile-navigation__toggle--account:focus .mobile-navigation__icon-open path {
  stroke: #E03E52;
}
header.header .mobile-navigation__toggle--account.pressed::before {
  display: none;
}
header.header .mobile-navigation__toggle--account.pressed .mobile-navigation__icon-open {
  display: none;
}
header.header .mobile-navigation__toggle--account.pressed .mobile-navigation__icon-close {
  opacity: 1;
}
header.header .mobile-navigation__toggle--account.pressed .mobile-navigation__icon-close span {
  background: #dc3741;
}
header.header .mobile-navigation__toggle--account.pressed .mobile-navigation__icon-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1px;
  left: 5px;
}
header.header .mobile-navigation__toggle--account.pressed .mobile-navigation__icon-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
  left: 5px;
}
header.header .mobile-navigation__toggle--account .mobile-navigation__icon-open {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0;
  -webkit-animation: fade-in 0.1s ease-in forwards;
          animation: fade-in 0.1s ease-in forwards;
  -webkit-transform: translateX(-8px);
          transform: translateX(-8px);
}
header.header .mobile-navigation__toggle--account .mobile-navigation__icon-open path {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
header.header .mobile-navigation__toggle--account .mobile-navigation__icon-close {
  width: 24px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  opacity: 0.5;
}
header.header .mobile-navigation__toggle--account .mobile-navigation__icon-close span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}
header.header .mobile-navigation__toggle--account .mobile-navigation__icon-close span:nth-child(1) {
  top: 1px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
header.header .mobile-navigation__toggle--account .mobile-navigation__icon-close span:nth-child(2) {
  bottom: 1px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
header.header .mobile-navigation__menu {
  position: absolute;
  right: 0;
  width: 312px;
  max-width: 100%;
  height: 100%;
  background-color: white;
  padding: 24px 20px;
  font-size: 1em;
  list-style-type: none;
  margin: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
header.header .mobile-navigation__menu .nav-item {
  font-size: 1em;
  line-height: normal;
  margin: 0;
  padding: 12px 0;
  float: none;
}
header.header .mobile-navigation__menu .nav-item--separator {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #ebedef;
}
header.header .mobile-navigation__menu .nav-item:last-child {
  margin-bottom: 0;
}
header.header .mobile-navigation__menu .nav-item.account-menu--short {
  display: none;
}
@media (min-width:768px) {
  header.header .mobile-navigation__menu .nav-item.account-menu--short {
    display: block;
  }
}
header.header .mobile-navigation__menu .nav-item.account-menu--extended {
  display: block;
}
@media (min-width:768px) {
  header.header .mobile-navigation__menu .nav-item.account-menu--extended {
    display: none;
  }
}
header.header .mobile-navigation__menu .nav-link {
  padding: 0;
  white-space: nowrap;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.28px;
  color: #16234C;
  text-decoration: none;
  text-transform: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
header.header .mobile-navigation__menu .nav-link:hover,
header.header .mobile-navigation__menu .nav-link:active,
header.header .mobile-navigation__menu .nav-link:focus,
header.header .mobile-navigation__menu .nav-link.selected {
  color: #E03E52;
  outline: none;
}
header.header .mobile-navigation__menu .separator {
  margin: 8px 0;
  padding: 0;
  border-top: 1px solid #ebedef;
  height: 0;
}
.main-nav {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 68px;
  min-height: 68px;
  height: 68px;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  border-bottom: 1px solid #ebedef;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  top: 92px;
}
@media (min-width: 1270px) {
  .main-nav {
    max-height: 90px;
    min-height: 90px;
    height: 90px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    top: 0px;
  }
}
.main-nav--hide {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
.main-nav--lifted {
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
}
.main-nav .main-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-nav .main-nav-inner .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-nav .main-nav-inner .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-nav .main-nav-inner .logo a img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: clamp(145px, 40vw, 177px);
  height: auto;
}
@media (min-width: 1270px) {
  .main-nav .main-nav-inner .logo a img {
    width: 237px;
  }
}
.main-nav .main-nav-inner .nav-primary-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-nav .main-nav-inner ul.nav-primary {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-nav .main-nav-inner ul.nav-primary li {
  list-style-type: none;
  margin: 0 25px 0 0;
  padding: 0;
  width: auto;
}
.main-nav .main-nav-inner ul.nav-primary li:last-child {
  margin-right: 0;
}
.main-nav .main-nav-inner ul.nav-primary li.hide-on-mobile {
  display: none;
}
@media (min-width:1100px) {
  .main-nav .main-nav-inner ul.nav-primary li.hide-on-mobile {
    display: block;
  }
}
.main-nav .main-nav-inner ul.nav-primary li.hide-on-desktop {
  display: block;
}
@media (min-width:1100px) {
  .main-nav .main-nav-inner ul.nav-primary li.hide-on-desktop {
    display: none;
  }
}
.main-nav .main-nav-inner ul.nav-primary li .nav-link {
  font-size: 0.875rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.28px;
  color: #16234C;
  padding: 0;
  margin: 0;
  text-decoration: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.main-nav .main-nav-inner ul.nav-primary li .nav-link:hover,
.main-nav .main-nav-inner ul.nav-primary li .nav-link:active,
.main-nav .main-nav-inner ul.nav-primary li .nav-link:focus,
.main-nav .main-nav-inner ul.nav-primary li .nav-link.selected {
  color: #E03E52;
}
.main-nav .main-nav-inner ul.nav-primary li .nav-link .icon-search {
  display: none;
  width: 19px;
  height: 19px;
  display: inline-block;
  top: 4px;
  position: relative;
}
.main-nav .main-nav-inner ul.nav-primary .nav-divider {
  display: inline;
  border-left: 1px solid #ebedef;
}
.mobile-nav-active .main-nav {
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
}
.testimonials {
  background-color: #F2F5F8;
}
.testimonials-card {
  padding: 40px;
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 4px 28px 0 rgba(22, 35, 76, 0.08);
          box-shadow: 0 4px 28px 0 rgba(22, 35, 76, 0.08);
}
@media (min-width:768px) {
  .testimonials-card {
    width: calc(50% - 16px);
  }
}
.testimonials-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.testimonials-card__header-picture {
  margin-right: 20px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
}
.testimonials-card__header-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.testimonials-card__header-text__name {
  margin-bottom: 2px;
  font-weight: bold;
  font-size: 1rem;
}
.testimonials-card__header-text__info {
  color: #737680;
  font-size: 0.875rem;
}
.testimonials-card__separator {
  height: 24px;
  width: 24px;
  margin-bottom: 4px;
}
.testimonials-card.hide-on-mobile {
  display: none;
}
@media (min-width:768px) {
  .testimonials-card.hide-on-mobile {
    display: block;
  }
}
.testimonials-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}
.testimonials .row-flex {
  padding: 40px 0;
}
@media (min-width:768px) {
  .testimonials .row-flex {
    padding: 60px 0;
  }
}
#testimonials-toggle {
  display: block;
}
@media (min-width:768px) {
  #testimonials-toggle {
    display: none;
  }
}
.wrapper {
  padding-block: 32px;
}
@media (min-width:768px) {
  .wrapper {
    padding-block: 60px;
  }
}
.contact-us__title {
  margin-bottom: 20px;
  font-size: 1.75rem;
  text-transform: unset;
}
@media (min-width:768px) {
  .contact-us__title {
    font-size: 2.25rem;
  }
}
.contact-us__sub-section {
  margin-top: 40px;
}
.contact-us__sub-section__title {
  margin-bottom: 16px;
  text-transform: none;
}
.contact-us__sub-section__text {
  margin-bottom: 16px;
}
.contact-us__sub-section__list {
  margin-bottom: 0;
}
.contact-us__sub-section__list li {
  margin-bottom: 8px;
}
.contact-us__search-results {
  margin: 20px 0 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width:480px) {
  .contact-us__search-results {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact-us__search-results.hidden {
  display: none;
}
.contact-us__search-results__info-text {
  margin-top: 32px;
}
.contact-us__search-wrapper {
  margin: 32px 0 16px 0;
}
.contact-us__search-wrapper .twitter-typeahead {
  width: 100%;
}
.contact-us__search__results-menu {
  width: 100%;
  max-height: 418px;
  margin-top: 4px;
  padding: 24px 0 20px 0;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #cbcdd1;
  overflow-y: unset;
  background-color: #FFF;
}
.contact-us__search__results-menu__header {
  display: inline-block;
  margin-bottom: 4px;
  padding: 0 24px;
  color: #737680;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.contact-us__search__result-item {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
}
.contact-us__search__result-item:hover,
.contact-us__search__result-item:focus {
  background-color: #F9FAFA;
}
.contact-us__search__result-item img {
  height: 12px;
  width: 14px;
  margin-right: 8px;
}
.contact-us__search__result-item > strong {
  padding: 0;
  color: #16234C;
  font-weight: 600;
}
.contact-us__search__result-item__flag-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-us__search__results-list:last-child {
  margin-top: 16px;
}
.contact-us__search__results-list--no-margin {
  margin: 0 !important;
}
.contact-us__search__results-list > div {
  margin: 0;
  padding: 13px 24px;
}
@media (min-width:480px) {
  .contact-us__search__results-list > div {
    padding: 4px 24px;
  }
}
.contact-us__search__no-results {
  display: block;
  text-align: center;
  color: #737680;
  font-size: 1rem;
  text-transform: none;
}
.contact-us__na {
  width: 100%;
  max-width: 420px;
  padding: 20px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: solid 1px #dadce0;
  border-radius: 8px;
  -webkit-animation: fade-in 0.5s ease-in forwards;
          animation: fade-in 0.5s ease-in forwards;
}
.contact-us__na__logo {
  max-width: 50%;
  height: 96px;
  margin-bottom: 4px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-us__na__display-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-us__na__full-name {
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.contact-us .container {
  max-width: 817px;
}
.newsletter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 0;
}
@media (min-width:768px) {
  .newsletter-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 60px 0;
  }
}
.your-number-gameZone .row-flex {
  padding-bottom: 20px;
}
@media (min-width:768px) {
  .your-number-gameZone .row-flex {
    padding-bottom: 40px;
  }
}
.your-number-playerBenefits .row-flex {
  padding-top: 20px;
}
@media (min-width:768px) {
  .your-number-playerBenefits .row-flex {
    padding-top: 40px;
  }
}
.player-search {
  margin: 28px 0 0 0;
}
.player-search-banner {
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
  background: url('/Content/img/PlayerSearch/background-shape.svg') no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(6%, #dc3741), color-stop(89%, #003a70));
  background: url('/Content/img/PlayerSearch/background-shape.svg') no-repeat, linear-gradient(180deg, #dc3741 6%, #003a70 89%);
  background-size: cover;
  background-position: center, center;
}
.player-search-banner#player-search-wrapper {
  min-height: 234px;
}
.player-search-banner__title {
  margin: 0 0 10px;
  font-family: Poppins;
  font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
}
.player-search-banner__subtitle {
  font-size: 1.125rem;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.36px;
  text-align: center;
  margin: 0;
}
.player-search-banner__small-text {
  display: block;
  max-width: 600px;
  margin: auto;
  margin-top: 8px;
}
.player-search-banner__small-text > * {
  margin-bottom: 0;
  font-size: 0.625rem;
}
.player-search-banner__small-text a {
  color: #ffffff;
  text-decoration: underline;
}
.player-search-banner__small-text a:hover {
  color: #ffffff;
}
.user-message-container {
  margin: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.user-message__icon {
  margin-bottom: 16px;
}
.user-message__title {
  margin-bottom: 16px;
  font-size: 1.75rem;
}
.user-message__info-text {
  max-width: 728px;
  margin-bottom: 40px;
  font-size: 1rem;
}
.user-message__small-text {
  font-size: 0.875rem;
}
.user-message__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 600;
}
.user-message__link svg {
  margin: 0;
  margin-right: 5px;
}
.user-message__btn {
  padding: 9px 24px;
  margin-bottom: 40px;
}
.notificationRibbon-inner * {
  margin-bottom: 0px;
}
.notificationRibbon-inner strong {
  font-weight: 600;
}
#ot-pc-content .ot-sdk-column {
  margin-left: 0 !important;
}
.qa-page {
  padding-bottom: 20px;
}
@media (min-width:768px) {
  .qa-page {
    padding-bottom: 40px;
  }
}
.qa-page h2 {
  border-bottom: 2px solid #E03E52;
  color: #E03E52;
  font-size: 1rem;
  font-weight: 900;
  padding-bottom: 5px;
}
@media (min-width:768px) {
  .qa-page h2 {
    font-size: 1.125rem;
    padding-bottom: 12px;
  }
}
.qa-page h3 {
  font-size: 1.25rem;
  text-transform: none;
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (min-width:768px) {
  .qa-page h3 {
    margin-top: 48px;
  }
}
.qa-page a.top {
  background: url(../img/icon-top.svg) right 3px no-repeat;
  background-size: 9px 9px;
  color: #E03E52;
  display: block;
  float: left;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0px 15px 20px 0;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
@media (min-width:768px) {
  .qa-page a.top {
    background-position: right 12px;
    background-size: 14px 14px;
    float: right;
    font-size: 0.875rem;
    padding: 10px 20px 40px 0;
  }
}
.qa-page a.top:hover {
  background-position-y: 1px;
}
.qa-page .faqs-answer p {
  font-size: 0.875rem;
}
.qa-page.page-title {
  padding: 0;
}
.qa-page__content-container {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media (min-width:768px) {
  .qa-page__content-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.qa-page__content-container .col {
  padding: 0;
}
.qa-page__content-container .section-nav {
  padding: 12px 28px;
}
.qa-page__content__questions {
  position: sticky;
  top: 15px;
}
.qa-page__sections {
  margin-top: 40px;
}
.qa-page__sections .highlight {
  background-color: yellow;
}
.qa-page__section {
  margin-bottom: 48px;
}
.qa-page__section:last-of-type {
  margin-bottom: 0;
}
.qa-page__section__title {
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.qa-page__section .qa-page__item--filteredout {
  display: block;
  visibility: hidden;
  background-color: #16234C;
  height: 0px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
}
.qa-page__list {
  border-bottom: 1px solid #d2d2d2;
}
.qa-page__question {
  margin: 0;
  padding: 20px;
  padding-right: 60px;
  font-size: 1rem;
  font-weight: normal;
  border-top: 1px solid #d2d2d2;
  cursor: pointer;
  background-image: url('/Content/img/Icons/icn_arrow_down.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  visibility: visible;
  -webkit-transition: visibility 0.5s, height 0.5s, padding 0.5s, background-color 0.8s;
  transition: visibility 0.5s, height 0.5s, padding 0.5s, background-color 0.8s;
}
.qa-page__question--answer-match {
  background-image: url('/Content/img/Icons/icn_arrow_down_highlight.svg');
}
.qa-page__question.ui-accordion-header-active {
  padding-bottom: 13px;
  font-weight: bold;
  background-color: rgba(0, 58, 112, 0.05);
  background-image: url('/Content/img/Icons/icn_arrow_up.svg');
}
.qa-page__answer {
  padding: 0px 32px 20px 32px;
  visibility: visible;
  -webkit-transition: visibility 0.1s, height 0.1s, background-color 0.1s;
  transition: visibility 0.1s, height 0.1s, background-color 0.1s;
}
.qa-page__answer * {
  font-size: 0.875rem;
}
.qa-page__answer > *:last-child {
  margin-bottom: 0;
}
.qa-page__answer.ui-accordion-content-active {
  background-color: rgba(0, 58, 112, 0.05);
}
.qa-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.qa-page__header h1 {
  margin: 0;
}
.lang-switch {
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  position: relative;
}
.lang-switch__selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  background-color: transparent;
  width: 43px;
  height: 28px;
  padding: 8px;
  border-radius: 4px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.lang-switch__selector:after {
  border-bottom: 1px solid #16234C;
  border-left: 1px solid #16234C;
  content: " ";
  height: 6px;
  position: absolute;
  right: 6px;
  top: calc(50% - 5px);
  -webkit-transform-origin: 25% 75%;
          transform-origin: 25% 75%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 6px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.lang-switch__selector:hover:after,
.lang-switch__selector:active:after,
.lang-switch__selector:focus:after {
  border-color: #E03E52;
}
.lang-switch__selector.active {
  background-color: #F9FAFA;
}
.lang-switch__selector.active:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.lang-switch__flag {
  height: 12px;
  width: 14px;
}
.lang-switch__menu {
  z-index: -5;
  position: absolute;
  right: 0;
  margin: 16px 0 0 0;
  padding: 20px 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  list-style: none;
}
.lang-switch__menu::before {
  z-index: -5;
  content: '';
  position: absolute;
  top: 0px;
  right: 22px;
  border: 6px solid white;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  opacity: 0;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  pointer-events: none;
}
.lang-switch__menu.open {
  z-index: 998;
  opacity: 1;
  pointer-events: auto;
}
.lang-switch__menu.open::before {
  z-index: 998;
  opacity: 1;
}
.lang-switch__menu-item {
  margin-bottom: 16px;
}
.lang-switch__menu-item:last-of-type {
  margin: 0;
}
.lang-switch__menu-item .lang-switch__flag {
  margin-right: 8px;
}
.lang-switch__menu-item a {
  color: #16234C;
}
.search-field__label {
  font-size: 1rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.32px;
  display: block;
  margin-bottom: 13px;
}
@media (min-width:768px) {
  .search-field__label {
    margin-bottom: 13px;
  }
}
.search-field__wrapper {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width:768px) {
  .search-field__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.search-field__wrapper input {
  padding: 13px 50px 13px 59px;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  height: 52px;
  color: #16234C;
  background: url(/Content/img/icn-search.svg) no-repeat scroll 12px 5px;
  border: solid 1px #dadce0;
  border-radius: 8px;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  /* Remove clear search button in webkit browsers */
}
.search-field__wrapper input:hover,
.search-field__wrapper input:focus {
  border: solid 1px #003A70;
  outline: none;
}
.search-field__wrapper input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search-field__wrapper button.reset-filters {
  position: absolute;
  right: 24px;
  padding: 0;
  background-color: transparent;
  border: none;
}
.search-field__wrapper button.reset-filters.hidden {
  display: none;
}
.search-field__wrapper button img {
  width: 16px;
  height: 16px;
}
.video-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 440px;
  color: white;
}
.video-section .container .pad {
  height: 110px;
}
.video-section p {
  margin-bottom: 20px;
}
.video-section p:last-of-type {
  margin-bottom: 28px;
}
.video-section p a {
  font-weight: 600;
}
.video-section ul {
  margin-left: 10px;
}
.video-section li {
  margin-bottom: 8px;
}
@media (min-width:768px) {
  .video-section li {
    margin-bottom: 8px;
  }
}
.video-section .row-flex {
  padding: 40px 0;
}
@media (min-width:768px) {
  .video-section .row-flex {
    padding: 60px 0;
  }
}
.text-white {
  color: white;
}
.text-blue {
  color: #003A70;
}
.level-up .wtn-scale {
  width: 64%;
  position: absolute;
  left: -6%;
  bottom: -14.5%;
}
@media (min-width:768px) {
  .level-up .wtn-scale {
    left: -14.3%;
    bottom: -10.8%;
  }
}
.cards-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cards-container--registration-coming-info {
  row-gap: 28px;
}
.cards-container--registration-coming-info li {
  margin: 0;
}
.cards-container.cards-3 > * {
  width: 100%;
  min-width: 100%;
}
@media (min-width:768px) {
  .cards-container.cards-3 {
    -webkit-column-gap: 2.77%;
       -moz-column-gap: 2.77%;
            column-gap: 2.77%;
  }
  .cards-container.cards-3 > * {
    width: 31.48%;
    min-width: 31.48%;
  }
}
.cards-container .card--registration-coming-info {
  padding: 28px;
  border: solid 1px #cbcdd1;
  background-color: white;
  min-height: 100%;
}
.cards-container .card--registration-coming-info .card__image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  margin-bottom: 28px;
}
.cards-container .card--registration-coming-info .card__title {
  margin-bottom: 12px;
}
.cards-container .card--registration-coming-info .card__body > * {
  margin: 0;
}
ul.cards-container {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Footer */
.footer-style-2 {
  background-color: #1f1f1f;
  color: #fff;
  padding: 60px 0 40px;
}
.footer-top {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 60px;
  width: 100%;
}
.footer-top__content-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 80px auto 80px auto 80px auto;
  grid-template-columns: repeat(4, auto);
  gap: 80px;
}
.col {
  margin: 0;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 24px;
  text-align: start;
}
.footer-nav li:last-child {
  margin-bottom: 0;
}
.footer-nav a {
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  text-decoration: none;
}
.footer-nav a:hover {
  color: white;
  text-decoration: underline;
}
.float-right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.float-right img {
  height: 40px;
  width: auto;
}
.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.copyright {
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin: 0;
}
.social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-nav li {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
}
.social-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
}
.icon-social {
  width: 20px;
  height: 20px;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.icon-social.facebook-icon {
  width: 20px;
  height: 20px;
}
.icon-social.twitter-icon {
  width: 20px;
  height: 20px;
  color: white;
}
.icon-social.instagram-icon {
  width: 20px;
  height: 20px;
}
.icon-social.youtube-icon {
  width: 20px;
  height: 20px;
}
.icon-social:hover {
  opacity: 0.7;
}
.language-selector-wrapper {
  position: relative;
  display: inline-block;
  z-index: 9999;
}
.mobile-header {
  display: none;
}
.footer-country-selector {
  position: relative;
  width: 108px;
  height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  gap: 6px;
}
.country-name {
  color: #fff;
  font-family: Poppins;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 42px;
  white-space: nowrap;
}
.flag-icon {
  width: 16px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.dropdown-arrow {
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-left: 6px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
/* Language Dropdown */
.language-dropdown {
  position: fixed;
  background: #fff;
  width: 172px;
  max-height: 258px;
  overflow-y: auto;
  border-radius: 4px;
  list-style: none;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  z-index: 10000;
  border-radius: 10px;
  display: none;
}
.language-dropdown.show {
  display: block;
}
.language-dropdown li {
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.language-dropdown a {
  padding: 8px 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-family: Poppins;
  font-size: 14px;
  line-height: 1.6;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.language-dropdown a .flag-icon {
  width: 24px;
  height: 16px;
}
.language-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: #333;
}
.language-dropdown::-webkit-scrollbar {
  width: 4px;
}
.language-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.language-dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
.language-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  /* Footer structure */
  .footer-style-2 {
    padding: 60px 20px;
  }
  .container {
    padding: 0 32px;
  }
  /* Footer top section */
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    text-align: left;
  }
  .footer-top__content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .col {
    margin: 0;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 24px;
    text-align: center;
  }
  .footer-nav li:last-child {
    margin-bottom: 24px;
  }
  .footer-nav a {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    text-align: center;
  }
  /* Logo */
  .float-right {
    margin: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
  }
  .float-right img {
    width: 87px;
    height: 41px;
  }
  /* Footer bottom */
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  .copyright-container {
    margin-bottom: 24px;
  }
  .copyright {
    font-size: 12px;
    margin: 0;
  }
  /* Language and social section */
  .social-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 24px;
  }
  .footer-country-selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  .country-name {
    font-size: 12px;
    color: #fff;
  }
  /* Social icons */
  .social-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    margin: 0;
    padding: 0;
  }
  .social-nav li {
    margin: 0;
  }
  .icon-social {
    width: 20px;
    height: 20px;
  }
  .language-dropdown {
    display: none !important;
  }
  /* Mobile language overlay and dropdown */
  .mobile-language-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .mobile-language-overlay.show {
    opacity: 1;
  }
  .mobile-language-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 50vh;
    background-color: #ffffff;
    z-index: 10000;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.5s ease-out;
    transition: -webkit-transform 0.5s ease-out;
    transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
    pointer-events: none;
    opacity: 0;
    display: none;
  }
  .mobile-language-dropdown.show {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
  }
  .mobile-language-dropdown::-webkit-scrollbar {
    width: 4px;
  }
  .mobile-language-dropdown::-webkit-scrollbar-track {
    background: transparent;
  }
  .mobile-language-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  .mobile-language-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 2;
  }
  .mobile-close-container {
    height: 48px;
    padding: 12px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: #ffffff;
  }
  .mobile-close-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  .mobile-header-title {
    padding: 8px 16px 12px;
    background: #ffffff;
  }
  .mobile-header-title h2 {
    margin: 0;
    height: 24px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-family: Poppins;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-align: left;
    color: #000000;
  }
  .mobile-language-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
  }
  .mobile-language-item {
    margin: 0;
    padding: 0;
    background: #ffffff;
  }
  .mobile-language-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .mobile-language-link:hover,
  .mobile-language-link:active {
    background-color: #f5f5f5;
    color: #000000;
  }
  .mobile-flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 768px) {
  /* Hide desktop dropdown on mobile */
  .desktop-language-dropdown {
    display: none !important;
  }
  /* Show mobile components */
  .mobile-language-overlay.show {
    display: block;
  }
  .mobile-language-dropdown {
    display: block;
  }
}
@media (min-width: 769px) {
  /* Hide mobile components on desktop */
  .mobile-language-overlay,
  .mobile-language-dropdown {
    display: none !important;
  }
}
/* Persona types */
/* Tablet view */
@media (min-width: 921px) and (max-width: 1024px) {
  .breadcrumb-wrapper {
    max-width: 650px;
    padding: 0 100px 0;
    margin: 0;
  }
}
@media (min-width: 501px) and (max-width: 920px) {
  .breadcrumb-wrapper {
    padding: 0 32px;
    margin: 0;
  }
}
/* Mobile view */
@media (max-width: 500px) {
  .breadcrumb-container {
    padding: 40px 0 0 0;
  }
  .breadcrumb-wrapper {
    max-width: 311px;
    padding-left: 32px;
    margin: 0;
  }
}
.persona-types-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 100px 80px 100px;
}
.persona-types-header {
  margin-bottom: 60px;
}
.persona-types-title p {
  font-family: Poppins;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.48px;
  color: #1f1f1f;
  margin-bottom: 20px;
}
.persona-types-description p {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.6;
  color: #1F1F1F;
  margin: 0;
}
.persona-types-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 590px;
  grid-template-columns: 1fr 590px;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.persona-types-qa-section {
  width: 100%;
}
.persona-types-qa-section:last-child {
  border-bottom: 1px solid #cbcdd1;
}
.persona-types-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
  margin: 0;
  cursor: pointer;
  border-top: 1px solid #cbcdd1;
  background: none;
  width: 100%;
}
.persona-types-question-number {
  font-family: Poppins;
  font-size: 20px;
  font-weight: bold;
  color: #1f1f1f;
  margin-right: 20px;
  width: 30px;
}
.persona-types-question-text {
  font-family: Poppins;
  font-size: 20px;
  font-weight: bold;
  color: #1f1f1f;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.persona-types-toggle {
  width: 11.5px;
  height: 11.5px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -o-object-fit: contain;
     object-fit: contain;
  background: url('/Content/img/arrow-down.png') no-repeat center;
  background-size: contain;
  margin-left: 20px;
}
.persona-types-answer {
  padding-bottom: 32px;
}
.persona-types-answer p {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin: 0;
}
.persona-types-image img {
  width: 590px;
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 920px) {
  .persona-types-container {
    padding: 0 32px;
  }
  .persona-types-header {
    padding: 40px 0;
    margin: 0;
  }
  .persona-types-title p {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: 0.32px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .persona-types-description p {
    font-size: 16px;
    line-height: 1.6;
  }
  .persona-types-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .persona-types-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .persona-types-image img {
    width: 100%;
    height: 340px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .persona-types-question-text {
    font-size: 18px;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.18px;
    height: 44px;
  }
  .persona-types-qa-section {
    margin: 60px 0;
  }
  .persona-types-question {
    min-height: 44px;
    border-top: 1px solid #cbcdd1;
  }
  .persona-types-answer {
    padding-bottom: 32px;
  }
  .persona-types-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
  .persona-types-question-number {
    font-size: 18px;
  }
  .persona-types-toggle {
    width: 10px;
    height: 10px;
  }
}
/* Player rating system */
.players-rating-section {
  padding: 60px 0 80px;
  background: #fff;
}
.players-rating-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}
/* Main heading */
.players-rating-title,
.players-rating-title p,
.players-rating-title div {
  font-family: 'Poppins';
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.48px;
  color: #1f1f1f;
  margin: 0 0 24px 0;
  text-align: left;
}
/* Subtitle below main heading */
.players-rating-subtitle,
.players-rating-subtitle p,
.players-rating-subtitle div {
  font-family: 'Poppins';
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin: 0 0 60px 0;
  text-align: left;
  font-weight: normal;
  letter-spacing: normal;
}
/* Grid container */
.players-rating-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 0 auto;
}
/* Grid item */
.players-rating-item {
  text-align: left;
}
/* Image container */
.players-rating-image {
  margin-bottom: 50px;
  height: 340px;
  width: 100%;
}
.players-rating-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* Content container */
.players-rating-content {
  padding: 0;
  /* Content title */
}
.players-rating-content p {
  font-family: 'Poppins';
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.32px;
  font-weight: bold;
  color: #1f1f1f;
  margin: 0 0 28px 0;
}
/* Content description */
.players-rating-description,
.players-rating-description p,
.players-rating-description div {
  font-family: 'Poppins';
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin: 0 0 24px 0;
  font-weight: normal;
  letter-spacing: normal;
}
@media (min-width: 501px) and (max-width: 1024px) {
  .players-rating-section {
    padding-top: 40px;
  }
  .players-rating-container {
    padding: 0;
    max-width: 650px;
    margin: 0 auto;
  }
  .players-rating-header {
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }
  .players-rating-title,
  .players-rating-title p,
  .players-rating-title div {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .players-rating-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .players-rating-item {
    max-width: 580px;
    margin: 0 auto;
  }
  .players-rating-image {
    margin-bottom: 40px;
    height: 420px;
  }
  .players-rating-image img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .players-rating-content {
    padding: 0 16px;
  }
}
/* Mobile view */
@media (max-width: 500px) {
  .players-rating-content p {
    margin: 28px 0 28px 0;
  }
  .players-rating-subtitle {
    margin: 0;
  }
  .players-rating-subtitle p {
    margin: 0;
  }
  .players-rating-section {
    padding: 40px 0 0 0;
  }
  .players-rating-item:nth-child(odd) {
    background-color: #f3f4f7;
    padding: 60px 0;
    max-width: none;
    width: 100%;
  }
  .players-rating-item:nth-child(odd) .players-rating-content {
    max-width: 311px;
    margin: 0 auto;
  }
  .players-rating-item:nth-child(odd) .players-rating-image {
    max-width: 311px;
    margin-left: auto;
    margin-right: auto;
  }
  .players-rating-container {
    padding: 0;
  }
  .players-rating-header {
    margin-bottom: 40px;
    max-width: 311px;
    margin-left: auto;
    margin-right: auto;
  }
  .players-rating-title,
  .players-rating-title p,
  .players-rating-title div {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .players-rating-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .players-rating-item {
    max-width: 311px;
    margin: 0 auto;
  }
  .players-rating-image {
    margin-bottom: 40px;
    height: 340px;
  }
  .players-rating-image img {
    width: 311px;
    height: 340px;
  }
  .players-rating-content {
    padding: 0 8px;
  }
}
/* Discover Section */
.discover-wtn-section {
  height: 520px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  -webkit-transition: margin-top 0.3s ease;
  transition: margin-top 0.3s ease;
}
.discover-wtn-bg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.discover-wtn-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center 30%;
     object-position: center 30%;
  scale: 1.1;
}
.discover-wtn-gradient-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(41, 41, 41, 0)), to(#292929));
  background-image: linear-gradient(to left, rgba(41, 41, 41, 0) 0%, #292929 100%);
  z-index: 1;
}
.discover-wtn-content {
  margin-left: 200px;
  position: absolute;
  width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.discover-wtn-heading,
.discover-wtn-heading p {
  width: 580px;
  font-family: Poppins;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.6px;
  text-align: left;
  color: #ffffff;
  margin: 0;
}
.discover-wtn-subheading,
.discover-wtn-subheading p {
  width: 458px;
  height: 26px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  margin-bottom: 10px;
}
/* Mobile play button (circle) */
.discover-wtn-play-circle-container {
  display: none;
  /* Hidden by default, shown on mobile */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Allow clicks to pass through the container */
  z-index: 5;
}
.discover-wtn-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  -webkit-box-shadow: 0 4px 28px 0 rgba(22, 35, 76, 0.08);
          box-shadow: 0 4px 28px 0 rgba(22, 35, 76, 0.08);
  cursor: pointer;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 5;
}
.discover-wtn-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #333333;
  position: relative;
  left: 2px;
}
/* Buttons container */
.discover-wtn-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
/* Video button */
.discover-wtn-video-button {
  width: 176px;
  height: 44px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 2000px;
  border: solid 1.5px #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.discover-wtn-video-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* Play icon - CSS triangle for desktop */
.discover-wtn-play-icon {
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: 6px;
}
.discover-wtn-play-icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(255, 255, 255, 0.8);
}
/* Mobile Responsive Styles */
@media screen and (max-width: 767px) {
  .discover-wtn-section {
    width: 100%;
    height: 480px;
    padding: 0;
    margin-top: -20px !important;
  }
  .discover-wtn-bg-container {
    width: 110%;
    height: 110%;
    top: 0px;
    left: -110px;
    -webkit-transform: none;
            transform: none;
    position: initial;
    margin: 0;
    padding: 0;
  }
  .discover-wtn-image {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% center;
       object-position: 50% center;
    scale: 1.1;
    bottom: 56px;
  }
  .discover-wtn-gradient-overlay {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 41, 41, 0)), to(#292929));
    background-image: linear-gradient(to bottom, rgba(41, 41, 41, 0), #292929);
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
  }
  .discover-wtn-content {
    width: 100%;
    position: absolute;
    margin: 0;
    left: 50%;
    top: 65%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    padding: 0 20px;
    z-index: 10;
  }
  .discover-wtn-heading,
  .discover-wtn-heading p {
    width: 100%;
    font-size: 36px;
    letter-spacing: 0.36px;
    text-align: center;
    line-height: 1.4;
    margin: 0;
  }
  .discover-wtn-subheading,
  .discover-wtn-subheading p {
    width: 100%;
    max-width: 300px;
    text-align: center;
    height: auto;
  }
  .discover-wtn-play-circle-container {
    display: block;
    z-index: 15;
    top: -30%;
  }
  /* Hide the video button on mobile */
  .discover-wtn-video-button {
    display: none;
  }
  .discover-wtn-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-top: 0;
  }
}
/* Why WTN Section Styles */
.why-wtn-section {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  padding: 60px 0;
}
.why-wtn-section .heading p {
  font-family: Poppins;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: #1f1f1f;
  margin-bottom: 24px;
}
.why-wtn-section .description p {
  color: #1f1f1f;
  margin-bottom: 32px;
  max-width: 480px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-family: Poppins;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
}
.why-wtn-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 32px;
}
.why-wtn-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 40px;
}
.why-wtn-image-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.why-wtn-img {
  max-width: 100%;
  height: auto;
  display: block;
}
.why-wtn-img.desktop-img {
  display: block;
}
.why-wtn-img.mobile-img {
  display: none;
}
/* Responsive Styles */
@media (min-width: 768px) and (max-width: 1200px) {
  .why-wtn-section .heading p {
    font-size: clamp(32px, 3.5vw, 40px);
  }
  .why-wtn-text {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .why-wtn-section {
    height: auto;
    min-height: 460px;
  }
  .why-wtn-section .heading p {
    font-size: 28px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
    color: #1f1f1f;
  }
  .why-wtn-section .description p {
    margin-bottom: 32px;
    max-width: 100%;
  }
  .why-wtn-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .why-wtn-text {
    text-align: left;
    width: 100%;
    margin-top: 0;
  }
  .why-wtn-img.desktop-img {
    display: none;
  }
  .why-wtn-img.mobile-img {
    display: block;
    width: 100%;
    max-width: 311px;
    height: auto;
    margin: 0 auto;
  }
  .why-wtn-image-container {
    height: 369px;
    width: 100%;
    position: relative;
  }
}
/* Parents Club Section Styles */
.dual-section-container {
  width: 100%;
  overflow: hidden;
  background-color: #f3f4f7;
}
.dual-section-container .heading p {
  font-family: Poppins;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: #1f1f1f;
  margin-bottom: 24px;
}
.dual-section-container .description p {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin-bottom: 40px;
  max-width: 480px;
}
.dual-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  gap: 60px;
}
.section-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-image-container {
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}
.section-img.desktop-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-img.mobile-img {
  display: none;
  width: 311px;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
/* Responsive Styles */
@media (min-width: 768px) and (max-width: 1200px) {
  .dual-section-container .heading p {
    font-size: clamp(32px, 3.5vw, 40px);
  }
  .section-block {
    padding: 60px 20px;
  }
}
@media (max-width: 767px) {
  .dual-section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .section-block {
    padding: 0 0 60px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .parents-block {
    background-color: #f3f4f7;
  }
  .clubs-block {
    background-color: #ffffff;
  }
  .section-img.desktop-img {
    display: none;
  }
  .section-img.mobile-img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .section-text {
    width: 311px;
    padding-top: 25px;
  }
  .dual-section-container .heading p {
    font-size: 28px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
  }
  .dual-section-container .description p {
    margin-bottom: 0;
    max-width: 311px;
  }
}
/* Global Scale Section Styles */
.global-scale-section {
  width: 100%;
  background-color: #003a70;
  overflow: hidden;
  padding: 60px 0;
}
.global-scale-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 32px;
}
.discover-scale-image-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 50%;
}
.discover-scale-image {
  max-width: 100%;
  height: auto;
}
.scale-text-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 32px;
}
.scale-heading p {
  font-family: Poppins;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.4px;
  color: #ffffff;
  margin-bottom: 24px;
}
.scale-description p {
  font-family: Poppins;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 24px;
}
.scale-description ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 16px;
}
.scale-description ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}
.scale-description ul li::before {
  content: "�";
  position: absolute;
  left: 0;
  color: #ffffff;
}
/* Responsive Styles */
@media (min-width: 768px) and (max-width: 1200px) {
  .scale-heading p {
    font-size: clamp(32px, 3.5vw, 40px);
  }
  .discover-scale-image-container {
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .global-scale-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 32px;
  }
  .discover-scale-image-container {
    max-width: 100%;
    margin-bottom: 32px;
  }
  .discover-scale-image {
    max-width: 100%;
    height: auto;
  }
  .scale-text-content {
    padding-left: 0;
    width: 100%;
  }
  .scale-heading p {
    font-size: 28px;
    letter-spacing: 0.28px;
    margin-bottom: 16px;
    text-align: start;
  }
  .scale-description p {
    text-align: start;
    margin-bottom: 20px;
  }
  .scale-description ul {
    text-align: left;
    max-width: 280px;
    margin: 0;
  }
}
/* FEATURES - Get my number*/
.features-hero-image {
  -webkit-transform: none !important;
          transform: none !important;
  -o-object-position: center 30% !important;
     object-position: center 30% !important;
}
@media screen and (max-width: 767px) {
  .features-hero-image {
    -webkit-transform: none !important;
            transform: none !important;
    -o-object-position: 65% 30% !important;
       object-position: 65% 30% !important;
  }
  .features-hero-section .features-hero-content {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    padding: 0 32px;
    margin: 0;
    top: 60%;
  }
  .features-hero-section .features-hero-heading,
  .features-hero-section .features-hero-heading p {
    text-align: left !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.28px !important;
    height: auto;
    max-width: 100%;
  }
  .features-hero-button {
    width: 100% !important;
    min-width: 280px;
    margin: 0 !important;
  }
}
/* FEATURES - Options*/
.features-accordion-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 100px 80px 100px;
  position: relative;
}
.features-accordion-header {
  margin-bottom: 60px;
  max-width: 50%;
}
.features-accordion-title {
  font-family: Poppins;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.48px;
  color: #1f1f1f;
  margin-bottom: 20px;
}
.features-accordion-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  min-height: 560px;
}
.features-accordion-qa {
  width: 100%;
  min-height: 560px;
}
.features-accordion-qa-section:last-child {
  border-bottom: 1px solid #cbcdd1;
}
.features-accordion-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
  margin: 0;
  cursor: pointer;
  border-top: 1px solid #cbcdd1;
  background: none;
  width: 100%;
}
.features-accordion-question.ui-accordion-header-active .features-accordion-toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.features-accordion-question-number {
  font-family: Poppins;
  font-size: 20px;
  font-weight: bold;
  color: #1f1f1f;
  margin-right: 20px;
  width: 30px;
}
.features-accordion-question-text {
  font-family: Poppins;
  font-size: 20px;
  font-weight: bold;
  color: #1f1f1f;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.features-accordion-toggle {
  width: 11.5px;
  height: 11.5px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -o-object-fit: contain;
     object-fit: contain;
  background: url('/Content/img/arrow-down.png') no-repeat center;
  background-size: contain;
  margin-left: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.features-accordion-answer {
  padding-bottom: 32px;
}
.features-accordion-answer p {
  font-family: Poppins;
  font-size: 16px;
  line-height: 1.6;
  color: #1f1f1f;
  margin: 0;
}
.features-accordion-image {
  position: absolute;
  right: 80px;
  top: -130px;
  bottom: auto;
  width: 312px;
}
.features-accordion-image img {
  width: 312px;
  height: 634.9px;
  -o-object-fit: contain;
     object-fit: contain;
}
.features-accordion-mobile-image {
  display: none;
}
@media screen and (max-width: 920px) {
  .features-accordion-container {
    padding: 0 32px;
  }
  .features-accordion-header {
    padding: 40px 0;
    margin: 0;
    max-width: 100%;
  }
  .features-accordion-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: 0.32px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .features-accordion-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .features-accordion-qa {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  .features-accordion-image {
    display: none;
    position: static;
  }
  .features-accordion-mobile-image {
    display: block;
    margin-top: 0;
    text-align: center;
    margin-bottom: 32px;
  }
  .features-accordion-mobile-image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top;
       object-position: top;
    border-radius: 4px 4px 0 0;
    max-height: none;
  }
  .mobile-image-frame {
    width: 311px;
    margin: 0 auto;
    padding: 24px 26px 0 26px;
    background-color: #f2f2f2;
    border-radius: 8px 8px 0 0;
    position: relative;
    height: 334px;
    overflow: hidden;
  }
  .features-accordion-question-text {
    font-size: 18px;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.18px;
    height: 44px;
  }
  .features-accordion-qa-section {
    margin: 0 0 60px 0;
  }
  .features-accordion-question {
    min-height: 44px;
    border-top: 1px solid #cbcdd1;
  }
  .features-accordion-answer {
    padding-bottom: 32px;
  }
  .features-accordion-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
  .features-accordion-question-number {
    font-size: 18px;
  }
  .features-accordion-toggle {
    width: 10px;
    height: 10px;
  }
}
/* Features - QA Section*/
.features-faq-specific {
  padding-top: 80px !important;
}
.features-faq-specific .features-qa-container {
  max-width: 1440px;
  width: 100%;
}
.features-faq-specific .features-qa-content {
  width: 100%;
  display: block;
}
.features-faq-specific .features-qa {
  width: 100%;
}
.features-faq-specific .features-qa-question-text {
  font-family: Poppins;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #1f1f1f;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 20px;
}
.features-faq-specific .persona-types-toggle {
  margin-right: 20px;
}
.features-faq-specific .features-qa .persona-types-question-text {
  font-weight: normal;
  font-size: 16px;
}
.features-faq-specific .features-qa .ui-state-active .features-qa-question-text {
  font-weight: bold;
}
.features-faq-specific .features-qa .ui-state-active {
  background-color: #f3f4f7;
}
.features-faq-specific .features-qa h3:hover {
  background-color: #f3f4f7;
}
.features-faq-specific .features-qa-answer {
  padding-left: 20px;
}
.features-faq-specific .features-qa-answer p {
  font-family: Poppins;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: left;
  color: #1f1f1f;
  padding-left: 12px;
  padding-right: 20px;
}
.features-faq-specific .ui-accordion-content-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
  background-color: #f3f4f7;
  padding: 0px 20px 20px 20px;
  margin-top: 0;
}
.features-faq-specific .features-qa .ui-accordion-header {
  margin: 0;
  padding: 20px 0;
}
@media screen and (max-width: 920px) {
  .features-faq-specific {
    padding-top: 60px !important;
  }
  .features-faq-specific .features-qa-section {
    margin: 0 0 60px 0;
  }
  .features-faq-specific .features-qa .persona-types-question-text {
    font-size: 16px;
    height: auto;
  }
  .features-faq-specific .persona-types-header {
    padding: 0 !important;
  }
}
/* Features - Our features*/
.features-copy {
  gap: 12px;
}
.features-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 0;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  scale: 1.1;
}
.hero-body-text {
  width: 521px;
  font-family: Poppins;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.18px;
  text-align: left;
  color: #ffffff;
  margin: 0;
}
.hero-body-text p {
  color: #ffffff !important;
  margin: 0;
  font-family: Poppins;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.18px;
  text-align: left;
}
.features-button {
  width: auto !important;
  min-width: 200px !important;
  height: 44px !important;
  white-space: nowrap;
  padding: 0 24px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  margin-top: 28px;
}
.features-play-circle-container {
  display: none;
}
.features-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.features-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent black;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .features-hero {
    width: 100%;
    height: 480px;
    padding: 0;
    margin-top: -20px !important;
  }
  .features-image {
    -webkit-transform: none !important;
            transform: none !important;
    -o-object-position: 70% center;
       object-position: 70% center;
    scale: 1;
  }
  .features-copy {
    width: 100%;
    position: absolute;
    margin: 40px 0;
    left: 50%;
    top: 65%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    z-index: 10;
    padding: 0 20px;
  }
  .hero-heading-text,
  .hero-heading-text p {
    width: 100%;
    font-size: 36px;
    letter-spacing: 0.36px;
    text-align: center;
    line-height: 1.4;
    margin: 0;
  }
  .hero-body-text,
  .hero-body-text p {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .features-play-circle-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 16px 0;
  }
  .features-button {
    width: calc(100% - 64px) !important;
    height: 44px !important;
    margin: 10px auto;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    min-width: 280px;
  }
}
/* Privacy policy and Terms and Conditions */
.privacy-policy {
  max-width: 1250px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 20px 20px 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  position: relative;
  font-size: 14px;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .privacy-policy {
    padding-top: 40px;
    overflow-x: visible;
  }
}
.privacy-policy a,
.privacy-policy .link {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.28px;
  text-align: left;
  color: #0076c0;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.privacy-policy a:hover,
.privacy-policy .link:hover {
  text-decoration: underline;
}
.privacy-policy button.link {
  border: none;
  padding: 0;
  background-color: transparent;
}
.privacy-policy p {
  font-size: 14px;
  margin: 0 0 16px 0;
  max-width: 100%;
  word-wrap: break-word;
}
.privacy-policy p:last-child {
  margin-bottom: 0;
}
.privacy-policy p + ul {
  padding-top: 16px;
}
.privacy-policy .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .privacy-policy .options {
    gap: 20px;
  }
}
.privacy-policy .tab {
  padding: 6px 12px;
  background-color: #ffffff;
  border: solid 1px #dadce0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0d2240;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.28px;
  font-weight: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  border-radius: 200px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (min-width: 768px) {
  .privacy-policy .tab {
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.privacy-policy .tab.active {
  background-color: #003a70;
  color: #ffffff;
  border: 1px solid #003a70;
}
.privacy-policy .tab:focus,
.privacy-policy .tab:hover {
  outline: none;
  border: 1px solid #0d2240;
}
.privacy-policy .tab:focus {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.privacy-policy .tab::first-letter {
  text-transform: uppercase;
}
.privacy-policy .address {
  padding-left: 16px;
}
.privacy-policy h1 {
  margin: 0;
}
.privacy-policy h3 {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.32px;
  text-align: left;
  color: #0d2240;
}
@media screen and (min-width: 768px) {
  .privacy-policy h3 {
    font-size: 18px;
    letter-spacing: 0.36px;
  }
}
.privacy-policy ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.privacy-policy ul li {
  list-style-position: inside;
  text-indent: -20px;
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 8px;
}
.privacy-policy ul li:last-child {
  margin-bottom: 0;
}
.privacy-policy ul ul {
  padding-top: 16px;
}
.privacy-policy ol {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.privacy-policy ol li {
  font-size: 14px;
  margin-bottom: 8px;
}
.privacy-policy ol li:last-child {
  margin-bottom: 0;
}
.privacy-policy .sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.privacy-policy .sections p,
.privacy-policy .sections h3,
.privacy-policy .sections ul {
  margin: 0;
}
.privacy-policy .sections section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.privacy-policy .sections section .marginBottom {
  margin-bottom: 16px;
}
.privacy-policy .sections section ol {
  padding: 0;
  padding-left: 20px;
}
.privacy-policy .sections section > ol li {
  margin-bottom: 16px;
}
.privacy-policy .sections section ul {
  list-style-type: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.privacy-policy .sections [class*="termsAndConditionsTable"],
.privacy-policy .sections table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .privacy-policy .sections [class*="termsAndConditionsTable"],
  .privacy-policy .sections table {
    display: table;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td,
  .privacy-policy .sections table td,
  .privacy-policy .sections [class*="termsAndConditionsTable"] th,
  .privacy-policy .sections table th {
    display: table-cell;
    padding: 12px;
    border: 1px solid #dadce0;
    word-wrap: break-word;
    vertical-align: top;
  }
}
@media screen and (max-width: 767px) {
  .privacy-policy .sections [class*="termsAndConditionsTable"] {
    display: block;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] thead {
    display: none;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] tbody,
  .privacy-policy .sections [class*="termsAndConditionsTable"] tr {
    display: block;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #dadce0;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] tr td:last-child {
    border-bottom: none;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 120px 1fr !important;
    grid-template-columns: 120px 1fr !important;
    padding: 0 !important;
    border-bottom: 1px solid #dadce0;
    margin-bottom: 0;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td::before {
    content: attr(data-label);
    display: block;
    color: #0d2240;
    font-weight: bold;
    padding: 12px;
    border-right: 1px solid #dadce0;
    -ms-grid-column: 1;
    grid-column: 1;
    grid-row: -1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    word-wrap: break-word;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td > * {
    -ms-grid-column: 2 !important;
    grid-column: 2 !important;
    padding: 12px !important;
    margin: 0 !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td p {
    margin: 0 0 16px 0;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td p:last-child {
    margin-bottom: 0;
  }
  .privacy-policy .sections [class*="termsAndConditionsTable"] td a,
  .privacy-policy .sections [class*="termsAndConditionsTable"] td strong,
  .privacy-policy .sections [class*="termsAndConditionsTable"] td em {
    display: inline !important;
    grid-column: unset !important;
  }
}
.privacy-policy .sections [class*="termsAndConditionsTable"] td p,
.privacy-policy .sections [class*="termsAndConditionsTable"] th p,
.privacy-policy .sections table td p,
.privacy-policy .sections table th p {
  margin-bottom: 16px;
}
.privacy-policy .sections [class*="termsAndConditionsTable"] td p:last-of-type,
.privacy-policy .sections [class*="termsAndConditionsTable"] th p:last-of-type,
.privacy-policy .sections table td p:last-of-type,
.privacy-policy .sections table th p:last-of-type {
  margin-bottom: 0;
}
.privacy-policy .sections .privacyPolicyTable {
  display: block;
  width: 100%;
}
.privacy-policy .sections .privacyPolicyTable tbody {
  display: block;
  width: 100%;
  max-width: 100%;
}
.privacy-policy .sections .privacyPolicyTable tbody tr {
  display: block;
}
@media screen and (min-width: 768px) {
  .privacy-policy .sections .privacyPolicyTable tbody tr {
    display: table-row;
  }
}
.privacy-policy .sections .privacyPolicyTable tbody tr:last-child {
  border-bottom: 1px solid #dadce0;
}
.privacy-policy .sections .privacyPolicyTable tbody tr td {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .privacy-policy .sections .privacyPolicyTable tbody tr td {
    display: table-cell;
  }
  .privacy-policy .sections .privacyPolicyTable tbody tr td:first-of-type {
    width: 30%;
  }
}
.privacy-policy .sections .privacyPolicyTable td {
  border: 1px solid #dadce0;
  border-bottom: none;
  border-collapse: collapse;
  padding: 12px 20px;
}
.privacy-policy .bg {
  background-color: #f6f7f9;
}
.privacy-policy .sidePanel {
  padding: 20px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  background-color: #003a70;
  color: #ffffff;
  position: relative;
  top: 15px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .privacy-policy .sidePanel {
    padding: 32px 28px;
    position: sticky;
    min-width: 384px;
  }
}
.privacy-policy .sidePanel li {
  margin-bottom: 12px;
}
.privacy-policy .sidePanel li:last-child {
  margin-bottom: 0;
}
.privacy-policy .sidePanel a {
  color: #ffffff;
  opacity: 0.76;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.28px;
  word-break: normal;
}
.privacy-policy .sidePanel a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
}
.privacy-policy .sidePanel .active a {
  color: #ffffff;
  opacity: 1;
}
.privacy-policy .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .privacy-policy .main {
    gap: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.privacy-policy .policy-content {
  display: none;
}
.privacy-policy .policy-content.active {
  display: block;
}
.privacy-policy .side-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.privacy-policy .side-nav li {
  text-indent: 0;
  padding-left: 0;
}
thead th {
  background-color: #f6f7f9;
}
thead th span {
  background-color: #f6f7f9 !important;
}
td[colspan="2"] {
  background-color: #f6f7f9 !important;
}
/*Page not found*/
.error-page-container {
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 0;
  background-color: #f9f9f9;
}
.error-code h1 {
  font-size: 120px;
  font-weight: 700;
  color: #d2394d;
  margin-bottom: 20px;
  line-height: 1;
}
.error-message {
  margin-bottom: 40px;
}
.error-message h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}
.error-message p {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}
.error-actions {
  margin-top: 30px;
}
.error-actions .master-button {
  width: auto;
  min-width: 200px;
  min-height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 24px;
  border-radius: 2000px;
  background-color: #d2394d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-family: inherit;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.error-actions .master-button:hover {
  background-color: #b3283a;
}
@media screen and (max-width: 767px) {
  .error-code h1 {
    font-size: 80px;
  }
  .error-message h2 {
    font-size: 24px;
  }
  .error-message p {
    font-size: 16px;
  }
  .error-actions .master-button {
    min-width: 180px;
  }
}
