@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
  max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
  width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		10;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

body {
  scroll-behavior: smooth;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
    font-family: "GeneralSansRegular";
}

.gridContainer {
  width: 100vw;
  display: block;
  float: left;
  clear: none;
  overflow-x: hidden;
}

h1 {
  font-size: 3em;
  line-height: 1em;
  font-family: "GeneralSansSemiBold";
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.2px;
}

h2 {
  font-family: "GeneralSansSemiBold";
  text-justify: auto;
  line-height: 1em;
  font-size: 2.5em;
  clear: both;
  display: block;
  margin: auto;
}

h3 {
  font-family: "GeneralSansMedium";
  text-justify: auto;
  line-height: 1.1em;
  font-size: 1.75em;
  letter-spacing: 1px;
  clear: both;
  display: block;
  margin: 0;
}

h4 {
  font-family: "GeneralSansRegular";
  text-justify: auto;
  line-height: 1em;
  font-size: 1.35em;
  clear: both;
  display: block;
  letter-spacing: 0.5px;
}

h5 {
  margin: 0;
  font-family: "GeneralSansMedium";
  text-justify: auto;
  line-height: 1.3em;
  font-weight: 600;
  font-size: 1.1em;
  clear: both;
  display: block;
  letter-spacing: 1px;
}

h6 {
  margin: 0;
  font-family: "GeneralSansMedium";
  text-justify: auto;
  line-height: 1.3em;
  font-weight: 600;
  font-size: 1em;
  clear: both;
  display: block;
  letter-spacing: 1px;
}

p {
  font-family: "GeneralSans";
  text-justify: auto;
  line-height: 1.3em;
  font-weight: 100;
  font-size: 0.9em;
  margin: auto;
  letter-spacing: 0.8px;
}

b {
  font-family: "GeneralSansSemiBold";
}

button {
  font-size: 1em;
  padding: 0.7em 1.2em 0.7em;
  font-family: "GeneralSansMedium";
  display: block;
  clear: both;
  float: left;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.5em;
  letter-spacing: 0.15px;
  background-color: #e8c899;
  transition: all 0.3s;
  border: solid 1px rgba(255, 255, 255, 0.65);
}

button:not(.searchbutton) {
  float: left;
}

button:hover {
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
}

button i {
  transform-origin: center left;
  font-size: 1em;
  transition: all 0.3s;
  margin: auto auto auto 0.5em;
}

button:hover i {
  font-size: 1em;
  margin: auto auto auto 1em;
}

button.whitebtn {
  background-color: #fff;
  color: #000;
}

button.blackbtn {
  background-color: #000;
  color: #fff;
}

button.donate-btn {
  width: 8em;
  height: 8em;
  margin: 4em calc(50% - 4em);
  background-color: white;
  border-radius: 5em;
  padding: 1em;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  cursor: pointer;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transform-origin: center;
  position: relative;
  transition: all 0.4s;
  transform-origin: center;
}

button.donate-btn:hover {
  width: 9em;
  height: 9em;
  margin: 3.5em calc(50% - 4.5em);
}

button.donate-btn .db-inner {
  width: 5em;
  height: 3em;
  display: grid;
  grid-auto-flow: row dense;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5em 0.5em;
  grid-template-areas:
    "."
    ".";
}

button.donate-btn i {
  font-size: 1.6em;
  text-align: center;
  margin: auto;
}

button.donate-btn div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transform-origin: center;
}

button.donatebutton {
  background-color: #5e5447;
  color: #fff;
  margin-left: 1em;
}

