/** @format */

@import url("../css/fonts.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-Futuru);
}
/* start landing section */
main .landing {
  padding-bottom: 40px;
}
main .landing .heading h1 {
  font-family: var(--font-berlinBoldX);
  font-size: 48px;
  line-height: 87%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: start;
}
main .landing .heading h2 {
  text-align: start;
}
main .landing .heading p {
  color: rgba(96, 96, 96, 1);
  font-family: var(--font-Futuru);
  font-size: 16px;
  line-height: 153%;
  letter-spacing: 5%;
  margin-bottom: 40px;
  text-align: start;
}
main .landing .buttons {
  width: 100%;
}
main .landing .buttons .book,
main .landing .buttons .whatsapp {
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  text-decoration: underline;
  font-family: var(--font-Futuru);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1%;
  cursor: pointer;
}
main .landing .buttons .book:hover {
  background-color: #ffc9bf70;
}
main .landing .buttons .whatsapp {
  color: #ffffff;
  width: 100%;
  background-color: #64a22f;
  border: none;
  text-decoration: none;
}
main .landing .buttons .whatsapp:hover {
  background-color: #88cc4d;
  box-shadow: 0px 0px 20px 5px #94c06e;
}
main .landing .buttons .whatsapp:active {
  background-color: #306105;
  border: 1px solid #ffffff;
}
/* end landing section */
/* start form section */
main .form {
  padding: 40px 20px;
  background-color: rgba(34, 34, 34, 0.79);
  border-radius: 21px;
  margin-bottom: 115px;
}
main .form .heading {
  color: #ffffff;
}
main .form .heading h2 {
  text-align: start;
}
main .form .heading p {
  font-family: var(--font-Futuru);
  font-weight: 400;
  font-size: 16px;
  line-height: 153%;
  letter-spacing: 5%;
  text-align: start;
}
main .form form .field-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-bottom: 10px;
}
main .form form .field-group:last-of-type {
  padding-bottom: 20px;
}
main .form form .field-group label {
  color: #ffffff;
  font-family: var(--font-Futuru);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 7%;
  text-transform: capitalize;
}
main .form form .field-group input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(226, 225, 229, 1);
  border-radius: 5px;
  width: 100%;
  color: rgba(255, 255, 255, 1);
  height: 50px;
  padding-left: 15px;
}
main .form form .field-group input:focus {
  outline: none;
  border: 1px solid black;
}
main .form form .field-group span {
  margin-top: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 7%;
  color: var(--secondary-color);
}
/* error state on input */
main .form form .field-group input.error {
  border: 1px solid var(--secondary-color);
}
/* error state on label */
main .form form .field-group.error-active label {
  color: var(--secondary-color);
}
main .form form button {
  width: 100%;
  height: 60px;
  color: #ffffff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: 1%;
  text-transform: capitalize;
  cursor: pointer;
  margin-bottom: 15px;
}
main .form form button:hover {
  background-color: #cc2236;
  box-shadow: 0px 0px 20px 5px rgba(204, 34, 54, 0.5);
}
main .form form button:active {
  background-color: #931213;
  border: 1px solid #ffffff;
}
main .form form p {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: capitalize;
}
.iti__selected-flag {
  color: #ffffff;
}
/* end form section */
/* media query */
/* for mobile & smaller Screens */
@media (max-width: 480px) {
}
/* for tablet & medium Screens */
@media (481px <= width <= 768px) {
  /* for any ipad or tablet */
}
/* for Laptops/Small Desktops Screens */
@media (769px <= width <= 1024px) {
  /* for ipad pro and laptops */
  .flex-div {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 120px;
    align-items: center;
    justify-content: center;
  }
  .flex-div section.form {
    width: 100%;
    align-self: center;
    justify-self: center;
  }
}
/* for Desktops/Large Screens */
@media (min-width: 1025px) {
  .flex-div {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 100px;
    margin-top: 120px;
    align-items: center;
    justify-content: center;
    margin-bottom: 140px;
  }
  .flex-div section.form {
    padding: 100px;
    width: 100%;
    align-self: center;
    justify-self: center;
    margin-bottom: 0;
  }
}
/* for Desktops/Large Screens */
/* @media (1025px <= width <= 1200px) {
} */
/* for TVs/Wide Monitors */
/* @media (min-width: 1201px) {
} */
/* end footer */
