body {
    line-height: 1.2;
    background: #fff;
}

/* Центрированный заголовок */
.section-title h1 {
    font-size: 40px;
    max-width: 1000px;
    line-height: 1.1;
    padding: 60px 0px 0px 0px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    z-index: 9;
    margin-bottom: 0px;
}

/* Преимущества */
.advantages-row {
  margin-bottom: 40px;
}

.advantage-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.adv-icon {
  height: auto;
  margin-right: 15px;
}

/* Кнопка */
.section-button .btn {
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: white;
    padding: 35px 70px;
    font-size: 18px;
    border-radius: 10px;
    text-transform: uppercase;
    margin-top: -20px;
}

.section-button .btn:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}



/* Общий стиль заголовков */
.section-heading {
    font-size: 40px;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Блок с категориями */
.categories-row {
  display: flex;
  flex-wrap: wrap;
}

/* Стиль категории */
.category-item {
  background-color: #e9e9e9;
padding: 20px 20px 20px 40px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none !important;
  color: #333;
  transition: background-color 0.3s ease;
  min-height: 170px;
  overflow: hidden;
  position: relative;
}

.category-item span {
    font-size: 22px;
    font-weight: 400;
    max-width: 230px;
    display: block;
    line-height: 1;
}
.section {
  margin-top: 60px;
  margin-bottom: 60px;
}
.arrow-icon {
  width: 16px;
  opacity: 0.7;
}


/* Стиль блока с продуктами */
.product-item {
border: 1px solid #ececec;
  border-radius: 5px;
  padding: 20px;
  margin: 10px;
  background-color: #fff;
  text-align: center;
}

/* Изображение */
.product-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

/* Название */
.product-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Цена */
.product-price {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

/* Кнопки */
.product-actions .btn {
  margin: 0 5px;
  font-size: 14px;
  padding: 8px 12px;
}

.btn-cart {
  background-color: #00a2d4;
  color: white;
  border: none;
}

.btn-cart:hover {
  background-color: #0056b3;
}

.btn-details {
  background-color: transparent;
  color: #00a2d4;
  border: 1px solid #00a2d4;
}

.btn-details:hover {
  background-color: #00a2d4;
  color: white;
}




/* Контейнер с картинкой */
.director-image-container {
  position: relative;
}

/* Картинка директора */
.director-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Блок с информацией о директоре */
.director-info-box {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background-color: #00a2d4;
    color: white;
    padding: 30px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 400px;
    font-size: 19px;
}

.director-info-box p {
  margin: 0;
  font-weight: bold;
}

.director-info-box small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 5px;
}

/* Текст о компании */
.about-company-text h2 {
  margin-bottom: 20px;
}

.about-quote {
  color: #555;
  line-height: 1.6;
  font-size: 19px;
}



/* Стиль для каждого блока преимущества */
.advantages-row {
  margin-top: 40px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.adv-icon {
  max-width: 45px;
  margin-right: 40px;
  flex-shrink: 0;
}

.adv-text h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.adv-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}


/* Секция с фоном */
.delivery-section {
  padding: 0px 0;
}

/* Заголовок */
.delivery-title h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
}

/* Описание */
.delivery-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Кнопка */
.btn-delivery {
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: white;
    padding: 32px 60px;
    font-size: 16px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btn-delivery:hover {
  background-color: #f1f1f1;
}

.delivery-section .container-fluid {
    background: url(/image/newdesign/delivery-bg.jpg) no-repeat center center / cover;
    background-color: #2e2e2e;
    color: white;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    padding: 100px 60px;
}

/* Левый блок */
.calculator-left {
    background-color: #00a2d4;
    color: white;
    padding: 60px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.calculator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calculator-header h2 {
    margin: 0;
    font-size: 33px;
    text-transform: uppercase;
    font-weight: 700;
    max-width: 300px;
}

.calc-icon {
  width: 50px;
  height: auto;
}

/* Форма с селектами */
.calculator-form .select-option {
    margin-bottom: 15px;
    background-color: white;
    color: black;
    border-radius: 10px;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 45px;
    height: auto;
}

/* Правый блок */
.calculator-right {
  padding-left: 20px;
}

/* Каждый блок с калькулятором */
.calc-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e9e9e9;
    padding: 126px 60px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0px;
    transition: background-color 0.3s ease;
    min-height: 210px;
    position: relative;
    overflow: hidden;
}

.calc-block:hover {
  background-color: #e9ecef;
}

.calc-text h4 {
    margin: 0 0 5px 0;
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    max-width: 295px;
    margin-top: 0px;
    line-height: 1.1;
    text-transform: uppercase;
}

.calc-text p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.2;
    max-width: 250px;
}