.scalenormal {
  transition: all 0.5s;
  transform-origin: center;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.scalesmall {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.cerveauform {
  background-color: white;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="name"],
input[type="number"],
input[type="search"] {
  width: calc(100% - 3em);
  height: 1.85em;
  padding: 0.85em 1.5em 0.85em 1em;
  transition: all 0.4s;
  font-family: "GeneralSans";
  border: solid 0px #3ab54a;
  margin: 0.5em 0;
  background-color: transparent;
  color: #000;
  border-radius: 2em;
  background-color: #fff;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
}

input:focus {
  outline: 0;
  background-color: #fff;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
}

input:active {
  outline: 0;
  background-color: #fff;
}

input::placeholder {
  font-size: 1em;
  opacity: 0.7;
  color: #606060;
  letter-spacing: 1px;
  position: absolute;
  top: 30%;
  left: 5%;
  transition: all 0.4s;
  font-family: "GeneralSans";
}

input:focus::placeholder {
  top: 15%;
  font-size: 0.5em;
}

textarea {
  width: calc(100% - 2em);
  height: 15vh;
  padding: 1em;
  transition: all 0.4s;
  font-family: "GeneralSans";
  border-radius: 1em;
  margin: 0.5em 0;
  color: #000;
  background-color: #f1f1f1;
  border: 0px;
  letter-spacing: 0.5px;
  position: relative;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
}

textarea::placeholder {
  font-size: 1em;
  opacity: 0.85;
  color: #000;
  letter-spacing: 1px;
  position: absolute;
  top: 1em;
  left: 1em;
  transition: all 0.4s;
}

textarea:focus::placeholder {
  top: 5%;
  font-size: 0.5em;
}

textarea:focus {
  border: 0px;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
}

textarea:active {
  border: 0px;
  box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
}

select {
  width: calc(100% - 0em);
  height: auto;
  padding: 1em 1.5em 1em 1em;
  transition: all 0.4s;
  font-family: "GeneralSans";
  border: solid 0px #3ab54a;
  margin: 0.5em 0;
  color: #fff;
  border-radius: 2em;
  background-color: #5e5447;
  font-size: 1em;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
}

select:active,
select:focus {
  border: 0px;
  background-color: #5e5447;
}

select option {
  font-family: "GeneralSans";
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 0.5px;
}

select option:checked {
  background-color: #5e5447;
}

select option:focus {
  background-color: #5e5447;
}

select option:first-of-type {
  font-weight: bold;
  letter-spacing: 2px;
}

input[type="search"] {
  border: 1px solid #e8c899;
  padding: 1em 1.5em;
  position: relative;
  height: 2em;
}

.popup-pane {
  position: fixed;
  z-index: 10000;
  height: 95vh;
  width: 100vw;
  display: none;
  float: left;
  clear: none;
  border-radius: 1em 1em 0 0;
  background-color: white;
  bottom: 0;
  left: 0%;
  box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
  -webkit-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
  overflow: scroll;
}

.popimg {
  width: 90%;
  height: 35vh;
  margin: 4em 5% auto 5%;
  display: block;
  float: left;
  clear: none;
  background-image: url("../img/4-1.jpg");
  background-size: cover;
  background-position: center;
  position: static;
  top: 3em;
  left: 0;
  border-radius: 1em;
}

.cerveauform {
  width: 90%;
  height: 80%;
  margin: 5% 5% 10vh 0;
  display: block;
  float: right;
  clear: none;
}

.cerveauform p {
  margin: 1em auto;
}

.cerveauform .radio-options {
  margin: 1.5em auto;
}

.cerveauform .radio-options label {
  font-family: "GeneralSans";
}

.cerveauform .checkbox-group {
  display: block;
  margin-bottom: 1em;
  justify-content: flex-start;
  padding-left: 0; /* ensure it starts flush left */
}

.cerveauform .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: normal;
  white-space: nowrap;
  margin-top: 0.5em;
  font-family: "GeneralSans";
}

.cerveauform input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 6px; /* This makes it a rounded box instead of a circle */
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-right: 6px;
}

/* Checked style */
.cerveauform input[type="radio"]:checked {
  background-color: #e8c899;
  border-color: #e8c899;
}

/* Optional: checkmark dot effect */
.cerveauform input[type="radio"]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 3px;
  display: none;
}

.cerveauform input[type="radio"]:checked::after {
  display: block;
}

.cerveauform button {
  float: right;
  clear: none;
  display: block;
  margin: 1em 0;
}

