/*Arcticmodal*/
.arcticmodal-container,.arcticmodal-overlay{position:fixed;left:0;top:0;right:0;bottom:0;z-index:1000}
.arcticmodal-container{overflow:auto;margin:0;padding:0;border:0;border-collapse:collapse}
.arcticmodal-container_i{height:100%;margin:0 auto}
.arcticmodal-container_i2{padding:24px;margin:0;border:0;vertical-align:middle}
.arcticmodal-error{padding:20px;border-radius:10px;background:#000;color:#fff}
.arcticmodal-loading{width:80px;height:80px;border-radius:10px;background:#000 url(loading.gif) no-repeat 50% 50%}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.eot');
    src: url('../fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Medium.woff2') format('woff2'),
        url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.eot');
    src: url('../fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../fonts/Gilroy-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Extrabold.eot');
    src: url('../fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gilroy-Extrabold.woff2') format('woff2'),
        url('../fonts/Gilroy-Extrabold.woff') format('woff'),
        url('../fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

body {
	font-family: 'Gilroy', sans-serif;
	color: #fff;
	padding: 0;
	margin: 0;
	font-size: 24px;
	font-weight: 500;
}

.container {
	max-width: 1600px;
	margin: 0 auto;
}

.main {
	max-width: 1920px;
	margin: 0 auto;
}

div, p, form, input, a, span, button {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	        outline: none;
}

img {
	max-width: 100%;
}

p {
	margin: 0;
	font-weight: normal;
	line-height: 1.5em;
	color: black;
}

ul, li {
	display: block;
	padding: 0;
	margin: 0;
}

a, a:hover, a:active {
	text-decoration: none;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
}

a, button, input {
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
}

input, input:hover, input:focus, input:active,
button, button:hover, button:focus, button:active {
	outline: none;
}

h1 {
	font-size: 60px;
	font-weight: 800;
}


h1,h2,h3,h4,h5,h6 {
	padding: 0;
	margin: 0;
}


.btn {
	width: 300px;
	height: 71px;
	border-radius: 10px;
	background-color: #ba5300;
	background-image: linear-gradient(-46deg, #ffa200 0%, #fde73f 53%, #fea100 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;
	border: none;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	cursor: pointer;
	flex-shrink: 0;
	font-size: 24px;
	font-weight: 700;
}

.btn::before {
	margin-left: 60px;
	content: " ";
	width: 30px;
	height: 300px;
	background: rgba(255,255,255,0.8);
	position: absolute;
	-webkit-animation-delay: 0.05s;
	animation-delay: 0.05s;
	left: -100px;
	top: -150px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-animation: span-2 3s ease-in-out infinite;
	animation: span-2 3s ease-in-out infinite;
}

@-webkit-keyframes span-2 {
	0% {
		left: -30px;
	}
 
	30% {
		left: 110%;
	}
 
	100% {
		left: 110%;
	}
 }

@keyframes span-2 {
	0% {
		left: -30px;
	}
 
	30% {
		left: 110%;
	}
 
	100% {
		left: 110%;
	}
 }

.btn:hover, .btn:active, .btn:focus {
	-webkit-box-shadow: none;
	        box-shadow: none;
	        transition: 0.3s;
}


/* Header */

.header {
	background: url(../img/bg_header.jpg) no-repeat center top/cover;
	position: relative;
	padding-bottom: 109px;
	min-height: 100vh;
}

.header-nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: auto;
	padding-top: 52px;
}

.header-nav__info {
	font-size: 20px;
	display: flex;
	align-items: flex-start;
	line-height: 26px;
	font-weight: 700;
	margin-top: 10px;
	height: auto;
}

.header-nav__contacts a {
	display: flex;
	width: auto;
	align-items: center;
	color: #fff;
	font-weight: 700;
	padding: 5px 13px;
	background: rgba(0,0,0,0.6);
	justify-content: flex-end;
	border-radius: 5px;
	font-size: 26px;
}

.header-nav__contacts a:first-child {
	margin-bottom: 8px;
}

.header-nav__contacts a:last-child {
	max-width: 140%;
	margin-left: auto;
}

.header-nav__contacts img {
	margin-right: 12px;
	display: block;
	background: #000;
	padding: 7px 10px;
	border-radius: 5px;
}

.header-nav__info img {
	margin-right: 13px;
	position: relative;
	top: -8px;
}

.offer {
	margin-top: 28px;
	position: relative;
}

.offer__price {
	width: 212px;
	height: 52px;
	box-shadow: 0 0 19px 2px #000000;
	position: absolute;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	background: #ffe628;
	border-radius: 5px;
	color: #000;
	font-weight: 700;
}

.offer__price_mob {
	display: none;
}

.offer__price span {
	font-size: 34px;
	display: block;
	margin: 0 5px;
}

.offer__wrap {
	position: relative;
	max-width: 573px;
}

.offer__volume {
	font-size: 42px;
	font-weight: 800;
	color: #000000;
	background: url(../img/price.png) no-repeat center top;
	width: 196px;
	height: 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 62%;
	right: -50px;
	border-radius: 10px;
	z-index: 10;
	padding-top: 10px;
	padding-left: 20px;
}

.offer__volume span {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.69px;
	display: block;
}

.offer__title {
	margin-bottom: 39px;
	letter-spacing: 1.32px;
	text-transform: uppercase;
	color: #fff;
	line-height: 100px;
	text-shadow: 0 13px 7px rgba(0, 0, 0, 0.08);
	color: #fefefe;
}

.offer__title span {
	display: inline-block;
	background: #000;
	margin-bottom: 8px;
	border-radius: 5px;
	padding: 0 38px;
}

.offer__title span:first-child {
	display: block;
	font-size: 36px;
	background: #000;
	border-radius: 3px;
	background-color: #ffe100;
	line-height: 54px;
	padding: 0 27px;
	letter-spacing: 0.83px;
	text-shadow: 0 2px 49px rgba(255, 255, 255, 0.19);
	color: #000;
	max-width: 190px;
	margin-bottom: 16px;
}

.offer__list li {
	letter-spacing: 0.6px;
	line-height: 50px;
	position: relative;
	margin-left: 80px;
	color: black;
}

.offer__list li:before {
	position: absolute;
	content: "";
	width: 23px;
	height: 17px;
	background: url(../img/arrows.png) no-repeat center;
	left: -42px;
	top: 16px;
}

.offer-btn {
	margin: 1% auto 0 auto;
}

a.offer-btn {
	display: none;
}


.call-form {
	width: 471px;
	box-shadow: 0 0 6px 1px rgba(13, 13, 13, 0.51);
	border-radius: 30px;
	padding: 70px 40px 60px 40px;
	position: relative;
	background: rgba(0,0,0,0.95);
	color: #fff;
}

.call-form__title {
	font-size: 36px;
	margin-bottom: 25px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.call-form__text {	
	margin-bottom: 28px;
	text-align: center;
	font-size: 26px;
	color: white;
}

.call-form__contacts span {
	display: block;
	font-size: 26px;
	text-align: center;
	margin-bottom: 15px;
	font-weight: bold;
}

.call-form__contacts span img {
	margin-right: 10px;
}

.box-modal_close {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 30px;
	top: 30px;
	line-height: 15px;
	cursor: pointer;
	width: 30px;
	height: 30px;
}

.box-modal_close:hover span,
.box-modal_close:hover:before {
	background-color: #ffe100;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.box-modal_close:before {
	position: absolute;
	content: "";
	height: 3px;
	width: 20px;
	background: #ffe100;
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg) translate(2px,2px);        
}

.box-modal_close::before {
	transform: rotate(-45deg) translate(0px,0px);  
}

.box-modal_close span {
	cursor: pointer;
	height: 3px;
	width: 20px;
	background-color: #ffe100;
	display: block;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	        position: relative;
}

.box-modal_close span {
	height: 3px;
	border-radius: 3px;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    -webkit-animation: fade .6s;
    animation: fade .6s;
    overflow: auto;
}

/*-----Media Queries-----*/

@media screen and (max-width: 1600px) {
	.container {
		max-width: 1300px;
	}

	.header {
		padding-bottom: 70px;
	}
	
}

/*------1201px  -  1366px-------*/

@media screen and (max-width: 1365px) {

	.container {
		max-width: 1170px;
	}

	.header {
		background-position-x: 67%;
	}

	.header-nav__contacts a {
		font-size: 24px;
	}

	.header-nav__contacts a:last-child {
		max-width: 140%;
	}

	.offer__title {
		font-size: 50px;
		line-height: 75px;
	}

	.offer__title span:first-child {
		font-size: 32px;
		line-height: 48px;
		padding: 0px 20px;
		max-width: 170px;
		text-align: center;
	}

	.offer__price {
		width: 209px;
		height: 48px;
		font-size: 24px;
	}

	.offer__price span {
		font-size: 30px;
		display: block;
		margin: 0 5px;
	}

	.offer__volume {
		width: 150px;
		height: 80px;
		top: 64%;
		right: 50px;
		background-size: 160px;
		justify-content: flex-start;
		font-size: 38px;
		padding-top: 5px;
		padding-left: 20px;
	}

	.offer__volume sup {
		font-weight: 500;
	}

	.offer__volume span {
		font-size: 15px;
	}
}

/*------992px  -  1200px-------*/

@media screen and (max-width: 1200px) {
	
	.container {
		max-width: 960px;
	}
}

/*------769px  -  991px-------*/

@media screen and (max-width: 991.9px) {

	.container {
		max-width: 760px;
	}

	.header {
		background-position-x: 55%;
		min-height: 100vh;
	}

	.header-nav {
		padding-top: 30px;
	}

	.header-nav__info img {
		margin-right: 10px;
		position: relative;
		top: -3px;
		width: 20px;
	}

	.header-nav__contacts a {
		font-size: 22px;
	}

	.header-nav__contacts a:last-child {
		max-width: 140%;
	}

	.header-nav__contacts img {
		max-width: 36px;
		padding: 8px 9px;
		border-radius: 5px;
	}

	.offer {
		margin-top: 120px;
	}

	.offer__title {
		font-size: 46px;
		line-height: 65px;
		margin-bottom: 45px;
	}

	.offer__title span {
		padding: 0 20px;
	}

	.offer__title span:first-child {
		font-size: 28px;
		line-height: 42px;
		max-width: 150px;
		margin-bottom: 10px;
	}

	.offer__price {
		width: 190px;
		height: 46px;
		font-size: 22px;
	}

	.offer__volume {
		top: 62%;
		right: 95px;
	}

	.offer__list li {
		letter-spacing: 0.6px;
		line-height: 40px;
		position: relative;
		font-size: 22px;
	}

	.offer__list li::before {
		left: -33px;
		top: 12px;
	}

	.btn {
		width: 265px;
		height: 65px;
		font-size: 22px;
	}

	.offer-btn {
		margin-top: 10%;
	}
	
}

/*------576px  -  768px-------*/

@media screen and (max-width: 767.9px) {

	.container {
		max-width: 95%;
	}

	.header {
		padding-bottom: 50px;
	}

	.header-nav__contacts a {
		font-size: 18px;
	}

	.header-nav__contacts a:last-child {
		max-width: 140%;
	}

	.header-nav__contacts img {
		margin-right: 9px;
	}

	.offer__title {
		font-size: 42px;
		line-height: 55px;
		margin-bottom: 35px;
	}

	.offer__volume {
		right: auto;
		left: 290px;
		font-size: 28px;
		width: 130px;
		height: 65px;
		background-size: 130px;
		padding-left: 15px;
	}

	.offer__volume span {
		font-size: 13px;
		font-weight: 700;
	}

	.offer__price {
		top: -100px;
	}

	.offer__price span {
		font-size: 28px;
	}

	.offer__list li {
		margin-left: 55px;
	}

	.offer__title span {
		padding: 0px 15px;
		margin-bottom: 5px;
	}

	.call-form {
		padding: 50px 20px 35px 20px;
	}

	.call-form__title {
		font-size: 32px;
		margin-bottom: 15px;
	}

	.call-form__text {
		margin-bottom: 20px;
		text-align: center;
		font-size: 24px;
	}

	.call-form__contacts span {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.call-form__contacts span img {
		margin-right: 5px;
		width: 20px;
	}

}

/*------401px  -  576px-------*/

@media screen and (max-width: 576px) {

	.container {
		max-width: 100%;
	}

	.header {
		background: url(../img/bg_header-mob.jpg) no-repeat center top/cover;
	}

	button.offer-btn {
		display: none;
	}

	a.offer-btn {
		color: #000;
		display: flex;
	}

	.offer__price {
		display: none;
	}

	.offer__price_mob {
		display: flex;
		position: static;
	}

	.header-nav__info {
		font-size: 18px;
		line-height: 24px;
		margin-top: 0;
	}

	.header-nav__contacts a {
		font-size: 18px;
	}

	.header-nav__contacts a:first-child {
		margin-bottom: 5px;
	}

	.header-nav__contacts img {
		background: none;
		padding: 0;
		width: 20px;
		margin-right: 5px;
	}

	.offer {
		margin-top: 13px;
	}

	.offer__title {
		font-size: 38px;
		line-height: 62px;
		margin-bottom: 25px;
	}

	.offer__title span:first-child {
		font-size: 22px;
		line-height: 39px;
		max-width: 130px;
		margin-bottom: 10px;
	}

	.offer__volume {
		background: url(../img/price2.png) no-repeat center;
		left: 260px;
		font-size: 22px;
		width: 110px;
		background-size: 110px;
		padding-left: 15px;
	}

	.offer__volume span {
		letter-spacing: -0.31px;
		font-size: 12px;
	}

	.offer__list {
		margin-left: 0px;
		padding-top: 20%;
	}

	.offer__list li {
		font-size: 18px;
		margin-left: 37px;
		margin-right: 50%;
		line-height: 1.5;
	}

	.offer__list li::before {
		width: 16px;
		height: 10px;
		left: -30px;
		top: 12px;
		background-size: 16px;
	}

	.offer__price {
		width: 141px;
		height: 35px;
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
	}

	.offer__price span {
		font-size: 23px;
	}

	.offer-btn {
		margin-top: 10%;
	}

	.btn {
		width: 250px;
		height: 60px;
		font-size: 22px;
	}

}

@media screen and (max-width: 470px) {
	
}


/*------320px  -  400px-------*/

@media screen and (max-width: 400px) {

	body, html {
		overflow-x: hidden;
	}

	.offer__volume {
		left: 220px;
	}

	.offer__title span:first-child {
		font-size: 20px;
		line-height: 30px;
		max-width: 110px;
		padding: 0;
	}

	.header-nav__info,
	.header-nav__contacts a {
		font-size: 14px;
	}

	.header-nav__contacts a:last-child {
		max-width: 140%;
	}

	.header-nav__info img {
		margin-right: 6px;
		top: -3px;
		width: 15px;
	}

	.header-nav__contacts img {
		width: 15px;
		margin-right: 5px;
	}

	.offer__title {
		font-size: 32px;
		line-height: 59px;
	}

	.offer__list {
		margin-left: 0px;
	}

	.offer__list li {
		font-size: 16px;
		margin-right: 50%;
		line-height: 1.5;
	}

	.offer__list li::before {
		left: -25px;
		top: 10px;
	}

	.offer__price {
		width: 131px;
		height: 32px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 10%;
	}

	
}

@media screen and (max-width: 355px) {

	.offer__title {
		font-size: 30px;
		line-height: 59px;
	}

	.offer__volume {
		background-size: 100px;
		font-size: 20px;
		padding-top: 10px;
		left: 200px;
		padding-left: 20px;
	}

	.offer__list {
		margin-left: 35px;
	}

	.offer__price {
		margin-left: 110px;
	}

	.header-nav__info, .header-nav__contacts a {
		font-size: 13px;
	}
}

