@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700&family=Roboto:wght@100;300;400;500;700&display=swap');

*{

  box-sizing: border-box;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}
html{
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

:root{
  --white-color: hsl(0, 0%, 100%);
  --red-color: hsl(0, 99%, 41%);
  --black-color: hsl(0, 0%, 0%);
  --font-family: 'Roboto', sans-serif;
  --gray-color: rgb(95, 95, 95);
}
section{
  min-height: 100vh;
  padding: 2rem 6% 2rem;
  font-family: var(--font-family);
  color: var(--black-color);
}
.header{
  background-color: var(--white-color);
  box-shadow: 0px 5px 15px  rgba(14, 18, 26, 0.18);
  padding: 1rem 6%;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.header.sticky{
  border-bottom: 1px solid green;
}
.header a{
  text-decoration: none;
}
.logo{
  color: var(--red-color);
  text-decoration: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo img{
  margin-right: 5px;
}
#menu-icon{
  font-size: 3.6em;
  color: var(--font-first-color);
  display: none;
}

.header .topnav .topnav-a{
  text-decoration: none;
  color: var(--black-color);
  font-size: .9rem;
  padding-left: 2rem;
  font-family: var(--font-family);
  font-weight: 700;
  transition: .5s ease;
}
.header .topnav .topnav-a:hover{
  color: var(--red-color);
  transform: scale(1.02);
}

.header .topnav .btnOpen{
  background: var(--red-color);
  border-radius: .4rem;
  border: none; 
  padding: .6rem;
  margin-left: 1rem;
  font-weight: 700;
  color: var(--white-color);
  cursor: pointer;
}

.header .topnav .btnOpen:hover{
  background-color: var(--black-color);
  color: var(--white-color);
  transition: .5s ease-out;
}
.box{
  position: absolute;
  border-radius: 12px;
  width: 100%;
  padding-top: 2rem;
  padding-left: 5rem;
  display: none;
}
.form{
  display: flex;
  background-color: var(--white-color);
  box-shadow: 1px 1px 1px 80px rgba(70, 70, 70, 0.8);
  height: 35rem;
}
.form .phones{
  background-color: var(--red-color);
  width: 30rem;
  align-items: center;
}
.form .phones p{
  text-align: center;
  margin: 3rem;
  color: var(--white-color);
  font-size: 1rem;
}
.form .phones img{
  width: 32rem;
  margin-top: 1rem;
}
.form-body{
  width: 100%;
  margin-left: 7rem;
  background-color: var(--white-color);
  width: 45rem;
  padding-top: 2rem;
}
.form-body h1{
  padding: 1rem 0 .2rem 0;
}
.form-body p{
  font-size: .8rem;
  padding-bottom: 2rem;
}

.form-content .form-box .form-imput{
  width: 15rem;
  padding: .6rem;
  margin-bottom: 1rem;
  border: 1px solid var(--black-color);
  outline: none;
  border-radius: 5px;
  transition: .5s ease;
}
.form-content .form-box .form-imput:hover{
  border: 1px solid #06a04e;
  transform: scale(1.02);
}

.form-content .form-a{
  text-decoration: none;
  color: #007AFF;
  transition: .5s ease;
}
.form-content a:hover{
  color: #0267d3;
}
.form-content button a{
  text-decoration: none;
  color: var(--white-color);
}
.check{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--black-color);
  cursor: pointer;
}
.check ul{
  padding: 0 0 .5rem 0;
}
.check p{
  padding-right: 7rem;
}
.close{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 2rem  78rem;
  top: 0;
  right: 0;
  color: var(--black-color);
  font-size: 34px;
  cursor: pointer;
  transition: .8s;
}
.close:hover{
  color: var(--red-color);
  transform: scale(1.02);
}
.button{
  margin: 1rem 0 1rem 0;
}
.button .button-one{
  background-color: #007AFF;
  color: var(--white-color);
  border: none;
  width: 15rem;
  padding: .6rem;
  border-radius: 5px;
  transition: .5s ease;
  cursor: pointer;
}
.button .button-one:hover{
  background-color: #0267d3;
}
.button .button-two{
  border: 1px solid #007AFF;
  background: none;
  color: var(--black-color);
  width: 15rem;
  padding: .6rem;
  border-radius: 5px;
  transition: .5s ease;
  cursor: pointer;
}
.button .button-two:hover{
  background-color: #0267d3;
  color: var(--white-color);

}
.already{
  margin-top: 2rem;
  margin-left: 10rem;
}
.store-image {
  cursor: pointer;
}










.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 1rem;
  border-radius: 1rem;
  width: 23rem;
}
input[type="email"],
input[type="password"] {
  width: 20.8rem;
  padding: 1rem;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 8px 16px;
  background-color: #007AFF;
  color: #fff;
  border: none;
  display: inline;
  border-radius: 4px;
  cursor: pointer;
}

