@font-face {
    font-family: 'AABebasNeue';
    src: url("../fonts/AA-BebasNeue.ttf")
}

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	color: #141313;
	font-family: 'Roboto', Arial, sans-serif;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {-webkit-font-smoothing: antialiased;}


:focus::-webkit-input-placeholder,
:focus::-moz-placeholder,
:focus:-moz-placeholder,
:focus:-ms-input-placeholder {
	color: transparent
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea,
select,
button,
a {
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="submit"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus,
button:focus,
a:focus {outline: none;}

input[type=submit],
button,
a {
	cursor: pointer;
}

select,
input[type=text] {
	border-radius: 0 !important;
}


/* mix */
.error {
	box-shadow: inset 0 0 0px 2px #f00 !important;
	/*border: 1px solid #f00;*/
}

.transition {
	-moz-transition:    all 0.2s ease;
	-o-transition:      all 0.2s ease;
    -webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.btn {}
.btn:hover {}
.btn:active, .btn:visited, .btn:focus {}


.heading {}
.heading h2 {
	font-family: 'AABebasNeue', sans-serif;
    font-size: 46px;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 30px;
}
.heading h3 {
    font-size: 24px;
    font-weight: 400;
    color: #6a6a6a;
    margin-top: 0;
}

/* styles */
#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
}
#header .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 0;
}
#header .logo {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: -19px;
}
#header .logo img {
	max-width: 220px;
}
#header .logo p {
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    margin: 0;
}
#header .nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
#header .nav li {
    display: inline-block;
    margin: 0 15px;
}
#header .nav li a {
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    color: #fff;
}
#header .nav li a:hover {
    text-decoration: none;
    color: #ff5a00;
}
#header .nav li a:focus {
    text-decoration: none;
}
#header .phone {}
#header .phone a {
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background-color: rgba(0,0,0,.6);
    padding: 20px 20px;
    margin-top: -20px;
}
#header .phone a:hover {
    text-decoration: none;
    color: #fff;
}

#main {
    height: 775px;
    background: url(../img/bg-main.jpg) center no-repeat;
    padding-top: 130px;
}
#main .container {
    position: relative;
}
#main .title {}
#main .title p {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
#main .title h1 {
	font-family: 'AABebasNeue', sans-serif;
    text-transform: uppercase;
    font-size: 72px;
    line-height: 1.1;
    font-weight: normal;
    color: #fff;
    margin: 30px 0;
}
#main .title p:nth-child(3) {
    text-align: center;
    max-width: 370px;
    margin: 40px 0 40px;
}
#main .arrow {
    width: 66px;
    height: 196px;
    background: url(../img/arrow.png) center no-repeat;
    position: absolute;
    bottom: -145px;
    left: -80px;
}
#main .form {
    background-color: #723434;
    text-align: center;
    padding: 30px 50px;
    position: absolute;
}
#main .form h3 {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
}
#main .form input[type=text],
#main .form select {
    display: block;
    width: 100%;
    background-color: rgba(243, 131, 131, .08);
    border: none;
    border-bottom: 1px solid #b76161;
    width: 100%;
    padding: 10px 25px;
    text-align: left;
    margin: 10px 0;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}
#main .form select option {
	color: #000;
}
#main .form input[type=text]::-webkit-input-placeholder { color: rgba(255,255,255,.17) }
#main .form input[type=text]::-moz-placeholder { color: rgba(255,255,255,.17) }
#main .form input[type=text]:-moz-placeholder { color: rgba(255,255,255,.17) }
#main .form input[type=text]:-ms-input-placeholder { color: rgba(255,255,255,.17) }
#main .form input[type=text] {}
#main .form select {
    color: rgba(255,255,255,.17);
    background: url(../img/select.svg) 94% center no-repeat, rgba(243, 131, 131, .08);
    cursor: pointer;
}
#main .form input[type=submit] {
    background-color: #b74040;
    border: none;
    border-bottom: 3px solid #983939;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 13px 25px;
    margin-top: 10px;
}
#main .form input[type=submit]:hover {
    background-color: #d84545;
}
#main .form .accept {
    color: #fff;
    font-size: 13px;
    opacity: .5;
}
#main .form .accept input[type=checkbox] {
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 3px;
}

