@font-face {
  font-family: "double-caramel";
  src: url("../fonts/DoubleCaramelSansSerif-Regular.otf");
}
@font-face {
  font-family: "neue-bold";
  src: url("../fonts/NeueHaas/NeueHaasDisplayBold.ttf");
}
@font-face {
  font-family: "neue-regular";
  src: url("../fonts/NeueHaas/NeueHaasDisplayRoman.ttf");
}

/* common */

body.hidden {
  overflow: hidden;
}
.link,
.menu-link {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.mob {
  display: none;
}

:root {
  --red-color: #b70000;
  --gray-color: #a7a9ac;
  --accent-blue-color: #25408f;
  --accent-color: #a657ae;
  --yellow-color: #e3c621;
  --green-color: #9fcd5a;

  --title-font: "double-caramel";
  --header1-font: "double-caramel";
  --header2-font: "neue-bold";
  --body-font: "neue-regular";
}

/* events (sponsor page) */
.events-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0;
    padding: 20px;
}

.event-card {
    border: 1px solid #ccc;
    background-color: #f6f7f8;
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.event-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.event-card h3 {
    font-size: 18px;
    margin: 10px 0 25px;
    font-weight: bold;
}

.event-card p {
    font-size: 16px;
    margin: 5px 0 25px;
    font-family: var(--body-font);
    font-weight: 600;
    height: 90px;
}

.event-card h3 {
  font-family: var(--body-font);
}

.event-card .button {
    margin: 0 auto;
    padding: 0 10px;
    width: fit-content;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    line-height: 40px;
    text-decoration: none !important;
}

.event-card button:hover {
    background-color: #c20025;
}

.sponsor-level-card {
    height: 400px;
}
.sponsor-level-card strong {
    font-weight: 700;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal !important;
}

.full-width {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.italic {
  font-style: italic;
}

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

.styled-button {
  font-family: var(--body-font);
}

@media screen and (max-width: 768px) {
    .events-container {
        flex-direction: column;
        align-items: center;
    }
}

/* events */

/* volunteer form */
.volunteer {
  padding: 20px;
}

.volunteer * :not(input):not(.frm_error_style):not(.frm_message) {
  color: white !important
}
/* volunteer form */

/* header */

.header {
  padding: 12px 82px 12px 42px;
  background-color: transparent;
  width: 100%;
  font-size: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  transition: 0.3s;
  display: block !important;
}
.header.scrolled {
  background-color: #fff;
  box-shadow: 0 0 2px rgb(0 0 0 / 14%), 0 18px 40px rgb(0 0 0 / 5%);
}
.header.scrolled .link,
.white-header-page .header .link {
  color: #000;
}
.header.scrolled .nav__item.spec .link,
.white-header-page .header .nav__item.spec .link {
  color: #fff;
}
.header.scrolled .nav__item.spec .dropdown .link,
.white-header-page .header .nav__item.spec .dropdown .link {
  color: #000;
}
.header img.mob {
  display: block;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: 0.2s;
  width: 170px;
}
.header.scrolled .logo img,
.white-header-page .header .logo img {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.header.scrolled .logo img.mob,
.white-header-page .header .logo img.mob {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.header .logo {
  max-width: 170px;
  display: inline-block;
  vertical-align: middle;
}
.header-nav {
  width: calc(100% - 170px);
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}
.header-nav .nav__item {
  display: inline-block;
  vertical-align: middle;
}
.header-nav .nav__item + .nav__item {
  margin-left: 28px;
}
.header-nav .nav__item.spec {
  margin-left: 20px;
}
.header-nav .link {
  color: #fff;
  cursor: pointer;
}
.header-nav .nav__item.spec .dropdown-container > .link {
  padding: 7px 18px;
  background: var(--red-color);
  border-radius: 20px;
  transition: 0.2s;
}
.header-nav .nav__item.spec .dropdown-container:hover > .link {
  background: #e75256;
  box-shadow: 0px 13px 23px rgba(219, 30, 54, 0.21);
  border-radius: 100px;
}
.link,
.menu-link {
  position: relative;
}
.link:before,
.menu-link:before,
.our-mission-link .title:before {
  transition: transform 0.3s ease-out, border-color 0.3s ease-out;
  position: absolute;
  display: block;
  bottom: -4px;
  left: 0;
  width: 100%;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  border-top: 2px solid var(--red-color);
  content: "";
  padding-bottom: inherit;
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1),
    border-color 0.35s cubic-bezier(0.52, 0.01, 0.16, 1);
}
.dropdown .link:before,
.dropdown .menu-link:before {
  border-top: 2px solid var(--red-color);
}
.scrolled .link:before,
.white-header-page .header .link:before {
  border-top: 2px solid var(--red-color);
}
.dropdown-container > .link:before {
  width: calc(100% - 18px);
}
.our-mission-link .title:before {
  border-top: 2px solid #fff;
  bottom: 0;
}
.link:hover:before,
.menu-link:hover:before,
.our-mission-link:hover .title:before {
  transform-origin: left;
  transform: scaleX(1);
}
.arrow:hover > .link:before {
  transform-origin: left;
  transform: scaleX(1);
}
.spec .dropdown-container > .link:before {
  display: none;
}
.header .link.active:before {
  transform-origin: left;
  transform: scaleX(1);
  border-color: var(--red-color);
}
.arrow > .link:after {
  content: "";
  width: 12px;
  height: 7px;
  background-image: url("../img/arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s;
}
.scrolled .arrow > .link:after,
.white-header-page .header .arrow > .link:after {
  background-image: url("../img/arrow-dark.svg");
  width: 7px;
  height: 12px;
  transform: rotate(90deg);
  margin-left: 11px;
}
.scrolled .arrow:hover > .link:after,
.white-header-page .header .arrow:hover > .link:after {
  transform: rotate(90deg) scale(-1);
}
.dropdown-container:hover > .link:after {
  transform: scale(-1);
}
.dropdown-container {
  position: relative;
}
.dropdown {
  position: absolute;
  left: 0;
  top: 27px;
  background: #ffffff;
  box-shadow: 0px 8px 10px rgba(181, 181, 181, 0.25);
  border-radius: 6px;
  width: max-content;
  padding: 18px 20px 20px;
  background: #ffffff;
  box-shadow: 0px 8px 10px rgba(181, 181, 181, 0.25);
  border-radius: 10px;
  text-align: left;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.arrow:hover .dropdown {
  opacity: 1;
  visibility: visible;
}
.spec:hover #getInvolved {
  opacity: 1;
  visibility: visible;
}
.dropdown .menu-item + .menu-item {
  margin-top: 10px;
}
.dropdown .link,
.dropdown .menu-link {
  font-weight: 500;
  color: #000000;
}
.dropdown.get-involved {
  width: calc(100vw - 225px);
  left: auto;
  right: 0;
  top: 48px;
  padding: 22px;
}
.our-mission-link {
  width: 30%;
  height: 255px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.our-mission-link img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.dropdown .our-mission-link:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(68, 68, 98, 0);
  transition: background-color 0.5s;
  display: block;
}
.our-mission-link:hover:after {
  background-color: rgba(68, 68, 98, 1);
  transition: background-color 0.5s;
}
.our-mission-link .title {
  font-size: 32px;
  line-height: 45px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-family: var(--title-font);
}
.our-mission-link .desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-top: 6px;
  text-align: center;
  max-width: 300px;
  z-index: 1;
  position: relative;
}
.dropdown.get-involved .list-container {
  display: inline-block;
  vertical-align: top;
  padding: 34px 0 0 50px;
  width: 35%;
}
.dropdown.get-involved .list-container .title {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-bottom: 14px;
}
.dropdown.get-involved .list-container .link,
.dropdown.get-involved .list-container .menu-link {
  margin-top: 14px;
  font-weight: normal;
}

/* additional header style */
.header-nav-list {
  width: calc(100% - 174px);
  display: inline-block;
  vertical-align: middle;
}
.nav__item.spec {
  width: 134px;
  display: inline-block;
  vertical-align: middle;
}
.nav__item.spec .dropdown-container > .link {
  padding: 7px 18px;
  background: var(--red-color);
  border-radius: 20px;
  transition: 0.2s;
}
.nav__item.spec .dropdown-container > .link:hover {
  background: #e75256;
  box-shadow: 0px 13px 23px rgb(219 30 54 / 21%);
  border-radius: 100px;
}
.header-nav {
}

/* footer */

.sponsors-section {
  padding: 95px 25px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.sponsors-section .title {
  font-size: 32px;
  line-height: 45px;
  color: #000000;
  font-family: var(--title-font);
  margin-bottom: 50px;
  text-align: center;
}

div.sponsor-section-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.sponsors-section div.list__item {
  width: 25%;
  padding: 25px;
  filter: grayscale(100%);
  transition: 0.2s;
}

.sponsors-section .sponsor-section-list div.list__item img {
  max-height: 125px;
}

.sponsors-section .list__item:hover {
  filter: none;
}

.footer-main {
  background: #323232;
}
.copyright {
  background: #323232;
  text-align: center;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  padding: 30px;
}
.copyright .desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.footer-main {
  min-height: 512px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.footer-main .left,
.footer-main .right {
  width: 50%;
  display: inline-block;
}
.footer-main .left {
  padding: 130px 70px 70px;
  border-right: 1px solid #ffffff;
  font-size: 0;
}
.footer-main .right {
  padding: 40px 96px;
}
.footer-main .right label {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin-top: 16px;
  padding: 0;
  margin-bottom: 6px;
  visibility: visible !important;
}
.frm_forms.frm_style_formidable-style.with_frm_style {
  width: 100%;
}
.with_frm_style .frm_form_fields > fieldset {
  padding: 0;
}
.with_frm_style .frm_required {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  color: #ffffff !important;
}
.frm_style_formidable-style.with_frm_style .form-field {
  margin-bottom: 0 !important;
}
.footer-main .right form > div,
.footer-main .right form > p {
  margin-bottom: 0;
}
.footer-main .right .wpcf7 form {
  font-size: 0;
}
.footer-main .right .wpcf7-form-control-wrap {
  margin-top: 6px;
}
.footer-main .right .form-two-rows {
  font-size: 0;
}
.footer-main .right .form-two-rows label {
  width: calc(100% / 2 - 10px);
  display: inline-block;
  vertical-align: top;
}
.footer-main .right .form-two-rows label:first-child {
  margin-right: 10px;
}
.footer-main .right .form-two-rows label:last-child {
  margin-left: 10px;
}
.footer-main .right input,
.footer-main .right textarea {
  background: #ffffff;
  border: 2px solid #e8e8e8 !important;
  box-sizing: border-box;
  border-radius: 8px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  height: 40px !important;
  color: #000000;
  text-transform: uppercase;
  display: block;
  padding: 0 12px;
  text-transform: none;
  outline: 0 !important;
  resize: none;
  box-shadow: none !important;
}
.footer-main .right textarea {
  line-height: 24px;
  padding: 12px;
  height: 120px !important;
}
.footer-text {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding-right: 16px;
}
.footer-text .title,
.footer-nav-container .title {
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
}
.footer-text .desc a,
.footer-nav-container .menu-link {
  margin-top: 6px;
  // /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  max-width: 234px;
}
.frm_submit button {
  margin: 20px auto 0 !important;
  font-family: "Inter", sans-serif !important;
  background: var(--red-color) !important;
  border-radius: 100px !important;
  font-weight: bold !important;
  font-size: 20px !important;
  color: #ffffff !important;
  line-height: 58px !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0;
  max-width: 235px;
  border: 0 !important;
  box-shadow: none !important;
}
.frm_submit {
  text-align: center;
}
.frm_error {
  margin-top: 2px;
  font-size: 10px;
  top: 100%;
  left: 0;
  position: absolute;
}
.frm_style_formidable-style.with_frm_style .frm_error_style {
  display: none;
}
.frm_style_formidable-style.with_frm_style .form-field {
  position: relative;
}
.with_frm_style .frm_message p {
  font-size: 16px;
  line-height: 34px;
  font-family: var(--title-font);
  margin: 0;
}
.frm_forms.frm_style_formidable-style.with_frm_style {
  max-width: 520px;
  margin: 0 auto;
}
.footer-main .right .title {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.donation-section-2
  .frm_style_formidable-style.with_frm_style
  .form-field.frm_section_heading {
  margin: 0;
}
.donation-section-2
  .frm_style_formidable-style.with_frm_style
  .frm-show-form
  .frm_section_heading
  h3 {
  margin: 0 0 4px !important;
  padding: 0;
  border: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #282828;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
}
.donation-section-2
  .frm_style_formidable-style.with_frm_style
  .form-field.frm_section_heading
  + .frm_section_heading {
  margin-top: 24px;
}
.donation-section-2 .frm_style_formidable-style.with_frm_style .form-field {
  margin: 20px 0 0;
}

.donation-section-2 .with_frm_style .frm_primary_label {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #000000 !important;
  padding: 0;
  margin-bottom: 6px;
}
.donation-section-2 .with_frm_style .frm_required {
  color: #000000 !important;
}
.donation-section-2 .with_frm_style input {
  background: #ffffff;
  border: 0 !important;
  box-sizing: border-box;
  border-radius: 8px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 40px;
  height: 40px !important;
  color: #000000;
  text-transform: uppercase;
  display: block;
  padding: 0 12px;
  text-transform: none;
  outline: 0 !important;
  resize: none;
  box-shadow: none !important;
}
.donation-section-2 .with_frm_style .frm_radio {
  margin: 0 12px 12px 0 !important;
  vertical-align: top;
}
.donation-section-2 .with_frm_style .frm_radio:last-child {
  margin-right: 0 !important;
}
.donation-section-2 .with_frm_style .frm_radio label {
  background: #fff;
  border-radius: 8px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  line-height: 43px;
  color: #282828;
  display: inline-block;
  vertical-align: top;
  padding: 0 10px 0 44px;
  cursor: pointer;
  transition: 0.2s;
  text-transform: uppercase;
}
.donation-section-2 .with_frm_style .frm_radio.active label {
  background: rgba(219, 30, 54, 0.07);
}
.donation-section-2 .with_frm_style .frm_radio.active label {
  color: var(--red-color);
}
.donation-section-2 .with_frm_style .frm_radio input:after {
  content: "";
  position: absolute;
  left: -19px;
  top: -12px;
  border: 2px solid #a4a4a4;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  transition: 0.2s;
}
.donation-section-2 .with_frm_style .frm_radio input:checked:after {
  border-color: var(--red-color);
}
.donation-section-2 .with_frm_style .frm_radio input:before {
  content: "";
  position: absolute;
  left: -15px;
  top: -8px;
  width: 8px;
  height: 8px;
  background: var(--red-color);
  border-radius: 100px;
  transition: 0.2s;
  opacity: 0;
}
.donation-section-2 .with_frm_style .frm_radio input:checked:before {
  opacity: 1;
}
.donation-section-2 .with_frm_style .frm_radio label input {
  margin: 0 !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  background: transparent !important;
  -webkit-appearance: none;
  appearance: none;
  position: static;
  cursor: pointer;
}
.donation-section-2 .frm_opt_container {
  position: relative;
  padding-bottom: 61px;
}

.donation-section-2 .frm_forms.frm_style_formidable-style.with_frm_style {
  max-width: 100%;
}
.donation-section-2 .with_frm_style .frm_radio label + label {
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  display: block;
  padding: 0 !important;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  clip: auto !important;
  clip-path: none;
  background: no-repeat;
  cursor: default;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #000000 !important;
  margin-bottom: 6px;
  position: absolute;
  left: 0;
  bottom: 46px;
}
.donation-section-2
  .frm_style_formidable-style.with_frm_style
  input.frm_other_input:not(.frm_other_full) {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  max-width: 200px;
}
.donation-section-2 .with_frm_style .frm_submit {
  text-align: left;
}
select {
  background: #ffffff;
  border: 0 !important;
  box-sizing: border-box;
  border-radius: 8px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 40px;
  height: 40px !important;
  color: #000000 !important;
  display: block;
  padding: 0 12px;
  text-transform: none;
  outline: 0 !important;
  resize: none;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("/wp-content/uploads/2021/12/ic20-chevron-down.svg");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 18px 20px;
  max-width: 200px;
}
.with_frm_style .frm_form_field.frm_html_container span {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #000000 !important;
}

.footer-text .desc + .title {
  margin-top: 42px;
}
.footer-nav-container {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}
.socials-list {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.footer-nav-container .menu-item {
  margin-top: 7px;
}
.socials-list {
  margin-top: 26px;
}
.socials__item {
  width: 30px;
  display: inline-block;
  vertical-align: top;
}
.socials__item + .socials__item {
  margin-left: 20px;
}

/* main */
.main {
  padding-top: 113px;
}
.button {
  background: var(--red-color);
  border-radius: 100px;
  margin-top: 29px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 20px;
  line-height: 58px;
  color: #ffffff;
  width: 235px;
  text-align: center;
  transition: 0.2s;
}
.button:hover {
  background: #e75256;
  box-shadow: 0px 13px 23px rgba(219, 30, 54, 0.21);
}
.title {
  font-family: var(--title-font);
  font-size: 50px;
  line-height: 70px;
  color: #282828;
}
.title span {
  position: relative;
  display: inline-block;
}
.title span:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 17px;
  width: calc(100% + 9px);
  height: 55%;
  z-index: -1;
  background: #eaeaf5;
}
.desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 27px;
  color: #282828;
}

/* home page */

.hero-section {
  margin-top: -113px;
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 7%;
}
.hero-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 47, 81, 0.25);
}
.hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.hero-section video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(1.5);
}
.hero-section .title {
  font-family: var(header1-font);
  color: #ffffff;
  max-width: 560px;
  position: relative;
}
.hero-section .button {
  position: relative;
}
.home-section-2 {
  font-size: 0;
  padding: 87px 24px 80px;
  max-width: 1278px;
  margin: 0 auto;
}
.home-section-2 .left {
  width: 405px;
  display: inline-block;
  vertical-align: middle;
}
.home-section-2 .right {
  width: calc(100% - 405px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 40px;
}
.home-section-2 .desc {
  max-width: 620px;
  margin: 0 0 0 auto;
}
.home-section-3 {
  text-align: center;
}
.home-section-3 .list {
  margin-top: 18px;
}
.home-section-3 .list {
  display: flex;
  flex-direction: row;
}
.home-section-3 .list__item {
  flex: 1;
  padding: 43px 16px 116px;
  border-top: 1px solid rgba(161, 161, 161, 0.2);
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
  position: relative;
}
.home-section-3 .list__item + .list__item {
  border-left: 1px solid rgba(161, 161, 161, 0.2);
}
.home-section-3 .img {
  max-width: 200px;
  width: 100%;
  height: 100px;
  object-fit: contain;
  object-position: center;
}
.home-section-3 .list__item-title {
  font-family: var(--title-font);
  margin-top: 34px;
  font-size: 24px;
  line-height: 34px;
  color: #000000;
}
.home-section-3 .list__item-desc {
  max-width: 210px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  margin: 23px auto 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #282828;
}
.home-section-3 .button {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 16px;
  line-height: 33px;
  color: #ffffff;
  width: 134px;
  display: block;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
}
.home-section-5 {
  text-align: center;
  padding: 102px 16px;
  border-top: 1px solid #656565;
}
.home-section-5 .img {
  width: 72px;
}
.home-section-5 .title {
  margin-top: 37px;
}
.home-section-5 .desc {
  max-width: 900px;
  margin: 36px auto 0;
}
.home-section-5 .button {
  display: table;
  margin: 42px auto 0;
}

/* careers */
.white-header-page .main > div {
  padding: 82px 20px 94px;
  text-align: center;
}
.white-header-page .header {
  box-shadow: none;
  border-bottom: 1px solid #efeff2;
  background: #fff;
}
.white-header-page .footer {
  border-top: 1px solid rgb(161, 161, 161, 0.2);
}
.careers-page .desc {
  max-width: 600px;
  margin: 7px auto 0;
}
.careers-page .list {
  margin: 44px auto 0;
  max-width: 1240px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.careers-page .list__item {
  flex: 1;
  border: 1px solid #656565;
  border-radius: 8px;
  padding: 50px 12px 140px;
  position: relative;
  min-width: 380px;
  max-width: 390px;
  margin: 32px 16px 0;
}
.careers-page .list__item .img {
  height: 44px;
  max-width: 267px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.careers-page .list__item-title {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #000000;
  margin-top: 45px;
}
.careers-page .list__item-desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 145%;
  color: #282828;
  max-width: 288px;
  margin: 16px auto 0;
}
.careers-page .button {
  display: table;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  max-width: 235px;
  width: calc(100% - 24px);
}
.careers-page .list + .desc {
  margin-top: 44px;
  max-width: 821px;
}

/* reports */
.reports-page .desc {
  max-width: 456px;
  margin: 8px auto 0;
}
.reports-page .list {
  margin: 14px auto 0;
  max-width: 1240px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.reports-page .list__item {
  vertical-align: top;
  padding: 25px 12px 57px;
  border: 1px solid #656565;
  border-radius: 8px;
  margin: 32px 16px 0;
  flex: 1;
  min-width: 380px;
  max-width: 390px;
}
.reports-page .list__item .img {
  height: 80px;
  width: 100%;
  max-width: 298px;
  object-position: center;
  object-fit: contain;
}
.reports-page .list__item-title {
  margin-top: 30px;
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #282828;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
}
.reports-page .list__item-desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  margin-top: 26px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #4e4e4e;
}
.reports-page .button {
  display: table;
  max-width: 230px;
  width: 100%;
  font-size: 16px;
  line-height: 33px;
  margin: 25px auto 0;
}

/* board and staff */
.board-staff-page .list {
  font-size: 0;
  margin: 30px auto 0;
  max-width: 1155px;
  text-align: center;
}
.board-staff-page .list__item {
  display: inline-block;
  vertical-align: top;
  width: calc(100% / 3 - 100px);
  margin: 0 50px 50px;
  text-align: center;
  position: relative;
}
.board-staff-page .list__item-title {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #282828;
  min-height: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.board-staff-page .list__item-title span {
  font-size: 16px;
  display: block;
}
.board-staff-page .list__item-desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #282828;
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #cacaca;
  padding-top: 18px;
}
.board-staff-page .list__item-desc a {
  color: #282828;
}
.board-staff-page .staff-container .list__item-title {
  min-height: 0;
  margin-top: 23px;
}
.board-staff-page .staff-container .list__item-desc {
  min-height: 0;
  padding-top: 0;
  border: 0;
}
.board-staff-page .staff-container {
  padding-top: 80px;
  margin-top: 40px;

  position: relative;
}
.board-staff-page .staff-container:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  width: calc(100% + 40px);
  border-top: 1px solid rgba(161, 161, 161, 0.2);
}
.board-staff-page .list__item .img {
  height: 356px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.board-staff-page .list__item-desc span {
  margin-top: 3px;
}
.board-staff-page .hover-info {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  transition: 0.3s;
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: rgba(68, 68, 98, 0.85);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 356px;
  z-index: 1;
  max-height: 100%;
  cursor: default;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.board-staff-page .hover-info::-webkit-scrollbar-track {
}
.board-staff-page .hover-info::-webkit-scrollbar {
  width: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
}
.board-staff-page .hover-info::-webkit-scrollbar-thumb {
  width: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
  -webkit-box-shadow: inset 0 0 0 10px;
  box-shadow: inset 0 0 0 10px;
}
.board-staff-page .hover-info:hover {
  color: #fff;
}

.board-staff-page .list__item:hover .hover-info {
  opacity: 1;
  visibility: visible;
}
.join-container {
  padding-top: 100px;
  width: calc(100% - (100% / 3));
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.join-container .title {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  color: #282828;
}
.join-container .desc {
  margin-top: 17px;
}
.join-container .button {
  margin: 26px auto 0;
  display: table;
}

/* newsroom */

.newsroom-page .list {
  max-width: 1270px;
  margin: 0 auto;
  font-size: 0;
}
.newsroom-page .list__item {
  margin: 30px 15px 0;
  width: calc(100% / 2 - 30px);
  display: inline-block;
  vertical-align: top;
  padding-top: 44%;
  position: relative;
  height: 0;
}
.newsroom-page .list__item:nth-child(3n + 4),
.newsroom-page .list__item:first-child {
  width: calc(100% - 30px);
}
.newsroom-page .list__item-link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 1, 0.48) 50.09%,
    rgba(1, 1, 1, 0) 100%
  );
}
.newsroom-page .list__item-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  padding: 60px 50px;
}
.newsroom-page .list__item .title {
  font-family: var(--title-font);
  font-size: 36px;
  line-height: 46px;
  color: #ffffff;
  z-index: 1;
  position: relative;
  text-align: left;
}
.newsroom-page .list__item .desc {
  z-index: 1;
  position: relative;
  font-family: Arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  margin-bottom: 18px;
  text-align: left;
}
.newsroom-page .list__item .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.35s;
  transform: translate3d(-30px, 0, 0) scale(1.15);
}
.newsroom-page .list__item:hover .img {
  transform: translate3d(0, 0, 0) scale(1);
}
.pagination {
  max-width: 1270px;
  margin: 37px auto 0;
  text-align: left;
  padding: 0 15px;
}
.page-numbers {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 16px;
  line-height: 48px;
  padding: 0 20px;
  border-radius: 50px;
  display: inline-block;
  color: #323232;
  transition: 0.2s;
}
.page-numbers:hover {
  opacity: 0.7;
}
.page-numbers.current {
  color: #ffffff;
  background: var(--red-color);
}
.page-numbers + .page-numbers {
  margin-left: 5px;
}
.page-numbers.next {
  padding: 0;
}

/* article */
.white-header-page .main .article-page {
  padding: 0;
  position: relative;
}
.article-top {
  position: relative;
  width: 100%;
  height: 560px;
  background-color: red;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 38px;
}
.article-top .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-top:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.58);
  background-blend-mode: color-burn;
}
.article-top .desc {
  position: relative;
  z-index: 1;
  font-family: Arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
}
.article-top .back {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
  position: absolute;
  top: 33px;
  left: 69px;
}
.article-top .share {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff;
  position: absolute;
  top: 32px;
  right: 52px;
}
.article-top .share:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../img/share.svg");
  background-position: center;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  top: -9px;
  right: calc(100% + 3px);
}
.article-top .title {
  font-family: var(--title-font);
  font-size: 36px;
  line-height: 44px;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin: 26px auto 23px;
  max-width: 90%;
}
.article-top .info .desc {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.article-top .info .desc + .desc {
  margin-left: 50px;
}
.article-top .info .desc + .desc:before {
  content: "";
  position: absolute;
  background: #fff;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 1px;
}
.article-bottom .desc {
  line-height: 25px;
  color: #4e4e4e;
}
.article-bottom {
  padding: 60px 95px 180px;
  text-align: left;
  position: relative;
}
.article-bottom .prev {
  position: absolute;
  left: 115px;
  bottom: 90px;
}
.article-bottom .prev:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 10px);
  width: 10px;
  height: 18px;
  background-image: url("../img/arrow-gray.svg");
  background-position: center;
  background-size: contain;
}
.article-bottom .next {
  position: absolute;
  right: 115px;
  left: auto;
  bottom: 90px;
}
.article-bottom .next:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(-1);
  left: calc(100% + 10px);
  width: 10px;
  height: 18px;
  background-image: url("../img/arrow-gray.svg");
  background-position: center;
  background-size: contain;
}

