* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.btn-orange{
  padding: 0px 15px;
  border: none;
  display: block;
  width: 160px;
  font-weight: 600;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: #e54f09;
  margin-top: 30px;
}
.btn-black{
  border: 1px solid #000000;
  background-color: #ffffff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  padding: 10px 30px;
  cursor: pointer;
  text-decoration: none;
  color: #000000;
  margin: auto;
}
.text-orange{
  color: #ff8562;
  white-space: nowrap;
}
.text-input{
  color: rgb(26, 26, 26);
  border: 0px solid rgb(52, 57, 63);
  background-color: rgb(237, 237, 237);
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.33;
  width: calc(100% - 40px);
  outline: none;
  vertical-align: bottom;
  resize: none;
  font-weight: 400;
  padding: 0 20px;
}

/* main styles */
.stores-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  padding: 20px;
}
.stores-links img{
  width: 100%;
}
.stores-links a{
  margin-top: auto;
  margin-bottom: auto;
  max-width: 190px;
  width: 100%;
}
.preview{
  background-image: url("./images/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 0px;
}

.preview img:nth-child(1){
  max-width: 240px;
  width: 90%;
}
.preview img:nth-child(2){
  max-width: 438px;
  width: 100%;
}

.form{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 18px;
}
.form input{
  height: 60px;
}
.form textarea{
  height: 110px; padding-top: 10px;
}

@media screen and (min-width: 800px) {
  .preview img:nth-child(1){
    width: 270px;
  }
  .preview img:nth-child(2){
    width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .form {
    max-width: 760px;
  }
  .preview {
    gap: 100px;
  }
  .preview img:nth-child(1){
    width: 303px;
  }
  .preview img:nth-child(2){
    width: 700px;
  }
}
.form h1{
  line-height: 30px;
  font-size: 26px;
  text-align: center;
}
.form p{
  text-align: center;
  line-height: 22px;
  font-size: 14px;
  margin-top: 8px;
  color: #7a7a7a;
}
.form h2{
  font-size: 18px;
  padding-bottom: 8px;
  margin-top: 28px;
  margin-bottom: 0px;
}

footer{
  background-color: #171717;
  padding: 40px 0;
  margin-top: auto;
}
footer .links{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 44px;
  padding: 0 10px;
}
footer p, footer address{
  color: white;
  text-align: center;
  font-size: 14px;
  opacity: .7;
}

footer a{
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
/*  text pages */

.body-text{
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
}

.body-text form{
  display: flex;
  justify-content: center;
}

article{
  max-width: 640px;
  width: 100%;
  margin: 30px auto;
}

@media screen and (min-width: 1200px) {
  article {
    max-width: 760px;
  }
}

/* fonts */

p, address, li{
  font-weight: 300;
  line-height: 1.9;
  font-size: 16px;
}
p{
  margin-top: 16px;
}
ul{
  margin-left: 18px;
  margin-top: 8px;
}
.none-circle{
  list-style-type: none;
  margin-left: 0px;
}
address{
  font-style: normal;
}

h1, h2, h3, h4 {
  line-height: 1.55;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 5px;
}

h1{
  font-size: 28px;
  text-transform: uppercase;
}
h2{
  font-size: 24px;
}
h3{
  font-size: 20px;
}
h4{
  font-size: 18px;
}