#features {
    padding-top: 80px;
    padding-bottom: 80px;
    /*clear: both;
    transform: translateY(-300px);
    margin-bottom: -300px;*/
}
#features .item {
    padding-left: 50px;
    margin-bottom: 70px;
}
#features .item h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
}
#features .item p {
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.5;
}

#about {
    background-color: #fff;
    padding: 100px 0;
    height: 600px;
    position: relative;
	z-index: 3;
}
#about .heading {}
#about .heading h2 {}
#about .heading h3 {}
#about p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 50px;
    color: #5d5d5d;
}
#about picture {
    display: block;
    margin-top: 50px;
}
#about picture img {}

#products {
    padding-top: 150px;
    padding-bottom: 140px;
}
#products .heading {
    display: flex;
    align-items: center;
}
#products .heading h2 {}
#products .heading h3 {
    margin-left: 90px;
}
#products .items {
    margin-top: 40px;
    display: flex;
    grid-gap: 30px;
}
#products .items .item {
    width: 100%;
    max-width: 280px;
}
#products .items .item picture {
    display: block;
	max-height: 280px;
    overflow: hidden;
}
#products .items .item picture img {
    width: 100%;
    height: auto;
}
#products .items .item p {
    font-size: 16px;
    font-weight: 500;
    padding-right: 20px;
    line-height: 1.2;
}
#products .items .item:hover {}

#quality {
    background-color: #f1f1f1;
    padding-top: 80px;
    padding-bottom: 80px;
}
#quality picture {
    display: block;
    margin-top: -130px;
}
#quality picture img {}
#quality .heading {}
#quality .heading h2 {}
#quality p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 50px;
    color: #5d5d5d;
    padding-right: 50px;
}
#quality ul {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    padding-left: 150px;
    position: relative;
}
#quality ul li {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0;
}
#quality ul:before {
    content: '';
    display: block;
    width: 208px;
    height: 184px;
    background: url(../img/gost1.png) center no-repeat;
    position: absolute;
    top:  -30px;
    left: -20px;
}

#partners {
    height: 610px;
    background: url(../img/bg-partner.jpg) center no-repeat;
    padding-top: 80px;
}
#partners .heading {
    margin-top: 40px;
}
#partners .heading h2 {
    color: #fff;
}
#partners .heading h3 {
    color: #fff;
}
#partners p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 50px;
    color: #c0c0c0;
    padding-right: 50px;
}
#partners .form {
    background-color: #323869;
    text-align: center;
    padding: 30px 50px;
}
#partners .form h3 {
    color: #fff;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 30px;
}
#partners .form input[type=text],
#partners .form select {
    display: block;
    width: 100%;
    background-color: rgba(128, 138, 215, 0.08);
    border: none;
    border-bottom: 1px solid #7078b9;
    width: 100%;
    padding: 10px 25px;
    text-align: left;
    margin: 10px 0;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}
#partners .form input[type=text]::-webkit-input-placeholder { color: rgba(255,255,255,.17) }
#partners .form input[type=text]::-moz-placeholder { color: rgba(255,255,255,.17) }
#partners .form input[type=text]:-moz-placeholder { color: rgba(255,255,255,.17) }
#partners .form input[type=text]:-ms-input-placeholder { color: rgba(255,255,255,.17) }
#partners .form input[type=text] {}
#partners .form select {
    color: rgba(255,255,255,.17);
    background: url(../img/select.svg) 94% center no-repeat, rgba(128, 138, 215, 0.08);
    cursor: pointer;
}
#partners .form input[type=submit] {
    background-color: #5762b5;
    border: none;
    border-bottom: 3px solid #45496b;
    font-size: 16px;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 13px 25px;
    margin-top: 10px;
}
#partners .form input[type=submit]:hover {
    background-color: #4050cb;
}
#partners .form .accept {
    color: #fff;
    font-size: 13px;
    opacity: .5;
    padding: 0;
}
#partners .form .accept input[type=checkbox] {
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 3px;
}

