@font-face {
  font-family: "Uncut-San";
  src: url(/fonts/Uncut-Sans-Regular.otf?6959a22e5109682472346ab334aa802f);
}
@font-face {
  font-family: "Uncut-San";
  src: url(/fonts/Uncut-Sans-Medium.otf?a06da7c7527a4e56d91318de4af5ce80);
  font-weight: 500;
}
@font-face {
  font-family: "Uncut-San";
  src: url(/fonts/Uncut-Sans-Semibold.otf?5d8d04c4c3457d9cfaaeb87f3d411758);
  font-weight: 600;
}
@font-face {
  font-family: "Uncut-San";
  src: url(/fonts/Uncut-Sans-Bold.otf?69380ac581772f5527cc3839ddbc6acd);
  font-weight: 700;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  text-decoration: none;
}
html:hover, body:hover, div:hover, span:hover, applet:hover, object:hover, iframe:hover,
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, blockquote:hover, pre:hover,
a:hover, abbr:hover, acronym:hover, address:hover, big:hover, cite:hover, code:hover,
del:hover, dfn:hover, em:hover, img:hover, ins:hover, kbd:hover, q:hover, s:hover, samp:hover,
small:hover, strike:hover, strong:hover, sub:hover, sup:hover, tt:hover, var:hover,
b:hover, u:hover, center:hover,
dl:hover, dt:hover, dd:hover, ol:hover, ul:hover, li:hover,
fieldset:hover, form:hover, label:hover, legend:hover,
table:hover, caption:hover, tbody:hover, tfoot:hover, thead:hover, tr:hover, th:hover, td:hover,
article:hover, aside:hover, canvas:hover, details:hover, embed:hover,
figure:hover, figcaption:hover, footer:hover, header:hover, hgroup:hover,
menu:hover, nav:hover, output:hover, ruby:hover, section:hover, summary:hover,
time:hover, mark:hover, audio:hover, video:hover, button:hover {
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  max-width: 100vw;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

span {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #EDEDED;
}
input:focus,
textarea:focus,
select:focus {
  outline-color: transparent;
  box-shadow: none;
}

* {
  font-family: "Uncut-San", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
}

.remove-container {
  padding-right: initial;
  padding-left: initial;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .remove-container {
    width: initial;
  }
}
@media (min-width: 992px) {
  .remove-container {
    width: initial;
  }
}
@media (min-width: 1200px) {
  .remove-container {
    width: initial;
  }
}

.container {
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.d-none {
  display: none;
}

.d-none-important {
  display: none !important;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  height: 70px;
  box-sizing: border-box;
}
.input-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFF;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
}
@media (max-width: 576px) {
  .input-group label {
    flex-direction: column;
    align-items: flex-start;
  }
  .input-group label span {
    margin-top: 0.5rem;
  }
}
.input-group .error-required {
  font-size: 0.65rem;
  margin-top: 0;
  color: #F00;
  font-weight: bold;
  text-transform: uppercase;
  text-wrap: nowrap;
  display: none;
}
.input-group input, .input-group select, .input-group textarea {
  padding: 11px;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all ease 0.4s;
  color: #444;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  transition: all ease 0.4s;
  outline-color: #9F4DD2;
  border-color: #9F4DD2;
  box-shadow: rgba(159, 77, 210, 0.18);
}
.input-group.textarea {
  height: auto;
}
.input-group.error .error-required {
  display: block;
}
.input-group.error input {
  border-color: #F00;
}
.input-group.error input:focus {
  border-color: #F00;
  outline-color: #F00;
}

.img-fluid {
  display: block;
  max-width: 100%;
}

.w-100 {
  width: 100%;
  box-sizing: border-box;
}

.w-50 {
  width: 50%;
  box-sizing: border-box;
}

.w-25 {
  width: 25%;
  box-sizing: border-box;
}
