*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.banner{
  background: url( https://images.freekaamaal.com/post_images/1606817930.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 60vh;
  margin-bottom: 5vh;
}

.navig_bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 15px 50px;
}

.navig_bar a{
  text-decoration: none;
  color: white;
}

.menu{
  display: flex;
  gap: 20px;
}

.banner_container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: calc(60vh-60px);
}

.logo{
  width: 300px;
}

.banner_title{
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}

.banner_input_container{
  background-color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-items:center;
  gap: 10px;
  width: 50%;
  border-radius: 10px;
}
.location input , .search input{
  width: 70%;
  padding: 10px;
  border: none;
  outline: none;

}
.location{
  
  width: 35%;
  border-right:1px solid gray;
  color: rgb(255, 126, 139);
}

.search{
  width: 65%;
  color: gray;
}

.sec1{
  display: flex;
  justify-content: center;
  margin-bottom: 13vh;
    
}

.box{
  position: relative;
  width: 265px;
  margin: 3px 6px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 1px 2px gray;
  background-color: rgb(243,240,240);
  box-sizing: border-box;
    
}

.box img{
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgb(204,203,203);
  z-index: -1;
}

.white{
  position: absolute;
  bottom: 3px;
  align-items: center;
  border-radius: 0 0 15px 15px;
  background-color: white;
  width: 100%;
  height: 25%;
  z-index: 2;
}

.white p{
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1 rem;
  line-height: 3.2rem;
  color: rgb(56,56,56);
  letter-spacing: 0.7px;
    
}

.middle{
  margin: 60px 150px;
}

.middle h1{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 2.1rem;
  font-weight: lighter;
  text-align: center;
  margin: 50px;
  color: rgb(56,56,56);
}

.sec2{
  display: grid;
  justify-content: center;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  grid-template-columns: 340px 340px 340px;
  grid-template-rows: auto;
}

.box2{
  border: 1px solid rgb(235,233,233);
  box-shadow: 0 1px 3px rgb(226,223,223);
  width: 340px;
  height: 60px;
  overflow: hidden;
  border-radius: 10px;
}

.box2 div{
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}

.box2 div span{
  color: rgb(65,64,64);
  font-size: 1.2rem;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.get__the_app {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 251, 247);
  width: 100%;
  padding: 48px 48px;
}
  
.get__the_app .semiContainer {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
  
.get__the_app .semiContainer .left {
  flex: 2;
}
  
.get__the_app .semiContainer .left img {
  width: 100%;
  object-fit: cover;
}
  
.get__the_app .semiContainer .right {
  flex: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
  
.right h1 {
  font-weight: 500;
  font-size: 32px;
}
  
.right p {
  font-size: 14px;
}
  
.semiContainer .right .radio__buttons_container {
  display: flex;
  align-items: center;
  gap: 16px;
}
  
.semiContainer .right .radio__buttons_container div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.semiContainer .right .radio__buttons_container div input {
  height: 15px;
  width: 15px;
  accent-color: rgb(239, 79, 95);
}

.semiContainer .right .input_container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.input_container button,
.input_container input {
  padding: 10px 12px;
}

.input_container input {
  border: 1.5px solid gray;
  outline: none;
  border-radius: 5px;
  flex: auto;
}

.input_container button {
  border: none;
  background-color: rgb(239, 79, 95);
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.right .download__app_container {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.download__app_container h5 {
  font-weight: 400;
  color: gray;
}

.download__app_container div {
  display: flex;
  gap: 16px;
}

.download__app_container div img {
  width: 35%;
}

@media only screen and (max-width: 1300px) {
  .get__the_app .semiContainer .left {
    flex: 1;
  }

  .get__the_app .semiContainer .right {
    flex: 1;
  }

  .get__the_app .semiContainer {
    width: 80%;
  }
}

@media only screen and (max-width: 900px) {
  .get__the_app {
    padding: 2rem;
  }

  .get__the_app .semiContainer {
    width: 90%;
    
  }
}
@media only screen and (max-width: 700px) {
  .get__the_app {
    padding: 3rem 0;
  }
  .get__the_app .semiContainer {
      width: 80%;
      flex-direction: column;
  }
}