#loginErrorMessage{
  color: red;
  margin-bottom: 10px;
}
.close-button {
  float: right;
  background: none;
  color: black;
  font-size: 2rem;
}



















.home-content .travel{
  padding-top: 15rem;
  color: var(--white-color);
  font-size: 2.5rem;
}
.home-content .conf{
  font-size: 3.5rem;
  color: var(--red-color);
  line-height: 1;
}
.home-content p{
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--white-color);
}
.ul-bg{
  width: 100%;
  background-image:  url(images/Group\ 9047.png);
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
}
.available{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85vw;
  height: 50vh;
  background-color: var(--white-color);
  color: var(--black-color);
  margin-top: 4rem;
  margin-left: 1rem;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0px 24px 48px -12px rgba(14, 18, 26, 0.18);
}
.available .img-container{
  width: 55rem;
  margin-right: 8rem;
}
.available .img-container img{
  width: 100%;
  object-fit: contain;
}
.available form h3{
  font-size: 1rem;
  line-height: 2;
}
.available form .city{
  width: 25rem;
  padding: .6rem;
  margin: 0;
  border: .2rem solid var(--red-color);
  border-radius: .3rem;
  outline: none;
  cursor: pointer;
}
.available .city option{
  color: var(--black-color);
  font-size: .8rem;
  padding: 1rem;
}
.available .btnOpen1{
  background-color: var(--red-color);
  border-radius: .4rem;
  padding: .6rem;
  margin-left: 1rem;
  color: var(--white-color); 
  float: right;
  width: 10rem;
  border: none;
  margin-top: 1rem;
  margin-right: 1rem;
}
.box1{
  background: var(--white-color);
  position: absolute;
  margin-top: 25rem;
  margin-left: 8rem;
  padding-top: 5rem;
  display: none;
  min-height: 80vh; 
  box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.18);
}
.box1 .check-content{
  display: grid;
  grid-template-columns: repeat(3, 1fr);

}
.box1 .check-content .check-box {
  margin-right: 5rem;
  font-size: 1rem;
}
.check-body .check-text{
  color: var(--red-color);
  font-weight: 700;
  font-size: 1rem;
}
.box1 .check-content .check-box p{
  padding: 5px;
}
.box1 .check-content .check-box ul{
  border: 1px solid var(--gray-color);
  color: var(--gray-color);
  font-size: .8rem;
  border-radius: .5rem;
  padding: .6rem;
  width: 14.5rem;

}
.box1 .detail-content{
  display: grid;
  grid-template-columns: repeat(5, 1fr );
}
.box1 .detail-content .detail-box{
  padding: 2rem 0 0 0;
}
.box1 .detail-content .detail-box p{
  color: var(--gray-color);
  font-size: 1rem;  
}
.box1 .detail-content .detail-box .changeCar{
  background: none;
  border: none;
  outline: none;
  color: #007AFF;
  text-decoration: none;
  font-size: .9rem;
  margin: 0;
  padding: 0;
}

