body {
	font-size: 16px;
	background-color: rgb(255, 255, 255);
	font-family: 'Noto Sans', sans-serif;
}
a {
	outline: none;
	text-decoration: none;
	color: white;
}
/* a:link {}
a:visited {}
a:focus {}
a:hover {}
a:active {} */

.container {
	width: 1100px;
	margin: 0 auto;
	/* padding: 0 15px; */
}

.header {
	padding: 10px;
	background-color: rgb(245, 245, 245);
	border-top: 4px solid black;
	border-bottom: 1px solid black;
}
.logo_link {
	font-size: 2em;
	color: #62a300;
	transition: .5s cubic-bezier(0.23, 1, 0.320, 1);
}
.logo_link:hover {
	color: #91dd1f;
	letter-spacing: 2px;
}


.top_title {
	padding: 20px 20px;
}
.title {
	text-align: center;
	font-size: 1.25em;
	line-height: 1.25em;
}

.offers {
	margin-top: 20px;
}

.flex_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


.offer_box {
	margin: 10px;
	background-color: rgb(235, 240, 240);
	border: 1px solid rgb(233, 233, 233);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 21%;
	height: auto;
	padding: 10px;
	border-radius: 4px;
	transition: 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.offer_box:hover {
	border: 1px solid darkcyan;
}

.offer_promo {
	display: flex;
	justify-content: center;
	color: rgb(211, 56, 29);
	font-weight: bold;
	padding: 10px 0;
	border-top: 3px double black;
	border-bottom: 3px double black;
	margin-bottom: 10px;
	text-align: center;
}

.offer_logo {
	display: flex;
	max-width: 100%;
}

.offer_image {
	max-width: 100%;
	max-height: 50px;
	display: block;
	margin: 0 auto;
}
.offer_terms {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-size: 1.25em;
	margin-top: 10px;
	color: black;
}

.offer_terms span {
	font-weight: bold;
	color: rgb(211, 56, 29);
}

.offer_terms_item {
	padding: 5px 0;
}


.offer_buttons {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.offer_button_goto {
	margin: 0 10%;
	padding: 10px;
	margin-top: 10px;
	border-radius: 4px;
	color: white;
	background-color: #62a300;
}

.offer_button_goto:hover {
	background-color: #91dd1f;
}

.footer {
	margin-top: 20px;
	padding: 10px;
	background-color: rgb(245, 245, 245);
	border-bottom: 4px solid black;
	border-top: 1px solid black;
}

.footer_block {
	display: flex;
	justify-content: space-between;
	margin: 10px;
}

.footer_left {
	width: 30%;
}

.footer_right {
	width: 70%;
}

.footer_right .terms p a {
	color: rgba(0, 0, 0, 0.411);
}

.footer_right .terms p a:hover {
	color: #91dd1f;
	text-decoration: underline;
}


.footer_copy {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin: 10px;
}

.footer_copy_link a {
	text-decoration: none;
	color: inherit;
}

.footer_copy_link a:hover {
	color: #91dd1f;
	text-decoration: underline;
}

.gift {
	bottom: 20px;
	right: 20px;
	background-image: url(../img/gift1.png);
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	width: 75px;
	height: 75px;
	position: fixed;
	z-index: 9999;
	overflow: hidden;
	animation: rotation 4s infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg)
	}

	25% {
		transform: rotate(25deg)
	}

	50% {
		transform: rotate(-25deg)
	}

	100% {
		transform: rotate(0deg)
	}

}