@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

*{
	list-style: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
	outline: none;
}
a{
	list-style: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
	outline: none;
	color: inherit;
}
html{
	font-style: 10px;
}
body{
	width: 100%;
	height: 100vh;
	min-height: 650px;
	background: url(../img/Background.jpg) no-repeat;
	background-position:center;
	background-size: cover;
	font-style: 10px;
}
.wrapper{
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: rgba(255, 255, 255, 0.5);
	font-family: 'Open Sans', sans-serif;
	text-align: center;
}
.box_content{
	position: relative;
	width: 60%;
	max-width: 35rem;
	min-width: 30rem;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	-ms-align-items: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: -4rem;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 3%;
	padding: 2rem 3rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	    -webkit-box-sizing: border-box;
	            box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 20px 7px rgba(0, 0, 0, 0.3);
	        box-shadow: 0px 0px 20px 7px rgba(0, 0, 0, 0.3)
}

.box_content .logo{
    width: 50%;
    height: 72px;
	margin-bottom: 1rem;
	 cursor: pointer;
}
.box_content .logo img{
	width: 100%;
}
.box_content h1 {
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1;
	color: #645A53;
	font-size: 2rem;
}

.box_content h1 span{
	font-weight: 700;
}

.box_content .coupon-code{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 60%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 1.3rem;
	 cursor: pointer;
}

.box_content .coupon {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.3rem;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #da5d57;
	margin-bottom: 1rem;
}

.box_content .coupon span {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.box_content .coupon svg{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 22px;
	height: 22px;
	line-height: 1;
	margin-right: 0.3rem;
}
.price{
	font-weight: 800;
	font-size: 2rem;
	color: #645A53;
	line-height: 1;
	margin-bottom: .5rem;
}
.txt{
	font-weight: 700;
	font-size: 1rem;
	color: #645A53;
}
.code{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
	padding: .3rem 1rem;
	border: 5px dashed #da5d57; 
	color: #645A53;
}
.code p{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.5rem;
}
.btn{

	margin: 2rem auto;
    background: #2f8413;
    color: #fff;
    text-transform: uppercase;
    padding: 1rem 6rem;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 30px;
    border-style: none;
    -webkit-box-shadow: 0px 0px 40px 0px #80302d;
            box-shadow: 0px 0px 40px 0px #80302d;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}

.btn span {
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.btn svg{
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 14px;
	height: 14px;
	margin-left: 0.3rem;
}
.txt1{
	line-height: 2;
    font-size: 0.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    max-width: 464px;
}
.privacy{
	position: absolute;
	bottom: 0;	
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.5);
	padding: 0.7rem 0;
	font-size: .8rem;
	font-weight: 600;
}
.privacy span{
	text-transform: uppercase;
}
.privacy a{
	text-decoration: underline;
}

@media (max-width: 768px){
	.box_content{
		    min-width: 35rem;
	}
}

@media (max-width: 578px){
    .box_content{
		position: relative;
		width: 90%;
		max-width: 35rem;
		min-width: unset;
		padding: 1.5rem 1rem;
	}
	.box_content .logo {
		width: 65%;
		margin-bottom: .5rem;
	}
	.box_content h1 {
		color: #645A53;
		font-size: 1.4rem;
	}
	.box_content .coupon-code {
		margin-top: 1rem;
		width: 100%;
	}
	.code p {
		font-size: 1.2rem;
	}
	.box_content .coupon {
		font-size: 1rem;
		margin-bottom: .7rem;
		    width: 100%;
	}
	.btn {
		padding: .7rem 1rem;
		font-size: .8rem;
	}
	.txt1 {
		line-height: 1.5;
	}
	.privacy {
		padding: 0.7rem;
		font-size: .6rem;
		font-weight: 600;
	}
}


@media only screen and (max-width: 850px) and (orientation: landscape){
	.box_content {
		margin: 2rem auto 6rem;
		padding: 1.5rem 2rem;
	}
	.box_content .logo {
		width: 50%;
		margin-bottom: .5rem;
	}
	.box_content h1 {
		font-size: 1.8rem;
	}
	.txt1 {
		line-height: 1.5;
		margin-bottom: .5rem;
	}
}