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

.offer-name {
    text-align: center;
}
.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:#00c493;
    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:#00c493;
    }


.btn-buy{
    display:block;
    height:70px;
    width:100%;
    border:none;
    font-size:30px;
    background: #26d5ab;
    text-transform:uppercase;
    color:#ffffff;
    transition: all .3s;
    }
.btn-buy:hover{
    cursor: pointer;
    }
.discount {
    text-align: center;
}
.discount-title{
    width: 100%;
    font-weight: bold;
    font-size: 19px;
    line-height: 22px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    background: #44A30A;
    padding: 10px 0 7px;
}
.discount-price-container{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px 0;
    background: #FCFCFC;
}
.old-price,
.new-price{
    width: 50%;
    font-weight: bold;
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center; 
    margin: 0 auto;   
}
.old-price{        
    font-weight: normal;
    color: #423C36;
}
.new-price{
    color: #44A30A;
}
.price-title{
    max-width: 144px;
    margin: 0 auto;
    padding: 6px 0 0;    
    font-weight: normal;
    font-size: 14px;
    line-height: 1;
}
@media screen and ( min-width : 768px){
    .container{
            width:547px;
        }
    }

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