@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@500;700&display=swap");

* {
  box-sizing: border-box;
  padding: 0%;
  margin: 0;
  /* background: rgb(0 100 0/ 0.1); */
}

:root {
  --nav: #ffffff;
  --primary-color: #3498db;
  --secondary_color: white;
  --button: #041624;
  --black: #000000;
  --red: #dd1c23;
  --lightgrey: #f0f2f5;
}

.videoplay{
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

body {
  font-family: "Open Sans", sans-serif;
  height: min-content;
}

.nav_area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--nav);
  border-bottom: 2px solid #dd1c23;
}

.logo_img {
  width: 120px;
  padding: 1rem 0 1em 0;
  margin-left: 2rem;
}

.hero_bar {
  background: url(/img/lease.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_bar .container {
  /* box-shadow: 1px 1px 30px 10px grey; */
  backdrop-filter: blur(5px);
  line-height: 3;
  width: 80%;
}

.form_box {
  margin-bottom: 0;
  padding: 1rem;
}

.form_in:focus {
  background: var(--nav);
  border: var(--nav);
}

.button {
  background-color: var(--button);
  border: none;
  cursor: pointer;
}

.customer_name {
  color: var(--secondary_color);
  font-size: 2rem;
  text-transform: capitalize;
}

.footer .container {
  background: var(--button);
}

.f_container {
  display: grid;
  grid-template: repeat(2, 100px) / repeat(2, 1fr);
  /* justify-items: center; */
  gap: 70px 10px;
  justify-content: center;
  text-align: start;
  padding-top: 2rem;
}

.resident .title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 1rem;
  text-transform: capitalize;
  color: var(--nav);
}

.subs {
  font-size: 12px;
  margin: 0;
  padding: 3px;
  color: var(--nav);
  text-transform: capitalize;
}

.copyright {
  padding-top: 20px;
  font-size: 12px;
  color: var(--nav);
  margin-bottom: 0;
}

.form_other::placeholder {
  display: hidden;
  color: red;
  letter-spacing: 1.5px;
}

/* displaypage */
.content {
  padding-top: 2rem;
}

.content .container {
  position: relative; /* Position the image container (needed to position the left and right arrows) */
  padding: 0;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background: var(--button);
  justify-content: center;
}

/* Position the "next button" to the right */
.next {
  right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.row_page {
  display: none;
}

.row_page::after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/* address  */
.address {
  padding: 2rem;
  line-height: 4px;
}
.address .title {
  font-size: 2rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
  max-width: 28rem;
  letter-spacing: 1px;
}

.address .amount {
  color: var(--black);
  text-transform: lowercase;
  font-weight: 100;
  font-size: smaller;
}
.money {
  font-size: 2rem;
  font-weight: 900;
}

.roomdetails {
  font-size: 15px;
  text-transform: capitalize;
  color: var(--black);
}

.contactcenter {
  display: flex;
  width: 100%;
  justify-content: start;
}

.btn_page {
  /* display: inline-flex; */
  justify-content: center;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 18px 12px;
  font-size: 12px;
  text-transform: capitalize;
  font-size: 1.5rem;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  /* flex-grow: 2; */
}

.contact_landlord {
  background: var(--red);
  color: var(--nav);
  line-height: 1.5;
  padding-top: 5px;
  padding-bottom: 5px;
}

.desc {
  margin-top: 3rem;
  border-top: 1px solid #c9cdcf;
}

.desc .title {
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 400;
  padding-top: 1rem;
  margin-bottom: 8px;
}

.desp {
  line-height: 2rem;
  font-size: 13px;
  color: var(--black);
}

.applicant {
  font-size: 15px;
  padding-left: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding-bottom: 10px;
  color: var(--button);
}

.instruction {
  font-size: 12px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 500;
  max-width: 300x;
  color: var(--black);
}

.fa-solid {
  color: var(--button);
}

.nametag {
  text-transform: uppercase;
  font-size: 18px;
}

.buttonguide {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.tablink {
  color: var(--nav);
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  font-size: 10px;
  text-align: center;
}

/* Style the tab content */
.tabcontent {
  color: white;
  display: none;
  border: 1px solid #e6e9e9;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 1rem;
  /* text-align: center; */
}

.tabcontent h1 {
  font-size: 15px;
  padding-left: 1rem;
  padding: 1rem;
}

.flexedobject {
  color: var(--black);
  text-transform: capitalize;
}

.garages {
  color: var(--black);
  text-transform: capitalize;
}

#London h1 {
  background: #818a91;
}
  

#Exterior {
  background-color: #f7f8f8;
}
#Paris {
  background-color: none;
}
#Tokyo {
  background-color: blue;
}
#Oslo {
  background-color: orange;
}

.buttontitle {
  padding: 0 1.5rem;
}

.buttontitle .title {
  text-transform: capitalize;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
  padding-right: 0;
}

iframe {
  width: 100%;
  height: 45rem;
}

.rendquot {
  margin: 3rem;
  background: var(--lightgrey);
  padding: 1rem;
}

.renderinst {
  font-size: 1.1rem;
  color: var(--black);
}

.class_forms {
  margin: 3rem;
}

.basic {
  font-size: 1.4rem;
  color: var(--black);
}

.moveinn {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--button);
  text-transform: capitalize;
}

.rentprice {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--button);
  text-transform: capitalize;
  border-top: 1px solid var(--black);
}

.class_forms button {
  width: 100%;
  margin-top: 1rem;
  background: var(--red);
  border-radius: 10px;
}

