@font-face {
    font-family: 'MyWebFont';
    src: url('../font/font.ttf') format('woff2');
  }
  @font-face {
    font-family: 'myriadpro';
    src: url('../font/myriadpro.ttf') format('woff2');
  }


*{
    font-family: 'MyWebFont', 'myriadpro', sans-serif;
    font-size: large;
    color: #058555;
}
.title{
    font-size: 18px;
}
 .img{
    width: 60%;
}
.space{
    padding-bottom: 50px;
}
.my-btn{
    color: white;
    background-color: #058555;
    border: 0;
}
.my-btn:hover{
    color: white;
    background-color: #005133;
    border: 0;
}
.my-btn:active {
    color: white;
    background-color: #005133;
    border: 0;
}
.form-control1 {
    font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    border: 0;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  }
  input[type="radio"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  }

  input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #53575a;
  }
  
  .form-control1 + .form-control1 {
    margin-top: 1em;
  }
  input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #058555;
  }
  
  input[type="radio"]:checked::before {
    transform: scale(1);
  }
  .name::placeholder {
      color: #53575A;
  }
select.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg"><path d="M 0,2.5 L 10,2.5 M 0,5 L 10,5 M 0,7.5 L 10,7.5" stroke="%23333" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 8px 10px;
    padding-right: 2.375rem;
    direction: ltr;
    text-align-last: left;
    color: #53575A;
}
option {
    direction: ltr;
    text-align: left;
}