/*/ FONTS /*/
@font-face {
  font-family: "eurostile";
  src: url("../font/eurostile.ttf");
}
@font-face {
  font-family: "eurostileBold";
  src: url("../font/EurostileBold.ttf");
}
@font-face {
  font-family: "outfitBold";
  src: url("../font/Outfit-Bold.ttf");
}
/*/ VARIABLES /*/
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1440px;
}

body {
  font-family: "eurostile", sans-serif;
  font-size: 20px;
  color: #00333D;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1 {
  font-family: "eurostileBold", "sans-serif";
  font-size: 23px;
}

.theme-button {
  color: #fff;
  font-size: 18px;
  font-family: "outfitBold", sans-serif;
  font-weight: 700;
  border-radius: 8px;
  border: unset;
  padding: 16px 80px;
  background: #EE752D;
  background: linear-gradient(130deg, var(--myColor1), var(--myColor2));
  transition: --myColor1 0.5s, --myColor2 0.2s;
}
.theme-button.button-home {
  display: block;
  width: 100%;
  text-align: center;
}
.theme-button:hover {
  --myColor1: #E13327;
  --myColor2: #EE752D;
  color: rgba(255, 255, 255, 0.8549019608);
  text-decoration: none;
}
.theme-button:focus {
  outline: none;
}

.theme-background {
  height: 100vh;
  width: 100%;
  position: fixed;
  opacity: 0.6;
}
.theme-background img {
  height: 100%;
}

/*/ THEME EVENT /*/
.theme-event {
  display: grid;
  place-items: center;
  height: 100vh;
  /*/ form style /*/
}
.theme-event-wrapper {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1725490196);
  background-color: #fff;
  border-radius: 8px;
  overflow: clip;
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.theme-event-wrapper-top {
  padding: 16px 30px 11px 30px;
  width: 100%;
  max-width: 610px;
}
.theme-event-wrapper-content {
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 28px 54px 58px 54px;
  width: 100%;
}
.theme-event-wrapper-content-form .required {
  color: red !important;
}
.theme-event-wrapper-content-info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  margin-bottom: 30px;
  -moz-column-gap: 94px;
       column-gap: 94px;
}
.theme-event-wrapper-content-info-time-content {
  position: relative;
}
.theme-event-wrapper-content-info-time-content-subtext {
  position: absolute;
  font-size: 14px;
  bottom: -15px;
  left: 0;
  width: 269px;
  white-space: nowrap;
}
.theme-event-wrapper-content-info-single {
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
}
.theme-event-wrapper-content-info-single i {
  color: #ED702B;
}
.theme-event-wrapper-content-text.bottom {
  padding: 20px 0px;
}
.theme-event-wrapper-content-disclaimer {
  font-size: 14px;
  padding-top: 10px;
  opacity: 0.4;
}
.theme-event-wrapper-bottom {
  background-color: #EDEDED;
  padding: 30px 0 40px 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.theme-event-wrapper-bottom-sponsors {
  display: flex;
  -moz-column-gap: 38px;
       column-gap: 38px;
  margin-top: 20px;
  max-height: 42px;
  align-items: baseline;
}
.theme-event-wrapper-bottom-sponsors-single:first-child img {
  width: 340px;
}
.theme-event-wrapper-bottom-sponsors img {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-event .ff-el-form-control, .theme-event .ff-t-container {
  max-width: 822px !important;
}
.theme-event .ff-default .ff-el-input--label label {
  font-weight: 700 !important;
}
.theme-event .ff-el-form-control {
  border-radius: 8px !important;
  color: #00333D !important;
  height: 67px;
}
.theme-event .ff-el-form-control::-moz-placeholder {
  color: #00333D !important;
  opacity: 1;
}
.theme-event .ff-el-form-control::placeholder {
  color: #00333D !important;
  opacity: 1;
}
.theme-event .ff-btn-submit {
  width: 100%;
}
.theme-event input[type=radio] {
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
  margin-right: 5px !important;
}
.theme-event input[type=radio]:checked {
  accent-color: #ED702B;
}

@property --myColor1 {
  syntax: "<color>";
  initial-value: #EE752D;
  inherits: false;
}
@property --myColor2 {
  syntax: "<color>";
  initial-value: #E13327;
  inherits: false;
}
/*/ Media Query /*/
@media screen and (max-width: 768px) {
  .theme-event-wrapper-content-info {
    flex-direction: column;
  }
  .theme-event-wrapper-content-info-time {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 18px;
  }
  .theme-button {
    padding: 16px 40px;
  }
  .theme-event-wrapper-content {
    padding: 28px 24px 48px 24px;
  }
  .theme-event-wrapper-bottom-sponsors {
    -moz-column-gap: 21px;
         column-gap: 21px;
    padding: 0 14px;
  }
  .theme-event-wrapper-bottom-sponsors-single:first-child img {
    width: unset;
  }
  .theme-event-wrapper-bottom-sponsors-single:last-child img {
    width: 60px;
  }
  .theme-event .ff-el-form-control {
    height: 54px;
  }
}/*# sourceMappingURL=style.css.map */