.app_instruct {
  margin: 4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.app_instruct .container {
  margin: 0rem;
  padding: 1rem;
  background: var(--lightgrey);
}

.inform {
  font-size: 13px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.form_bar {
  margin: 0rem 4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container {
  padding: 1rem;
  margin: 0rem;
}

.form_create .title {
  background-color: var(--button);
  font-size: 13px;
  padding: 5px;
  color: var(--lightgrey);
  text-transform: capitalize;
  border: 10px solid var(--lightgrey);
  border-left: none;
  border-right: none;
  letter-spacing: 1px;
}

.appform {
  font-size: 1.2rem;
  color: var(--button);
  text-transform: capitalize;
  font-weight: 200;
}

.app_forms .personal {
  font-size: 1.5rem;
  color: var(--nav);
}

.fa-phone {
  color: var(--nav);
  margin: 3px 3px;
}

.fa-asterisk {
  color: red;
  font-size: 1rem;
}

.sendbutton {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.sendbutton button {
  background: var(--red);
}

/* payment html  */
.appoval {
  margin: 0 2rem;
  margin-top: 1rem;
}

.appoval .container {
  background: var(--lightgrey);
}

.approvefinal {
  font-size: 10px;
  text-transform: capitalize;
  color: var(--black);
  margin: 0;
}

.paymentcontent {
  display: flex;
  justify-content: center;
}

.th {
  color: var(--nav);
  text-transform: capitalize;
  font-size: 10px;
  border-right: 1px solid var(--nav);
  padding-left: 10px;
}

.longtext {
  font-size: 10px;
  text-transform: capitalize;
}

.charge thead {
  background: var(--button);
  width: 100%;
}

.charge tbody {
  width: 100%;
}

.charge td {
  padding: 0;
  text-transform: capitalize;
  font-size: 10px;
  border-right: 1px solid var(--lightgrey);
  padding-left: 10px;
}

.charge {
  margin-bottom: 0;
}

/* cardpayment */

.cardpay {
  margin: 0 5rem;
}

.card .payhint {
  text-transform: capitalize;
  font-size: 12px;
  margin-bottom: 0;
}

form{
  margin-bottom: 0;
}

.card input{
  margin-bottom: 8px;
}

.cardpay .header {
  font-size: 1.2rem;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 1.4px;
  margin-bottom: 0;
}

.cardpay .cardtitle {
  font-size: 1.2rem;
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 1.4px;
  margin-bottom: 0;
  background: var(--red);
  color: var(--lightgrey);
}

.cards .title{
  font-size: larger;
  text-transform: uppercase;
  font-weight: 700;
}

.otherpay{
  font-size: 12px;
  text-transform: capitalize;
  border: 1px solid var(--red);
  width: 22rem;
  padding: 2px;
  box-shadow: 1px 1px 10px 1px var(--button);
}

.zellepay {
  cursor: pointer;
}

.imprt {
  background: var(--lightgrey);
  padding: 1rem;
  margin-bottom: 1rem;
}

.heder {
  font-size: 12px;
  text-transform: uppercase;
  color: #041624;
}

.imprt .instruct{
  font-size: 10px;
  text-transform: capitalize;
}

@media screen and (min-width: 640px) {
  .hero_bar {
    background: url(/img/lease.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .appoval {
    display: flex;
    justify-content: center;
    margin: 0;
    margin-top: 1rem;
  }

  .hero_bar .container {
    backdrop-filter: blur(5px);
    line-height: 3;
    width: 60%;
  }

  .form_box {
    margin-bottom: 0;
    padding: 1rem;
  }

  .form_in:focus {
    background: var(--nav);
    border: var(--nav);
  }

  button {
    background-color: var(--button);
    border: none;
    cursor: pointer;
  }

  .customer_name {
    color: var(--secondary_color);
    font-size: 2rem;
    text-transform: capitalize;
  }

  .resident .title {
    font-size: 10px;
    margin: 0;
    padding-bottom: 12px;
    text-transform: capitalize;
    color: var(--nav);
  }

  .subs {
    font-size: 12px;
    margin: 0;
    padding: 3px;
    color: var(--nav);
    text-transform: capitalize;
  }

  .footer {
    background: var(--button);
  }

  .main_form {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .formsection1 {
    width: 50%;
  }

  .formsection2 {
    width: 50%;
  }

  .cardholder{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .cardpay {
  margin: 0 5rem;
}
.card{
  box-shadow: 1px 1px 6px 3px var(--button);
  padding: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
}

@media screen and (min-width: 1280px) {
  .hero_bar .container {
    backdrop-filter: blur(10px);
    line-height: 3;
    width: 40%;
  }

  .cardpay {
  margin: 0 15rem;
}

  .appoval {
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .f_container {
    display: grid;
    grid-template: repeat(2, 100px) / repeat(4, 1fr);
    /* justify-items: center; */
    gap: 70px 10px;
    justify-content: center;
    text-align: start;
    padding-top: 2rem;
  }

  .content {
    margin-right: 20rem;
    margin-left: 20rem;
  }

  .content .container {
    width: inherit;
    margin: 1rem;
  }
  .address {
    margin-right: 20rem;
    margin-left: 20rem;
  }

  .row_page {
    display: none;
    width: 100%;
  }

  .belowhero {
    margin-right: 20rem;
    margin-left: 20rem;
  }

  .mySlides {
    display: none;
    width: 100%;
  }

  .mySlides img {
    width: 100%;
  }
}


