/* USER VARIABLES SECTION */

:root {
	--accent: #fa9307;
	--text: #000;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: montserrat-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Montserrat-Light.woff2") format("woff2"); font-family: "montserrat-st"; font-weight: 300; font-style: normal; }
@font-face { src: url("../fonts/Montserrat-Regular.woff2") format("woff2"); font-family: "montserrat-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/Montserrat-Medium.woff2") format("woff2"); font-family: "montserrat-st"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/Montserrat-Bold.woff2") format("woff2"); font-family: "montserrat-st"; font-weight: 700; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent) }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	background-color: #000;
}
body:after {
	content: '';
	background-color: rgba(0,0,0,0.7);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}
body:before {
	content: '';
	background-image: url(../images/background.jpg);
	left: 0;
	right: 0;
	width: 100%;
	min-height: 100%;
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}
/* USER STYLES */

.img-responsive {
	max-width: 100%;
}

.button {
	display: block;
	border:none;
	max-width: 280px;
	margin: 0 auto 15px;
	align-items: center;
	padding: 20px 45px;		
	background: var(--accent);
	border-radius: 10px;
	color: #000;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	transition: all .25s ease;
	letter-spacing: 0.3em;
}
.button:hover {
	filter: brightness(80%);
	color: #000;
	text-decoration: none;
}
.button.tg {
	background: #2BA2DE;
}
.button.fb {
	background: #1976D2;
}
.button.wa {
	background: #25D366;
}
.button img {
	margin-right: 15px;
}

/** Section offer **/

.section-offer {
	padding: 100px 0;
	color: #fff;
	text-align: center;
}
.section-offer__button {
	position: relative;
}

.section-logo img {
	max-width: 100px;
	border-radius: 30%;
	margin-bottom: 15px;
}

.section-offer__title {
	font-size: 18px;
	letter-spacing: 0.1em;
	color: #fff;
	display: inline-block;
	border-radius: 8px;
	padding: 5px 15px;
	margin-bottom: 15px;
	background-color: var(--accent);
}
.section-offer__heading {
	font-weight: 700;
	font-size: 20px;
	line-height: 25px;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

.section-offer__trigger {
	margin-top: 25px;
}
.section-offer__trigger-item {
	position: relative;
	margin-bottom: 15px;
	font-size: 16px;
}

.section-offer__button {
	margin: 30px 0 0;
}