.calc-img {
    width: 230px;
    height: auto;
    position: absolute;
    right: 0;
}


/* Стиль карусели */
.project-item {
    margin-bottom: 30px;
    border: 1px solid #ececec;
    border-radius: 5px;
    margin-right: 10px;
    min-height: 250px;
}

.project-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.project-content h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.project-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.btn-project-details {
    background-color: white;
    color: black;
    border: 2px solid #00a2d4;
    border-radius: 7px;
    padding: 25px 40px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-project-details:hover {
    border-color: #00a2d4;
    background-color: #00a2d4;
    color: #fff;
}


/* Стиль карусели */
.certificates-carousel .certificate-item {
    text-align: center;
    border: 1px solid #ececec;
    border-radius: 10px;
    margin-right: 10px;
}

.certificate-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 5px;
}



/* Секция с фоном */
.ask-section .container-fluid {
    background: url(/image/newdesign/background-questions.jpg) no-repeat center center / cover;
    background-color: #2e2e2e;
    color: white;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    padding: 100px 60px;
}

/* Заголовок */
.ask-title h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
}

/* Описание */
.ask-description p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Кнопка */
.btn-ask {
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: white;
    padding: 32px 60px;
    font-size: 16px;
    border-radius: 10px;
    text-transform: uppercase;
}

.btn-ask:hover {
  background-color: #f1f1f1;
}


/* Стиль карусели */
.partners-carousel .partner-item {
  text-align: center;
  padding: 10px 0;
}

.partner-logo {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

/* Стиль карусели */
.blog-carousel .blog-item {
  margin-bottom: 30px;
}

.blog-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.blog-content h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.btn-blog-details {
  background-color: white;
  color: black;
  border: 2px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-blog-details:hover {
  border-color: #999;
  background-color: #f1f1f1;
}


/* Блок FAQ */
.faq-item {
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 15px 0;
    margin-bottom: -1px;
}

/* Вопрос */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    font-size: 16px;
    padding: 0 20px;
}

/* Плюс/минус */
.toggle-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-color: white;
  border: 2px solid #00a2d4;
  border-radius: 3px;
  text-align: center;
  line-height: 24px;
  font-size: 20px;
  color: #00a2d4;
  transition: all 0.3s ease;
}

/* При активном состоянии */
.faq-question.active .toggle-icon {
  transform: rotate(45deg);
  background-color: #00a2d4;
  color: white;
}

/* Ответ */
.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  padding-left: 20px;
}


.footer {
    background-color: #404040;
    color: white;
    padding: 60px 20px 40px 20px;
}

/* Лого */
.footer-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

/* Заголовки столбцов */
.footer h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

/* Ссылки */
.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #00a2d4;
}

/* Контакты */
.footer-contacts p {
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
}

.footer-contacts i {
  width: 20px;
  text-align: center;
  color: #00a2d4;
  margin-right: 10px;
}

.footer-contacts a {
  color: white;
  text-decoration: none;
}

.footer-contacts a:hover {
  color: #00a2d4;
}

/* Нижний блок */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
    margin-top: 60px;
    text-align: center;
    opacity: 0.3;
}

.footer-bottom p {
    font-size: 13px;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 10px auto;
}

.header {
  background-color: white;
  font-family: Arial, sans-serif;
}

/* Верхняя полоса */
.top-bar {
  padding: 10px 0;
}

.header-city {
  font-size: 14px;
  color: #555;
}

.header-city i {
  color: #00a2d4;
  margin-right: 5px;
}

.header-menu a {
  color: #333;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.header-menu a:hover {
  color: #00a2d4;
}

.header-contact a {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-size: 14px;
}