#logos {
    padding: 40px 0;
}
#logos .items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logos .items img {
    max-width: 130px;
}

#delivery {
	background-color: #f1f1f1;
    padding-top: 100px;
    position: relative;
	z-index: 3;
}
#delivery .heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#delivery .heading h2 {}
#delivery .heading h3 {}
#delivery p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 50px;
    color: #5d5d5d;
    padding-right: 50px;
}
#delivery .nums {
    list-style: none;
    padding: 0;
    margin: 80px 0 0;
    display: flex;
    grid-gap: 40px
}
#delivery .nums li {}
#delivery .nums li span {
	font-family: 'AABebasNeue', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0px;
}
#delivery .nums li p {
    font-weight: 500;
    color: #6e6e6e;
    font-size: 20px;
    line-height: 1.3;
    margin-top: 20px;
}
#delivery picture {
    display: block;
    text-align: right;
    transform: translateY(30px);
}
#delivery picture img {}

#contacts {
    background-color: #f1f1f1;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}
#contacts .container {
    position: relative;
    z-index: 6;
}
#contacts .map {
	position: absolute !important;
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
}
#contacts .map > ymaps {}
#contacts .block {
	display: inline-block;
	box-shadow: 0px 10px 25px 2px rgba(69, 73, 107, 0.3);
	background-color: #fff;
	padding: 50px 70px 30px;
}
#contacts .heading {}
#contacts .heading h2 {}
#contacts p {
	font-size: 16px;
}

#footer {
	background-color: #f1f1f1;
	/*background-color: #fff;*/
	padding: 20px 0;
}
#footer .copy {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .docs {
	text-align: right;
}
#footer p,
#footer a {
	font-size: 14px;
	color: #8c8c8c;
	margin: 0 0;
}
#footer p {}
#footer a {
	display: inline-block;
	text-decoration: none;
	margin-left: 20px;
}
#footer a:hover {
	text-decoration: underline;
}


/* modals */
#modals {
	display: none;
}
.modal {}
.modal h3 {}
.modal .form {}
.modal .form input[type=text] {}
.modal .form input[type=submit] {}
.modal .form .accept {}
.modal .form .accept input[type=checkbox] {}