.close-button {
  background-color: white;
  display: block;
  float: right;
  clear: none;
  cursor: pointer;
  color: #000;
  position: absolute;
  margin: 0em;
  right: 0em;
  top: 0;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  h1 {
    font-size: 3.5em;
    line-height: 1em;
    font-family: "GeneralSansSemiBold";
    margin: 0;
    font-weight: 300;
    letter-spacing: -0.2px;
  }

  h2 {
    font-family: "GeneralSansSemiBold";
    text-justify: auto;
    line-height: 1em;
    font-size: 3em;
    clear: both;
    display: block;
    margin: auto;
  }

  h3 {
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.1em;
    font-size: 2.25em;
    letter-spacing: 2px;
    clear: both;
    display: block;
    margin: 0;
  }

  h4 {
    font-family: "GeneralSansRegular";
    text-justify: auto;
    line-height: 1em;
    font-size: 1.5em;
    clear: both;
    display: block;
    letter-spacing: 0.5px;
  }

  h5 {
    margin: 0;
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 1.1em;
    clear: both;
    display: block;
    letter-spacing: 1px;
  }

  h6 {
    margin: 0;
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 1em;
    clear: both;
    display: block;
    letter-spacing: 1px;
  }

  p {
    font-family: "GeneralSans";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 100;
    font-size: 1em;
    margin: auto;
    letter-spacing: 0.8px;
  }

  b {
    font-family: "GeneralSansSemiBold";
  }

  button {
    font-size: 1em;
    padding: 0.7em 1.2em 0.7em;
    font-family: "GeneralSansMedium";
    display: block;
    clear: both;
    float: left;
    border: 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 1.5em;
    letter-spacing: 0.15px;
    background-color: #e8c899;
    transition: all 0.3s;
    border: solid 1px rgba(255, 255, 255, 0.65);
  }

  button:not(.searchbutton) {
    float: left;
  }

  button:hover {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  button i {
    transform-origin: center left;
    font-size: 1em;
    transition: all 0.3s;
    margin: auto auto auto 0.5em;
  }

  button:hover i {
    font-size: 1em;
    margin: auto auto auto 1em;
  }

  button.whitebtn {
    background-color: #fff;
    color: #000;
  }

  button.blackbtn {
    background-color: #000;
    color: #fff;
  }

  button.donate-btn {
    width: 8em;
    height: 8em;
    margin: 4em calc(50% - 4em);
    background-color: white;
    border-radius: 5em;
    padding: 1em;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    cursor: pointer;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
    transition: all 0.4s;
    transform-origin: center;
  }

  button.donate-btn:hover {
    width: 9em;
    height: 9em;
    margin: 3.5em calc(50% - 4.5em);
  }

  button.donate-btn .db-inner {
    width: 5em;
    height: 3em;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5em 0.5em;
    grid-template-areas:
      "."
      ".";
  }

  button.donate-btn i {
    font-size: 1.6em;
    text-align: center;
    margin: auto;
  }

  button.donate-btn div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
  }

  button.donatebutton {
    background-color: #5e5447;
    color: #fff;
    margin-left: 1em;
  }

  .scalenormal {
    transition: all 0.5s;
    transform-origin: center;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .scalesmall {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .cerveauform {
    background-color: white;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="name"],
  input[type="number"],
  input[type="search"] {
    width: calc(100% - 3em);
    height: 1.85em;
    padding: 0.85em 1.5em 0.85em 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border: solid 0px #3ab54a;
    margin: 0.5em 0;
    background-color: transparent;
    color: #000;
    border-radius: 2em;
    background-color: #fff;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  }

  input:focus {
    outline: 0;
    background-color: #fff;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  input:active {
    outline: 0;
    background-color: #fff;
  }

  input::placeholder {
    font-size: 1em;
    opacity: 0.7;
    color: #606060;
    letter-spacing: 1px;
    position: absolute;
    top: 30%;
    left: 5%;
    transition: all 0.4s;
    font-family: "GeneralSans";
  }

  input:focus::placeholder {
    top: 15%;
    font-size: 0.5em;
  }

  textarea {
    width: calc(100% - 2em);
    height: 15vh;
    padding: 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border-radius: 1em;
    margin: 0.5em 0;
    color: #000;
    background-color: #f1f1f1;
    border: 0px;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  }

  textarea::placeholder {
    font-size: 1em;
    opacity: 0.85;
    color: #000;
    letter-spacing: 1px;
    position: absolute;
    top: 1em;
    left: 1em;
    transition: all 0.4s;
  }

  textarea:focus::placeholder {
    top: 5%;
    font-size: 0.5em;
  }

  textarea:focus {
    border: 0px;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  textarea:active {
    border: 0px;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  select {
    width: calc(100% - 0em);
    height: auto;
    padding: 1em 1.5em 1em 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border: solid 0px #3ab54a;
    margin: 0.5em 0;
    color: #fff;
    border-radius: 2em;
    background-color: #5e5447;
    font-size: 1em;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
  }

  select:active,
  select:focus {
    border: 0px;
    background-color: #5e5447;
  }

  select option {
    font-family: "GeneralSans";
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 0.5px;
  }

  select option:checked {
    background-color: #5e5447;
  }

  select option:focus {
    background-color: #5e5447;
  }

  select option:first-of-type {
    font-weight: bold;
    letter-spacing: 2px;
  }

  input[type="search"] {
    border: 1px solid #e8c899;
    padding: 1em 1.5em;
    position: relative;
    height: 2em;
  }

  .popup-pane {
    position: fixed;
    z-index: 10000;
    height: 95vh;
    width: 85vw;
    display: none;
    float: left;
    clear: none;
    border-radius: 2em 2em 0 0;
    background-color: white;
    bottom: 0;
    left: 7.5%;
    box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    -webkit-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    overflow: scroll;
  }

  .popimg {
    width: 40%;
    height: 80%;
    margin: 5%;
    display: block;
    float: left;
    clear: none;
    background-image: url("../img/4-1.jpg");
    background-size: cover;
    background-position: center;
    position: static;
    top: 1.5em;
    left: 0;
    border-radius: 1.5em;
  }

  .cerveauform {
    width: 45%;
    height: 80%;
    margin: 5% 5% auto 0;
    display: block;
    float: right;
    clear: none;
  }

  .cerveauform p {
    margin: 1em auto;
  }

  .cerveauform button {
    float: right;
    clear: none;
    display: block;
    margin: 1em 0;
  }

  .close-button {
    background-color: white;
    display: block;
    float: right;
    clear: none;
    cursor: pointer;
    color: #000;
    position: absolute;
    margin: 1em;
    right: 1em;
    top: 0;
  }
}
/* Desktop Layout: 769px to a max of 1080px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1080px) {
  h1 {
    font-size: 4.25em;
    line-height: 1em;
    font-family: "GeneralSansSemiBold";
    margin: 0;
    font-weight: 300;
    letter-spacing: -0.2px;
  }

  h2 {
    font-family: "GeneralSansSemiBold";
    text-justify: auto;
    line-height: 1em;
    font-size: 3.25em;
    clear: both;
    display: block;
    margin: auto;
  }

  h3 {
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.2em;
    font-size: 2.2em;
    letter-spacing: 2px;
    clear: both;
    display: block;
    margin: 0;
  }

  h4 {
    font-family: "GeneralSansRegular";
    text-justify: auto;
    line-height: 1em;
    font-size: 1.35em;
    clear: both;
    display: block;
    letter-spacing: 0.5px;
  }

  h5 {
    margin: 0;
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 1.05em;
    clear: both;
    display: block;
    letter-spacing: 1px;
  }

  h6 {
    margin: 0;
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.1em;
    font-weight: 600;
    font-size: 0.95em;
    clear: both;
    display: block;
    letter-spacing: 1px;
  }

  p {
    font-family: "GeneralSans";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 100;
    font-size: 0.9em;
    margin: auto;
    letter-spacing: 0.8px;
  }

  b {
    font-family: "GeneralSansSemiBold";
  }

  button {
    font-size: 1em;
    padding: 0.7em 1.2em 0.7em;
    font-family: "GeneralSansMedium";
    display: block;
    clear: both;
    float: left;
    border: 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 1.5em;
    letter-spacing: 0.15px;
    background-color: #e8c899;
    transition: all 0.3s;
    border: solid 1px rgba(255, 255, 255, 0.65);
  }

  button:not(.searchbutton) {
    float: left;
  }

  button:hover {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  button i {
    transform-origin: center left;
    font-size: 1em;
    transition: all 0.3s;
    margin: auto auto auto 0.5em;
  }

  button:hover i {
    font-size: 1em;
    margin: auto auto auto 1em;
  }

  button.whitebtn {
    background-color: #fff;
    color: #000;
  }

  button.blackbtn {
    background-color: #000;
    color: #fff;
  }

  button.donate-btn {
    width: 8em;
    height: 8em;
    margin: 4em calc(50% - 4em);
    background-color: white;
    border-radius: 5em;
    padding: 1em;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    cursor: pointer;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
    transition: all 0.4s;
    transform-origin: center;
  }

  button.donate-btn:hover {
    width: 9em;
    height: 9em;
    margin: 3.5em calc(50% - 4.5em);
  }

  button.donate-btn .db-inner {
    width: 5em;
    height: 3em;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5em 0.5em;
    grid-template-areas:
      "."
      ".";
  }

  button.donate-btn i {
    font-size: 1.6em;
    text-align: center;
    margin: auto;
  }

  button.donate-btn div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
  }

  button.donatebutton {
    background-color: #5e5447;
    color: #fff;
    margin-left: 1em;
  }

  .scalenormal {
    transition: all 0.5s;
    transform-origin: center;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .scalesmall {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .cerveauform {
    background-color: white;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="name"],
  input[type="number"],
  input[type="search"] {
    width: calc(100% - 3em);
    height: 1.85em;
    padding: 0.85em 1.5em 0.85em 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border: solid 0px #3ab54a;
    margin: 0.5em 0;
    background-color: transparent;
    color: #000;
    border-radius: 2em;
    background-color: #fff;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  }

  input:focus {
    outline: 0;
    background-color: #fff;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  input:active {
    outline: 0;
    background-color: #fff;
  }

  input::placeholder {
    font-size: 1em;
    opacity: 0.7;
    color: #606060;
    letter-spacing: 1px;
    position: absolute;
    top: 30%;
    left: 5%;
    transition: all 0.4s;
    font-family: "GeneralSans";
  }

  input:focus::placeholder {
    top: 15%;
    font-size: 0.5em;
  }

  textarea {
    width: calc(100% - 2em);
    height: 15vh;
    padding: 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border-radius: 1em;
    margin: 0.5em 0;
    color: #000;
    background-color: #f1f1f1;
    border: 0px;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  }

  textarea::placeholder {
    font-size: 1em;
    opacity: 0.85;
    color: #000;
    letter-spacing: 1px;
    position: absolute;
    top: 1em;
    left: 1em;
    transition: all 0.4s;
  }

  textarea:focus::placeholder {
    top: 5%;
    font-size: 0.5em;
  }

  textarea:focus {
    border: 0px;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  textarea:active {
    border: 0px;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  select {
    width: calc(100% - 0em);
    height: auto;
    padding: 1em 1.5em 1em 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border: solid 0px #3ab54a;
    margin: 0.5em 0;
    color: #fff;
    border-radius: 2em;
    background-color: #5e5447;
    font-size: 1em;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
  }

  select:active,
  select:focus {
    border: 0px;
    background-color: #5e5447;
  }

  select option {
    font-family: "GeneralSans";
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 0.5px;
  }

  select option:checked {
    background-color: #5e5447;
  }

  select option:focus {
    background-color: #5e5447;
  }

  select option:first-of-type {
    font-weight: bold;
    letter-spacing: 2px;
  }

  input[type="search"] {
    border: 1px solid #e8c899;
    padding: 1em 1.5em;
    position: relative;
    height: 2em;
  }

  .popup-pane {
    position: fixed;
    z-index: 10000;
    height: 95vh;
    width: 90vw;
    display: none;
    float: left;
    clear: none;
    border-radius: 1em 1em 0 0;
    background-color: white;
    bottom: 0;
    left: 5%;
    box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    -webkit-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    overflow: scroll;
  }

  .popimg {
    width: 40%;
    height: 80%;
    margin: 5%;
    display: block;
    float: left;
    clear: none;
    background-image: url("../img/4-1.jpg");
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 2em;
    left: 0;
    border-radius: 1em;
    transition: all 0.3s;
  }

  .cerveauform {
    width: 45%;
    height: 80%;
    margin: 5% 5% auto 0;
    display: block;
    float: right;
    clear: none;
  }

  .cerveauform p {
    margin: 1em auto;
  }

  .cerveauform .radio-options {
    margin: 1.5em auto;
  }

  .cerveauform .radio-options label {
    font-family: "GeneralSans";
  }

  .cerveauform .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px; /* vertical gap 10px, horizontal gap 30px */
    margin-bottom: 15px;
    justify-content: flex-start;
    padding-left: 0; /* ensure it starts flush left */
  }

  .cerveauform .checkbox-group label {
    display: inline-flex;
    align-items: center;
    font-weight: normal;
    white-space: nowrap;
    margin-top: 0.5em;
    font-family: "GeneralSans";
  }

  .cerveauform input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 6px; /* This makes it a rounded box instead of a circle */
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-right: 6px;
  }

  /* Checked style */
  .cerveauform input[type="radio"]:checked {
    background-color: #e8c899;
    border-color: #e8c899;
  }

  /* Optional: checkmark dot effect */
  .cerveauform input[type="radio"]::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 3px;
    display: none;
  }

  .cerveauform input[type="radio"]:checked::after {
    display: block;
  }

  .cerveauform button {
    float: right;
    clear: none;
    display: block;
    margin: 1em 0;
  }

  .close-button {
    background-color: white;
    display: block;
    float: right;
    clear: none;
    cursor: pointer;
    color: #000;
    position: absolute;
    margin: 1em;
    right: 0.5em;
    top: 0;
  }
}

/* Desktop Layout:1080px to a max of 1440px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1440px) {
  h1 {
    font-size: 5.5em;
    line-height: 1em;
    font-family: "GeneralSansSemiBold";
    margin: 0;
    font-weight: 300;
    letter-spacing: -0.2px;
  }

  h2 {
    font-family: "GeneralSansSemiBold";
    text-justify: auto;
    line-height: 1em;
    font-size: 4em;
    clear: both;
    display: block;
    margin: auto;
  }

  h3 {
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.1em;
    font-size: 2.75em;
    letter-spacing: 2px;
    clear: both;
    display: block;
    margin: 0;
  }

  h4 {
    font-family: "GeneralSansRegular";
    text-justify: auto;
    line-height: 1em;
    font-size: 1.65em;
    clear: both;
    display: block;
    letter-spacing: 0.5px;
  }

  h5 {
    margin: 0;
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 1.1em;
    clear: both;
    display: block;
    letter-spacing: 1px;
  }

  h6 {
    margin: 0;
    font-family: "GeneralSansMedium";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 1em;
    clear: both;
    display: block;
    letter-spacing: 1px;
  }

  p {
    font-family: "GeneralSans";
    text-justify: auto;
    line-height: 1.3em;
    font-weight: 100;
    font-size: 1em;
    margin: auto;
    letter-spacing: 0.8px;
  }

  b {
    font-family: "GeneralSansSemiBold";
  }

  button {
    font-size: 1em;
    padding: 0.7em 1.2em 0.7em;
    font-family: "GeneralSansMedium";
    display: block;
    clear: both;
    float: left;
    border: 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 1.5em;
    letter-spacing: 0.15px;
    background-color: #e8c899;
    transition: all 0.3s;
    border: solid 1px rgba(255, 255, 255, 0.65);
  }

  button:not(.searchbutton) {
    float: left;
  }

  button:hover {
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  button i {
    transform-origin: center left;
    font-size: 1em;
    transition: all 0.3s;
    margin: auto auto auto 0.5em;
  }

  button:hover i {
    font-size: 1em;
    margin: auto auto auto 1em;
  }

  button.whitebtn {
    background-color: #fff;
    color: #000;
  }

  button.blackbtn {
    background-color: #000;
    color: #fff;
  }

  button.donate-btn {
    width: 8em;
    height: 8em;
    margin: 4em calc(50% - 4em);
    background-color: white;
    border-radius: 5em;
    padding: 1em;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    cursor: pointer;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
    position: relative;
    transition: all 0.4s;
    transform-origin: center;
  }

  button.donate-btn:hover {
    width: 9em;
    height: 9em;
    margin: 3.5em calc(50% - 4.5em);
  }

  button.donate-btn .db-inner {
    width: 5em;
    height: 3em;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5em 0.5em;
    grid-template-areas:
      "."
      ".";
  }

  button.donate-btn i {
    font-size: 1.6em;
    text-align: center;
    margin: auto;
  }

  button.donate-btn div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transform-origin: center;
  }

  button.donatebutton {
    background-color: #5e5447;
    color: #fff;
    margin-left: 1em;
  }

  .scalenormal {
    transition: all 0.5s;
    transform-origin: center;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .scalesmall {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  .cerveauform {
    background-color: white;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="name"],
  input[type="number"],
  input[type="search"] {
    width: calc(100% - 3em);
    height: 1.85em;
    padding: 0.85em 1.5em 0.85em 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border: solid 0px #3ab54a;
    margin: 0.5em 0;
    background-color: transparent;
    color: #000;
    border-radius: 2em;
    background-color: #fff;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  }

  input:focus {
    outline: 0;
    background-color: #fff;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  input:active {
    outline: 0;
    background-color: #fff;
  }

  input::placeholder {
    font-size: 1em;
    opacity: 0.7;
    color: #606060;
    letter-spacing: 1px;
    position: absolute;
    top: 30%;
    left: 5%;
    transition: all 0.4s;
    font-family: "GeneralSans";
  }

  input:focus::placeholder {
    top: 15%;
    font-size: 0.5em;
  }

  textarea {
    width: calc(100% - 2em);
    height: 15vh;
    padding: 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border-radius: 1em;
    margin: 0.5em 0;
    color: #000;
    background-color: #f1f1f1;
    border: 0px;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.3);
  }

  textarea::placeholder {
    font-size: 1em;
    opacity: 0.85;
    color: #000;
    letter-spacing: 1px;
    position: absolute;
    top: 1em;
    left: 1em;
    transition: all 0.4s;
  }

  textarea:focus::placeholder {
    top: 5%;
    font-size: 0.5em;
  }

  textarea:focus {
    border: 0px;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  textarea:active {
    border: 0px;
    box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -webkit-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
    -moz-box-shadow: 1px 10px 29px -3px rgba(232, 200, 153, 0.51);
  }

  select {
    width: calc(100% - 0em);
    height: auto;
    padding: 1em 1.5em 1em 1em;
    transition: all 0.4s;
    font-family: "GeneralSans";
    border: solid 0px #3ab54a;
    margin: 0.5em 0;
    color: #fff;
    border-radius: 2em;
    background-color: #5e5447;
    font-size: 1em;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
  }

  select:active,
  select:focus {
    border: 0px;
    background-color: #5e5447;
  }

  select option {
    font-family: "GeneralSans";
    cursor: pointer;
    font-size: 1em;
    letter-spacing: 0.5px;
  }

  select option:checked {
    background-color: #5e5447;
  }

  select option:focus {
    background-color: #5e5447;
  }

  select option:first-of-type {
    font-weight: bold;
    letter-spacing: 2px;
  }

  input[type="search"] {
    border: 1px solid #e8c899;
    padding: 1em 1.5em;
    position: relative;
    height: 2em;
  }

  .popup-pane {
    position: fixed;
    z-index: 10000;
    height: 95vh;
    width: 85vw;
    display: none;
    float: left;
    clear: none;
    border-radius: 2em 2em 0 0;
    background-color: white;
    bottom: 0;
    left: 7.5%;
    box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    -webkit-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    -moz-box-shadow: 0px -17px 128px 5px rgba(0, 0, 0, 0.36);
    overflow: scroll;
  }

  .popimg {
    width: 40%;
    height: 80%;
    margin: 5%;
    display: block;
    float: left;
    clear: none;
    background-image: url("../img/4-1.jpg");
    background-size: cover;
    background-position: center;
    position: sticky;
    top: 1.5em;
    left: 0;
    border-radius: 1.5em;
    border-radius: 1em;
    transition: all 0.3s;
  }

  .cerveauform {
    width: 45%;
    height: 80%;
    margin: 5% 5% auto 0;
    display: block;
    float: right;
    clear: none;
  }

  .cerveauform p {
    margin: 1em auto;
  }

  .cerveauform .radio-options {
    margin: 1.5em auto;
  }

  .cerveauform .radio-options label {
    font-family: "GeneralSans";
  }

  .cerveauform .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px; /* vertical gap 10px, horizontal gap 30px */
    margin-bottom: 15px;
    justify-content: flex-start;
    padding-left: 0; /* ensure it starts flush left */
  }

  .cerveauform .checkbox-group label {
    display: inline-flex;
    align-items: center;
    font-weight: normal;
    white-space: nowrap;
    margin-top: 0.5em;
    font-family: "GeneralSans";
  }

  .cerveauform input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 6px; /* This makes it a rounded box instead of a circle */
    background-color: #fff;
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin-right: 6px;
  }

  /* Checked style */
  .cerveauform input[type="radio"]:checked {
    background-color: #e8c899;
    border-color: #e8c899;
  }

  /* Optional: checkmark dot effect */
  .cerveauform input[type="radio"]::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: black;
    border-radius: 3px;
    display: none;
  }

  .cerveauform input[type="radio"]:checked::after {
    display: block;
  }

  .cerveauform button {
    float: right;
    clear: none;
    display: block;
    margin: 1em 0;
  }

  .close-button {
    background-color: white;
    display: block;
    float: right;
    clear: none;
    cursor: pointer;
    color: #000;
    position: absolute;
    margin: 1em;
    right: 0.5em;
    top: 0;
  }
}