.header-contact .request-link {
    width: 100%;
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: #fff;
    border: 2px solid #00a2d4;
    padding: 14px 20px;
    font-size: 13px;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    text-decoration: none;
}
.header-contact .request-link:hover {
    background: #fff;
    color: #000;
    border-color: #00a2d4;
    opacity: 1;
}
.header-contact .dots {
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 12px;
  vertical-align: middle;
}

.divider-line {
    margin: 10px 0 0 0;
    border: 0;
    border-top: 1px solid #e0e0e0;
}

/* Нижняя полоса */
.bottom-bar {
    padding: 15px 0 20px 0;
}

.header-logo img {
    height: auto;
    max-width: 190px;
}

.btn-catalog {
background-color: #00a2d4;
    color: white;
    border-radius: 5px;
    padding: 14px 30px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    margin-left: 20px;
    text-decoration: none;
    height: 50px;
}
.btn-catalog:hover {
    color: #fff;
    background: #0392be;
}
.btn-catalog i {
  margin-right: 5px;
}

.header-search input {
    border-radius: 5px;
    height: 50px;
    padding-left: 30px;
}

.header-phone p {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 700;
}
.header-phone a {
    color: #000;
}
.header-phone small {
    color: #999;
    font-size: 17px;
    margin-left: 20px;
}
.header-phone i.fa.fa-phone {
    color: #0389b2;
}
.cart-icon {
  font-size: 24px;
  color: #333;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #dc3545;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
}

section.section.mainsection {
    background: url(/image/newdesign/bg1.jpg) no-repeat center center / cover;
    background-color: #333;
    color: white;
    margin: 0;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

h2.section-heading::before {
    content: " ";
    display: block;
    float: left;
    height: 45px;
    border-left: 5px solid #00a2d4;
    margin-right: 20px;
}
.advantage-item {
    font-size: 19px;
    max-width: 400px;
}
.row.advantages-row {
    margin-left: 0;
    margin-right: 0;
    max-width: 950px;
    position: relative;
    z-index: 9;
}
.director-image-container img {
    border-radius: 15px;
}
.about-company-text {
    margin-top: 15px;
    margin-left: 30px;
}
.row.advantages-row.dvablock {
    max-width: 100%;
}
.advantage-item.twoadv {
    max-width: 450px;
    margin: 0 auto 30px auto;
}
.dvadv.adv-text h4 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    min-height: 45px;
    max-width: 290px;
    margin-top: 0px;
}
.project-content {
    padding: 40px 30px 20px 30px;
}
.category-item img {
    position: absolute;
    right: 0;
    transition: all 0.7s ease;
}
.row.categories-row a {
    text-decoration: none;
    color: #000;
}
.category-item span {
    display: block;
    max-width: 220px;
    font-weight: 500;
}
.advantage-item span {
    display: block;
    max-width: 280px;
}
.delivery-title h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
}
.delivery-title h2::before {
    content: " ";
    display: block;
    float: left;
    height: 70px;
    border-left: 5px solid #00a2d4;
    margin-right: 20px;
}
.delivery-description p {
    max-width: 455px;
    line-height: 1.3;
    margin: 10px auto 0 auto;
}
.ask-title h2 {
    font-size: 33px;
    text-transform: uppercase;
    font-weight: 700;
}
.ask-title h2::before {
    content: " ";
    display: block;
    float: left;
    height: 70px;
    border-left: 5px solid #00a2d4;
    margin-right: 20px;
}
.ask-description p {
    max-width: 455px;
    line-height: 1.3;
    margin: 10px auto 0 auto;
}
.calculator-right a {
    text-decoration: none;
}
.row.faq-row {
    max-width: 1000px;
}
.footer-bottom a {
    color: #ccc;
}
p.phonefooter {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}
.footer-logo {
    margin-top: 5px;
}
#popularCarousel .product-thumb {
    margin-right: 10px;
}
#popularCarousel h4 a {
    color: #000;
}
#popularCarousel .caption {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}
#popularCarousel  p.price {
    font-size: 19px;
    font-weight: bold;
    color: #333;
    margin-top: 0px;
}
.btns1 a {
    width: 100%;
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: white;
    padding: 15px 20px;
    font-size: 13px;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}