/* meadia */
@media (max-width: 1200px) {}
@media (max-width: 992px) {}
@media (max-width: 868px) {

	.btn {}

	.heading {
        display: flex;
        flex-direction: column;
    }
	.heading h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
	.heading h3 {
        font-size: 22px;
        line-height: 1.2;
        margin-top: 0;
        font-weight: 500;
    }
    .heading br {
        display: none;
    }


	#header {}
    #header .top {
        margin: 10px 0;
    }
	#header .logo {
        width: 40%;
    }
	#header .logo img {
        width: 100%;
    }
	#header .nav {
        display: none;
    }
	#header .nav li {}
	#header .nav li a {}
	#header .phone {
        width: 60%;
        text-align: right;
    }
	#header .phone a {
        font-size: 14px;
        padding: 20px 0px;
        background: none;
    }

	#main {
        height: auto;
        background: url(../img/m/bg-main.jpg) top right no-repeat;
        background-size: cover;
        padding-top: 70px;
    }
	#main .title {}
	#main .title p {
        font-size: 17px;
        text-align: left !important;
        margin: 15px 0 !important;
    }
	#main .title h1 {
        font-size: 36px;
        margin: 10px 0;
    }
	#main .arrow {
        display: none;
    }
	#main .form {
        width: 100%;
        padding: 20px 20px;
        transform: translateY(15px);
        position: relative;
    }
	#main .form h3 {
        font-size: 18px;
        margin-top: 5px;
        margin-bottom: 20px;
    }
	#main .form input[type=text],
	#main .form select {
        padding: 10px 15px;
        font-size: 14px;
    }
	#main .form input[type=submit] {
        padding: 10px 20px;
        margin-top: 6px;
    }
	#main .form .accept {
        font-size: 12px;
        line-height: 1.1;
    }

	#features {
        padding-top: 30px;
        padding-bottom: 30px;
    }
	#features .item {
        padding: 0;
        margin-bottom: 20px;
    }
	#features .item h3 {
        margin-bottom: 15px;
        font-size: 22px;
    }
	#features .item p {
        font-size: 16px;
        line-height: 1.4;
    }

	#about {
        padding-top: 30px;
        padding-bottom: 30px;
        height: auto;
    }
	#about .heading {}
	#about .heading h2 {}
	#about .heading h3 {}
	#about p {
        margin-top: 10px;
    }
	#about picture {
        margin-top: 30px;
    }
	#about picture img {
        width: 100%;
        height: auto;
    }

	#products {
        padding: 60px 0 0px;
    }
	#products .heading {
        display: block;
    }
	#products .heading h2 {}
	#products .heading h3 {
        margin-left: 0;
    }
	#products .items {
        flex-wrap: wrap;
        grid-gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
	#products .items .item {
        width: calc(50% - 10px);
    }
	#products .items .item picture {
        display: block;
        overflow: hidden;
        height: 150px;
    }
	#products .items .item picture img {
        width: 100%;
    }
	#products .items .item p {
        font-size: 14px;
        padding-right: 5px;
    }

	#quality {
        padding: 15px 0;
    }
	#quality picture {
        margin: 0 0 15px;
    }
	#quality picture img {
        width: 100%;
        height: auto;
    }
	#quality .heading {
        margin-top: 15px;
    }
	#quality .heading h2 {}
	#quality p {
        margin-top: 10px;
        padding-right: 0;
    }
	#quality ul {
        margin-top: 20px;
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 50px;
    }
	#quality ul li {
        font-size: 18px;
        margin: 10px 0;
        padding-right: 15px;
    }
	#quality ul:before {}

	#partners {
        height: auto;
        padding: 30px 0 15px;
        background: url(../img/m/bg-partner.jpg) center no-repeat;
        background-size: cover;
    }
	#partners .heading {}
	#partners .heading h2 {}
	#partners .heading h3 {}
	#partners p {
        margin-top: 0px;
        margin-bottom: 20px;
    }
	#partners .form {
        padding: 20px;
    }
	#partners .form h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
	#partners .form input[type=text] {
        padding: 10px 15px;
        font-size: 14px;
    }
	#partners .form input[type=submit] {
        padding: 10px 20px;
        margin-top: 6px;
    }
	#partners .form .accept {
        font-size: 12px;
        line-height: 1.1;
        margin-top: 20px;
    }

	#logos {
        padding: 30px 0;
    }
	#logos .items {
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 20px;
    }
	#logos .items img {
        max-width: 80px;
    }

	#delivery {
        padding-top: 20px;
        padding-bottom: 15px;
    }
	#delivery .heading {}
	#delivery .heading h2 {}
	#delivery .heading h3 {}
	#delivery p {
        margin-top: 0;
        padding-right: 0;
    }
	#delivery .nums {
        margin-top: 30px;
    }
	#delivery .nums li {
        width: 50%;
    }
	#delivery .nums li span {
        font-size: 30px;
    }
	#delivery .nums li p {
        font-size: 16px;
        line-height: 1.1;
        margin: 10px 0;
    }
	#delivery picture {}
	#delivery picture img {
        width: 100%;
        height: auto;
    }

	#contacts {
        padding: 30px 0 15px;
    }
	#contacts .map {
        display: none;
    }
	#contacts .map > ymaps {}
	#contacts .block {
        padding: 25px;
		width: 100%;
    }
	#contacts .heading {}
	#contacts .heading h2 {}
	#contacts p {
        font-size: 14px;
        margin: 0;
    }

	#footer {
        text-align: center;
    }
	#footer .copy {
        display: block;
    }
	#footer .docs {
        display: block;
    }
	#footer p,
	#footer a {
        display: block;
        text-align: center;
        margin: 5px 0;
        font-size: 13px;
    }
    #footer p {
        color: #000;
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 16px;
    }


	.modal {}
	.modal h3 {}
	.modal .form {}
	.modal .form input[type=text] {}
	.modal .form input[type=submit] {}
	.modal .form .accept {}
	.modal .form .accept input[type=checkbox] {}

}