.box1 .detail-content .detail-box .thick{
  font-weight: 700;
  font-size: .9rem;
  margin: 0;
  padding-bottom: 5px;
  color: var(--black-color);
}
.box1 .detail-content .detail-box .others{
  font-size: .8rem;
  color: var(--black-color);
}
.box1 .btn-pay{
  float: right;
}
.box1  input{
  width: 10rem;
  outline: none;
  display: block;
  padding: .5rem;
  margin-top: 0.5rem;
  border: 1px solid var(--gray-color);
}
.box1  input:hover{
  border: 1px solid #007AFF;
  transition: .8s ease;
}
.box1 .btnOpen2{
  padding: .5rem;
  border: none;
  background: #007AFF;
  width: 10rem;
  color: var(--white-color);
  margin-right: 5rem;
  margin-top: 2rem;
}
.close1{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 1rem;
  top: 0;
  right: 0;
  color: var(--black-color);
  font-size: 34px;
  cursor: pointer;
  transition: .8s;
}
.close1:hover{
  color: var(--red-color);
  transform: scale(1.02);
}
.box2{
  background: var(--white-color);
  position: absolute;
  margin-top: 7rem;
  margin-left: 8rem;
  padding-top: 1rem;
  display: none;
  min-height: 40vh; 
  box-shadow: 3px 24px 48px -2px rgba(0, 0, 0, 0.18);
}
.payment-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.box2 .p{
  color: var(--red-color);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 0 0 0 ;
}
.payment-box{
  width: 17rem;
  margin-left: 5rem;
}
.payment-box p{
  padding: 0 0  0 1rem;
  font-size: .7rem;
  font-weight: 700;
}
.payment-box input{
  width: 17rem;
  padding-left: 2rem;
  outline: none;
  box-shadow: 0px 5px 20px 1px rgba(0, 0, 0, 0.18);
}
.payment-box .amount{
  margin: 1rem;
  font-size: 1rem;
  font-weight: 700;
}.payment-box button{
  padding: .5rem;
  border: none;
  background: #007AFF;
  width: 10rem;
  color: var(--white-color);
  margin-left: 7rem;
  margin-top: 2rem;
}
.close2{
  display: block;
  position: absolute;
  float: right;
  width: 40px;
  height: 40px;
  padding: 1rem;
  top: 0;
  right: 0;
  color: var(--black-color);
  font-size: 34px;
  cursor: pointer;
  transition: .8s;
}
.close2:hover{
  color: var(--red-color);
  transform: scale(1.5);
}
.box3{
  position: absolute;
  margin-top: 3rem;
  margin-left:20rem;
  padding-top: 1rem;
  border-radius: 50%;
  display: none;
  min-height: 25vh; 
}
.close3{
  display: block;
  position: absolute;
  float: right;
  width: 40px;
  height: 40px;
  padding: 1rem;
  top: 0;
  right: 0;
  color: var(--black-color);
  font-size: 34px;
  cursor: pointer;
  transition: .8s;
}
.close3:hover{
  color: var(--red-color);
}
.about{
  color: var(--black-color);
}
.about h2{
  font-size: 1.2rem;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: var(--red-color);
}
.about .reduce{
  width: 100%;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}
.about-contents{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
}
.about-box{
  background-color: var(--white-color);
  text-align: center;
  align-items: center;
  padding: 1rem;
  margin: 1rem;
  height: 40vh;
  border-radius: .4rem;
  box-shadow: 5px 4px 20px  rgb(203, 203, 203);
  transition: .3s ease-out;
}
.about-box:hover{
  transform: scale(1.02);
}
.about-box ul img{
  width: 5rem;
}
.about-box h3{
  font-size: 1rem;
  line-height: 2;
}
.about-box p{
  font-size: 1rem;
}
.fleet{
  background: rgba(255, 139, 139, 0.1);
  text-align: center;
}
.fleet h2{
  color: var(--red-color);
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  font-size: 1.2rem;
}

