.spinner {
  width: 126px;
  height: 126px;
  border: 6px solid rgba(255, 255, 255, 0.8470588235);
  border-top: 6px solid #5471FF;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
  position: fixed;
  top: 45%;
  left: 35%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100000;
  display: none;
  margin-inline: auto;
}

.spinner.active {
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page {
  background: rgba(211, 211, 211, 0.15);
}
.page #overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(156, 156, 156, 0.5);
  z-index: 10000;
  opacity: 1;
  display: none;
}
.page #overlay.active {
  display: block;
}
.page .contact {
  width: 100%;
  height: 100%;
  padding-block: 55px;
  padding-top: 139px;
  padding-bottom: 50px;
  margin-block: 30px;
  margin-bottom: 0;
  margin-top: 0;
}
.page .contact .content {
  padding-inline: 20px;
  padding-bottom: 20px;
  position: relative;
}
.page .contact .content .text {
  text-align: left;
  margin-bottom: 15px;
}
.page .contact .content .text h2 {
  color: #1F1F1F;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 15px;
}
.page .contact .content .text h2 span {
  color: #5471FF;
}
.page .contact .content .text p {
  color: #1F1F1F;
  font-size: 19px;
  margin-bottom: 0;
}
.page .contact .content .text #onlyDes {
  display: block;
}
.page .contact .content .text #onlyDes .contactBtn {
  background: rgba(99, 125, 255, 0.1960784314);
  color: #1F1F1F;
  width: 220px;
  height: 49px;
  display: block;
  border-radius: 25px;
  margin-top: 38px;
  margin-bottom: -15px;
  transition: 0.6s;
  border: none;
  outline: none;
}
.page .contact .content .text #onlyDes .contactBtn:hover {
  background: rgba(99, 125, 255, 0.3529411765);
}
.page .contact .content .text #onlyMob {
  display: none;
}
.page .contact .content .contact-card {
  margin-top: 30px;
  height: 550px;
  border-radius: 6px;
  background: rgba(211, 211, 211, 0.13);
  background: white;
  width: 100%;
  transform: translateY(0);
  overflow: hidden;
  position: relative;
}
.page .contact .content .contact-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(104, 104, 104, 0.19), rgba(0, 0, 0, 0.55));
  z-index: 10;
}
.page .contact .content .contact-card img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 550px;
}
.page .contact .content .contact-card .text {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 11;
  padding-inline: 20px;
  padding-top: 40px;
  padding-bottom: 45px;
}
.page .contact .content .contact-card .text .bottom {
  position: absolute;
  bottom: 40px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page .contact .content .contact-card .text .bottom a {
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.page .contact .content .contact-card .text .bottom a i {
  font-size: 21px;
  color: white;
}
.page .contact .content .contact-card .text p {
  display: flex;
  color: white;
  font-size: 16px;
  align-items: center;
  gap: 15px;
}
.page .contact .content .contact-card .text p i {
  font-size: 19px;
  color: #5471FF;
}
.page .contact .content .contact-card .text h2 {
  color: white;
  font-size: 25px;
  margin-top: 25px;
}
.page .contact .content form {
  margin-top: 35px;
  padding: 17px;
  padding-top: 35px;
  margin-top: 39px;
  border-radius: 6px;
  background: rgba(211, 211, 211, 0.13);
  background: white;
  width: 100%;
  height: auto;
  transform: translateY(0);
}
.page .contact .content form input {
  color: #1F1F1F;
  font-size: 17px;
  width: 100%;
  height: 57px;
  outline: none;
  border-radius: 25px;
  background: rgba(211, 211, 211, 0.15);
  padding: 12px 18px;
  margin-bottom: 7px;
}
.page .contact .content form input::-moz-placeholder {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.88;
}
.page .contact .content form input::placeholder {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.88;
}
.page .contact .content form input[type=date]::-webkit-calendar-picker-indicator {
  fill: white;
  color: white;
  color-scheme: dark;
}
.page .contact .content form .select-container {
  position: relative;
  width: 100%;
}
.page .contact .content form .select-container select {
  color: #1F1F1F;
  font-size: 17px;
  width: 100%;
  height: 57px;
  outline: none;
  border-radius: 25px;
  background: rgba(211, 211, 211, 0.13);
  padding: 12px 18px;
  margin-bottom: 7px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.page .contact .content form .select-container select::-moz-placeholder {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.88;
}
.page .contact .content form .select-container select::placeholder {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.88;
}
.page .contact .content form .select-container select option {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.88;
}
.page .contact .content form .select-container i {
  color: #1F1F1F;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  opacity: 0.7;
  pointer-events: none;
}
.page .contact .content form textarea {
  color: #1F1F1F;
  font-size: 17px;
  width: 100%;
  outline: none;
  border-radius: 25px;
  background: rgba(211, 211, 211, 0.13);
  padding: 12px 18px;
  height: 120px;
  min-height: 120px;
  max-height: 160px;
  margin-bottom: 7px;
}
.page .contact .content form textarea::-moz-placeholder {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.85;
}
.page .contact .content form textarea::placeholder {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.85;
}
.page .contact .content form button {
  border-radius: 25px;
  outline: none;
  background: #5471FF;
  color: white;
  font-weight: 400;
  font-size: 17px;
  width: 100%;
  height: 54px;
  margin-top: 5px;
  margin-bottom: 25px;
  border: none;
}
.page .contact .content form button.secondary {
  background: transparent;
  color: #5471FF;
  border: 1px solid #5471FF;
}
.page .contact .content form button.secondary:hover {
  background: rgba(60, 88, 228, 0.0549019608);
}
.page .contact .content form button:hover {
  background: #3c58e4;
}
.page .contact .content form .flytte-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 55px;
}
.page .contact .content form .flytte-grid .column {
  flex: 1;
  min-width: 280px;
}
.page .contact .content form .flytte-grid input,
.page .contact .content form .flytte-grid select {
  width: 100%;
  margin-bottom: 12px;
}
.page .contact .content form .flytte-grid h3 {
  margin-bottom: 10px;
}

@media only screen and (min-device-width: 1140px) {
  .spinner {
    width: 126px;
    height: 126px;
    border: 6px solid rgba(255, 255, 255, 0.8470588235);
    border-top: 6px solid #5471FF;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.7s linear infinite;
    position: fixed;
    top: 50%;
    left: 45%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 100000;
    display: none;
  }
  .page #overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(156, 156, 156, 0.5);
    z-index: 10000;
    opacity: 1;
    display: none;
  }
  .page #overlay.active {
    display: block;
  }
  .page .contact {
    width: 100%;
    height: auto;
    padding-block: 55px;
    padding-top: 190px;
    padding-bottom: 110px;
    margin-block: 30px;
    margin-bottom: 0;
    margin-top: 0;
  }
  .page .contact .content {
    padding-inline: 50px;
    padding-bottom: 20px;
    position: relative;
    max-width: 1300px;
    margin-inline: auto;
  }
  .page .contact .content .flexy {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 65px;
  }
  .page .contact .content .flexy .contact-card {
    margin-top: 0;
    height: 690px;
    border-radius: 6px;
    background: rgba(211, 211, 211, 0.13);
    background: white;
    width: 100%;
    transform: translateY(0);
    overflow: hidden;
    position: relative;
  }
  .page .contact .content .flexy .contact-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(104, 104, 104, 0.19), rgba(0, 0, 0, 0.55));
    z-index: 10;
  }
  .page .contact .content .flexy .contact-card img {
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 690px;
  }
  .page .contact .content .flexy .contact-card .text {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 11;
    padding-inline: 50px;
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .page .contact .content .flexy .contact-card .text .bottom {
    position: absolute;
    bottom: 80px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .page .contact .content .flexy .contact-card .text .bottom a {
    color: white;
    font-size: 21px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .page .contact .content .flexy .contact-card .text .bottom a i {
    font-size: 21px;
    color: white;
  }
  .page .contact .content .flexy .contact-card .text p {
    display: flex;
    color: white;
    font-size: 21px;
    align-items: center;
    gap: 15px;
  }
  .page .contact .content .flexy .contact-card .text p i {
    font-size: 19px;
    color: #5471FF;
  }
  .page .contact .content .flexy .contact-card .text h2 {
    color: white;
    font-size: 34px;
    margin-top: 25px;
  }
  .page .contact .content .text {
    text-align: left;
    margin-bottom: 0;
    max-width: 560px;
    transform: translateY(30px);
  }
  .page .contact .content .text h2 {
    color: #1F1F1F;
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  .page .contact .content .text h2 span {
    color: #5471FF;
  }
  .page .contact .content .text p {
    color: #1F1F1F;
    font-size: 21px;
    margin-bottom: 0;
  }
  .page .contact .content form {
    margin-top: 0;
    padding: 19px;
    padding-top: 35px;
    margin-top: 0;
    border-radius: 6px;
    width: 100%;
    height: auto;
    transform: translateY(0);
    max-width: 580px;
    border: none;
  }
  .page .contact .content form.active {
    min-width: 1000px;
    max-width: 1000px;
    display: block;
  }
  .page .contact .content form label {
    font-size: 16px;
    color: #1F1F1F;
  }
  .page .contact .content form input {
    color: #1F1F1F;
    font-size: 18px;
    width: 100%;
    height: 60px;
    outline: none;
    padding: 16px 20px;
  }
  .page .contact .content form input::-moz-placeholder {
    color: #1F1F1F;
    font-size: 16px;
    opacity: 0.88;
  }
  .page .contact .content form input::placeholder {
    color: #1F1F1F;
    font-size: 16px;
    opacity: 0.88;
  }
  .page .contact .content form textarea {
    color: #1F1F1F;
    font-size: 18px;
    width: 100%;
    max-width: 600px;
    height: 120px;
    min-height: 120px;
    max-height: 160px;
    outline: none;
    padding: 16px 20px;
  }
  .page .contact .content form textarea::-moz-placeholder {
    color: #1F1F1F;
    font-size: 16px;
    opacity: 0.85;
  }
  .page .contact .content form textarea::placeholder {
    color: #1F1F1F;
    font-size: 16px;
    opacity: 0.85;
  }
  .page .contact .content form button {
    border-radius: 25px;
    outline: none;
    background: #5471FF;
    color: white;
    font-weight: 400;
    font-size: 17px;
    width: 100%;
    height: 55px;
    margin-top: 5px;
    margin-bottom: 25px;
    border: none;
    display: inline-block;
    max-width: 550px;
  }
  .page .contact .content form button.secondary {
    background: transparent;
    color: #5471FF;
    border: 1px solid #5471FF;
  }
  .page .contact .content form button.secondary:hover {
    background: rgba(60, 88, 228, 0.0549019608);
  }
  .page .contact .content form button:hover {
    background: #3c58e4;
  }
  .page .contact .content form .flytte-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
  }
  .page .contact .content form .flytte-grid .column {
    flex: 1;
    min-width: 280px;
  }
  .page .contact .content form .flytte-grid input,
  .page .contact .content form .flytte-grid select {
    width: 100%;
    margin-bottom: 12px;
  }
  .page .contact .content form .flytte-grid h3 {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=contact.css.map */