/* programs */
.white-header-page .main .program-page {
  padding: 0;
}
.program-section-1 .img {
  max-height: 160px;
  object-fit: contain;
  object-position: center;
  max-width: 300px;
  width: calc(100% - 60px);
}

.program-section-1 {
  height: 218px;
  background: #f5eaea;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.postid-170 .program-section-1 {
  background: #eae9f0;
}
.program-section-1 .icon {
  width: 300px;
}
.program-section-1 .icon-container {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  padding-left: 20px;
  justify-content: flex-start;
  align-items: center;
}
.program-section-2 {
  padding: 96px 20px 117px;
}
.program-section-2 .desc {
  margin: 39px auto 0;
  max-width: 592px;
}
.program-section-2 .button {
  margin: 56px auto 0;
  display: table;
}
.program-section-3 {
  padding: 96px 20px;
  border-top: 1px solid rgba(161, 161, 161, 0.2);
}
.program-section-3 .list {
  margin-top: 96px;
  font-size: 0;
}
.program-section-3 .list__item {
  width: calc(100% / 3);
  display: inline-block;
  vertical-align: top;
}
.program-section-3 .list__item .img {
  width: 71px;
}
.program-section-3 .list__item-title {
  margin-top: 24px;
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 31px;
  color: #000000;
}
.program-section-3 .list__item-desc {
  margin: 16px auto 0;
  max-width: 236px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 145%;
  color: #282828;
}
.program-section-3 .list__item-desc b {
  font-weight: bold;
}
.program-section-3 .button {
  margin: 48px auto 0;
  display: table;
}
.program-section-4 {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #fff;
  background: #f7f7fc;
}
.program-section-4 .left {
  min-height: 534px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 104px 60px 64px 90px;
  width: 50%;
  padding-right: 5%;
  padding-left: 6%;
}
.program-section-4.action .left {
  justify-content: flex-start;
}
.program-page-code-to-success .program-section-4 .left {
  padding-top: 0;
}
.program-section-4 .right {
  max-height: 534px;
  position: relative;
  width: 50%;
}
.program-section-4 .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.program-section-4 .desc {
  font-family: var(body-font);
  font-size: 24px;
  line-height: 34px;
  color: #000000;
  text-align: left;
}
.program-section-4 .desc.small {
  font-size: 20px;
  line-height: 28px;
  max-height: 168px;
  overflow: hidden;
  transition: 0.5s;
}
.program-section-4.active .desc.small {
  max-height: 100%;
}
.program-section-4 .desc-2 {
  font-family: var(header1-font);
  margin-top: 35px;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  text-align: left;
}
.program-section-4 .quotes {
  font-family: var(--title-font);
  font-size: 144px;
  color: #000000;
  line-height: 20px;
}
.program-section-4 .desc + .quotes {
  transform: scale(-1);
  width: 100%;
  text-align: left;
}
.program-section-4 .read-more {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #9090ad;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  margin-top: 64px;
  position: relative;
}
.program-section-4 .read-more:after {
  content: "";
  position: absolute;
  left: calc(100% + 15px);
  width: 12px;
  height: 7px;
  top: 10px;
  transform: scale(-1);
  background-image: url("../img/arrow-light-gray.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.2s;
}
.program-section-4.active .read-more:after {
  transform: scale(1);
}
.program-section-5 {
  text-align: left;
}
.program-section-5 .button {
  display: table;
  margin-top: 40px;
  width: 179px;
}
.program-section-6 {
  background: #f7f7fc;
  padding: 96px 20px;
}
.program-section-6 .buttons {
  margin-top: 48px;
}
.program-section-6 .button {
  margin: 0 20px;
  height: 58px;
  line-height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  width: calc(100% / 3 - 40px);
  max-width: 235px;
}
.find-us-button {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 20px;
  line-height: 48px;
  color: #000000;
  text-align: left;
  background: #ffffff;
  border-radius: 200px;
  width: 195px;
  display: inline-block;
  vertical-align: top;
  padding-left: 24px;
  position: relative;
  margin: 40px 4px 0;
}
.find-us-button:after {
  content: "";
  width: 48px;
  height: 48px;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}
.find-us-button.youtube::after {
  background-image: url("../img/youtube.svg");
}
.find-us-button.fb::after {
  background-image: url("../img/fb.svg");
}
.find-us-button.instagram::after {
  background-image: url("../img/instagram.svg");
}
.find-us-button.linkedin::after {
  background-image: url("/wp-content/uploads/2021/12/linkedin.svg");
}
.program-section-7 {
  padding: 108px 6% 96px;
}
.program-section-7 .title {
  font-size: 32px;
  line-height: 41px;
}
.program-section-7 .list {
  margin-top: 60px;
  font-size: 0;
}
.program-section-7 .list__item {
  display: inline-block;
  width: calc(100% / 4);
  padding: 0 20px;
}
.program-section-7 .img {
  width: 100%;
  max-width: 180px;
  height: 75px;
  object-position: center;
  object-fit: contain;
}
.program-section-7 .button {
  display: table;
  margin: 32px auto 0;
  width: 100%;
  max-width: 134px;
  line-height: 33px;
  font-size: 16px;
}

/* sponsors */
.white-header-page .main .sponsors-page {
  padding: 0;
  margin-bottom: -1px;
  position: relative;
  font-size: 0;
}
.sponsors-section-1 {
  position: relative;
}
.sponsors-section-1:before {
  content: "";
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f7fc;
}
.sponsors-section-1 .left {
  min-height: 471px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  vertical-align: top;
  width: 50%;
  padding: 30px 100px;
  text-align: left;
}
.sponsors-section-1 .left .title {
  position: relative;
}
.sponsors-section-1 .left .desc {
  max-width: 454px;
  margin-top: 22px;
  text-align: left;
}
.sponsors-section-1 .left .button {
  margin-top: 48px;
  width: 100%;
  max-width: 235px;
}
.sponsors-section-1 .right {
  width: 50%;
  display: inline-block;
  height: 470px;
}
.sponsors-section-1 .right .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sponsors-section-2 {
  padding: 96px 20px;
}
.sponsors-section-2 .desc {
  max-width: 900px;
  margin: 39px auto 0;
}
.sponsors-section-3 {
  padding: 96px 12px;
  border-top: 1px solid rgba(161, 161, 161, 0.2);
}
.sponsors-section-3 .desc {
  margin-top: 40px;
}
.sponsors-section-3 .list {
  margin: 40px auto 0;
  max-width: 1016px;
  font-size: 0;
}
.sponsors-section-3 .list__item {
  width: calc(100% / 4 - 16px);
  display: inline-block;
  vertical-align: top;
  height: 318px;
  background: #f2f2f2;
  border-radius: 16px;
  margin: 0 8px;
  position: relative;
  overflow: hidden;
  padding: 33px 20px 0;
}
.sponsors-section-3 .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sponsors-section-3 .stars {
  height: 190px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsors-section-3 .stars .img {
  width: 110px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.sponsors-section-3 .stars .list__item-title + .img {
  bottom: 0;
  top: auto;
}
.sponsors-section-3 .list__item-title {
  font-family: var(--title-font);
  font-size: 36px;
  line-height: 54px;
  letter-spacing: 0.04em;
  color: #5c605a;
}
.sponsors-section-3 .list__item:nth-child(3) .list__item-title {
  color: #6c3e18;
}
.sponsors-section-3 .list__item:nth-child(4) .list__item-title {
  color: #7a6f61;
}
.sponsors-section-3 .list__item:nth-child(2) .list__item-title {
  color: #ffffff;
}
.sponsors-section-3 .list__item-desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 800;
  font-size: 21px;
  line-height: 25px;
  color: #ffffff;
  padding: 12px;
  background: #5c605a;
  border-radius: 12px;
  display: table;
  margin: 24px auto 0;
  position: relative;
}
.sponsors-section-3 .list__item:nth-child(3) .list__item-desc {
  background: #6c3e18;
}
.sponsors-section-3 .list__item:nth-child(4) .list__item-desc {
  background: #7a6f61;
}
.sponsors-section-3 .list__item:nth-child(2) .list__item-desc {
  background: #ffffff;
  color: #40434c;
}

.sponsors-section-4 {
  margin-bottom: 0;
}
.sponsors-section-4 .desc {
  max-width: 592px;
  margin: 40px auto 0;
}

/* donation */
.white-header-page .main .donation-page {
  padding: 0;
}
.donation-section-1 .left:first-child {
  width: 50%;
  padding-right: 48px;
  text-align: left;
  padding-bottom: 120px;
}
.donation-section-1 .left:last-child {
  width: 50%;
  padding-left: 48px;
  text-align: left;
  position: relative;
}
.donation-section-1 .left:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  max-height: 238px;
  height: 100%;
  background: #d0d0e1;
}
.donation-section-1 .left:first-child .desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  margin-top: 22px;
  font-size: 16px;
  line-height: 145%;
}
.donation-section-1 .left:last-child .desc {
  margin-top: 0;
}
.donation-section-1 .left:last-child .desc-2 {
  font-size: 24px;
}
.donation-section-1 {
  min-height: 470px;
  font-size: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px 85px;
  position: relative;
  background: transparent;
}
.donation-section-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f7f7fc;
  z-index: -2;
}
.donation-section-2 {
  padding: 69px 86px 0;
  background: #fff;
  position: relative;
  margin-bottom: -1px;
}
.donation-section-2-wrapper {
  background: #f5f5f5;
  font-size: 0;
  display: flex;
}
.donation-section-2-wrapper .img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.donation-section-2-wrapper .left {
  width: 43%;
  display: inline-block;
  vertical-align: top;
  min-height: 690px;
  position: relative;
}
.donation-section-2-wrapper .right {
  width: 57%;
  display: inline-block;
  vertical-align: top;
  padding: 60px 65px;
}