.fleet-contents{
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleet-box{
  transition: .5s ease;
}
.fleet-box:hover{
  transform: scale(1.02);
}
.fleet-box img{
  width: 10rem;
  padding: 1rem;
}

.fleet-box h3{
  color: var(--black-color);
  font-weight: 500;
  text-align: center;
  padding: 0;
  margin: 0;
}
.fleet-box p{
  font-size: .8rem;
  color: #867DDF;
}
.tools{
  background-color: var(--black-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(images/image.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.tool-content{
  display: flex;
  justify-content:space-around;
  align-items: center;
  text-align: center;
}
.tool-box{
  margin-top: 15rem;
  transition: .5s ease;
  cursor: pointer;
}
.tool-box:hover{
  transform: scale(1.02);
}
.tool-box h3{
  color: var(--red-color);
  padding-top: 1rem;
  font-size: 1.5rem;
}
.tool-box a{
  text-decoration: none;
  color: var(--white-color);
  font-size: .8rem;
}
.feedback{
  background: rgba(255, 139, 139, 0.1);
}
.feedback h3{
  color: var(--red-color);
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
  padding-top: 4rem;
  padding-bottom: 1rem;
}
.feedback h2{
  text-align: center;
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

.feedback-content{
  display: flex;
  justify-content: center;
  align-items: center;
}
.feedback-box{
  margin: .5rem;
  padding: 1rem;
  width: 30rem;
  height:25rem;
  background-color: var(--white-color);
  box-shadow: 5px 4px 20px  rgb(203, 203, 203);
  border-radius: 6px;
  justify-content: center;
  align-self: center;
  transition: .5s ease;
}
.feedback-box:hover{
  transform: scale(1.02);
}
.feedback-box .comment {
  display: flex;
  justify-content: flex-end;
  padding-bottom: .5rem;
}
.feedback-box p{
  font-size: 1rem;
}
.feedback-box .image{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.feedback-box #image{
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  gap: 1rem;
}
.convenience{
  background-image: url(images/Rectangle\ 3675.png);
  background-repeat: no-repeat;
  padding-top: 4rem;
  background-size: cover
}
.convenience-content{
  display: flex;
  justify-content: start;
  align-items: center;
}
.convenience-content .front{
  margin: 0;
  width: 50rem;
  padding-top: 5rem;
}

.convenience-content .front img{
  width: 100%;
}
.convenience-content .convenience-text{
  color: var(--white-color);
  text-align: center;
}
.convenience-content .convenience-text h1{
  font-size: 2rem;
  margin-right: 4rem;
}
.convenience-content .convenience-text h1 span{
  color: var(--red-color);
}
.convenience-content .convenience-text p{
  font-size: 1rem;
  padding: .3rem;
  margin-right: 4rem;
}
.convenience .store{
  float: right;
  margin-right: 5rem;
}
.footer{
  background-image: url(images/pngegg\ \(4\)\ 1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #9CA5BA;
  color: var(--white-color);
  padding: 2rem 6% 2rem;
  font-family: var(--font-family);
}
.footer-content{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 1rem
}
.footer-box{
  align-self: top;
}
.footer-box h3 span img{
  padding-right: 5px;
}
.footer-box p{
  display: flex;
  align-items: center;
  color: var(--black-color);
  font-size: .8rem;
  padding-top: 1rem;
}
.footer-box p a{
  text-decoration: none;
  color: var(--black-color);
}
.footer-box p img{
  padding: 5px;
}
.footer-box .input{
  background: var(--red-color);
  justify-content: space-between;
  margin-top: .5rem;
  padding: .3rem;
  width: 25rem;
  border-radius: 5rem;
}
.footer-box .input input{
  background: none;
  border: none;
  color: var(--white-color);
  outline: none;
  margin-left: 1rem;
}
.footer-box ::placeholder{
  color: var(--white-color);
}
.footer-box button{
  border: none;
  background-color: var(--white-color);
  width: 5rem;
  border-radius: 1rem;
  text-align: center;
  cursor: pointer;
}
.footer-box button i{
  font-size: 2rem;
  transition: .5s ease;
}
.footer-box button i:hover{
  transform: scale(1.1);
}

.footer-box p .links i{
  font-size: 2rem;
  padding: 1rem;
}
.copy-right{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .8rem;
  font-size: .7rem;
}
.copy-right span{
  color: var(--red-color);
}
.copy-right a{
  text-decoration: none;
  color: var(--white-color);
}
.copy-right i{
  font-size: 2rem;
  margin: 1rem;
  cursor: pointer;
}

/* ============= Responsivity @ media screens ============= */
@media (max-width:1200px){
  .available .img-container{
    width: 400px;
    margin-right: 1rem;
  }
  .home-content .travel{
    padding-top: 10rem;
    color: var(--white-color);
    font-size: 2.5rem;
  }
  .about-contents{
    grid-template-columns: repeat(2, 1fr);
  }
  section{
    min-height: 90vh;
    padding: 2rem 8% 2rem;
  }
  .fleet-box{
    margin: 1rem;
  }
  .fleet-box img{
    width: 6rem;
    padding:0;
  }
  .feedback-box p{
    font-size: .9rem;
  }
  .footer-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width:930px){
  
  .ul-bg{
    padding-top: 10rem;
  }
  .home-content .travel{
    display: inline;
    font-size: 2rem;
  }
  .home-content .conf{
    display: inline;
  }
  .fleet-box{
    margin: 0;
  }
  .fleet-box img{
    width: 8rem;
    padding: 1rem;
  }
  .available .img-container img{
    width: 20rem;
    /* border-radius: 50%; */
  }
  .available form h3{
    font-size: 1rem;
    line-height: 2;
  }
  .available form .city{
    width: 15rem;
    padding: .6rem;
    margin-right: 1rem;
    border: .2rem solid var(--red-color);
    border-radius: .3rem;
    outline: none;
    cursor: pointer;
  }
  .available form .city option{
    color: var(--black-color);
    font-size: .8rem;
    padding: 1rem;
  }
  .available form .btn{
    background-color: var(--red-color);
    border-radius: .4rem;
    padding: .6rem;
    margin-left: 1rem;
    color: var(--white-color); 
    float: right;
    width: 10rem;
    border: none;
    margin-top: 1rem;
    margin-right: 1rem;
  }
  .form-body{
    width: 20rem;
    margin-left: 5rem;
  }
}
@media(max-width:840px){
  .available{
    width: 82vw;
    margin: 0;
  }
  .available .img-container img{
    width: 15rem;
    border-radius: 0;
  }
  .available form h3{
    font-size: 1rem;
    line-height: 2;
  }
  .available form .city{
    width: 15rem;
    padding: .6rem;
    margin-right: 1rem;
    border: .2rem solid var(--red-color);
    border-radius: .3rem;
    outline: none;
    cursor: pointer;
  }
  .available form .city option{
    color: var(--black-color);
    font-size: .8rem;
    padding: 1rem;
  }
  .fleet-contents{
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
 
  .tool-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .tools{
    min-height: 50vh;
  }
  .tool-box{
    margin-top: 2rem;
  }
  .tool-box img{
    width: 4rem;
  }
  .feedback-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .feedback-next{
   display: none;
  }
  .feedback-box{
    margin: .5rem;
    padding: 1rem;
    width: 20rem;
    height:25rem;
  }
  .convenience{
    min-height: 60vh;
  }
  .footer-content{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .footer-box .input{
    width: 20rem;
  }
  .footer-box button{
    width: 4rem;
  }
  .footer-box button img{
    width: 2.5rem;
    transition: .5s ease;
  }
  .copy-right{
    font-size: .5rem;
  }
}
@media (max-width: 785px){
  .ul-bg{
    background-size: contain;
  }
  #menu-icon{
    display: block;
    font-size: 2em;
    color: var(--red-color);
    cursor: pointer;
  }
  .topnav{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--white-color);
    display: none;
  }
  .topnav.active{
    display: block;
  }
  .topnav .topnav-a{
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }
   .box{
    position: absolute;
    border-radius: 12px;
    width: 100%;
    margin: 0;
    padding: 4rem;
    display: none;
    
  }
  .form .phones{
    display: none;
  }
  .form-body{
    width: 1rem;
    background-color: var(--white-color);
    padding: 1.7rem;
    margin: 0;
  }
  
  
  .form-content .form-box .form-imput{
    width: 20rem;
    padding: .6rem;
    margin: 0 0 .5rem 0;
  }
  .check{
    display: grid;
    font-size: 1rem;
    margin-left: 2.5rem;
    margin-bottom: 0;
  }
  .check ul{
    padding: 0 0 .5rem 0;
  }
  .check p{
    padding-right: 7rem;
  }
  .close{
    color: var(--black-color);
    padding: .5rem;
  }
  .button .button-one{
    width: 20rem;
  }
  .button .button-two{
    width: 20rem;
    margin-top: 1rem;
  }
  .already{
    padding: 0;
    margin-left: 4rem;
  }
  .store-image {
    width: 1rem;
    margin: 0;
  }
  .available{
  overflow: hidden;
  margin-top: 4rem;
  margin-left: 1rem;
  border-radius: 1rem;
  padding-right: 25rem;
}
  .available form{
    min-width: 20vh;
  }
  .feedback-box{
    font-size: 80%;
    width: 18rem;
  }
}
@media(max-width:600px){
  .header{
    position: absolute;
  }
  .box{
    position: absolute;
    border-radius: 12px;
    width: 100%;
    margin: 0;
    padding: 1px;
    display: none;
    
  }
  .form{
    height: 50rem;
  }
  .form .phones{
    display: none;
  }
  .form-body{
    width: 1rem;
    background-color: var(--white-color);
    padding: 1.7rem;
    margin: 0;
  }
  
  
  .form-content .form-box .form-imput{
    width: 20rem;
    padding: .6rem;
    margin: 0 0 .5rem 0;
  }
  .check{
    display: grid;
    font-size: 1rem;
    margin-left: 2.5rem;
    margin-bottom: 0;
  }
  .check ul{
    padding: 0 0 .5rem 0;
  }
  .check p{
    padding-right: 7rem;
  }
  .close{
    color: var(--black-color);
    padding: .5rem 20rem;

  }
  .button .button-one{
    width: 20rem;
  }
  .button .button-two{
    width: 20rem;
    margin-top: 1rem;
  }
  .already{
    padding: 0;
    margin-left: 4rem;
  }
  .store-image {
    width: 1rem;
    margin: 0;
  }
  .ul-bg{
    background-size: cover;
  }
  .logo{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1rem;
  }
  .logo img{
    width: 2.5rem;
  }
  .available{
    display: block;
    text-align: center;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 80vh;
    margin: 0;
    padding: 1rem;
  }
  .available form h3{ 
    font-size: 1rem;
    line-height: 2;
  }
  .available form .city{
    width: 100%;
    padding: .6rem;
  }
  .available .img-container{
    width: 20rem;
  }
  .available .img-container img{
    margin: 0;
    padding: 0;
    width: 100%;
 }
  .form-body{
    width: 100%;
    margin: 0;
  }
 
  .box1{
    margin: 10rem 1rem 0 1rem; 
    padding-top: 3rem;
    display: none;
    text-align: left;
    width: 21.5rem;
  }
  .box1 .check-content{
    display: block;
  }
  .box1 .check-content .check-box ul{
    width: 18.3rem;
  
  }
  .box1 .detail-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .box1 .btnOpen2{
    width: 18.3rem;
    margin: 2rem 0 0 0;
  }
  .box2{
    margin-top: 7rem;
    margin: 7rem 1rem 0rem 0rem;
    padding-top: 1rem;
    display: none;
    min-height: 40vh; 
    box-shadow: 3px 24px 48px -2px rgba(0, 0, 0, 0.18);
  }
  .close1{
    float: none;
    padding: .5rem 19rem;
  }
  .close2{
    float: none;
    padding: .5rem 19rem;
    
  }
  .payment-content{
    display: block;
    gap: 0;
  }
  .payment-box{
    width: 17rem;
    margin-left: 1rem;
    margin-top: 1rem;
  }
  .payment-box p{
    padding: 0;
  }
  .payment-box button{
    width: 17rem;
    margin-left: 0;
  }
  .box3{
    margin-left:3rem;
  }

  .about-contents{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
  }
  .fleet h2{
    padding-bottom: 2rem;
  }
  
  .fleet-contents{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
  .fleet-box img{
    width: 8rem;
    padding: 1rem;
  }
  .tool-content{
    display: block;
  }
  .tool-box{
    margin-top: 2rem;
  }
  .tool-box img{
    width: 4rem;
  }
  .feedback-content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .feedback-next{
   display: none;
  }
  .feedback-box{
    margin-bottom: 1rem;
    padding: 1rem;
    width: 20rem;
  }
  .convenience{
    min-height: 60vh;
  }
  .convenience-content{
    display: block;
    margin-left: 4rem;
  
  }
  .convenience-content{
    margin-left: 4rem;
  }
  .convenience-content .front{
    display: none;
  }
  .footer-content{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .footer-box .input{
    width: 20rem;
  }
  .footer-box button{
    width: 4rem;
  }
  .footer-box button img{
    width: 2.5rem;
    transition: .5s ease;
  }
  .copy-right{
    font-size: .5rem;
  }
}