.btns2 a {
    width: 100%;
    background-color: #fff;
    border-color: #00a2d4;
    color: #000;
    border: 2px solid #00a2d4;
    padding: 14px 20px;
    font-size: 13px;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}
.project-img img {
    height: 250px;
    width: auto;
    max-width: max-content;
}
.project-img {
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

i.fa.fa-long-arrow-right {
    padding-left: 10px;
}

.btns2 a:hover {
    background: #00a2d4;
    color: #fff;
    border-color: #00a2d4;
    opacity: 1;
}
.btns1 a:hover {
    background: #0392be;
    color: #fff;
    border-color: #0392be;
    opacity: 1;
}
.inpf button {
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: white;
    padding: 26px 70px;
    font-size: 18px;
    border-radius: 10px;
    text-transform: uppercase;
    margin-top: 30px;
}
.inpf span {
    font-size: 11px;
    line-height: 1.2 !important;
    display: block;
}
.inpf input#happy {
    float: left;
    margin: 0 10px 0 0;
}
.inpf input:not([class]), .inpf textarea:not([class]) {
    border: 1px solid #d8d8d9;
    background: #fff;
    margin-bottom: 10px;
}
.ask-descriptions {
    margin-bottom: 30px;
}
.ask-buttonsotr {
    text-align: center;
}
section.section.ask-sections {
    background-color: #e9e9e9;
    padding: 60px 0 0px 0;
}

section.section.uslugiobrabotka .advantages-row {
    margin-top: 0px;
}
section.section.uslugiobrabotka .project-item {
    margin-right: 0px;
    margin-right: 0px;
    padding: 0;
}
.bottom-bar .input-group {
    width: 100%;
    margin-left: -80px;
}
.input-group-btn {
    position: absolute !important;
    z-index: 2 !important;
    right: 0px;
}
.col-md-2.header-logo a {
    color: #000;
}
.header-logo span {
    letter-spacing: 3.8px;
}
.top-bar i.fa.fa-envelope {
    color: #00a2d4;
}
.smallpopup .modal-dialog {
    max-width: 500px;
}
h4.modal-title {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}
#zaginpp1342 {
    font-size: 15px;
    color: #666;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}
#sogl2 input[type="checkbox"] {
    float: left;
    margin: 0 10px 0 0;
}
#zaginpp1345 button {
    width: 100%;
    background-color: #00a2d4;
    border-color: #00a2d4;
    color: white;
    padding: 0px 20px;
    font-size: 13px;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
    line-height: 55px;
}
#sogl2 {
    font-size: 12px;
    margin: 10px auto 10px auto;
    max-width: 350px;
}
.modal-dialog input, .modal-dialog textarea, .modal-dialog select {
    border: 1px solid #d8d8d9;
    background: #fff;
    margin-bottom: 10px;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    line-height: 45px;
    border-radius: 5px;
    padding: 5px 10px;
}
#zaginpp1344 {
    max-width: 350px;
    margin: 0 auto 10px auto;
}
.modal-content {
    padding: 20px;
}
.bigpopup .modal-dialog {
    width: 100%;
    max-width: 1450px;
    margin: 30px auto 0px auto;
}
.categories-row a:hover .category-item img {
    right: -23px;
    transition: all 0.7s ease;
}
.modal-header {
    border-bottom: 0px solid #e5e5e5 !important;
}
#vyrblmenu123 {
    background-color: #e9e9e9;
    float: left;
    margin-right: 30px;
    padding: 10px 0px 10px 10px;
    border-radius: 10px;
    margin-bottom: 100px;
}
#glavkat2 {
    min-height: 260px;
}
#glavkat33 a {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    min-height: 45px;
    max-width: 290px;
    margin-top: 0px;
    display: block;
    line-height: 1;
}
#glavkat2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#glavkat2 ul li a {
    color: #000;
    font-size: 14px;
}
#glavkat2 ul li {
    margin-bottom: 3px;
}
.bigpopup .modal-content {
    padding: 0;
}
.mainsection:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: rgb(54 53 53 / 68%);
    /* z-index: -1; */
    z-index: 1;
    min-height: 1080px;
}
.uk-cover {
    max-width: 120%;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
}
.section-button {
    position: relative;
    z-index: 9;
}
.header-search button {
    height: 50px;
}
.header-logo a {
    color: #000;
}
.header-logo img {
        max-width: 190px !important;
    }