/* Contact us */
.white-header-page .main .contact-us-page {
  padding: 0;
}
.contact-us-section-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f7f7fc;
  z-index: -2;
}
.contact-us-section-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: -1px;
  z-index: 1;
}
.contact-us-section-1 .left {
  width: 50%;
  text-align: left;
  padding: 20px 48px 20px 88px;
}
.contact-us-section-1 .right {
  width: 50%;
  position: relative;
  min-height: 739px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-us-section-1 .left .desc {
  margin-top: 22px;
}
.contact-us-section-1 .left .desc b {
  font-weight: bold;
}
.contact-us-section-1 .left .top {
  padding-bottom: 70px;
}
.contact-us-section-1 .left .bottom {
  padding-top: 64px;
  position: relative;
  font-size: 0;
}
.contact-us-section-1 .left .bottom:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #d0d0e1;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-us-section-1 .left .bottom .title {
  font-size: 24px;
  line-height: 29px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
}
.contact-us-section-1 .left .bottom-left {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding-right: 15px;
}
.contact-us-section-1 .left .bottom-right {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding-left: 32px;
  position: relative;
}
.contact-us-section-1 .left .bottom-right::before {
  content: "";
  width: 1px;
  height: 112px;
  background: #d0d0e1;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-us-section-1 .bottom-left .address {
  margin-top: 28px;
  display: block;
  position: relative;
  padding-left: 34px;
}
.contact-us-section-1 .left .address:before {
  content: "";
  left: 0;
  top: 5px;
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../img/location.svg");
}
.contact-us-section-1 .left .phone {
  position: relative;
  padding-left: 34px;
}

