body {
  font-family: @import url('https://fonts.googleapis.com/css2?family=Vidaloka&display=swap');
  background: #FFFFF0;
  margin: 0;
  padding: 0;
}

header {
  background-color: white;
  color: white;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: center;
}

ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

ul.menu > li {
  position: relative;
}

ul.menu > li > a {
  color: black;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
}

ul.menu > li > a:hover,
ul.menu > li > a:focus {
  background-color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #444;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 5px;
}

.logo {
  max-width: 35%;
  margin-left: 160px;
  margin-top: -90px;
  margin-right: -70px;
}

*, *:before, *:after {
  box-sizing: border-box;
}

#office {
  font-size: 15px;
  color: #FFD700;
}

.bois {
  color: #778899;
  text-decoration: none;
}

.bois a:hover {
  color: #FFD700;
}

html {
  font-size: 100%;
}

body {
  font-family: acumin-pro, system-ui, sans-serif;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  align-items: start;
  min-height: 100vh;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #2f2f2f;
  background-color: black;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  max-width: 25%;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 400;
  font-size: 15px;
  color: white;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: white;
}

.nav__ul--extra {
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: white;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
      margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
      flex: 1;
  }

  .nav__item--extra {
      flex-grow: 2;
  }

  .footer__addr {
      flex: 1 0px;
  }

  .footer__nav {
      flex: 2 0px;
  }
}

#footlore {
  color: white;
}

#Button {
  border-radius: 5px;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "vidaloka", sans-serif;
}

.form-main {
  background-size: cover;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-wrapper {
  border-radius: 10px;
  padding: 45px;
  width: 80%;
  box-shadow: 0 0 5px 5px #00000020;
  min-height: 470px;
  max-width: 200vh;
}

.form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; 
}

.form-card .full-width {
  grid-column: span 2; 
}

.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
