@charset "UTF-8";
#background {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 5;
  top: 0;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
}

#headerMobile {
  height: 70px;
  padding: 0 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  z-index: 4;
}
#headerMobile > ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
#headerMobile > ul img {
  max-width: 100px;
  height: auto;
}
#headerMobile > ul button {
  width: 24px;
  height: 24px;
}

#aside {
  max-width: 190px;
  width: 100%;
  height: 100vh;
  width: 100vw;
  z-index: 6;
  position: fixed;
  top: 0;
  background-color: #fff;
  transition: transform 0.4s;
  transform: translateX(-190px);
}
#aside > div {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#aside > div > a > img {
  max-width: 100%;
  height: auto;
}
#aside > ul {
  list-style: none;
  border-bottom: 1px solid #d5d8e4;
  border-top: 1px solid #d5d8e4;
  padding: 15px;
}
#aside > ul > li {
  line-height: 28px;
}
#aside > ul > li + li {
  margin-top: 6px;
}
#aside > ul > li > a {
  text-decoration: none;
  color: var(--blue);
  display: block;
}
#aside > ul > li > a.active {
  font-weight: 700;
}

#header {
  padding-top: 50px;
}
#header > div {
  max-width: 1344px;
  margin: 0 auto;
  width: 100%;
}
#header > div > img {
  max-width: 100%;
  height: auto;
}
#header > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header > div:nth-child(2) {
  margin-top: 50px;
}
#header > div:nth-child(2) > ul {
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: space-evenly;
  border: 1px solid #d5d8e4;
  border-width: 1px 0;
}
#header > div:nth-child(2) > ul > li {
  line-height: 50px;
}
#header > div:nth-child(2) > ul > li > a {
  text-decoration: none;
  color: var(--blue);
  text-transform: uppercase;
  display: block;
  font-size: 1.42rem;
  position: relative;
}
#header > div:nth-child(2) > ul > li > a.active {
  font-weight: 700;
}
#header > div:nth-child(2) > ul > li > a:hover::after {
  width: 100%;
}
#header > div:nth-child(2) > ul > li > a::after {
  position: absolute;
  content: "";
  bottom: calc(50% - 1.32rem);
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue);
  transition: width 0.5s;
}

#main #banner {
  margin-top: 50px;
}
#main #banner > main {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main #banner > main > img {
  flex: 1;
  max-width: 100%;
  height: auto;
}
#main #form {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 40px;
}
#main #form > header {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
}
#main #form > header > img {
  max-width: 100%;
  height: auto;
}
#main #form > header > h1 {
  font-size: 4.21rem;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 80px;
}
#main #form > main {
  max-width: 1560px;
  margin: 0 auto;
  margin-top: 140px;
}
#main #form > main > form {
  max-width: 1000px;
  margin: 0 auto;
}
#main #form > main > form > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main #form > main > form > header > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
#main #form > main > form > header > div > img {
  max-width: 100%;
  height: auto;
}
#main #form > main > form > header > div > strong {
  font-size: 1.85rem;
  color: var(--gray);
}
#main #form > main > form > header > div > strong > strong {
  color: var(--blue);
}
#main #form > main > form > main {
  margin-top: 100px;
}
#main #form > main > form > main > div:not(div.separator) {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}
#main #form > main > form > main > div:not(div.separator) + * {
  margin-top: 20px;
}
#main #form > main > form > main > div:not(div.separator) > input[type=text],
#main #form > main > form > main > div:not(div.separator) > input[type=email] {
  flex: 1;
  height: 75px;
  min-width: 200px;
  background-color: #f3f3f3;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 1.28rem;
  transition: border-color 0.2s;
}
#main #form > main > form > main > div:not(div.separator) > input[type=text]:focus,
#main #form > main > form > main > div:not(div.separator) > input[type=email]:focus {
  border-color: var(--blue);
}
#main #form > main > form > main > div:not(div.separator) > input[type=text]::placeholder,
#main #form > main > form > main > div:not(div.separator) > input[type=email]::placeholder {
  color: #4f4f4f;
}
#main #form > main > form > main > div:not(div.separator) > input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  height: 30px;
  width: 30px;
  background-color: #f3f3f3;
  border: 2px solid transparent;
  border-radius: 3px;
  position: relative;
  transition: background-color 0.2s;
}
#main #form > main > form > main > div:not(div.separator) > input[type=radio]::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f3f3f3;
  font-size: 2rem;
}
#main #form > main > form > main > div:not(div.separator) > input[type=radio]:checked {
  background-color: #55a1d8;
}
#main #form > main > form > main > div:not(div.separator) > label {
  cursor: pointer;
  font-size: 1.28rem;
  color: #666767;
}
#main #form > main > form > main > div:not(div.separator) > textarea {
  flex: 1;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 1.28rem;
  background-color: #f3f3f3;
  padding: 10px;
  margin-top: 20px;
  transition: border-color 0.2s;
}
#main #form > main > form > main > div:not(div.separator) > textarea:focus {
  border-color: var(--blue);
}
#main #form > main > form > main > div.separator {
  width: 100%;
  margin-bottom: 20px;
}
#main #form > main > form > main > div.separator > strong {
  color: var(--blue);
  font-size: 2rem;
}
#main #form > main > form > footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
#main #form > main > form > footer > button {
  padding: 5px 10px;
  color: #fff;
  background-color: var(--blue);
  font-size: 1.7rem;
  border-radius: 40px;
  text-transform: uppercase;
  cursor: pointer;
}

#footer {
  background-color: var(--blue);
  padding: 84px 25px;
}
#footer > main {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
#footer > main ul {
  list-style: none;
}
#footer > main > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#footer > main strong {
  font-size: 1.28rem;
}
#footer > main p, #footer > main li, #footer > main a, #footer > main p {
  font-size: 1.07rem;
}
#footer > main > div:nth-child(1) {
  color: white;
}
#footer > main > div:nth-child(1) > img {
  margin-bottom: 25px;
  max-width: 100%;
  height: auto;
}
#footer > main > div:nth-child(2) {
  color: white;
}
#footer > main > div:nth-child(2) > p {
  margin-top: 10px;
  max-width: 330px;
}
#footer > main > div:nth-child(3) {
  color: white;
  text-transform: uppercase;
}
#footer > main > div:nth-child(3) > ul {
  margin-top: 10px;
}
#footer > main > div:nth-child(3) > ul > li > a {
  color: inherit;
  text-decoration: inherit;
}
#footer > main > div:nth-child(4) {
  color: white;
}
#footer > main > div:nth-child(4) > p {
  margin-top: 10px;
  max-width: 330px;
}
#footer > main > div:nth-child(5) {
  color: white;
  text-transform: uppercase;
}
#footer > main > div:nth-child(5) > ul {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
#footer > main > div:nth-child(5) > ul > li > a {
  color: inherit;
  text-decoration: inherit;
}
#footer > main > div:nth-child(5) > ul > li > a > img {
  max-width: 100%;
  height: auto;
}

#wpp {
  padding: 23px;
  background-color: #55a1d8;
  max-width: 100px;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 4;
}
#wpp > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#wpp > a > img {
  max-width: 100%;
  height: auto;
}

/*# sourceMappingURL=index.css.map */
