.spacing {
  margin-bottom: 80px;
}
.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  margin-bottom: 50px;
  margin-top: 25px;
}

.text {
  font-weight: lighter;
  color: white;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 20px;
  text-align: right;
  width: 400px;
  min-width: 300px;
  max-width: 420px;
}
.text2 {
  font-weight: lighter;
  color: white;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 20px;
  text-align: left;
  width: 400px;
  min-width: 300px;
  max-width: 420px;
}
.image {
  height: 350px;
  width: 400px;
  float: right;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.2s;
}
.image:hover {
  transform: scale(1.03);
}
.image2 {
  height: 350px;
  width: 400px;
  float: left;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.2s;
}
.image2:hover {
  transform: scale(1.03);
}
.image-phone {
  display: none;
  height: 350px;
  width: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.2s;
  
}
@media (max-width: 700px){
  .image {
    height: 250px;
    width: 300px;
    float: none;
  }
  .image2 {
    display: none;
  }
  .text,
  .text2 {
    font-size: 18px;
    width: 100px;
    text-align: center;
  }
  .container {
    margin-bottom: 20px;
    display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  }
  .image-phone {
    height: 250px;
    width: 300px;
    float: none;
    display: flex;
  }
}
