@CHARSET "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Cuprum', Tahoma, Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 26px;
    height: 100%;
}
.container {
    width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
h1 {
    font-size: 24px;
    font-weight: 400;
}
h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}
h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    list-style: none;
    line-height: 30px;
    padding: 0;
    margin: 0;
}
p {
    margin-bottom: 10px;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
#main-content {
    flex: 1 1 auto;
}


/*********************** HEADER *************************/

header.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    transition: top 0.3s ease;
    z-index: 5;
    box-shadow: 0 15px 31px rgba(0,0,0,0.1);
}
.header.visible {
    top: -92px;
}
.header-body-top-wrapper {
    padding: 10px 0;
}
.header-body-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-body-bottom-wrapper {
    background-color: #a22823;
}
.header-logo img {
    max-width: 150px;
}
ul.tag-site {
    display: flex;
    justify-content: center;
    color: #7c7c7c;
    margin-top: 10px;
    line-height: 26px;
}
ul.tag-site li {
    padding: 0 8px;
    border-right: 1px solid #a22823;
    height: 26px;
}
ul.tag-site li:last-child {
    border-right: none;
}
.header-body-bottom {
    position: relative;
}


/***************** menu *****************/

ul.nav.navbar-nav.menu {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    list-style: none;
    padding: 4px 0;
    margin: 0;
}
ul.nav.navbar-nav.menu a {
    color: #fff;
}
button.burger-menu-btn {
    display: none;
}


/*********************** block-slide *************************/


.block-slide {
    margin-top: 130px;
    text-align: center;
}
.block-slide img {
    width: 100%;
}
.block-slide .container {
    position: relative;
}
.block-slide-txt {
    position: absolute;
    left: 0;
    bottom: 20%;
}
.slide-txt-body {
    background-color: #ffffffde;
    padding: 15px;
    border-radius: 4px;
    font-size: 18px;
    border: 2px solid #a22823;
}
span.color-brand {
    font-size: 20px;
    color: #a22823;
}


/*********************** about-us *************************/

#about-us {
    padding: 60px 0;
    line-height: 32px;
}

/*********************** advantages *************************/

#advantages {
    padding: 60px 0;
    background-color: #fff2f2;
}
.advantages-body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.advantages-body img {
    width: 150px;
}
.advantages-body-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 375px;
    background-color: #fff;
    transition: .7s;
}
.advantages-body-item:hover, .save-list ul>li:hover {
    box-shadow: 0px 0px 10px 4px rgba(224, 224, 224, 1);
    transition: .7s;
}
.advantages-body-item p {
    text-align: center;
    font-size: 18px;
    width: 70%;
    margin: 20px 0 10px;
}
#save-container {
    padding: 60px 0;
    background-color: #fff2f2;
}
.save-container h4 {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
}
.save-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}
.save-list img {
    width: 62px;
}
.save-list ul>li {
    display: flex;
    flex-direction: column;
    width: 24%;
    align-items: center;
    line-height: 22px;
    gap: 8px;
    text-align: center;
    padding: 20px;
    margin-bottom: 16px;
    background-color: #fff;
    transition: .7s;
}


/*********************** conditions *************************/

#conditions {
    padding: 60px 0;
}
.conditions {
    display: flex;
    align-items: center;
    gap: 30px;
}
.conditions-item {
    width: 40%;
}


/*********************** contact *************************/

#contact {
    padding: 60px 0;
    background-color: #fff2f2;
    box-shadow: 0px -7px 10px 0px rgb(241 241 241);
}
.contacts-body {
    display: flex;
    gap: 30px;
}
.contacts-item.map {
    width: 80%;
    box-shadow: 0px 0px 10px 4px rgba(224, 224, 224, 1);
}
.route a, .footer-cell a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #a22823;
    margin-bottom: 14px;
    color: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(189,189,189,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(189,189,189,1);
    box-shadow: 0px 0px 10px 0px rgba(189,189,189,1);
}
.route a:hover, .footer-cell a:hover {
    background-color: #e96b66;
}
.route img {
    width: 16px;
}


/*********** footer ***********/


/********** copy *************/

.copyright {
    background-color: #a22823;
    color: #fff;
}
.copyright-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}


