@font-face {
  font-family: 'Calibre';
  src: url('../fonts/Calibre-Regular.eot');
  src: url('../fonts/Calibre-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Calibre-Regular.woff') format('woff'),
    url('../fonts/Calibre-Regular.ttf') format('truetype'),
    url('../fonts/Calibre-Regular.svg#Calibre-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

main {
  --yellow: #eece24;
  --green: #089547;
  --light-green: #05EB6C;
  --error: #FF4242;
  text-align: center;
  font-family: 'Archivo', sans-serif;
}

.mainbg {
  background-color: var(--green);
  background-image: url('../images/gepshow-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.gs-logo {
  text-align: center;
  margin-top: 94px;
  padding: 0 20px;
}

.gs-logo img {
  width: 100%;
}

.date {
  color: var(--yellow);
  font-size: 40px;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 52px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.date span {
  content: '';
  position: relative;
  height: 0.8em;
  width: 2px;
  background-color: var(--yellow);
  display: inline-block;
  margin: 0 14px;
}

.venue {
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0.025em;
}

.desc {
  max-width: 928px;
  margin: 50px auto 0 auto;
}

.desc > * {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
}

.desc strong {
  font-weight: 600;
  color: var(--yellow);
}

.reg-tabs {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 80px;
  margin-bottom: 52px;
  overflow-x: scroll;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  padding-bottom: 3px;
}
.reg-tabs::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
}

.reg-tabs p {
  text-transform: uppercase;
  font-size: 28px;
  line-height: 35px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: 'Archivo Narrow', sans-serif;
  margin-bottom: 0;
  cursor: pointer;
  white-space: nowrap;
}

.reg-tabs p.active {
  color: var(--yellow);
  cursor: default;
}

.reg-tabs p.active::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  bottom: -3px;
  background-color: var(--yellow);
}

.reg-tabs p:not(:last-child)::after {
  content: '';
  position: absolute;
  height: 32px;
  width: 1px;
  background-color: #fff;
  right: -24px;
  top: 3px;
}

.reg-tabs-content {
  margin-bottom: 80px;
}

.reg-tabs-content > * {
  display: none;
}

.reg-tabs-content > *.active {
  display: block;
}

main .form {
  max-width: 752px;
  margin: 0 auto;
}

main .form ul {
  max-width: 512px;
  margin: 0 auto;
}

main .form .hidden_label label {
  display: none;
}


main .form label.gfield_consent_label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

main .form input:not([type="checkbox"], [type="submit"]) {
  height: 56px;
  line-height: 56px;
  padding: 18px 17px 12px 17px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  width: 100%;
  border-radius: 4px;
  font-family: 'Calibre';
  margin-bottom: 24px;
}

main .form input:not([type="checkbox"], [type="submit"]):valid {
  border-color: var(--light-green);
}

main .form input:not([type="checkbox"], [type="submit"]):placeholder-shown {
  border-color: #fff;
}

main .form .gfield_error input:not([type="checkbox"], [type="submit"]) {
  border-color: var(--error);
  margin-bottom: 0;
}

main .form input:not([type="checkbox"], [type="submit"]):invalid {
  border-color: var(--error);
}


main .form input:not([type="checkbox"], [type="submit"]):focus {
  border-color: var(--yellow);
}

main .form input::placeholder {
  color: #fff;
  opacity: 1;
  font-family: 'Calibre';
}

main .form a.button,
main .form input[type="submit"] {
  height: 56px;
  line-height: 56px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 48px;
  padding: 0 32px;
  text-transform: uppercase;
  color: #000;
  background-color: var(--yellow);
  margin-top: 39px;
  border: 1px solid var(--yellow);
  transition: all 0.2s linear;
  display: inline-block;
  text-decoration: none !important;
}

main .form a.button:active,
main .form a.button:hover,
main .form input[type="submit"]:active,
main .form input[type="submit"]:hover {
  background-color: #ffe142;
  box-shadow: 0px 2px 32px 0px #EECE2499;
  color: #000;
}

main .form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 2px;
  background: transparent;
  margin-right: 12px;
  flex-shrink: 0;
}

main .form input[type="checkbox"]:checked {
  background-image: url('../images/check-icon.svg');
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

main .form .ginput_container_consent {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

main .form .ginput_container_consent > * {
  margin: 0;
}

main .form a,
main .form a:hover {
  color: #fff;
  text-decoration: underline;
}

.validation_message {
  text-align: left;
  font-size: 12px;
  font-family: 'Calibre';
  margin-bottom: 14px;
  margin-left: 2px;
}

.gfield_error .validation_message {
  color: var(--error);
}

#gform_confirmation_message_12 p {
  font-size: 20px;
  line-height: 1.5em;
}

#gform_confirmation_message_12 p strong {
  font-weight: 700;
  color: var(--yellow);
}

#gform_confirmation_message_12 p:first-child {
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 114px;
  position: relative;
}
#gform_confirmation_message_12 p:first-child::after {
  content: '';
  position: absolute;
  bottom: -83px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  height: 2px;
  width: 32px;
}
#gform_confirmation_message_12 p:first-child strong {
  font-weight: 600;
}

