@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 300;
}

header {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a.logo {
    display: flex;
    flex-direction: column;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    align-items: center;
    margin: 10px 0 0 0;
}

a.logo span {}

span.logo-image {
    background-image: url("../images/logo.png");
    background-position: center;
    background-size: cover;
    height: 70px;
    width: 210px;
    margin: 0 0 10px;
}

span.logo-title {}

.header-body {
    display: flex;
    flex-direction: column;
}

.info {
    display: flex;
    margin: 0 0 15px;
    border-bottom: solid 1px #ddd;
    padding: 0 0 15px;
}

.info-block {
    display: flex;
    align-items: center;
    margin: 0 0 0 50px;
    font-size: 14px;
    font-weight: 300;
}

.info-block svg {
    margin: 0 10px 0 0;
    color: #0074c5;
}

.info-block > div {
    display: flex;
    flex-direction: column;
}

.info-block > div span {}

.info > a {
    color: #931d3e;
    font-weight: 600;
    text-decoration: none;
    font-size: 24px;
}

.info > a span {}

.menu {
    display: flex;
    justify-content: end;
    align-items: center;
}

.menu a {
    color: #000;
    margin: 0 0 0 50px;
}

.menu a.menu-reg {
    background: #0074c5;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 13px;
}

content {
    max-width: 1200px;
    margin: 25px auto;
    display: flex;
    flex-direction: column;
	padding: 0 10px;
}

slider {
	background: #fcfcfc;
}

.home-first {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 75px;
}

.home-first-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-first-titles h1, .home-first-titles h2, .home-first-titles h3 {
    margin: 5px;
    font-size: 34px;
    font-weight: 300;
}

.home-first-titles h1 {}

.home-first-titles h2 {}

.home-first-titles h3 {}

.home-first::before, .home-first::after {
    width: 255px;
    display: flex;
    height: 340px;
	background-size: cover;
}

.home-first::before {
    content: '';
	background-image: url("../images/home-left.jpg");
}

.home-first::after {
    content: '';
	background-image: url("../images/home-right.jpg");
}

.reg {}

.reg h2 {
    text-align: center;
    font-weight: 300;
    font-size: 34px;
    margin: 0 0 25px;
}
.reg iframe {
    border: none;
    height: 550px;
    width: 100%;
}

.catalog {
    display: flex;
    margin: 0 0 100px;
}

.catalog-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catalog-sidebar h2 {
    font-weight: 300;
    font-size: 34px;
    margin: 0 0 20px;
}

.catalog-sidebar p {
    font-weight: 300;
}

.catalog-list {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.catalog-row {
    display: flex;
    justify-content: space-between;
}

.catalog-item {
    flex-basis: 33%;
    height: 200px;
    margin: 0 0 5px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
}

.ci {
    background-position: center;
    background-size: cover;
    position: relative;
    transition: transform 0.2s;
    height: 100%;
    width: 100%;
}

.ci:hover {
	transform:scale(1.05);
}

.ci span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
}

.ci-1 {background-image: url("../images/c1.png");}
.ci-2 {background-image: url("../images/c2.png");}
.ci-3 {background-image: url("../images/c3.jpg");}
.ci-4 {background-image: url("../images/c4.jpg");}
.ci-5 {background-image: url("../images/c5.jpg");}
.ci-6 {background-image: url("../images/c6.jpg");}

.about {
    display: flex;
    align-items: center;
    margin: 0 0 75px;
}

.about-slider {
	flex: 1;
}

.about-content {
    flex: 1.5;
    margin: 0 0 0 20px;
}

.about-content h2 {
    font-weight: 300;
    font-size: 24px;
    margin: 0 0 25px;
}

.price {
    margin: 0 0 75px;
}

.price h2 {
    font-weight: 300;
    font-size: 34px;
    margin: 0 0 25px;
}

.price-grid {
    display: flex;
    justify-content: space-between;
}

.pg-col {
    display: flex;
    flex-direction: column;
    width: 49%;
}

.pg-item {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 10px 0;
}

.pg-item::after {
    content: '';
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 12px;
    border-top: dotted 1px #ddd;
}

.pg-item-title {
    font-weight: 300;
    background: #fff;
    z-index: 10;
    padding: 0 10px 0 0;
}

.pg-item-price {
    font-weight: 300;
    background: #fff;
    z-index: 10;
    padding: 0 0 0 10px;
}

.pg-item-price span {}

.fixed {
	display: none;
}

@media screen and (max-width: 600px) {
header {
    flex-direction: column;
	margin: 0;
}
a.logo {
    margin: 10px 0 5px 0;
    font-size: 14px;
}
span.logo-image {
    height: 48px;
    width: 140px;
	margin: 0;
}
.info {
    flex-direction: column;
}
.info-block {
    justify-content: center;
    margin: 0;
    font-size: 13px;
}
.info-block > div {
    flex-direction: row;
}
.info-block svg {
    margin: 0;
    height: 12px;
}
.info > a svg {
    height: 18px;
    margin: 0 10px 0 0;
}
.info-block > div span {
    margin: 0 0 0 5px;
}
.info > a {
    font-weight: 800;
    font-size: 21px;
    margin: 10px 0 0;
}
.menu {
    display: none;
}
content {
    margin: 0;
}
.home-first {
    margin: 0 0 25px;
    border-bottom: solid 1px #ddd;
    padding: 0 0 15px;
}
.home-first-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-first-titles h1, .home-first-titles h2, .home-first-titles h3 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.home-first::before, .home-first::after {
    width: 115px;
    height: 110px;
}
.catalog {
    flex-direction: column;
	margin: 0 0 25px;
}
.catalog-sidebar {
    text-align: center;
}
.catalog-sidebar h2 {
    font-weight: 600;
    font-size: 21px;
    margin: 0 0 10px;
}
.catalog-item {
    height: 100px;
}
.about {
    margin: 0 0 25px;
    flex-direction: column-reverse;
}
.about-content {
    margin: 0;
}
.price-grid {
    flex-direction: column;
}
.pg-col {
    width: 100%;
}
.reg h2 {
    text-align: center;
    font-weight: 300;
    font-size: 18px;
    margin: 0 0 25px;
}
.fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    justify-content: space-between;
    left: 0;
    right: 0;
    padding: 0 5px 5px;
    z-index: 10;
}
.fixed a {
    background: rgba(147, 29, 62, 0.9) none repeat scroll 0 0;
    color: #fff;
    height: 67px;
    width: 67px;
    display: flex;
    flex-direction: column;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    text-decoration: none;
}
	
.fixed a svg {
    margin: 0 0 5px;
}
	
	a.fixed-reg {}
	
	a.fixed-call {}
}