.contact-us-section-1 .left .phone:before {
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url("../img/phone.svg");
}

.contact-us-section-1 .left .socials__item {
  width: 48px;
  margin-right: 8px;
}
.contact-us-section-1 .left .socials__item + .socials__item {
  margin-left: 0;
}
.contact-us-section-1 .right .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.right-contact-form {
  position: relative;
  z-index: 1;
}
.right-contact-form
  .with_frm_style
  .frm_form_fields
  fieldset
  > .frm_screen_reader {
  font-family: var(--title-font);
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  height: auto;
  clip: auto;
  clip-path: none;
  width: auto;
  position: relative;
  margin: 0;
}

.right-contact-form
  .frm_style_formidable-style.with_frm_style
  input.frm_other_input:not(.frm_other_full) {
  margin-top: 16px;
  width: 100%;
}

/* empty careers */
.empty-message {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #282828;
  padding: 48px 112px;
  background: #eaeaf5;
  border-radius: 8px;
  margin: 96px auto;
  display: table;
}

/* instagram */
.home-section-6 {
  position: relative;
}
.custom-slider-instagram-arrow {
  width: 43px;
  height: 43px;
  position: absolute;
  background: var(--red-color);
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
  left: 37px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
  cursor: pointer;
  z-index: 1;
  transition: 0.2s;
}
.custom-slider-instagram-arrow:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/arrow.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
}
#instagram-arrow-left.custom-slider-instagram-arrow:before {
  transform: rotate(90deg);
}
.custom-slider-instagram-arrow:hover {
  background: #ef4056;
}
.custom-slider-instagram-arrow svg {
  display: none;
}
#instagram-arrow-right {
  left: auto;
  right: 37px;
}
#sb_instagram {
  padding: 0 !important;
  overflow: hidden;
}
#sb_instagram #sbi_images {
  white-space: nowrap;
  font-size: 0;
  padding: 0 !important;
  position: relative;
  transition: 0.3s;
  left: 0;
  width: auto;
}
#sb_instagram #sbi_images .sbi_item {
  float: none;
}
#sb_instagram.sbi_col_5 #sbi_images .sbi_item {
  width: 320px;
  padding: 5px !important;
}
#sb_instagram #sbi_load {
  display: none;
}

