@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri.ttf") format("ttf");
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: "Calibri";
}

.container{
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
main p {
  margin: 5px 0 10px;
  font-size: 18px;
}
main h2 {
  margin: 10px 0 15px;
}
main ol,
main ul {
  margin: 20px 0;
  list-style-position: inside;
  padding-left: 15px;
}
main ol li,
main ul li {
  margin: 0 0 5px;
  font-size: 18px;
}
/* header */

.header__wrap {
  display: flex;
  align-items: center;
  height: 135px;
  padding: 0 0 25px;
}
.header__contact {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: 55px;
}
a.header__phone {
  font-size: 21px;
  color: #e21c2e;
  text-decoration: none;
}
a.header__mail {
  font-size: 21px;
  text-decoration: none;
  color: #343e48;
}
.header__contact a:hover{
  text-decoration: underline;
}
.header__callback {
  color: #292929;
  font-size: 18px;
  border: 2px solid #e21c2e;
  padding: 7px 42px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.header__callback:hover,
.header__callback:focus {
  color: #fff;
  background-color: #e21c2e;
  transition: all 0.175s linear;
  cursor: pointer;
}

#search-item {
  color: #fff;
  font-size: 20px;
  margin-left: auto;
  padding: 0 15px;
}
#search-item:hover{
  cursor: pointer;
}
/* header end */

/* nav */