.nav2
{
    background: #404040;
	bottom: 0;
	height: 100%;
	left: -320px;
	margin: 0;
	min-width: 320px;
	moz-transition: left .3s;
	padding: 15px 20px;
	position: fixed;
	top: 0;
	transition: left .3s;
	webkit-transition: left .3s;
	width: 320px;
    z-index: 99999;
}
.nav2-toggle
{
    color: #000;
    cursor: pointer;
    font-size: 28px;
    left: 0;
    line-height: 1;
    top: -10px;
    transition: color .25s ease-in-out;
    z-index: 2001;
}
#world
{
	list-style: none;
}
#world2
{
	list-style: none;
}
.nav2-toggle:after
{
	content: "\f0c9";
	text-decoration: none;
	display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.nav2-toggle:hover
{
	color: #ffffff;
}
#emtr:hover
{
	background: #359fe2;
}
[id='nav2-toggle']
{
	display: none;
	position: absolute;
}
[id='nav2-toggle']:checked ~ .nav2 > .nav2-toggle
{
	left: auto;
	right: 2px;
	top: 1em;
}
[id='nav2-toggle']:checked ~ .nav2
{
	box-shadow: 4px 0 20px 0 rgba(0,0,0,0.5);
	left: 0;
	moz-box-shadow: 4px 0 20px 0 rgba(0,0,0,0.5);
	overflow-y: auto;
	webkit-box-shadow: 4px 0 20px 0 rgba(0,0,0,0.5);
}
[id='nav2-toggle']:checked ~ main > article
{
	moz-transform: translateX(320px);
	transform: translateX(320px);
	webkit-transform: translateX(320px);
}
[id='nav2-toggle']:checked ~ .nav2 > .nav2-toggle:after
{
	content: '\2715';
}
.nav2 h2
{
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 10px 0;
	moz-transform: scale(0.1,0.1);
	moz-transform-origin: 0 0;
	moz-transition: opacity 0.8s,-moz-transform .8s;
	ms-transform: scale(0.1,0.1);
	ms-transform-origin: 0 0;
	ms-transition: opacity 0.8s,-ms-transform .8s;
	opacity: 0;
	padding: 0;
	text-align: center;
	text-shadow: rgba(255,255,255,.1) -1px -1px 1px,rgba(0,0,0,.5) 1px 1px 1px;
	transform: scale(0.1,0.1);
	transform-origin: 0 0;
	transition: opacity 0.8s,transform .8s;
	webkit-transform: scale(0.1,0.1);
	webkit-transform-origin: 0 0;
	webkit-transition: opacity 0.8s,-webkit-transform .8s;
	width: 90%;
}
.nav2 h2 a
{
	color: #dadada;
	text-decoration: none;
	text-transform: uppercase;
}
[id='nav2-toggle']:checked ~ .nav2 h2
{
	moz-transform: scale(1,1);
	ms-transform: scale(1,1);
	opacity: 1;
	transform: scale(1,1);
	webkit-transform: scale(1,1);
}
.nav2 > ul
{
    display: block;
    list-style: none;
    margin: 30px 0 0 0;
    padding: 0;
}
.nav2 > ul > li
{
	line-height: 2.5;
	moz-transform: translateX(-50%);
	moz-transition: opacity .5s .1s,-moz-transform .5s .1s;
	ms-transform: translateX(-50%);
	ms-transition: opacity .5s .1s,-ms-transform .5s .1s;
	opacity: 0;
	transform: translateX(-50%);
	transition: opacity .5s .1s,transform .5s .1s;
	webkit-transform: translateX(-50%);
	webkit-transition: opacity .5s .1s,-webkit-transform .5s .1s;
}
[id='nav2-toggle']:checked ~ .nav2 > ul > li
{
	moz-transform: translateX(0);
	ms-transform: translateX(0);
	opacity: 1;
	transform: translateX(0);
	webkit-transform: translateX(0);
}
.nav2 > ul > li:nth-child(2)
{
	transition: opacity .5s .2s,transform .5s .2s;
	webkit-transition: opacity .5s .2s,-webkit-transform .5s .2s;
}
.nav2 > ul > li:nth-child(3)
{
	transition: opacity .5s .3s,transform .5s .3s;
	webkit-transition: opacity .5s .3s,-webkit-transform .5s .3s;
}
.nav2 > ul > li:nth-child(4)
{
	transition: opacity .5s .4s,transform .5s .4s;
	webkit-transition: opacity .5s .4s,-webkit-transform .5s .4s;
}
.nav2 > ul > li:nth-child(5)
{
	transition: opacity .5s .5s,transform .5s .5s;
	webkit-transition: opacity .5s .5s,-webkit-transform .5s .5s;
}
.nav2 > ul > li:nth-child(6)
{
	transition: opacity .5s .6s,transform .5s .6s;
	webkit-transition: opacity .5s .6s,-webkit-transform .5s .6s;
}
.nav2 > ul > li:nth-child(7)
{
	transition: opacity .5s .7s,transform .5s .7s;
	webkit-transition: opacity .5s .7s,-webkit-transform .5s .7s;
}
.nav2 > ul > li > a
{
	color: #fff;
	display: inline-block;
	moz-transition: color .5s ease,padding .5s ease;
	padding: 0;
	position: relative;
	text-decoration: none;
	transition: color .5s ease,padding .5s ease;
	webkit-transition: color .5s ease,padding .5s ease;
	width: 100%;
}
.nav2 > ul > li > a:hover,.nav2 > ul > li > a:focus
{
	color: #fff;
	padding-left: 15px;
}
.nav2 > ul > li > a:before
{
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	position: absolute;
	right: 0;
	transition: width 0 ease;
	webkit-transition: width 0 ease;
	width: 100%;
}
.nav2 > ul > li > a:after
{
background: #404042;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: width .5s ease;
    webkit-transition: width .5s ease;
    width: 100%;
}
.nav2-toggle2
{
    display: block;
    float: right;
    position: relative;
    z-index: 999;
    top: 15px;
}
.nav2 > ul > li > a:hover:before
{
	background: #e1042e;
	transition: width .5s ease;
	webkit-transition: width .5s ease;
	width: 0;
}
.nav2 > ul > li > a:hover:after
{
	background: transparent;
	transition: width 0 ease;
	webkit-transition: width 0 ease;
	width: 0;
}
i.fa.fa-times-circle-o
{
	color: #fff;
	font-size: 18px;
}
nav.nav2
{
	font-size: 16px;
}
#posmenu input {
    display: none;
}
.bottom-bar .col-xs-6 {
    width: 50% !important;
}
#posmenu #logo img {
    max-width: 130px;
}
#posmenu #logo {
    margin-top: 10px;
}
.bottom-bar .mobic1 a .fa {
    color: #000;
    font-size: 15px;
    background: #e9e9e9;
    padding: 13px;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    text-align: center;
}
.header-menu {
    padding-left: 20px;
}
.header-contact {
    color: #000;
    font-size: 14px;
}
i.fa.fa-clock-o {
    color: #00a2d4;
    margin-right: 5px;
}
#posmenu li.nav-item a {
    color: #fff;
}
/* TALIPOV.BIZ  */
@media (max-width: 1400px)
{
.category-item span {
    max-width: 185px;
}
.about-quote {
    line-height: 1.2;
}
.delivery-title h2 {
    font-size: 30px;
}
}
/* TALIPOV.BIZ  */
@media (max-width: 1350px)
{
.header-search input {
    padding-left: 50px;
}
}
/* TALIPOV.BIZ  */
@media (max-width: 1300px)
{
.header-logo img {
    max-width: 100%;
}
.category-item img {
    position: relative;
}
}
/* TALIPOV.BIZ  */
@media (max-width: 1250px)
{
.header-menu a {
    margin: 0 5px;
    font-size: 13px;
}
.delivery-title h2 {
        font-size: 27px;
}
.header-city {
    font-size: 13px;
}
.director-info-box {
        bottom: 30px;
        padding: 20px 30px;
        width: 350px;
}
header-contact a {
    font-size: 13px;
}
}

