
:root {

  --color-primary: #575757;
  --color-primary-light: #575757;
  --color-secondary: #76BD21;

}

body { background-color: transparent; }

@font-face {
    font-family: 'Gotham-Medium';
    src: url('/forms-iframe/includes/fonts/Gotham-Medium.eot');
    src: url('/forms-iframe/includes/fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
        url('/forms-iframe/includes/fonts/Gotham-Medium.woff2') format('woff2'),
        url('/forms-iframe/includes/fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


html,body { overflow-x: hidden; }

body { font-family: "Gotham-Medium", sans-serif; font-weight: 500; color: rgb(28, 29, 30); font-size: 16px; overflow-x: hidden; text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; }

h3 { color: var(--color-primary); font-weight: 700; text-transform: uppercase; }
a { border: none;
    box-shadow: rgb(255, 133, 255) 0px -3px 0px 0px inset; /* Underline effect */
    box-sizing: border-box;
    color: rgb(45, 45, 45);
    font-family: "Gotham-Medium", Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 25.9167px;
    margin: 0;
    padding: 0 0 2px 0; /* Padding to add space below text */
    position: relative;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
    vertical-align: baseline;
    -moz-osx-font-smoothing: grayscale; }
a:hover { color: rgb(45, 45, 45); box-shadow: inset 0 -10.5px 0 0 #ff85ff; }
.form-text { 
  padding-left: calc(0.75rem + 1px); 
  padding-right: calc(0.75rem + 1px);
  color: var(--color-primary);
}
.form-text.large { font-size: 100%; }
.form-label { 
  color: rgb(28, 29, 30);
}
.form-floating > label {
  color: rgb(28, 29, 30);
}

/* .form-floating > textarea + label {
  white-space: normal;
} */

.form-floating>.form-control-plaintext~label, 
.form-floating>.form-control:focus~label, 
.form-floating>.form-control:not(:placeholder-shown)~label, 
.form-floating>.form-select~label {
  opacity: 1;
}

.form-floating textarea.form-control { height: calc(5rem + 2px);  }

.form-control,
.form-select {
  border-radius: 0;
  border-color: var(--color-primary-light);
  color: rgb(45, 45, 45);
  font-weight: 500;
  font-size: 16px;
  padding-left: 12px;
}
.form-control:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 0.25rem rgb(134 183 254 / 25%);
}
.form-control::placeholder {
  color: #212529;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.form-check-input:focus { box-shadow: none; }
.form-control:focus,
.form-select:focus { box-shadow: none; border-color: var(--color-primary); }

label em { color: #b1391f; font-style: normal; font-weight: 700; }

input[type=file].form-control {
  padding-top: 35px !important;
  height: 63px !important;
}
textarea { resize: none; }


button.btn-primary {
  background-color: #083357;
  color: #FFFFFF;
  padding: 16px 25px;
  font-family: "Gotham-Medium", sans-serif;
  line-height: 1.2;
  font-weight: bold;
  min-width: 220px;
  text-align: center;
  display: inline-block;
  border-radius: 40px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.75s ease-in-out;
  -moz-transition: all 0.75s ease-in-out;
  -o-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
  text-decoration: none;
  font-size: 16px;
  border: none;
}
button.btn-primary:hover {
    background-color: #f09751;
    color: #000;
}

.btn-check:checked+.btn, 
.btn.active, 
.btn.show, 
.btn:first-child:active, 
:not(.btn-check)+.btn:active {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.grecaptcha-badge { display: none; }

.form-floating select + label {
  transform: translate(0, 0) scale(1) !important;
}
.form-floating select.has-value + label {
  transform: translate(0, -0.5rem) scale(0.85) !important;
}