.programok .inner {
  display: grid;
  grid-template-columns: 70px auto;
  text-align: left;
  max-width: 602px;
  margin: 0 auto;
  gap: 6px 0px;
}

.programok .inner > * {
  font-size: 20px;
  line-height: 1.5em;
}

.cegek {
  background-color: #e7e7e7;
  padding-bottom: 80px;
}

.cegek .container {
  overflow: hidden;
  color: #000;
}

.cegek .inner {
  display: inline-flex;
  gap: 40px;
  justify-content: center;
}

.cegek .wrap {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: fit-content;
  gap: 40px;
  margin: 0 auto;
}

.cegek .title {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin: 80px auto 32px auto;
}

.cegek .title::before {
  content: '';
  position: absolute;
  top: 14px;
  width: 360px;
  height: 1px;
  background-color: #000;
  right: -400px;
}

.cegek .title::after {
  content: '';
  position: absolute;
  top: 14px;
  width: 360px;
  height: 1px;
  background-color: #000;
  left: -400px;
}

.cegek .ceg p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 34px;
}

.cegek .img {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showkapcs .inner {
  max-width: 562px;
  margin: 0 auto;
  text-align: left;
}

.showkapcs .inner ol {
  list-style: decimal;
  margin-left: 15px;
}

.showkapcs .inner li {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
}

/* Chrome, Safari, Edge, Opera */
main .form input::-webkit-outer-spin-button,
main .form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
main .form input[type=number] {
  -moz-appearance: textfield;
}

@keyframes slide {
  to {
    transform: translatex(-100%)
  }
}

@media screen and (max-width: 992px ) {
  .cegek .inner {
    animation: slide 10s linear 0s infinite forwards;
  }
  .cegek .inner2 {
    display: inline-flex !important;
  }  
}

@media screen and (max-width: 768px ) {
  .reg-tabs {
    margin-top: 50px;
  }  
  .cegek .wrap {
    margin-left: -15px;
  }
  .cegek .inner {
    padding-right: 40px;
  }
}

@media screen and (max-width: 480px ) {
  .gs-logo {
    margin-top: 0;
  }
  .date {
    font-size: 24px;
    margin-top: 5px;
  }
  .venue {
    font-size: 12.5px;
  }
  .desc > * {
    font-size: 16px;
  }

  .showkapcs .inner li,
  .programok .inner > *,
  #gform_confirmation_message_12 p,
  #gform_confirmation_message_12 p:first-child {
    font-size: 16px;
    line-height: 1.5em;
  }

  #gform_confirmation_message_12 p:first-child {
    margin-bottom: 50px !important;
  }

  #gform_confirmation_message_12 br {
    display: none;
  }
  #gform_confirmation_message_12 p:first-child::after {
    bottom: -25px;
  }
  main .form a.button {
    margin-top: 30px;
  }
  .reg-tabs {
    flex-direction: column;
    gap: 20px;
  }

  .reg-tabs p::after {
    display:none;
  }
}
