@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  width: 100%;
  height: auto;
  font-family: "Urbanist";
}
a {
  text-decoration: none;
}
main {
  width: 100%;
  min-height: 100vh;
  background-color: var(--secondary-color);
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
main:before {
  content: "";
  background-image: url(../images/bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.46;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
}

header,
.FormMain {
  position: relative;
  z-index: 3;
}

header {
  --headerHeight: 125px;
  width: 100%;
  min-height: var(--headerHeight);
  padding: 20px var(--headerHeight) 20px var(--headerHeight);
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;

  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.highlight {
  color: var(--primary-color) !important;
}
.highlight a {
  color: var(--primary-color) !important;
}
header .number {
  font-size: 22px;
  color: var(--text-color);
  font-weight: bold;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 52px;
  color: rgb(255, 254, 255);
  font-weight: 900;
}
.logo img {
  margin-right: 5px;
}
.contacts {
  display: flex;
  align-items: center;
  gap: 40px;
}
.socialMedia {
  gap: 18px;
  margin-bottom: 0;
}
.socialMedia li a {
  color: var(--primary-color);
  font-size: 23px;
}
.language {
  font-size: 22px;
  color: var(--text-color);
  font-weight: bold;
}

.language a {
  color: var(--text-color);
}
.form-Btn {
  width: max-content;
  height: 60px;
  padding: 0 30px;
  background-color: var(--secondary-color);
  font-size: 20px;
  color: var(--text-color);
  font-weight: 800;
  text-transform: uppercase;
  border: solid 1px var(--primary-color);
}
.formStyle {
  position: relative;
}
.formStyle::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: -10px;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.formStyle:hover:before {
  top: 0;
  left: 0;
}

.FormMain {
  flex: 1;
  display: grid;
  align-content: center;
  padding: 40px 0;
}
.formContent p {
  font-size: 25px;
  color: var(--text-color);
  font-weight: bold;
  text-transform: uppercase;
}
.formContent h1 {
  font-size: 70px;
  line-height: 1.15;
  color: var(--text-color);
  font-weight: 900;
}
#step {
  width: 100%;
  padding: 50px 40px;
  height: auto;
  border: solid 1px var(--primary-color);
  background-color: rgb(47, 57, 48);
}
.formHeading {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 40px;
  text-transform: capitalize;
}
.formHeading p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;

  margin-bottom: 4px !important;
}
.formHeading h2 {
  font-size: 35px;
  color: var(--text-color);
  font-weight: 900;
}
.inputField {
  width: 100%;
  border: solid 1px var(--primary-color);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 15px;
  z-index: 4;

  margin-bottom: 20px;
  background-color: rgb(47, 57, 48);
}
.inputField,
form .form-Btn {
  position: relative;
  transform-style: preserve-3d;
}
.inputField .formStyle,
form .form-Btn .formStyle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: -10px;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  transform: translateZ(-1px);
}
.inputField .formStyle::before,
form .form-Btn .formStyle:before {
  z-index: inherit;
  display: none;
}
.inputField label,
.inputField select {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
.inputField label {
  padding-right: 15px;
}

.inputField:focus-within .formStyle,
form .form-Btn:hover .formStyle {
  outline: none;
  top: 0;
  left: 0;
}
.inputField::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  border-radius: 50%;
  background-color: rgb(24, 31, 25);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  pointer-events: none;
  color: var(--text-color);
  display: grid;
  place-content: center;
  color: var(--text-color);
  cursor: pointer;
  
  display:none;
}
.inputField select {
  -webkit-appearance: none;
  flex: 1;
  text-align: end;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding-right: 0px;
}
.inputField input {
  background-color: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color:#aaa;
  color: var(--text-color);
  cursor: pointer;
  padding-right: 0px; 
  width:100%; 
}
::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.inputField select option {
  background-color: rgb(24, 31, 25);
}
.inputField select:focus,
.inputField input:focus {
  outline: none;
}

/* search results */

.pageName,
.results,
.newletter {
  position: relative;
  z-index: 3;
}

.pageName {
  width: 100%;
  height: 520px;
  display: grid;
  place-content: center;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
}
.pageName:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.47;
}
.pageName h1 {
  font-size: 55px;
  font-weight: 900;
  color: var(--text-color);
  position: relative;
  z-index: 3;
}
.results {
  width: 100%;
  min-height: 100vh;
  background-color: var(--text-color);
  padding: 90px 0 90px 0;
  position: relative;
}
#stepSearch {
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 40px;
}
#stepSearch .inputField {
  border-color: rgb(26, 26, 26);
  background-color: var(--text-color);
}
#stepSearch .inputField label,
#stepSearch .inputField select {
  color: rgb(57, 57, 57);
}
#stepSearch .inputField::after {
  background-color: rgb(140, 140, 140);
}
#stepSearch .form-Btn {
  background-color: rgb(191, 166, 129) !important;
  border-color: transparent;
}
#stepSearch .inputField select option {
  background-color: var(--text-color);
}

.searchlist img {
  width: 100%;
}

.searchlistDetail h3 {
  font-size: 35;
  color: rgb(0, 0, 0);
  font-weight: 500;
}
.price {
  font-size: 27px;
  color: var(--primary-color);
  font-weight: 900;
  margin-bottom: 5px;
}
.about {
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-bottom: 5px;
}
.listDesc {
  font-size: 16px;
  color: rgb(127, 127, 127);
  line-height: 1.5;
  margin-bottom: 5px;
  width: 80%;
}
.searchlistDetail .form-Btn {
  padding: 0 25px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 30px;
}

.newletter {
  width: 100%;
  height: 420px;
  padding-top: 30px;
  background-image: url(../images/search/footerBG.jpg);
  background-size: 100% 100%;
  display: grid;
  align-content: center;
}
.newletterForm h3 {
  font-size: 45px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 20px;
}
.emailField {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: 0;
  border-bottom: solid 1px var(--text-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.emailField:focus-within {
  border-color: var(--primary-color);
}
.emailField input {
  flex: 1;
  height: 100%;
  background-color: inherit;
  border: 0;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 300;
}
.emailField input:focus {
  outline: none;
}
.submit {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  height: 100%;
  background: transparent;
  border: 0;
}
.terms {
  display: flex;
  align-items: center;
  gap: 20px;
}
.terms input {
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  width: 13px;
  height: 13px;
}

.terms input:checked {
  background-color: var(--secondary-color);
}
.terms label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}