/* TALIPOV.BIZ  */
@media (max-width: 1200px)
{
.bottom-bar .input-group {
    margin-left: 0px;
}
.calc-img {
        right: -120px;
    }
.project-content {
    padding: 20px 30px 20px 30px;
}
.about-company-text {
    margin-top: 35px;
    margin-left: 0px;
}
.adv-icon {
    margin-right: 25px;
}
    .delivery-title h2 {
        font-size: 30px;
        max-width: 300px;
        margin-bottom: 30px;
    }
.delivery-title h2::before {
    height: 60px;
}
.director-image-container {
    max-width: 700px;
    margin: 0 auto;
}

.category-item {
    padding: 20px 20px 20px 30px;
}
.btns1 a {
    padding: 15px 15px;
}
.category-item span {
    font-size: 21px;
}
.header-phone {
    text-align: right;
}
.category-item {
    display: block;
}
        .category-item img {
        right: 0px;
        position: absolute;
        top: 80px;
    }
    .category-item {
        padding: 30px 20px 20px 30px;
        min-height: 275px;
    }
}
/* TALIPOV.BIZ  */
@media (max-width: 992px)
{
    .top-bar {
    display: none;
    }
    .calculator-right {
    padding-left: 0px;
    padding-right: 0px;
}
.footer-logo {
    margin-top: 0px;
    margin-bottom: 20px;
}
.project-content p {
    font-size: 14px;
    line-height: 1.3;
}
section.section.ask-sections {
    padding: 60px 0 60px 0;
}
.project-content {
        padding: 20px 20px 20px 20px;
    }
.advantage-item.twoadv {
    padding-right: 30px;
}
    .calc-img {
        right: 0px;
    }
    .header-phone {
        text-align: center;
    }
    .header-logo img {
    max-width: 170px !important;
}
    .header-logo span {
    display: none;
}
.header-contact .request-link {
    max-width: 200px;
    float: right;
}
.bottom-bar {
    padding: 10px 0 10px 0;
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 11px 14px 75px 5px rgba(202, 197, 197, 0.4);
}
.section-title h1 {
    font-size: 30px;
}
.section-heading {
    font-size: 30px;
}
h2.section-heading::before {
    height: 33px;
}
h4.modal-title {
    font-size: 20px;
}
}