nav {
  background-color: #343e48;
  width: 1200px;
  margin: 0 auto;
  margin-top: -25px;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
}
ul.nav.menu {
  display: flex;
  align-items: center;
  padding: 0 15px;
  list-style: none;
}
ul.nav.menu li a,
ul.nav.menu li span,
ul.nav.menu ul li span,
ul.nav.menu ul li a {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  padding: 15px 15px 14px;
  display: block;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

ul.nav.menu li a:hover,
ul.nav.menu li a:focus,
ul.nav.menu li span:hover,
ul.nav.menu li span:focus,
ul.nav.menu ul li a:hover,
ul.nav.menu ul li a:focus,
ul.nav.menu ul li span:hover,
ul.nav.menu ul li span:focus {
  background-color: #e21c2e;
  transition: all 0.175s linear;
  cursor: pointer;
}
ul.nav.menu ul {
  background-color: #475059;
  width: 400px;
  list-style: none;
  position: absolute;
  display: none;
}
ul.nav.menu ul.opener {
  display: block;
}
ul.nav.menu li.parent:hover ul{
  display: block;
}
ul.nav.menu ul.opener {
  display: block;
}

/* nav end */

/* slider */
.slider {
  background-image: url(/images/slider/1.jpg);
  height: 530px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -25px;
  z-index: -1;
}
.slider h2 {
  text-align: center;
  font-size: 57px;
  font-weight: 700;
  color: #ffffff;
}
/* slider end */

/* info1 */
.info1__wrap {
  display: flex;
  padding: 50px 0;
}
.info1__text h3 {
  color: #292929;
  font-size: 41px;
}
.info1__text h3 span {
  color: #e21c2e;
}
.info1__text p {
  margin-bottom: 10px;
}
.info__wrap-label {
  display: flex;
}
.info__label {
  font-size: 35px;
  color: #e21c2e;
  display: flex;
  flex-direction: column;
  width: 110px;
}
.info__label .red__big__text span {
  font-size: 20px;
  display: block;
  margin-right: 5px;
}
.info__label:first-child {
  margin-right: 70px;
}

.red__big__text {
  display: flex;
  align-items: flex-start;
}
.info__label span {
  font-size: 16px;
  color: #292929;
}
.info1-photo{
  margin-left: auto;
}
.info1-photo img {
  border: 1px solid #e21c2e;
  border-radius: 4px;
}

/* info1 end */

/* advantage */

.advantage {
  background-image: url(../images/advantage__bg.jpg);
  height: 425px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  padding: 40px 0;
}
h2.advantage_heading {
  text-align: center;
  font-size: 41px;
  color: #fff;
  font-weight: 400;
}
h2.advantage_heading span {
  color: #e21c2e;
}
h2.advantage_heading+span {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  margin-top: 12px;
}
.advantage__list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.advantage__list__item {
  display: flex;
  align-items: flex-start;
}
.advantage__list__item__text {
  margin-left: 12px;
}
.advantage__list__item__text h4 {
  font-size: 17px;
  color: #fff;
  line-height: 16px;
  margin-bottom: 10px;
}
.advantage__list__item__text span {
  color: #fff;
  font-size: 13px;
  line-height: 27px;
}

/* advantage end */

/* services */

.services {
  height: 500px;
  padding: 40px 0;
}

h2.services__heading {
  text-align: center;
  font-size: 41px;
  color: #292929;
  font-weight: 400;
}

h2.services__heading span {
  color: #e21c2e;
}

h2.services__heading+span {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #292929;
  line-height: 20px;
  margin-top: 12px;
}

.services__list {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}

.services__list__item {
  display: flex;
  align-items: flex-start;
  width: calc((100% - 180px) / 3);
  margin-bottom: 40px;
}

.services__list__item__text {
  margin-left: 12px;
}

.services__list__item__text h4 {
  font-size: 18px;
  color: #fc0000;
  line-height: 16px;
  margin-bottom: 10px;
}

.services__list__item__text span {
  color: #4a4949;
  font-size: 14px;
  line-height: 1;
}

/* services end */

.open_send_mail{
  text-decoration: underline;
}
.open_send_mail:hover {
  cursor: pointer;
}
/* footer */

footer{
  padding: 30px 0;
  background-color: #343e48;
}
.redline {
  background-color: #e21c2e;
  height: 3px;
  display: block;
  width: 100%;
  margin-top: -7px;
  margin-left: 9px;
}
.footer__menu__list {
  margin-top: 30px;
}
.footer__menu__list ul {
  list-style: none;
}
ul.nav.menu__footer_menu.mod-list {
  display: flex;
}
.footer__menu__list ul {
  list-style: none;
}
ul.nav.menu__footer_menu.mod-list > li {
  margin-right: 50px;
}
ul.nav.menu__footer_menu.mod-list li.item-101,
ul.nav.menu__footer_menu.mod-list li.item-105,
 ul.nav.menu__footer_menu.mod-list li.item-110{
  display: none;
}
ul.nav.menu__footer_menu.mod-list li>* {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
ul.nav.menu__footer_menu.mod-list ul li * {
  color: #e6e5e5;
  font-weight: 400;
  font-size: 15px;
}
/* footer end */

/* about us */
.about_us__photo img {
  max-width: 100%;
  height: 450px;
  border: 2px solid #ff8484;
}
.about_us__photo {
  margin: 30px 0;
}
/* about us end */
.copyright a {
  color: #212a32;
}

.copyright {
  text-align: center;
  padding: 30px 0 0;
  color: #212a32;
}

.mmail.open {
  display: flex;
}

.mmail {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.mmail-container {
  margin: auto;
  position: relative;
}
.mmail-close {
  position: absolute;
  top: 2%;
  right: 4%;
  z-index: 2;
  font-size: 24px;
}
.front,
.back {
  padding: 40px 30px 20px;
  background-color: #fff;
  transition: all 0.5s;
}
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.form-row h2 {
  text-align: center;
}
.form-row label {
  margin-bottom: 10px;
  font-size: 20px;
}
.form-row input,
.form-row textarea {
  padding: 2px 5px 1px;
  font-size: 18px;
}
.form-row input[type="submit"] {
  margin: auto;
  color: #292929;
  font-size: 18px;
  border: 2px solid #e21c2e;
  padding: 7px 42px;
  background-color: transparent;
  margin-top: 15px;
}
.form-row input[type="submit"]:hover,
.form-row input[type="submit"]:focus{
  color: #fff;
  background-color: #e21c2e;
  transition: all 0.175s linear;
  cursor: pointer;
}

.send-ok.not-open {
  transform: translateY(100%);
  transition: all 0.1s linear;
}

.send-ok {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: red;
  width: 100%;
  height: 120px;
  transform: translateY(0);
  transition: all 0.300s linear;
  display: flex;
  align-items: center;
  padding: 15px;
  text-align: center;
}
.send-ok h2 {
  margin: auto;
  color: #fff;
}

main {
  min-height: calc(100vh - 435px);
}

/* страница поиска */
.finder h1 {
  font-size: 32px;
  margin: 15px 0 10px;
}

fieldset.word label {
  display: none;
}
fieldset.word {
  border: none;
}
div#search-form input {
  font-size: 18px;
  padding: 7px 5px 7px;
  margin-right: 15px;
}
button[name="Search"] {
  color: #292929;
  font-size: 18px;
  border: 2px solid #e21c2e;
  padding: 7px 42px;
  background-color: transparent;
}
button[name="Search"]:hover,
button[name="Search"]:focus {
  color: #fff;
  background-color: #e21c2e;
  transition: all 0.175s linear;
  cursor: pointer;
}
ul.search-results {
  padding: 30px;
  list-style: none;
}

h4.result-title a {
  font-size: 18px;
  color: #000;
}
h4.result-title a:hover {
  text-decoration: none;
}
/* страница поиска end */


/*  .helper */

.helper {
  background: url(../images/bnr.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 205px;
  width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
}
.helper-link a {
  color: #fff;
}
.helper-link p {
  font-size: 23px;
  font-weight: 300;
}
.helper-link {
  display: flex;
  width: 50%;
  color: #fff;
  justify-content: center;
  padding-left: 80px;
}
.helper-text {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  width: 50%;
  display: flex;
  justify-content: center;
}

/* внутренние страницы с боковым меню */

.flex-container {
  display: flex;
  width: 1200px;
  margin: 0 auto;
}
.sidebar {
  width: calc((100% - 30px) / 3);
  margin-right: 30px;
}
.more-content {
  width: calc(100% * (2/3));
  padding: 0 15px;
}
.sidebar ul.category-module.mod-list {
  list-style: none;
  padding: 15px 0;
  background-color: #343e48;
}
ul.category-module.mod-list li a {
  color: #fff;
  font-size: 16px;
  display: block;
  text-decoration: none;
  padding: 5px 15px 5px;
}
ul.category-module.mod-list li:hover {
  background-color: #e21c2e;
}
/* внутренние страницы с боковым меню end */


/* цены */ 
.cost {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
.cost td {
  border: 1px solid #ccc;
  padding: 0.5em;
}

.cost td:nth-child(2) {
  width: 15%;
  text-align: center;
}
/* цены end */