body {
  background-color: rgba(0, 0, 0, 0.5);
}

.lang {
  position: relative;
  top: 50px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 20%;
  padding: 20px;
  background-color: white;
  border-radius: 15%;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}
.lang:visited {
  color: black;
}

.load {
  display: none;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-top: 15px;
}
.load .cercle {
  width: 50px;
  height: 50px;
  border: 3px solid blue;
  border-radius: 50%;
}
.load .cercle:last-child {
  -webkit-clip-path: polygon(0% 100%, 0% 45%, 100% 45%, 100% 0%);
          clip-path: polygon(0% 100%, 0% 45%, 100% 45%, 100% 0%);
}
.load .spin {
  animation: turn 500ms ease-out infinite;
}
@keyframes turn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sent {
  animation-delay: 2s;
}
.sent h2 {
  display: block;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  margin-left: auto;
  margin-inline-end: auto;
  background-color: white;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  padding: 30px;
  border-radius: 10px;
  margin-top: 100px;
}

.contForm {
  width: 65%;
  margin-left: auto;
  margin-inline-end: auto;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
  padding: 30px;
  border-radius: 10px;
  margin-top: 100px;
}
@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.contForm p {
  margin-bottom: 25px;
}
.contForm label, .contForm input {
  display: block;
}
.contForm label {
  font-size: 18px;
}
.contForm label span {
  color: red;
}
.contForm input {
  width: 100%;
  height: 20px;
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 20px 10px;
  font-size: 16px;
  background-color: #f9f9f9;
  border: 1px solid #dadbdd;
}
.contForm .contCol {
  display: grid;
  grid-template-columns: 50% 40%;
  align-items: center;
  justify-content: space-between;
}
.contForm .contCol select {
  display: block;
  width: 100%;
  height: 60px;
}
.contForm textarea {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 20px;
  padding-left: 20px;
  background-color: #f9f9f9;
  border: 1px solid #dadbdd;
}
.contForm button {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffe359;
  border: none;
  width: 50%;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
}/*# sourceMappingURL=main.css.map */