/* TALIPOV.BIZ  */
@media (max-width: 768px)
{
    
}

/* TALIPOV.BIZ  */
@media (max-width: 576px)
{
    .section-title h1 {
        font-size: 25px;
    }
    .calculator-left {
    padding: 30px;
    }
    .calc-img {
        right: 0px;
        position: absolute;
        top: 165px;
    }
    .calc-block {
    align-items: normal;
    padding: 40px;
    min-height: 400px;
    }
    .calc-text h4 {
    font-size: 25px;
    max-width: 225px;
    }
    .calculator-header h2 {
    margin: 0;
    font-size: 25px;
    }
    .about-quote {
    font-size: 16px;
}
.ask-title h2 {
    font-size: 25px;
}
.ask-title h2::before {
    height: 52px;
}
section.section.uslugiobrabotka {
    margin-top: 0px;
}
section.section.sectpred {
    margin-bottom: 0px;
}
.section-title h1 {
    padding: 40px 0px 0px 0px;
}
.section-button .btn {
    margin-bottom: 60px;
}
.section-button .btn {
    padding: 20px 30px;
    height: 65px;
    font-size: 16px;
    border-radius: 10px;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 20px;
    width: 100%;
}
    .section-heading {
        font-size: 25px;
    }
    .container-fluid {
    max-width: 100% !important;
    }
    .header-logo img {
        max-width: 130px !important;
    }
    .btns1 a {
        padding: 15px 15px;
        margin-bottom: 10px;
    }
        h2.section-heading::before {
        height: 25px;
        margin-right: 15px;
    }
    .delivery-description {
    margin-bottom: 50px;
    }
    .calc-icon {
    width: 50px;
    height: auto;
    display: none;
}
.footer ul {
    margin-bottom: 40px;
}
    .director-info-box {
    position: relative;
    left: 0;
    width: 100%;
    border-radius: 10px;
    }
}