*{
  box-sizing:border-box;
  }
body{
  font-size:16px;
  color:#333333;
  font-family: 'Roboto', sans-serif;
 
  }

.offer-name {
  text-align: center;
  color: #3261ca ;
}
.offer-image img {
  display: block;
  width: 350px;
  margin: 40px auto 0;
}
.form__wrapp{
  display:flex;
  flex-wrap:wrap;
  }
.container{
  width:100%;
  margin:auto;
  padding:45px 15px 0px 15px;
  
  }
.form-group{
  width:100%;
  margin-top:19px;
  }
.form-control{
  display:block;
  padding-left:15px;
  width:100%;
  height:50px;
  margin-top:3px;
  border:1px solid #000000;
  font-size:18px;
  transition: all .3s;
  }
.form-control:focus,.form-control:hover{
  border-color:linear-gradient(20deg, #24263e 0%, #d91f1f 100%) ;
  outline:none;
  }

.form-control::placeholder{
   color:#333333;
  }
.country_select {
  position:relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  }

.select{
  position:relative;
  }

.label{
  font-weight:300;
  }
.country_select > option:hover {
      background-color:linear-gradient(20deg, #24263e 0%, #d91f1f 100%) ;
  }


.btn-buy{
  display:block;
  height:70px;
  width:100%;
  border:none;
  border-radius: 4px;
  font-size:30px;
  color: #fff;
  text-transform:uppercase;
  background: linear-gradient(90deg, #2C5AC1 0%, #548CFF 100%);
  transition: all .3s;
  margin-bottom: 40px;
  }
.btn-buy:hover{
  cursor: pointer;
  }

@media screen and ( min-width : 768px){
  .container{
          width:547px;
      }
  }

@media screen and ( max-width: 425px) {
  .offer-image img {
      width: 270px;
  }
  .container {
      padding-top: 20px;
  }
}

.note {
  font-size: 12px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  color: #717171;
  letter-spacing: 0.5px;
  opacity: .5;
}

.note a {
  color: #000000;
}