@import url("https://fonts.googleapis.com/css?family=Poiret+One|Source+Sans+Pro");
* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

/* ----------------General -----------------*/

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bg-image {
  background-image: url(./img/6.jpeg);
  /* background-image: url(./img/bg2.jpg); */
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: -1;
}
.content {
  flex: 1;
  overflow: auto;
  position: relative;
}
.container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  padding: 5% 5%;
}
span {
  font-size: 18px;
}

/* ----------------Title -----------------*/
.info h1 {
  font-size: 55px;
  letter-spacing: 3px;
}
/* ----------------Quote -----------------*/
blockquote {
  font-size: 20px;
  margin-top: 1rem;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: italic;
}

blockquote footer {
  margin-top: 10px;
}

/* ----------------Form -----------------*/

.container-form,
h5 {
  margin-top: 30px;
  margin-bottom: 30px;
}

form {
  background-color: #0000007c;
  padding: 25px 40px;
  z-index: 9;
}

textarea {
  resize: none;
}

input,
textarea {
  font-family: "Poiret One";
  background: 0;
  width: 80%;
  outline: 0;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.8px;
}
input::placeholder,
textarea::placeholder {
  color: #fffefed7; /* Change the color to your desired color */
}

button[type="submit"] {
  border: 0;
  border-radius: 5px;
  padding-bottom: 0;
  height: 50px;
  background: #91700e94;
  color: white;
  cursor: pointer;
  transition: all 600ms ease-in-out;
  width: 250px;
  font-size: 16px;
}

button[type="submit"] span {
  margin-right: 1rem;
}

button[type="submit"]:hover {
  background: #c0392b;
}

.info {
  text-align: center;
}
.info span {
  font-weight: 700;
}
section {
  position: absolute;
  top: 45vh;
  background-color: #5f4a10;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 30px;
  transition: all 1s ease-in;
  font-family: "Poiret One";
  letter-spacing: 1px;
  opacity: 0;
}

.info,
blockquote,
span {
  font-family: "Poiret One", cursive;
}

.info hr {
  margin: 15px 0px;
}

.figure1 {
  position: absolute;
  bottom: 0;
  right: 0;

  filter: drop-shadow(10px -26px 35px black);
}

.figure2 {
  position: absolute;
  filter: drop-shadow(10px -26px 35px black);
  bottom: 0;
  /* left: 5vw; */
}

.figure1 img {
  width: 30vw;
}

.figure2 img {
  width: 25vw;
}

/* Lights------------------------------- */

.ray {
  clip-path: polygon(0% 45%, 100% 0%, 100% 100%, 0% 55%);
  transition: 4s;
  transform: translateY(-50%) translateX(-50%) rotate(var(--angle))
    translateY(50%) translateX(50%) translateY(-50%);
  position: absolute;
  top: -30px;
  left: 50%;
  width: 500px;
  height: 100px;
  background: linear-gradient(
    0.25turn,
    rgba(158, 158, 114, 0.7),
    rgba(255, 255, 100, 0)
  );
}

.light1 {
  animation-duration: 10s;
  animation-name: wave;
  animation-iteration-count: infinite;
}

.light2 {
  animation-duration: 7s;
  animation-name: wave;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {
    --angle: 90deg;
  }

  50% {
    --angle: 110deg;
  }
  100% {
    --angle: 60deg;
  }
}

/* Loader----------------- */
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: scale(0.4);
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .bg-image {
    background-image: url(./img/1.jpg);
  }

  .info h1 {
    font-size: 35px;
  }
  img {
    display: none;
  }
}

*::-webkit-scrollbar {
  display: none !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: -moz-scrollbars-none;
}