/* events */
.tribe-events .tribe-events-c-search__button {
  background: var(--red-color) !important;
  border-radius: 100px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 20px;
  line-height: 58px;
  color: #ffffff;
  padding: 0 16px;
  transition: 0.2s;
}
.tribe-events .tribe-events-c-search__button:hover {
  opacity: 0.7;
  background: var(--red-color);
}
.tribe-common--breakpoint-medium.tribe-common
  .tribe-common-form-control-text__input {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #656565;
  padding: 26px 26px 26px 60px;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__event {
  display: flex;
  flex-direction: row;
  background: transparent;
  padding: 37px 0 49px 0;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__event-wrapper {
  padding: 0;
  margin-left: -120px;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__event-date-tag {
  width: 120px;
  padding-top: 37px;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__month-separator
  + .tribe-events-calendar-list__event-row {
  margin: 0;
}
.tribe-common--breakpoint-medium.tribe-common .tribe-common-h6--min-medium {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #282828;
  width: 120px;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__event-featured-image-wrapper {
  width: 120px;
  padding: 0 5px !important;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__event-details {
  width: calc(100% - 120px);
  text-align: left;
}
.tribe-events .tribe-events-calendar-list__event-featured-image-link,
.tribe-events-event-image {
  display: none;
}
.datepicker.dropdown-menu {
  min-width: 360px;
}
.tribe-events .tribe-events-calendar-day__event {
  padding: 0 !important;
  margin: 0 !important;
}
.tribe-events .tribe-events-calendar-day__event-content {
  display: flex !important;
  flex-direction: row !important;
  background: transparent;
  padding: 37px 0 49px 0 !important;
  margin: 0 !important;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-day__event:before {
  display: none;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-day__event-featured-image-wrapper {
  width: 120px;
  padding: 0 5px;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-day__event-details {
  width: calc(100% - 120px);
  text-align: left;
}
.tribe-events-single {
  position: relative;
}
.tribe-events-event-image {
  position: absolute;
  left: 0;
  top: 50px;
  width: 120px !important;
  height: 30px !important;
  margin: 0;
}
.tribe-events-event-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.tribe-events-single > .tribe_events {
  position: static;
  padding: 0;
}
.tribe-events-single-event-title {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: #282828;
}
.tribe-events-back a {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #282828 !important;
  position: relative;
  margin-left: 7px;
}
.tribe-events-back a:before {
  content: "";
  width: 10px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 1;
}
.tribe-events-back a:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -7px;
  top: 50%;
  z-index: 1;
  background-image: url("../img/arrow-dark.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(-1) translateY(50%);
}
.tribe-events-back {
  margin-bottom: 78px;
}
.tribe-events-schedule h2 {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #282828;
  margin: 13px 0 17px;
}
.tribe-events-schedule .tribe-events-cost {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 19px;
}
.tribe-events-content ol,
.tribe-events-content p,
.tribe-events-content ul {
  font-weight: normal;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 19px;
  color: #282828;
  padding-bottom: 40px;
  margin: 0 !important;
}
.tribe-events-cal-links {
  margin-bottom: 40px;
}
.event-tickets .tribe-tickets__rsvp-wrapper {
  margin: 0 !important;
}
.event-tickets .tribe-tickets__rsvp {
  padding: 0 !important;
  margin: 0 !important;
}
.event-tickets .tribe-tickets__rsvp-details-wrapper {
  /* 	display: none !important; */
}
.tribe-link-view-attendee {
  /* 	display: none; */
}
.event-tickets .tribe-tickets__rsvp-actions-wrapper {
  border: 0;
  padding: 0 !important;
}
.event-tickets .tribe-tickets__rsvp-actions-rsvp-going {
  margin: 0 !important;
}
.event-tickets .tribe-common-h6--min-medium {
  /* 	display: none; */
}
.event-tickets .tribe-tickets__rsvp-actions {
  width: auto;
}
.event-tickets .tribe-tickets__rsvp-actions-wrapper {
  width: auto !important;
  border: 0 !important;
}
.event-tickets .tribe-tickets__rsvp-wrapper {
  border: 0 !important;
  padding-bottom: 50px;
}
.event-tickets .tribe-tickets__rsvp-actions .tribe-common-c-btn {
  max-width: 235px !important;
  background: var(--red-color) !important;
  border-radius: 100px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 20px;
  line-height: 58px;
  color: #ffffff;
  width: 235px !important;
  padding: 0 !important;
}
#tribe-events-pg-template {
  padding-bottom: 50px;
}
.tribe-events-venue-map {
  /* 	display: none; */
}
.tribe-events-event-meta.primary {
  width: 60%;
}
.tribe-events-event-meta.secondary {
  width: 40%;
}
.tribe-events-meta-group {
  width: 50%;
  padding: 45px 0 50px;
}
abbr[title] {
  border: 0 !important;
  cursor: default;
  text-decoration: none;
}
.tribe-events-meta-group .tribe-events-single-section-title {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #000000;
  text-transform: capitalize;
}
.tribe-events-event-meta dt {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.tribe-events-event-meta dl {
  margin-top: 12px !important;
}

.tribe-events-event-meta dt:first-child {
  font-weight: 600;
}
.tribe-events-event-meta dd + dt {
  font-weight: 600;
}
.event-tickets .tribe-tickets__rsvp-form-wrapper {
  padding: 0 !important;
}
.event-tickets .tribe-tickets__form .tribe-tickets__form-field-label,
.event-tickets .tribe-tickets__form label {
  font-weight: bold !important;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-size: 16px !important;
  line-height: 19px;
  color: #282828 !important;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.event-tickets .tribe-tickets__form .tribe-tickets__form-field {
  padding: 0;
}
.event-tickets
  .tribe-tickets__form
  .tribe-tickets__form-field
  + .tribe-tickets__form-field {
  margin-top: 30px;
}
.event-tickets .tribe-tickets__form input {
  border: 2px solid #e8e8e8 !important;
  box-sizing: border-box;
  border-radius: 8px !important;
  background: #fff !important;
}
.tribe-common.event-tickets .tribe-common-c-btn,
.tribe-common.event-tickets a.tribe-common-c-btnv {
  max-width: 235px !important;
  background: var(--red-color) !important;
  border-radius: 100px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: bold;
  font-size: 20px;
  line-height: 58px;
  color: #ffffff;
  width: 235px !important;
  padding: 0 !important;
  margin: 0;
}
.event-tickets .tribe-tickets__rsvp-form-buttons {
  display: flex;
  flex-direction: row-reverse;
}
.tribe-common.event-tickets .tribe-tickets__rsvp-message {
  background: transparent !important;
  padding: 0 !important;
}
.event-tickets .tribe-tickets__rsvp-message--success-icon {
  /* 	display: none !important; */
}
.tribe-tickets__rsvp-message-text {
  font-size: 16px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  line-height: 19px;
  font-weight: normal;
  color: #282828;
}
.tribe-tickets__rsvp-message-text straong {
  font-weight: bold;
  font-size: 24px;
  line-height: 29px;
  color: var(--red-color);
  display: block;
}
.event-tickets .tribe-tickets__rsvp {
  /* 	display: none; */
}

/* translate custom styles */
.custom-translate-wrapper {
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 15px 0;
}

.pc-translate {
  display: none;
}

#gtranslate_selector {
  background: none;
  color: #fff;
  border: solid 1.5px #fff;
  border-radius: 5px;
  padding: 7px 4px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

#gtranslate_selector option {
  background: #fff;
  color: #000;
}

.scrolled .custom-translate-wrapper #gtranslate_selector {
  color: #000;
  border-color: #000;
}

.mobile-translate #gtranslate_selector {
  color: #000;
  border-color: #000;
  margin: 15px 0 0 0;
}

/* map section*/
.home-section-4 {
  font-size: 0;
  padding: 50px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.home-section-4 .left {
  width: 30%;
  display: inline-block;
  vertical-align: middle;
}
.home-section-4 .right {
  width: 70%;
  display: inline-block;
  vertical-align: middle;
}
.map {
  position: relative;
}
.map svg {
  transform: scale(0.79);
  transform-origin: center center;
}
.map path {
  cursor: pointer;
  transition: 0.3s;
}
.map polygon {
  cursor: pointer;
  transition: 0.3s;
}

.map polygon:hover,
.map path:hover {
  fill: #e8a5a873;
}

.map path.active {
  fill: #e8a5a8;
  transform: translateY(-3px);
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0px 8px 0px #e6282f);
}
.map polygon.active {
  fill: #e8a5a8;
  transform: translateY(-3px);
  -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  filter: drop-shadow(0px 8px 0px #e6282f);
}
.map-box-list {
  width: 275px;
  position: absolute;
  top: 390px;
  left: 620px;
  background: #ffffff;
  box-shadow: 0px 5px 8px #e9a5a8;
  border-radius: 5px;
  font-size: 0;
  display: none;
  z-index: 1;
}
.empty-list {
  padding: 24px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1px;
  color: #282828;
  text-align: center;
  display: none;
}
.map-box-list .list__item {
  padding: 10px 0;
}
.map-box-list .list__item.hidden {
  display: none;
}

.map-box-list .list__item + .list__item {
  border-top: 1px solid #f3f3f3;
}
.map-box-list .title {
  font-family: var(header1-font);
  font-size: 20px;
  line-height: 52px;
  text-align: center;
  letter-spacing: 0.142857px;
  text-transform: uppercase;
  color: #ffffff;
  background: #e6282f;
  border-radius: 5px 5px 0px 0px;
}
.map-box-list .title {
  background-image: url("/wp-content/uploads/2021/12/Shape.svg");
  background-position: right 11px center;
  background-size: 24px;
  background-repeat: no-repeat;
}
.map-box-list img {
  width: 40px;
  height: 35px;
  object-fit: contain;
  object-position: center;
  display: inline-block;
  vertical-align: middle;
}
.map-box-list .count {
  font-family: var(header1-font);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.142857px;
  color: #282828;
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  text-align: center;
}
.map-box-list .desc {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1px;
  color: #282828;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 88px);
  padding-left: 15px;
  text-align: left;
}

.header .gglobe {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 38px;
  top: 43px;
  filter: brightness(0) invert(1);
  background-image: url("/wp-content/uploads/2021/12/translate-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
}
.header.scrolled .gglobe {
  filter: brightness(0) invert(0);
}
.white-header-page .header .gglobe {
  filter: brightness(0) invert(0);
}
.gsatelites {
  position: absolute;
  top: 83px;
  right: 40px;
  display: flex;
  flex-direction: column;
}
.gsatelites .gsatelite {
  background: #fff !important;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: normal;
  font-size: 14px;
  color: #000;
  position: static;
  opacity: 1;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1), 0px -4px 4px rgba(0, 0, 0, 0.1);
  width: auto;
  border-radius: 12px;
  padding: 0 12px;
}
.gsatelite + .gsatelite {
  margin-top: 10px;
}

.custom-social-share {
  position: absolute;
  top: 70px;
  right: 52px;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  padding: 9px 15px 15px;
  font-size: 0;
  display: none;
}
.custom-social-share .title {
  font-weight: bold;
  font-size: 12px;
  line-height: 15px;
  color: #000000;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  margin-bottom: 12px;
  text-align: left;
}
.custom-social-share .copy-button {
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 10px;
  line-height: 20px;
  color: #ffffff;
  background: #2f2f51;
  border-radius: 3px;
  display: inline-block;
  vertical-align: top;
  padding: 0 9px 0 24px;
  cursor: pointer;
  transition: 0.2s;
  background-image: url("/wp-content/uploads/2021/12/copy-icon.svg");
  background-position: left 9px center;
  background-size: 10px 12px;
  background-repeat: no-repeat;
}
.custom-social-share .copy-button:hover {
  opacity: 0.7;
}

.custom-social-share .heateor_sss_sharing_container {
  display: inline-block;
  vertical-align: top;
}
div.heateor_sss_follow_ul,
div.heateor_sss_sharing_ul {
  margin: 0 !important;
}
div.heateor_sss_horizontal_sharing div.heateor_sss_sharing_ul a {
  margin: 0 0 0 10px !important;
}
.custom-social-share:before {
  content: "";
  position: absolute;
  top: -9px;
  right: 35px;
  width: 0px;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
  box-sizing: content-box;
}
.heateor_sss_horizontal_sharing .heateor_sss_svg {
  width: 20px !important;
  height: 20px !important;
  transition: 0.2s;
  padding: 2px !important;
  box-sizing: border-box !important;
}
.heateor_sss_horizontal_sharing .heateor_sss_svg:hover {
  opacity: 0.7 !important;
}
.highlight {
  position: relative;
}
.highlight:before {
  content: "";
  position: absolute;
  left: -3px;
  transform: translateY(-50%);
  top: 56%;
  width: calc(100% + 5px);
  height: 75%;
  z-index: -1;
  background: #eaeaf5;
}

.tribe-tickets__rsvp-actions-rsvp span {
  display: none;
}
.tribe-events-single .event-tickets .tribe-tickets__rsvp-wrapper {
  max-width: 100%;
}
.event-tickets .tribe-tickets__rsvp-ar {
  flex-direction: column;
}
.event-tickets .tribe-common-g-row--gutters > .tribe-common-g-col {
  width: 100%;
}
body .tribe-events-single .event-tickets .tribe-tickets__form input {
  max-width: 100%;
}
.single-tribe_events .tribe-events-cal-links .tribe-events-gcal,
.single-tribe_events .tribe-events-cal-links .tribe-events-ical {
  color: #000;
}

.newsroom-page.empty .wrapper {
  background: #eaeaf5;
  border-radius: 8px;
  max-width: 613px;
  margin: 80px auto 0;
  padding: 45px;
}
.newsroom-page.empty .wrapper .title {
  font-weight: bold;
  font-size: 21px;
  line-height: 25px;
  color: #282828;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
}
.newsroom-page.empty .wrapper .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #282828;
  margin-top: 30px;
  /* font-family: 'Inter', sans-serif; */
  font-family: var(--body-font);
}

@media screen and (min-width: 951px) {
  .mobile-translate {
    display: none;
  }

  .pc-translate {
    display: flex;
  }
}

/* media */

@media screen and (min-width: 1921px) {
  .hero-section video {
    transform: translateY(-50%) scale(2);
  }
}
@media screen and (max-width: 1280px) {
  .header {
    padding: 42px 85px 42px 25px;
  }
  .header-nav .nav__item + .nav__item {
    margin-left: 15px;
  }
  .header-nav .nav__item.spec {
    margin-left: 15px;
  }
  .dropdown.get-involved {
    width: calc(100vw - 50px);
  }
  .board-staff-page .list__item {
    margin: 0 25px 25px;
    width: calc(100% / 3 - 50px);
  }
  .board-staff-page .list {
    max-width: 1105px;
  }
  .home-section-4 .left {
    width: 100%;
    text-align: center;
  }
  .home-section-4 .right {
    width: 100%;
    text-align: center;
  }
  .home-section-4 {
    padding-bottom: 0;
  }
  .map-box-list {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .map-box-list .title {
    background-image: url("/wp-content/uploads/2021/12/Shape.svg");
    background-position: right 11px center;
    background-size: 24px;
    background-repeat: no-repeat;
  }
  .donation-section-2-wrapper .right {
    padding: 24px;
  }
  .program-section-5 .button {
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 1200px) {
  .header-nav-list {
    width: calc(100% - 149px);
  }
}

@media screen and (max-width: 1130px) {
  .mob {
    display: block;
  }
  .header {
    height: 60px;
  }
  .header-nav {
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    padding: 94px 20px 20px;
    text-align: left;
    transition: 0.3s;
    transform: translateX(-100%);
    overflow: scroll;
  }
  .header.active .header-nav {
    transform: translateX(0);
  }
  .arrow.dropdown-container:hover > .link:before {
    transform: scaleX(0);
  }
  .arrow.dropdown-container > .link:hover:before {
    transform: scaleX(0);
  }

  .scrolled .arrow.dropdown-container > .link:after,
  .white-header-page .header .arrow.dropdown-container > .link:after {
    transform: none;
  }
  .scrolled .arrow.dropdown-container > .link:hover:after,
  .white-header-page .header .arrow.dropdown-container > .link:hover:after {
    transform: none;
  }
  .scrolled .arrow.dropdown-container > .link.active:after,
  .white-header-page .header .arrow.dropdown-container > .link.active:after {
    transform: rotate(90deg);
  }
  .header.active:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-nav .nav__item.spec .dropdown-container:hover > .link {
    box-shadow: none;
    background-color: transparent;
  }
  .link:hover:before,
  .our-mission-link:hover .title:before {
    transform: scaleX(0);
  }
  .header-nav .nav__item {
    display: table;
  }
  .header-nav .nav__item + .nav__item {
    margin-left: 0;
    margin-top: 26px;
  }
  .header-nav .nav__item.spec {
    width: 100%;
    margin-top: 26px;
    margin-left: 0;
  }
  .header-nav-list {
    width: 100%;
  }
  .header-nav .link {
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    color: #282828;
    display: block;
  }
  .header .logo {
    width: 168px;
    z-index: 3;
    transition: 0.3s;
    display: table;
    margin: 0 auto;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    position: absolute;
  }
  .active.header .logo {
    transform: translateX(0) translateY(-50%);
    left: 20px;
  }
  .active.header .hamburger {
    opacity: 0;
  }
  .active.header .hamburger.active {
    left: auto;
    right: 0;
    opacity: 1;
  }
  .active.header .hamburger span:first-child {
    transform: rotate(45deg);
  }
  .active.header .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .active.header .hamburger span:last-child {
    transform: rotate(-45deg);
    margin-top: -8px;
  }
  .dropdown.get-involved .list-container {
    margin-top: 10px;
  }
  .header {
    text-align: center;
    padding: 30px;
  }
  .header .logo .img {
    width: 168px;
  }
  .hamburger {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 74px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: 0.2s;
  }
  .hamburger span {
    height: 2px;
    width: 21px;
    background: #fff;
    border-radius: 20px;
    display: block;
    transition: 0.2s;
  }
  .header.scrolled .hamburger span,
  .white-header-page .header .hamburger span {
    background: #0a0b11;
  }
  .header.active .hamburger span {
    background: #0a0b11;
  }
  .header.active .logo img {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }
  .header.active .logo img.mob {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .hamburger span + span {
    margin-top: 4px;
  }
  .footer-main .left {
    padding: 130px 30px 30px;
  }
  .footer-main .right {
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .arrow.dropdown-container > .link:after {
    background-image: url("../img/arrow-dark.svg");
    width: 7px;
    height: 12px;
    transform: none;
    margin-left: 8px;
  }
  .arrow .link.active:after {
    transform: rotate(90deg);
  }
  .header-nav .nav__item.spec .dropdown-container > .link {
    font-weight: bold;
    font-size: 21px;
    line-height: 25px;
    color: var(--red-color);
    background-color: transparent;
    padding: 0;
  }
  .header-nav .nav__item.spec .dropdown-container > .link:after {
    content: "";
    width: 7px;
    height: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s;
    background-image: url("../img/arrow-red.svg");
    transform: none;
  }
  .header-nav .nav__item.spec .link.active:after {
    transform: rotate(90deg);
  }
  .scrolled .arrow.dropdown-container:hover > .link:after,
  .white-header-page .header .arrow.dropdown-container:hover > .link:after {
    transform: none;
  }
  .scrolled .arrow.dropdown-container:hover > .link.active:after,
  .white-header-page
    .header
    .arrow.dropdown-container:hover
    > .link.active:after {
    transform: rotate(90deg);
  }
  .dropdown {
    position: relative;
    box-shadow: none;
    padding: 0;
    top: 0px;
    max-height: 0;
    display: block;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .dropdown.open {
    max-height: 250px;
  }
  .dropdown .list__item,
  .dropdown .list__item + .list__item {
    margin-top: 18px;
  }
  .dropdown .link {
    font-size: 16px;
    line-height: 19px;
  }
  .header-nav .link.our-mission-link {
    display: none;
  }
  .dropdown.get-involved {
    top: 0;
    left: 0;
    right: auto;
    padding: 0;
  }
  .dropdown.get-involved .list-container {
    padding: 0;
    display: block;
    width: 100%;
  }
  .dropdown.get-involved .list-container .title {
    display: none;
  }
  .dropdown.get-involved .list__item {
    display: table;
  }
  .dropdown.get-involved .list__item .link {
    margin: 0;
    font-weight: 500;
  }
  .main {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header-nav {
    position: absolute;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    padding: 94px 20px 20px;
    text-align: left;
    transition: 0.3s;
    transform: translateX(-100%);
    overflow: scroll;
  }
  .header.active .header-nav {
    transform: translateX(0);
  }
  .arrow.dropdown-container:hover > .link:before {
    transform: scaleX(0);
  }
  .arrow.dropdown-container > .link:hover:before {
    transform: scaleX(0);
  }

  .scrolled .arrow.dropdown-container > .link:after,
  .white-header-page .header .arrow.dropdown-container > .link:after {
    transform: none;
  }
  .scrolled .arrow.dropdown-container > .link:hover:after,
  .white-header-page .header .arrow.dropdown-container > .link:hover:after {
    transform: none;
  }
  .scrolled .arrow.dropdown-container > .link.active:after,
  .white-header-page .header .arrow.dropdown-container > .link.active:after {
    transform: rotate(90deg);
  }
  .header.active:before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header-nav .nav__item.spec .dropdown-container:hover > .link {
    box-shadow: none;
    background-color: transparent;
  }
  .link:hover:before,
  .our-mission-link:hover .title:before {
    transform: scaleX(0);
  }
  .header-nav .nav__item {
    display: table;
  }
  .header-nav .nav__item + .nav__item {
    margin-left: 0;
    margin-top: 26px;
  }
  .header-nav .nav__item.spec {
    width: 100%;
    margin-top: 26px;
    margin-left: 0;
  }
  .header-nav-list {
    width: 100%;
  }
  .header-nav .link {
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    color: #282828;
    display: block;
  }
  .header .logo {
    width: 168px;
    z-index: 3;
    transition: 0.3s;
    display: table;
    margin: 0 auto;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    position: absolute;
  }
  .active.header .logo {
    transform: translateX(0) translateY(-50%);
    left: 20px;
  }
  .active.header .hamburger {
    opacity: 0;
  }
  .active.header .hamburger.active {
    left: auto;
    right: 0;
    opacity: 1;
  }
  .active.header .hamburger span:first-child {
    transform: rotate(45deg);
  }
  .active.header .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .active.header .hamburger span:last-child {
    transform: rotate(-45deg);
    margin-top: -8px;
  }
  .dropdown.get-involved .list-container {
    margin-top: 10px;
  }
  .header {
    text-align: center;
    padding: 30px;
  }
  .header .logo .img {
    width: 168px;
  }
  .hamburger {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 74px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: 0.2s;
  }
  .hamburger span {
    height: 2px;
    width: 21px;
    background: #fff;
    border-radius: 20px;
    display: block;
    transition: 0.2s;
  }
  .header.scrolled .hamburger span,
  .white-header-page .header .hamburger span {
    background: #0a0b11;
  }
  .header.active .hamburger span {
    background: #0a0b11;
  }
  .header.active .logo img {
    opacity: 0;
    visibility: hidden;
    height: 0;
  }
  .header.active .logo img.mob {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .hamburger span + span {
    margin-top: 4px;
  }
  .footer-main .left {
    padding: 130px 30px 30px;
  }
  .footer-main .right {
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .arrow.dropdown-container > .link:after {
    background-image: url("../img/arrow-dark.svg");
    width: 7px;
    height: 12px;
    transform: none;
    margin-left: 8px;
  }
  .arrow .link.active:after {
    transform: rotate(90deg);
  }
  .header-nav .nav__item.spec .dropdown-container > .link {
    font-weight: bold;
    font-size: 21px;
    line-height: 25px;
    color: var(--red-color);
    background-color: transparent;
    padding: 0;
  }
  .header-nav .nav__item.spec .dropdown-container > .link:after {
    content: "";
    width: 7px;
    height: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s;
    background-image: url("../img/arrow-red.svg");
    transform: none;
  }
  .header-nav .nav__item.spec .link.active:after {
    transform: rotate(90deg);
  }
  .scrolled .arrow.dropdown-container:hover > .link:after,
  .white-header-page .header .arrow.dropdown-container:hover > .link:after {
    transform: none;
  }
  .scrolled .arrow.dropdown-container:hover > .link.active:after,
  .white-header-page
    .header
    .arrow.dropdown-container:hover
    > .link.active:after {
    transform: rotate(90deg);
  }
  .dropdown {
    position: relative;
    box-shadow: none;
    padding: 0;
    top: 0px;
    max-height: 0;
    display: block;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .dropdown.open {
    max-height: 250px;
  }
  .dropdown .list__item,
  .dropdown .list__item + .list__item {
    margin-top: 18px;
  }
  .dropdown .link {
    font-size: 16px;
    line-height: 19px;
  }
  .header-nav .link.our-mission-link {
    display: none;
  }
  .dropdown.get-involved {
    top: 0;
    left: 0;
    right: auto;
    padding: 0;
  }
  .dropdown.get-involved .list-container {
    padding: 0;
    display: block;
    width: 100%;
  }
  .dropdown.get-involved .list-container .title {
    display: none;
  }
  .dropdown.get-involved .list__item {
    display: table;
  }
  .dropdown.get-involved .list__item .link {
    margin: 0;
    font-weight: 500;
  }
  .main {
    padding-top: 60px;
  }
  .header .gglobe {
    right: 22px;
    top: 16px;
  }
  .gsatelites {
    top: 54px;
    right: 23px;
  }
}
@media screen and (max-width: 950px) {
  .home-section-3 {
    padding: 0 20px;
  }
  .home-section-3 .list {
    flex-direction: column;
  }
  .home-section-3 .list__item {
    border-right: 1px solid rgba(161, 161, 161, 0.2);
    border-left: 1px solid rgba(161, 161, 161, 0.2);
    border-top: 0;
  }
  .home-section-3 .list__item:first-child {
    border-top: 1px solid rgba(161, 161, 161, 0.2);
  }
  .board-staff-page .list {
    max-width: 670px;
  }
  .board-staff-page .list__item {
    width: calc(100% / 2 - 50px);
  }
  .newsroom-page .list__item-link {
    padding: 25px 30px;
  }
  .newsroom-page .list__item .desc {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }
  .newsroom-page .list__item .title {
    font-size: 24px;
    line-height: 30px;
  }
  .newsroom-page .list__item .img {
    transform: translate3d(-30px, 0, 0) scale(1.2);
  }
  .article-bottom {
    padding: 40px 20px 100px;
  }
  .article-bottom .next {
    bottom: 40px;
    right: 40px;
  }
  .article-bottom .prev {
    bottom: 40px;
    left: 40px;
  }
  .sponsors-section-1 .left {
    padding: 30px;
  }
  .sponsors-section-3 .list__item {
    width: 158px;
    height: 200px;
    padding-top: 20px;
  }
  .sponsors-section-3 .stars {
    height: 110px;
  }
  .sponsors-section-3 .stars .img {
    width: 90px;
  }
  .sponsors-section-3 .list__item-title {
    font-size: 24px;
  }
  .sponsors-section-3 .list__item-desc {
    font-size: 16px;
    line-height: 25px;
    padding: 5px 12px;
    margin: 14px auto 0;
  }
  .donation-section-1 {
    padding: 24px 0;
  }
  .donation-section-2-wrapper .left {
    width: 100%;
    min-height: 489px;
  }
  .donation-section-2-wrapper .right {
    width: 100%;
  }
  .donation-section-2 {
    padding: 0;
  }
  .contact-us-section-1 {
    flex-direction: column;
    padding: 0;
  }
  .contact-us-section-1 .left {
    width: 100%;
    padding: 40px 20px 64px;
  }
  .contact-us-section-1 .right {
    width: 100%;
  }
  .hero-section video {
    transform: translateY(-50%) scale(2);
  }
  .map {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140vw;
  }
  .map svg {
    transform: scale(1);
  }
  .home-section-4 {
    padding: 100px 20px 0;
  }
  .donation-section-2-wrapper {
    display: block;
  }
  .contact-us-section-1 .right {
    display: block;
    min-height: 0;
  }
  .newsroom-page.empty .wrapper {
    padding: 35px 16px;
  }
}

@media screen and (max-width: 768px) {
  .footer-main {
    display: block;
    min-height: 0;
  }
  .footer-main .left {
    padding: 50px 20px 0;
    border-right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-main .right {
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px 20px;
    width: 100%;
    border: 0;
  }
  .footer-main .right .wpcf7-spinner {
    margin: 10px auto;
  }
  .footer-main .right label {
    margin-top: 20px;
  }
  .footer-main .right .form-two-rows label {
    width: 100%;
  }
  .footer-main .right .form-two-rows label:first-child,
  .footer-main .right .form-two-rows label:last-child {
    margin-left: 0;
    margin-right: 0;
  }
  .footer-main .right input[type="submit"] {
    margin-top: 30px;
  }
  .footer-text {
    margin-bottom: 40px;
    width: 100%;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 40px;
  }
  .form {
    min-height: 512px;
  }
  .copyright {
    text-align: left;
    padding: 0 20px 30px;
    border-top: 0;
  }
  .copyright .desc {
    padding-top: 30px;
    border-top: 1px solid #ffffff;
  }
  .sponsors-section {
    padding: 95px 0 20px;
  }

  .sponsors-section .sponsor-section-list div.list__item {
    width: 50%;
    padding: 20px;
  }

  .sponsors-section .title {
    padding: 0 20px;
  }
  .title {
    font-size: 32px;
    line-height: 37px;
  }
  .button:hover {
    box-shadow: none;
    background: var(--red-color);
  }
  .home-section-2 .left {
    width: 100%;
  }
  .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 20px 88px;
  }
  .hero-section video {
    display: none;
  }
  .hero-img {
    display: block;
  }
  .hero-section .title {
    max-width: 350px;
  }
  .home-section-2 {
    padding: 90px 20px;
  }
  .home-section-2 .desc {
    margin: 0;
  }
  .home-section-2 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .home-section-3 .list__item {
    padding: 30px 12px 100px;
  }
  .home-section-3 .list__item-title {
    margin-top: 24px;
  }
  .home-section-3 .list__item-desc {
    margin-top: 9px;
    max-width: 320px;
    min-height: 0;
  }
  .home-section-3 .button {
    margin-top: 30px;
    bottom: 40px;
  }
  .home-section-5 {
    padding: 50px 20px 102px;
  }
  .home-section-5 .title {
    max-width: 250px;
    margin: 40px auto 0;
  }
  .home-section-5 .desc {
    margin-top: 16px;
  }
  .white-header-page .main > div {
    padding: 45px 20px 50px;
  }
  .careers-page .desc {
    max-width: 302px;
  }
  .careers-page .list {
    flex-direction: column;
    margin-top: 38px;
    display: block;
  }
  .careers-page .list__item {
    max-width: 310px;
    margin: 0 auto;
    min-width: 0;
    width: 100%;
  }
  .careers-page .list__item + .list__item {
    margin-left: auto;
    margin-top: 50px;
  }
  .careers-page .list__item .img {
    height: 75px;
  }
  .careers-page .list__item-desc {
    margin-top: 24px;
  }
  .reports-page .list {
    margin-top: -8px;
  }
  .reports-page .list {
    flex-direction: column;
  }
  .reports-page .list__item {
    max-width: 310px;
    width: 100%;
    min-width: 0;
    margin: 28px auto 0;
  }
  .reports-page .list__item + .list__item {
    margin-left: auto;
  }
  .board-staff-page .list {
    max-width: 100%;
  }
  .board-staff-page .list__item {
    width: 100%;
    max-width: 305px;
    margin: 0 auto 25px;
    display: block;
  }
  .board-staff-page .staff-container {
    padding-top: 60px;
    margin-top: 60px;
  }
  .newsroom-page .list__item .img {
    transform: translate3d(-30px, 0, 0) scale(1.25);
  }
  .program-page-ken-garrff-esports .program-section-1 .img {
    width: 210px;
  }
  .program-section-2 {
    padding: 60px 20px;
    margin-top: 24px;
  }
  .program-section-2 .button {
    margin-top: 40px;
  }
  .program-section-2 .desc {
    max-width: 350px;
  }
  .program-section-3 {
    padding: 60px 20px;
  }
  .program-section-3 .list {
    margin-top: 0;
  }
  .program-section-3 .list__item {
    width: 100%;
    margin: 50px auto 0;
  }
  .program-section-4 {
    flex-direction: column-reverse;
  }
  .program-section-4 .left {
    width: 100%;
    padding: 120px 20px 40px;
    min-height: 0;
  }
  .program-section-4 .right {
    width: 100%;
  }
  .program-section-4 .img {
    position: relative;
    height: 289px;
  }
  .program-section-4 .quotes {
    font-size: 144px;
  }
  .program-section-4 .desc-2 {
    margin-top: 16px;
  }
  .program-section-4 .read-more {
    margin-top: 40px;
  }
  .program-section-6 {
    padding: 60px 20px;
  }
  .program-section-6 .buttons {
    margin-top: 20px;
  }
  .program-section-7 .list__item {
    width: 50%;
  }
  .program-section-6 .button {
    width: 100%;
    max-width: 350px;
    margin: 40px auto 0;
    display: flex;
    font-size: 18px;
  }
  .program-section-7 .title {
    padding: 0 20px;
  }
  .program-section-7 {
    padding: 60px 0;
  }
  .program-section-7 .list {
    margin-top: 0;
  }
  .program-section-7 .list__item {
    margin-top: 40px;
  }
  .program-section-1 .icon-container {
    padding: 0;
  }
  .program-page-ken-garrff-esports .program-section-1 .icon {
    width: 260px;
  }
  .program-section-1 .icon {
    margin-left: -100px;
  }
  .find-us-button {
    width: 168px;
    padding-left: 16px;
  }
  .sponsors-section-1 {
    display: flex;
    flex-direction: column-reverse;
  }
  .sponsors-section-1 .left {
    width: 100%;
    min-height: 0;
    padding: 60px 20px;
  }
  .sponsors-section-1 .left .button {
    margin-top: 40px;
  }
  .sponsors-section-1 .right {
    width: 100%;
    height: 255px;
  }
  .sponsors-section-2 {
    padding: 60px 20px;
  }
  .sponsors-section-3 {
    padding: 60px 20px;
  }
  .sponsors-section-3 .list {
    max-width: 500px;
    margin-top: 24px;
  }
  .sponsors-section-3 .list__item {
    margin-top: 16px;
  }
  .donation-section-1 {
    padding: 0;
    flex-direction: column;
  }
  .donation-section-1 .left:first-child {
    width: 100%;
    padding: 30px 20px 30px;
  }
  .donation-section-1 .left:last-child {
    padding: 80px 20px 60px;
    width: 100%;
  }
  .donation-section-1 .left:last-child .desc,
  .donation-section-1 .left:last-child .desc-2 {
    font-size: 20px;
    line-height: 28px;
  }
  .donation-section-1 .left:last-child::before {
    height: 1px;
    width: calc(100% - 40px);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .program-section-4 .quotes {
    font-size: 114px;
  }
  .program-section-4 .left {
    padding-top: 90px;
  }
  .donation-section-2-wrapper .right {
    padding: 40px 20px;
  }
  .program-section-4 .desc + .quotes {
    margin-bottom: 50px;
  }
  .program-section-1 .img {
    max-height: 120px;
  }
  .join-container .button {
    max-width: 235px;
    width: 100%;
  }
  .empty-message {
    padding: 35px;
    margin: 45px auto;
  }
  .contact-us-section-1 .left .bottom {
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 580px) {
  .newsroom-page .list__item {
    width: 100%;
    margin: 20px 0 0;
    padding-top: 114%;
  }
  .newsroom-page .list__item:nth-child(3n + 4),
  .newsroom-page .list__item:first-child {
    width: 100%;
  }
  .pagination {
    margin-top: 50px;
    padding: 0;
  }
  .article-top {
    height: 390px;
    padding: 59px 0 0;
  }
  .article-top .back {
    top: 17px;
    left: 38px;
  }
  .article-top .back:before {
    content: "";
    position: absolute;
    top: 25%;
    right: calc(100% + 8px);
    height: 7px;
    width: 12px;
    background-image: url("../img/arrow.svg");
    background-position: center;
    background-size: contain;
    transform: rotate(90deg);
  }
  .article-top .share {
    top: 17px;
    right: 15px;
  }
  .article-top .tag {
    font-size: 14px;
    line-height: 16px;
  }
  .article-top .title {
    margin: 20px auto 15px;
    font-size: 24px;
    line-height: 30px;
    max-width: 250px;
  }
  .article-bottom .next,
  .article-bottom .prev {
    letter-spacing: -0.5px;
  }
  .article-top .info .desc + .desc {
    margin-left: 40px;
  }
  .article-top .info .desc + .desc:before {
    left: -20px;
  }
  .contact-us-section-1 .left .top {
    padding-bottom: 40px;
  }
  .contact-us-section-1 .left .bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact-us-section-1 .left .bottom-left {
    padding: 0;
    width: 100%;
  }
  .contact-us-section-1 .left .bottom-right {
    padding: 40px 0 0;
    margin-top: 40px;
    width: 100%;
    position: relative;
  }
  .contact-us-section-1 .left .bottom-right:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #d0d0e1;
    position: absolute;
    top: 0;
    left: 0;
  }
  .contact-us-section-1 .bottom-left .address {
    margin-top: 16px;
  }
  .contact-us-section-1 .left .phone {
    margin-top: 36px;
  }
  .custom-social-share {
    top: 50px;
    right: 15px;
  }
  .custom-social-share {
    transform: scale(1.3);
    top: 65px;
    right: 35px;
  }
  .custom-social-share:before {
    right: 30px;
  }
}

@media screen and (max-width: 500px) {
  #sb_instagram.sbi_col_5 #sbi_images .sbi_item {
    height: 0;
    padding-top: 100vw !important;
    position: relative;
    width: 100vw;
  }
  #sb_instagram .sbi_photo_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #sb_instagram .sbi_photo {
    height: 100% !important;
  }
  .custom-slider-instagram-arrow {
    left: 10px;
  }
  #instagram-arrow-right {
    right: 10px;
  }
  .donation-section-2
    .frm_style_formidable-style.with_frm_style
    input.frm_other_input:not(.frm_other_full),
  .donation-section-2 .with_frm_style select {
    max-width: 100%;
    width: 100%;
  }
  .donation-section-2 .frm_submit button {
    max-width: 100%;
  }
  .donation-section-2 .with_frm_style .frm_radio label {
    width: 100%;
    padding-left: 38px;
  }
  .donation-section-2 .with_frm_style .frm_radio {
    margin: 0 6px 12px 6px !important;
    width: calc(100% / 3 - 12px) !important;
    max-width: 100%;
  }
  .donation-section-2 .frm_opt_container {
    margin-left: -6px;
    margin-right: -6px;
  }
  .donation-section-2 .with_frm_style .frm_radio:last-child {
    width: calc(100% - (100% / 3) - 12px) !important;
  }
  @media screen and (max-width: 320px) {
    .donation-section-2 .with_frm_style .frm_radio:last-child {
      width: calc(100% - 12px) !important;
    }
  }
}

@media screen and (max-width: 400px) {
  .donation-section-2 .with_frm_style .frm_radio {
    width: calc(100% / 2 - 12px) !important;
  }

  .sponsors-section .sponsor-section-list div.list__item {
    width: 100%;
    padding: 10px;
  }
}