/* Desktop Layout: 1440px to a max of 1920px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 1920px) {
}
/* Desktop Layout: 1920px to a max of 2400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 2400px) {
}



.gfield{margin-top: 10px!important;margin-bottom: 10px!important}
.gform-theme--orbital .gfield_radio {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  align-items: center !important;
}

.gform-theme--orbital .gfield_radio .gchoice {
  display: flex !important;
  align-items: center !important;
}

.gform-theme--orbital .gfield_radio input[type="radio"] {
  margin-right: 8px !important;
  transform: scale(1.1) !important;
  cursor: pointer !important;
}

.gform_required_legend, .gfield_validation_message {font-size: 11px!important;color:red!important}
.gform_submission_error{font-size: 16px!important;color:red!important;margin-top:30px!important}

.gform-theme--orbital .gform_footer input[type="submit"],
.gform-theme--orbital .gform_page_footer input[type="submit"] {
  background-color: #e8c899 !important;
  color: #000000 !important;
  font-size: 16px !important;
  padding: 16px 35px !important;
  border: none !important;
  border-radius: 25px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
    margin-top: 20px;
}

.gform-theme--orbital .gform_footer input[type="submit"]:hover,
.gform-theme--orbital .gform_page_footer input[type="submit"]:hover {
  background-color: #cccccc !important;
}