.mob-panel {
    display: none;
}



/********************************* @MEDIA QUERIES *********************************/

@media(min-width: 992px) {

}

@media(max-width: 992px) {

.container {
    width: 100%;
}
.header.visible {
    top: 0;
}
.header-body-top {
    flex-wrap: wrap;
    justify-content: start;
    position: relative;
}
.header-logo {
    width: 35%;
}
.header-logo img {
    max-width: 120px;
}
.header-tag {
    width: 65%;
}
ul.tag-site {
    position: absolute;
    width: 100%;
    left: 0;
}
.header-cell {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 16px;
}
ul.header-phone {
    position: absolute;
    right: 0;
    bottom: -38px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
h1 {
    font-size: 20px;
    text-align: right;
    line-height: 20px;
}
.conditions {
    flex-direction: column;
    gap: 0;
}
.conditions img {
    width: 100%;
}
.conditions-item {
    width: auto;
}
.save-list {
    flex-direction: column;
}
.advantages-body img {
    width: 100px;
}
.contacts-body {
    flex-direction: column;
    gap: 0;
}
.contacts-item.map {
    width: auto;
    margin-bottom: 0;
}
.save-list ul>li {
    width: 48%;
}
.advantages-body {
    justify-content: space-between;
    gap: 0;
}
.advantages-body-item {
    width: 48%;
    padding: 10px;
    margin-bottom: 18px;
}
.advantages-body-item p {
    font-size: 16px;
    width: 100%;
    line-height: 20px;
}
#save-container, #about-us, #advantages, #conditions {
    padding: 20px 0;
}
.route a, .footer-cell a {
    width: 54%;
}
.mob-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 0 15px 10px;
    width: 100%;
    left: 0;
    bottom: 0;
}
.mob-panel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
}
.mob-panel-item a {
    line-height: 20px;
}
.mob-panel .hydrated {
    font-size: 32px;
    color: #fff;
    line-height: 20px;
}
.mob-panel-item:first-child {
    background-color: #008d09db;
}
.mob-panel-item:last-child {
    background-color: #075e54e8;
}
ul.header-phone li {
    display: flex;
    align-items: center;
    padding: 0 6px;
    border-radius: 4px;
    background-color: #a22823;
    margin-bottom: 14px;
    color: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(189,189,189,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(189,189,189,1);
    box-shadow: 0px 0px 10px 0px rgba(189,189,189,1);
}
ul.header-phone a {
    color: #fff;
}
.header-body-top-wrapper {
    padding: 10px 0 34px;
}

}


@media(max-width: 768px) {
 
button.burger-menu-btn {
    display: block;
    position: absolute;
    top: -26px;
}
.burger-menu {
	display: block;
}
.burger-menu-content {
	display: none;
}
.burger-menu-btn {
	background: none;
	border: none;
	cursor: pointer;
}
.burger-menu-icon {
	display: block;
	width: 30px;
	height: 2px;
	background-color: #333;
	position: relative;
}
.burger-menu-icon::before,
.burger-menu-icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #333;
	position: absolute;
	left: 0;
}
.burger-menu-icon::before {
	top: -10px;
}
.burger-menu-icon::after {
	bottom: -10px;
}
.burger-menu-btn.active .burger-menu-icon::before {
	transform: translateY(10px) rotate(45deg);
}
.burger-menu-btn.active .burger-menu-icon::after {
	transform: translateY(-10px) rotate(-45deg);
}
.burger-menu-btn.active .burger-menu-icon {
	background-color: transparent;
}
.burger-menu-btn.active + .burger-menu-content {
	display: block;
}
ul.nav.navbar-nav.menu {
    flex-direction: column;
    align-items: start;
    padding: 15px 0;
    gap: 10px;
}
.block-slide {
    margin-top: 250px;
}
.block-slide-txt {
    left: 15px;
    bottom: 0;
}
.slide-txt-body {
    padding: 10px;
    font-size: 16px;
}
.slide-txt-body p {
    margin-bottom: 0;
}
#contact {
    padding: 20px 0 10px;
}
h3 {
    margin-bottom: 10px;
}
.copyright-body {
    flex-direction: column;
    font-size: 12px;
}

}

@media(max-width: 544px) {

}